From fc891d9caae886cedf864dce7e1ec7754bac6def Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 2 Dec 2013 22:25:46 +0000 Subject: [PATCH] Generate valid URLs for search results with no object attached --- app/helpers/geocoder_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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| -- 2.43.2