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