Ignore klick on map if route is ongoing

This commit is contained in:
Marcus Kida 2026-02-10 09:31:36 +01:00
parent 2b7b7e4824
commit ae36e7767a

View file

@ -801,6 +801,7 @@
});
map.on("click", function (e) {
if (isRouteMode) return;
placePin(e.latlng);
});