]> git.openstreetmap.org Git - rails.git/commitdiff
Make getGeocode a private function
authorAnton Khorev <tony29@yandex.ru>
Sun, 11 Aug 2024 04:04:37 +0000 (07:04 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 16 Aug 2024 05:57:39 +0000 (08:57 +0300)
app/assets/javascripts/index/directions-endpoint.js

index 066542707d06d91f1a3369d22642cb2d3de43d28..d111eca35f2682729053f9b1862cb0404aaa5e02 100644 (file)
@@ -44,11 +44,11 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ch
       setInputValueFromLatLng(latlng);
       changeCallback();
     } else if (endpoint.value) {
-      endpoint.getGeocode();
+      getGeocode();
     }
   };
 
-  endpoint.getGeocode = function () {
+  function getGeocode() {
     endpoint.awaitingGeocode = true;
 
     var viewbox = map.getBounds().toBBoxString(); // <sw lon>,<sw lat>,<ne lon>,<ne lat>
@@ -67,7 +67,7 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ch
 
       changeCallback();
     });
-  };
+  }
 
   function setLatLng(ll) {
     endpoint.latlng = ll;