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] });
});
select.on("change", function (e) {
- setEngine(e.target.selectedOptions[0].value + "_" + chosenEngine.mode);
+ setEngine(e.target.value + "_" + chosenEngine.mode);
Cookies.set("_osm_directions_engine", chosenEngine.id, { secure: true, expires: expiry, path: "/", samesite: "lax" });
getRoute(true, true);
});
}
});
+ 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 () {
endpoints[type === "from" ? 0 : 1].setValue(llWithPrecision.join(", "));
});
+ map.on("locationfound", sendstartinglocation);
+
endpoints[0].enable();
endpoints[1].enable();
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);
$(".search_form").show();
$(".directions_form").hide();
$("#map").off("dragend dragover drop");
+ map.off("locationfound", sendstartinglocation);
endpoints[0].disable();
endpoints[1].disable();