module GeocoderHelper
def result_to_html(result)
- html_options = { :class => "set_position", :data => {} }
+ html_options = { :class => "set_position stretched-link", :data => {} }
url = if result[:type] && result[:id]
- url_for(:controller => :browse, :action => result[:type], :id => result[:id])
+ url_for(:controller => result[:type].pluralize, :action => :show, :id => result[:id])
elsif result[:min_lon] && result[:min_lat] && result[:max_lon] && result[:max_lat]
"/?bbox=#{result[:min_lon]},#{result[:min_lat]},#{result[:max_lon]},#{result[:max_lat]}"
else