endpoint.setValue(value);
});
- endpoint.setValue = function(value) {
+ endpoint.setValue = function(value, latlng) {
endpoint.value = value;
delete endpoint.latlng;
input.val(value);
- endpoint.getGeocode();
+
+ if (latlng) {
+ endpoint.setLatLng(latlng);
+ } else {
+ endpoint.getGeocode();
+ }
};
endpoint.getGeocode = function() {
endpoint.awaitingGeocode = true;
- $.getJSON(document.location.protocol + OSM.NOMINATIM_URL + 'search?q=' + encodeURIComponent(endpoint.value) + '&format=json', function (json) {
+ $.getJSON(OSM.NOMINATIM_URL + 'search?q=' + encodeURIComponent(endpoint.value) + '&format=json', function (json) {
endpoint.awaitingGeocode = false;
endpoint.hasGeocode = true;
if (json.length === 0) {
return endpoint;
}
+ $(".directions_form .reverse_directions").on("click", function() {
+ var from = endpoints[0].latlng,
+ to = endpoints[1].latlng;
+
+ OSM.router.route("/directions?" + querystring.stringify({
+ from: $("#route_to").val(),
+ to: $("#route_from").val(),
+ route: from.lat + "," + from.lng + ";" + to.lat + "," + to.lng
+ }));
+ });
+
$(".directions_form .close").on("click", function(e) {
e.preventDefault();
var route_from = endpoints[0].value;
});
var params = querystring.parse(location.search.substring(1)),
- route = (params.route || '').split(';');
+ route = (params.route || '').split(';'),
+ from = route[0] && L.latLng(route[0].split(',')),
+ to = route[1] && L.latLng(route[1].split(','));
if (params.engine) {
setEngine(params.engine);
}
- endpoints[0].setValue(params.from || "");
- endpoints[1].setValue(params.to || "");
-
- var o = route[0] && L.latLng(route[0].split(',')),
- d = route[1] && L.latLng(route[1].split(','));
-
- if (o) endpoints[0].setLatLng(o);
- if (d) endpoints[1].setLatLng(d);
+ endpoints[0].setValue(params.from || "", from);
+ endpoints[1].setValue(params.to || "", to);
- map.setSidebarOverlaid(!o || !d);
+ map.setSidebarOverlaid(!from || !to);
getRoute();
};