X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/843d601b0a4df3e0cb81fdedc8e7f7e55379e0e0..59dcc8b253c544c69f844cc3b5bcd507bdfe7117:/app/views/site/_search.html.erb diff --git a/app/views/site/_search.html.erb b/app/views/site/_search.html.erb index 6e291bfd0..f487e8f4a 100644 --- a/app/views/site/_search.html.erb +++ b/app/views/site/_search.html.erb @@ -5,11 +5,22 @@ } function describeLocation() { - var position = getPosition(); + var args = getArgs($("viewanchor").href); <%= remote_function(:loading => "startSearch()", :url => { :controller => :geocoder, :action => :description }, - :with => "'lat=' + position.lat + '&lon=' + position.lon") %> + :with => "'lat=' + args['lat'] + '&lon=' + args['lon'] + '&zoom=' + args['zoom']") %> + } + + function setSearchViewbox() { + <% if params[:action] == 'index' %> + var extent = getMapExtent(); + + $("minlon").value = extent.left; + $("minlat").value = extent.bottom; + $("maxlon").value = extent.right; + $("maxlat").value = extent.top; + <% end %> } <% if params[:query] %> @@ -21,15 +32,22 @@ <% content_for "optionals" do %>