]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/directions.js
Merge remote-tracking branch 'upstream/pull/1704'
[rails.git] / app / assets / javascripts / index / directions.js
index ee195af416f92a929f1a12fee60324a73ff3d6a6..ce8ac9c1cc432a0e61a081c70f67ab21987b5bf3 100644 (file)
@@ -32,8 +32,6 @@ OSM.Directions = function (map) {
   function Endpoint(input, iconUrl) {
     var endpoint = {};
 
   function Endpoint(input, iconUrl) {
     var endpoint = {};
 
-    endpoint.input = input;
-
     endpoint.marker = L.marker([0, 0], {
       icon: L.icon({
         iconUrl: iconUrl,
     endpoint.marker = L.marker([0, 0], {
       icon: L.icon({
         iconUrl: iconUrl,
@@ -62,11 +60,16 @@ OSM.Directions = function (map) {
       endpoint.setValue(value);
     });
 
       endpoint.setValue(value);
     });
 
-    endpoint.setValue = function(value) {
+    endpoint.setValue = function(value, latlng) {
       endpoint.value = value;
       delete endpoint.latlng;
       input.val(value);
       endpoint.value = value;
       delete endpoint.latlng;
       input.val(value);
-      endpoint.getGeocode();
+
+      if (latlng) {
+        endpoint.setLatLng(latlng);
+      } else {
+        endpoint.getGeocode();
+      }
     };
 
     endpoint.getGeocode = function() {
     };
 
     endpoint.getGeocode = function() {
@@ -114,17 +117,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 input_to = endpoints[1].input.val();
-    var latlng_from = endpoints[0].latlng;
-    var latlng_to = endpoints[1].latlng;
-
-    endpoints[0].setLatLng(latlng_to);
-    endpoints[1].setLatLng(latlng_from);
-    endpoints[0].input.val(input_to);
-    endpoints[1].input.val(input_from);
+    var from = endpoints[0].latlng,
+        to = endpoints[1].latlng;
 
 
-    getRoute();
+    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) {
   });
 
   $(".directions_form .close").on("click", function(e) {
@@ -364,22 +364,18 @@ OSM.Directions = function (map) {
     });
 
     var params = querystring.parse(location.search.substring(1)),
     });
 
     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);
     }
 
 
     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();
   };
 
     getRoute();
   };