From: Anton Khorev Date: Sun, 11 Aug 2024 02:13:36 +0000 (+0300) Subject: Don't call endpoint.setLatLng() from outside of endpoint module X-Git-Tag: live~679^2~2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/e0df084e573f1ac5402e0e4c458f516cf374872d Don't call endpoint.setLatLng() from outside of endpoint module --- diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index ccd4a68c2..974a40e85 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -300,7 +300,9 @@ OSM.Directions = function (map) { var pt = L.DomEvent.getMousePosition(oe, map.getContainer()); // co-ordinates of the mouse pointer at present pt.y += 20; var ll = map.containerPointToLatLng(pt); - endpoints[type === "from" ? 0 : 1].setLatLng(ll); + var precision = OSM.zoomPrecision(map.getZoom()); + var value = ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision); + endpoints[type === "from" ? 0 : 1].setValue(value, ll); getRoute(true, true); });