]> git.openstreetmap.org Git - rails.git/commitdiff
Don't set input value from endpoint.setLatLng()
authorAnton Khorev <tony29@yandex.ru>
Sun, 11 Aug 2024 02:29:33 +0000 (05:29 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 14 Aug 2024 02:11:56 +0000 (05:11 +0300)
This input value computed from coordinates is not always used. endpoint.getGeocode() overwrites it immediately.

app/assets/javascripts/index/directions-endpoint.js

index 0f53e77d931be01462e74628ab33886aa892dcfe..b9a4ff9a2b39b235d4af188e856d287377aefa21 100644 (file)
@@ -15,7 +15,11 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ge
   });
 
   endpoint.marker.on("drag dragend", function (e) {
-    endpoint.setLatLng(e.target.getLatLng());
+    var latlng = e.target.getLatLng();
+
+    endpoint.setLatLng(latlng);
+    setInputValueFromLatLng(latlng);
+    endpoint.value = input.val();
     dragCallback(e.type === "drag");
   });
 
@@ -37,6 +41,7 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ge
 
     if (latlng) {
       endpoint.setLatLng(latlng);
+      setInputValueFromLatLng(latlng);
     } else {
       endpoint.getGeocode();
     }
@@ -71,8 +76,6 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ge
   };
 
   endpoint.setLatLng = function (ll) {
-    var precision = OSM.zoomPrecision(map.getZoom());
-    input.val(ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision));
     endpoint.hasGeocode = true;
     endpoint.latlng = ll;
     endpoint.marker
@@ -80,5 +83,11 @@ OSM.DirectionsEndpoint = function Endpoint(map, input, iconUrl, dragCallback, ge
       .addTo(map);
   };
 
+  function setInputValueFromLatLng(latlng) {
+    var precision = OSM.zoomPrecision(map.getZoom());
+
+    input.val(latlng.lat.toFixed(precision) + ", " + latlng.lng.toFixed(precision));
+  }
+
   return endpoint;
 };