Generate valid URLs for search results with no object attached
This commit is contained in:
parent
95f1069552
commit
fc891d9caa
1 changed files with 2 additions and 2 deletions
|
@ -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|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue