]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/geocoder_helper.rb
Localisation updates from translatewiki.net (2009-10-30)
[rails.git] / app / helpers / geocoder_helper.rb
index f1b4e01dd713c2b5d9ffb9364d570e3761cad6b4..254412b5114c1646ff6488e97c29776fc299697b 100644 (file)
@@ -5,7 +5,14 @@ module GeocoderHelper
     html_options[:href] = "?mlat=#{result[:lat]}&mlon=#{result[:lon]}&zoom=#{result[:zoom]}"
     html = ""
     html << result[:prefix] if result[:prefix]
-    html << link_to_function(result[:name],"setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})", html_options)  if result[:name]
+    html << " " if result[:prefix] and result[:name]
+
+    if result[:min_lon] and result[:min_lat] and result[:max_lon] and result[:max_lat]
+      html << link_to_function(result[:name],"setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]}, #{result[:min_lon]}, #{result[:min_lat]}, #{result[:max_lon]}, #{result[:max_lat]})", html_options)  if result[:name]
+    else
+      html << link_to_function(result[:name],"setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})", html_options)  if result[:name]
+    end
+
     html << result[:suffix] if result[:suffix]
     return html
   end