+ $(".directions_form .reverse_directions").on("click", function () {
+ var coordFrom = endpoints[0].latlng,
+ coordTo = endpoints[1].latlng,
+ routeFrom = "",
+ routeTo = "";
+ if (coordFrom) {
+ routeFrom = coordFrom.lat + "," + coordFrom.lng;
+ }
+ if (coordTo) {
+ routeTo = coordTo.lat + "," + coordTo.lng;
+ }
+
+ OSM.router.route("/directions?" + Qs.stringify({
+ from: $("#route_to").val(),
+ to: $("#route_from").val(),
+ route: routeTo + ";" + routeFrom
+ }));
+ });
+
+ $(".directions_form .btn-close").on("click", function (e) {