]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/_search.html.erb
Experimental support for reverse geocoding using the new geocoder.
[rails.git] / app / views / site / _search.html.erb
index 8e18d0e9713ed56eb15beb57fb169e87b3bb1c15..dab031c7b0fc3ea2935d0be132af39b1af09a4c6 100644 (file)
@@ -6,10 +6,11 @@
 
   function describeLocation() {
     var position = getPosition();
+    var zoom = getZoom();
 
     <%= remote_function(:loading => "startSearch()",
                         :url => { :controller => :geocoder, :action => :description },
-                        :with => "'lat=' + position.lat + '&lon=' + position.lon") %>
+                        :with => "'lat=' + position.lat + '&lon=' + position.lon + '&zoom=' + zoom") %>
   }
 
   <% if params[:query] %>
@@ -22,7 +23,7 @@
 <% content_for "optionals" do %>
   <div class="optionalbox">
     <span class="oboxheader"><%= t 'site.search.search' %></span>
-    <span class="whereami"><a href="javascript:describeLocation()"><%= t 'site.search.where_am_i' %></a></span>
+    <span class="whereami"><a href="javascript:describeLocation()" title="<%= t 'site.search.where_am_i_title' %>"><%= t 'site.search.where_am_i' %></a></span>
     <div class="search_form">
     <div id="search_field">
     <% form_remote_tag(:loading => "startSearch()",