From: Tom Hughes Date: Mon, 2 Dec 2013 22:25:46 +0000 (+0000) Subject: Generate valid URLs for search results with no object attached X-Git-Tag: live~4612 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/fc891d9caae886cedf864dce7e1ec7754bac6def?ds=sidebyside Generate valid URLs for search results with no object attached --- diff --git a/app/helpers/geocoder_helper.rb b/app/helpers/geocoder_helper.rb index ce6c7eafa..04f437a7c 100644 --- a/app/helpers/geocoder_helper.rb +++ b/app/helpers/geocoder_helper.rb @@ -5,9 +5,9 @@ module GeocoderHelper if result[:type] and result[:id] url = url_for(:controller => :browse, :action => result[:type], :id => result[:id]) elsif result[:min_lon] and result[:min_lat] and result[:max_lon] and result[:max_lat] - url = "?minlon=#{result[:min_lon]}&minlat=#{result[:min_lat]}&maxlon=#{result[:max_lon]}&maxlat=#{result[:max_lat]}" + url = "/?bbox=#{result[:min_lon]},#{result[:min_lat]},#{result[:max_lon]},#{result[:max_lat]}" else - url = "?mlat=#{result[:lat]}&mlon=#{result[:lon]}&zoom=#{result[:zoom]}" + url = "/#map=#{result[:zoom]}/#{result[:lat]}/#{result[:lon]}" end result.each do |key,value|