Go through the router when reversing directions

This commit is contained in:
Tom Hughes 2018-02-03 16:21:35 +00:00
parent 9d2f920feb
commit aea57cdfc3

View file

@ -32,8 +32,6 @@ OSM.Directions = function (map) {
function Endpoint(input, iconUrl) { function Endpoint(input, iconUrl) {
var endpoint = {}; var endpoint = {};
endpoint.input = input;
endpoint.marker = L.marker([0, 0], { endpoint.marker = L.marker([0, 0], {
icon: L.icon({ icon: L.icon({
iconUrl: iconUrl, iconUrl: iconUrl,
@ -114,17 +112,14 @@ OSM.Directions = function (map) {
} }
$(".directions_form .reverse_directions").on("click", function() { $(".directions_form .reverse_directions").on("click", function() {
var input_from = endpoints[0].input.val(); var from = endpoints[0].latlng,
var input_to = endpoints[1].input.val(); to = endpoints[1].latlng;
var latlng_from = endpoints[0].latlng;
var latlng_to = endpoints[1].latlng;
endpoints[0].setLatLng(latlng_to); OSM.router.route("/directions?" + querystring.stringify({
endpoints[1].setLatLng(latlng_from); from: $("#route_to").val(),
endpoints[0].input.val(input_to); to: $("#route_from").val(),
endpoints[1].input.val(input_from); route: from.lat + "," + from.lng + ";" + to.lat + "," + to.lng
}));
getRoute();
}); });
$(".directions_form .close").on("click", function(e) { $(".directions_form .close").on("click", function(e) {