X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/459d3b314a900b3fb83eb88502bb29e1c961082e..64d41eac67ecdb3622c519cae9db6f9205e59bdc:/app/assets/javascripts/index/directions.js?ds=sidebyside diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index 07d39974d..ee8d3b8c5 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -4,6 +4,7 @@ OSM.Directions = function (map) { let controller = null; // the AbortController for the current route request if a route request is in progress + let lastLocation = []; let chosenEngine; const popup = L.popup({ autoPanPadding: [100, 100] }); @@ -268,6 +269,19 @@ OSM.Directions = function (map) { } }); + function sendstartinglocation({ latlng: { lat, lng } }) { + map.fire("startinglocation", { latlng: [lat, lng] }); + } + + map.on("locationfound", ({ latlng: { lat, lng } }) => + lastLocation = [lat, lng] + ).on("locateactivate", () => { + map.once("startinglocation", ({ latlng }) => { + if (endpoints[0].value) return; + endpoints[0].setValue(latlng.join(", ")); + }); + }); + const page = {}; page.pushstate = page.popstate = function () { @@ -290,6 +304,8 @@ OSM.Directions = function (map) { endpoints[type === "from" ? 0 : 1].setValue(llWithPrecision.join(", ")); }); + map.on("locationfound", sendstartinglocation); + endpoints[0].enable(); endpoints[1].enable(); @@ -298,7 +314,7 @@ OSM.Directions = function (map) { if (params.has("engine")) setEngine(params.get("engine")); - endpoints[0].setValue(params.get("from") || route[0] || ""); + endpoints[0].setValue(params.get("from") || route[0] || lastLocation.join(", ")); endpoints[1].setValue(params.get("to") || route[1] || ""); map.setSidebarOverlaid(!endpoints[0].latlng || !endpoints[1].latlng); @@ -312,6 +328,7 @@ OSM.Directions = function (map) { $(".search_form").show(); $(".directions_form").hide(); $("#map").off("dragend dragover drop"); + map.off("locationfound", sendstartinglocation); endpoints[0].disable(); endpoints[1].disable();