X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a8838b37277c47e8d1bc295bd39db467092685a2..2d7e0a397a1b2dbed74f40439c1305b1b48a063e:/app/assets/javascripts/index/directions.js diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index 7e8c18fb8..391c1f931 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -287,7 +287,8 @@ OSM.Directions = function (map) { var ll = map.containerPointToLatLng(pt); var precision = OSM.zoomPrecision(map.getZoom()); var value = ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision); - endpoints[type === "from" ? 0 : 1].setValue(value, ll); + var llWithPrecision = L.latLng(ll.lat.toFixed(precision), ll.lng.toFixed(precision)); + endpoints[type === "from" ? 0 : 1].setValue(value, llWithPrecision); }); endpoints[0].enable();