]> git.openstreetmap.org Git - rails.git/commitdiff
Pass viewbox to Nominatim when geocoding routing endpoints
authormarc tobias <mtmail@gmx.net>
Thu, 25 Jul 2019 01:25:02 +0000 (03:25 +0200)
committerTom Hughes <tom@compton.nu>
Thu, 25 Jul 2019 18:24:36 +0000 (19:24 +0100)
Fixes #2327
Closes #2328

app/assets/javascripts/index/directions.js

index 4f79ca4719bf014f6d9dc745d31a4487a1bd6011..4c39d6781e1673d61d3e7c28aa186bb509acd464 100644 (file)
@@ -105,7 +105,9 @@ OSM.Directions = function (map) {
 
       endpoint.awaitingGeocode = true;
 
 
       endpoint.awaitingGeocode = true;
 
-      $.getJSON(OSM.NOMINATIM_URL + "search?q=" + encodeURIComponent(endpoint.value) + "&format=json", function (json) {
+      var viewbox = map.getBounds().toBBoxString(); // <sw lon>,<sw lat>,<ne lon>,<ne lat>
+
+      $.getJSON(OSM.NOMINATIM_URL + "search?q=" + encodeURIComponent(endpoint.value) + "&format=json&viewbox=" + viewbox, function (json) {
         endpoint.awaitingGeocode = false;
         endpoint.hasGeocode = true;
         if (json.length === 0) {
         endpoint.awaitingGeocode = false;
         endpoint.hasGeocode = true;
         if (json.length === 0) {