Read lat/lon attributes when generating context menu directions urls
This commit is contained in:
parent
4f3576e91b
commit
a088b136fb
1 changed files with 10 additions and 2 deletions
|
@ -11,7 +11,7 @@ OSM.initializeContextMenu = function (map) {
|
|||
|
||||
OSM.router.route("/directions?" + Qs.stringify({
|
||||
from: lat + "," + lng,
|
||||
to: $("#route_to").val()
|
||||
to: getDirectionsEndpointCoordinatesFromInput($("#route_to"))
|
||||
}));
|
||||
}
|
||||
});
|
||||
|
@ -25,7 +25,7 @@ OSM.initializeContextMenu = function (map) {
|
|||
lng = latlng.lng.toFixed(precision);
|
||||
|
||||
OSM.router.route("/directions?" + Qs.stringify({
|
||||
from: $("#route_from").val(),
|
||||
from: getDirectionsEndpointCoordinatesFromInput($("#route_from")),
|
||||
to: lat + "," + lng
|
||||
}));
|
||||
}
|
||||
|
@ -79,6 +79,14 @@ OSM.initializeContextMenu = function (map) {
|
|||
else map.contextmenu.enable();
|
||||
});
|
||||
|
||||
function getDirectionsEndpointCoordinatesFromInput(input) {
|
||||
if (input.attr("data-lat") && input.attr("data-lon")) {
|
||||
return input.attr("data-lat") + "," + input.attr("data-lon");
|
||||
} else {
|
||||
return $(input).val();
|
||||
}
|
||||
}
|
||||
|
||||
var updateMenu = function updateMenu() {
|
||||
map.contextmenu.setDisabled(2, map.getZoom() < 12);
|
||||
map.contextmenu.setDisabled(4, map.getZoom() < 14);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue