From: Jamie Guthrie Date: Wed, 14 Feb 2018 19:54:53 +0000 (+0000) Subject: Fix route path 'hovering' when marker positions are changed X-Git-Tag: live~3145 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/58a0184fc00ad85103367fe9877ab5af3a9aeb03 Fix route path 'hovering' when marker positions are changed Closes #1755 --- diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index 1ad7f9cb7..1a3e0d4ec 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -54,6 +54,8 @@ OSM.Directions = function (map) { }); input.on("change", function (e) { + awaitingGeocode = true; + // make text the same in both text boxes var value = e.target.value; endpoint.setValue(value); @@ -88,12 +90,9 @@ OSM.Directions = function (map) { return; } - input.val(json[0].display_name); + endpoint.setLatLng(L.latLng(json[0])); - endpoint.latlng = L.latLng(json[0]); - endpoint.marker - .setLatLng(endpoint.latlng) - .addTo(map); + input.val(json[0].display_name); if (awaitingGeocode) { awaitingGeocode = false;