]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/directions.js
Move endpoints code to its own module
[rails.git] / app / assets / javascripts / index / directions.js
1 //= require ./directions-endpoint
2 //= require_self
3 //= require_tree ./directions
4 //= require qs/dist/qs
5
6 OSM.Directions = function (map) {
7   var routeRequest = null; // jqXHR object of an ongoing route request or null
8   var chosenEngine;
9
10   var popup = L.popup({ autoPanPadding: [100, 100] });
11
12   var polyline = L.polyline([], {
13     color: "#03f",
14     opacity: 0.3,
15     weight: 10
16   });
17
18   var highlight = L.polyline([], {
19     color: "#ff0",
20     opacity: 0.5,
21     weight: 12
22   });
23
24   var endpointDragCallback = function (dragging) {
25     if (!map.hasLayer(polyline)) return;
26     if (dragging && !chosenEngine.draggable) return;
27     if (dragging && routeRequest) return;
28
29     getRoute(false, !dragging);
30   };
31   var endpointGeocodeCallback = function () {
32     getRoute(true, true);
33   };
34
35   var endpoints = [
36     OSM.DirectionsEndpoint(map, $("input[name='route_from']"), OSM.MARKER_GREEN, endpointDragCallback, endpointGeocodeCallback),
37     OSM.DirectionsEndpoint(map, $("input[name='route_to']"), OSM.MARKER_RED, endpointDragCallback, endpointGeocodeCallback)
38   ];
39
40   var expiry = new Date();
41   expiry.setYear(expiry.getFullYear() + 10);
42
43   var engines = OSM.Directions.engines;
44
45   engines.sort(function (a, b) {
46     var localised_a = I18n.t("javascripts.directions.engines." + a.id),
47         localised_b = I18n.t("javascripts.directions.engines." + b.id);
48     return localised_a.localeCompare(localised_b);
49   });
50
51   var select = $("select.routing_engines");
52
53   engines.forEach(function (engine, i) {
54     select.append("<option value='" + i + "'>" + I18n.t("javascripts.directions.engines." + engine.id) + "</option>");
55   });
56
57   $(".directions_form .reverse_directions").on("click", function () {
58     var coordFrom = endpoints[0].latlng,
59         coordTo = endpoints[1].latlng,
60         routeFrom = "",
61         routeTo = "";
62     if (coordFrom) {
63       routeFrom = coordFrom.lat + "," + coordFrom.lng;
64     }
65     if (coordTo) {
66       routeTo = coordTo.lat + "," + coordTo.lng;
67     }
68
69     OSM.router.route("/directions?" + Qs.stringify({
70       from: $("#route_to").val(),
71       to: $("#route_from").val(),
72       route: routeTo + ";" + routeFrom
73     }));
74   });
75
76   $(".directions_form .btn-close").on("click", function (e) {
77     e.preventDefault();
78     var route_from = endpoints[0].value;
79     if (route_from) {
80       OSM.router.route("/?query=" + encodeURIComponent(route_from) + OSM.formatHash(map));
81     } else {
82       OSM.router.route("/" + OSM.formatHash(map));
83     }
84   });
85
86   function formatDistance(m) {
87     if (m < 1000) {
88       return I18n.t("javascripts.directions.distance_m", { distance: Math.round(m) });
89     } else if (m < 10000) {
90       return I18n.t("javascripts.directions.distance_km", { distance: (m / 1000.0).toFixed(1) });
91     } else {
92       return I18n.t("javascripts.directions.distance_km", { distance: Math.round(m / 1000) });
93     }
94   }
95
96   function formatHeight(m) {
97     return I18n.t("javascripts.directions.distance_m", { distance: Math.round(m) });
98   }
99
100   function formatTime(s) {
101     var m = Math.round(s / 60);
102     var h = Math.floor(m / 60);
103     m -= h * 60;
104     return h + ":" + (m < 10 ? "0" : "") + m;
105   }
106
107   function findEngine(id) {
108     return engines.findIndex(function (engine) {
109       return engine.id === id;
110     });
111   }
112
113   function setEngine(index) {
114     chosenEngine = engines[index];
115     select.val(index);
116   }
117
118   function getRoute(fitRoute, reportErrors) {
119     // Cancel any route that is already in progress
120     if (routeRequest) routeRequest.abort();
121
122     // go fetch geocodes for any endpoints which have not already
123     // been geocoded.
124     for (var ep_i = 0; ep_i < 2; ++ep_i) {
125       var endpoint = endpoints[ep_i];
126       if (!endpoint.hasGeocode && !endpoint.awaitingGeocode) {
127         endpoint.getGeocode();
128       }
129     }
130     if (endpoints[0].awaitingGeocode || endpoints[1].awaitingGeocode) {
131       return;
132     }
133
134     var o = endpoints[0].latlng,
135         d = endpoints[1].latlng;
136
137     if (!o || !d) return;
138     $("header").addClass("closed");
139
140     var precision = OSM.zoomPrecision(map.getZoom());
141
142     OSM.router.replace("/directions?" + Qs.stringify({
143       engine: chosenEngine.id,
144       route: o.lat.toFixed(precision) + "," + o.lng.toFixed(precision) + ";" +
145              d.lat.toFixed(precision) + "," + d.lng.toFixed(precision)
146     }));
147
148     // copy loading item to sidebar and display it. we copy it, rather than
149     // just using it in-place and replacing it in case it has to be used
150     // again.
151     $("#sidebar_content").html($(".directions_form .loader_copy").html());
152     map.setSidebarOverlaid(false);
153
154     routeRequest = chosenEngine.getRoute([o, d], function (err, route) {
155       routeRequest = null;
156
157       if (err) {
158         map.removeLayer(polyline);
159
160         if (reportErrors) {
161           $("#sidebar_content").html("<div class=\"alert alert-danger\">" + I18n.t("javascripts.directions.errors.no_route") + "</div>");
162         }
163
164         return;
165       }
166
167       polyline
168         .setLatLngs(route.line)
169         .addTo(map);
170
171       if (fitRoute) {
172         map.fitBounds(polyline.getBounds().pad(0.05));
173       }
174
175       var distanceText = $("<p>").append(
176         I18n.t("javascripts.directions.distance") + ": " + formatDistance(route.distance) + ". " +
177         I18n.t("javascripts.directions.time") + ": " + formatTime(route.time) + ".");
178       if (typeof route.ascend !== "undefined" && typeof route.descend !== "undefined") {
179         distanceText.append(
180           $("<br>"),
181           I18n.t("javascripts.directions.ascend") + ": " + formatHeight(route.ascend) + ". " +
182           I18n.t("javascripts.directions.descend") + ": " + formatHeight(route.descend) + ".");
183       }
184
185       var turnByTurnTable = $("<table class='table table-hover table-sm mb-3'>")
186         .append($("<tbody>"));
187       var directionsCloseButton = $("<button type='button' class='btn-close'>")
188         .attr("aria-label", I18n.t("javascripts.close"));
189
190       $("#sidebar_content")
191         .empty()
192         .append(
193           $("<div class='d-flex'>").append(
194             $("<h2 class='flex-grow-1 text-break'>")
195               .text(I18n.t("javascripts.directions.directions")),
196             $("<div>").append(directionsCloseButton)),
197           distanceText,
198           turnByTurnTable
199         );
200
201       // Add each row
202       route.steps.forEach(function (step) {
203         var ll = step[0],
204             direction = step[1],
205             instruction = step[2],
206             dist = step[3],
207             lineseg = step[4];
208
209         if (dist < 5) {
210           dist = "";
211         } else if (dist < 200) {
212           dist = String(Math.round(dist / 10) * 10) + "m";
213         } else if (dist < 1500) {
214           dist = String(Math.round(dist / 100) * 100) + "m";
215         } else if (dist < 5000) {
216           dist = String(Math.round(dist / 100) / 10) + "km";
217         } else {
218           dist = String(Math.round(dist / 1000)) + "km";
219         }
220
221         var row = $("<tr class='turn'/>");
222         row.append("<td class='border-0'><div class='direction i" + direction + "'/></td> ");
223         row.append("<td>" + instruction);
224         row.append("<td class='distance text-body-secondary text-end'>" + dist);
225
226         row.on("click", function () {
227           popup
228             .setLatLng(ll)
229             .setContent("<p>" + instruction + "</p>")
230             .openOn(map);
231         });
232
233         row.hover(function () {
234           highlight
235             .setLatLngs(lineseg)
236             .addTo(map);
237         }, function () {
238           map.removeLayer(highlight);
239         });
240
241         turnByTurnTable.append(row);
242       });
243
244       $("#sidebar_content").append("<p class=\"text-center\">" +
245         I18n.t("javascripts.directions.instructions.courtesy", { link: chosenEngine.creditline }) +
246         "</p>");
247
248       directionsCloseButton.on("click", function () {
249         map.removeLayer(polyline);
250         $("#sidebar_content").html("");
251         map.setSidebarOverlaid(true);
252         // TODO: collapse width of sidebar back to previous
253       });
254     });
255   }
256
257   var chosenEngineIndex = findEngine("fossgis_osrm_car");
258   if (Cookies.get("_osm_directions_engine")) {
259     chosenEngineIndex = findEngine(Cookies.get("_osm_directions_engine"));
260   }
261   setEngine(chosenEngineIndex);
262
263   select.on("change", function (e) {
264     chosenEngine = engines[e.target.selectedIndex];
265     Cookies.set("_osm_directions_engine", chosenEngine.id, { secure: true, expires: expiry, path: "/", samesite: "lax" });
266     getRoute(true, true);
267   });
268
269   $(".directions_form").on("submit", function (e) {
270     e.preventDefault();
271     getRoute(true, true);
272   });
273
274   $(".routing_marker_column img").on("dragstart", function (e) {
275     var dt = e.originalEvent.dataTransfer;
276     dt.effectAllowed = "move";
277     var dragData = { type: $(this).data("type") };
278     dt.setData("text", JSON.stringify(dragData));
279     if (dt.setDragImage) {
280       var img = $("<img>").attr("src", $(e.originalEvent.target).attr("src"));
281       dt.setDragImage(img.get(0), 12, 21);
282     }
283   });
284
285   var page = {};
286
287   page.pushstate = page.popstate = function () {
288     $(".search_form").hide();
289     $(".directions_form").show();
290
291     $("#map").on("dragend dragover", function (e) {
292       e.preventDefault();
293     });
294
295     $("#map").on("drop", function (e) {
296       e.preventDefault();
297       var oe = e.originalEvent;
298       var dragData = JSON.parse(oe.dataTransfer.getData("text"));
299       var type = dragData.type;
300       var pt = L.DomEvent.getMousePosition(oe, map.getContainer()); // co-ordinates of the mouse pointer at present
301       pt.y += 20;
302       var ll = map.containerPointToLatLng(pt);
303       endpoints[type === "from" ? 0 : 1].setLatLng(ll);
304       getRoute(true, true);
305     });
306
307     var params = Qs.parse(location.search.substring(1)),
308         route = (params.route || "").split(";"),
309         from = route[0] && L.latLng(route[0].split(",")),
310         to = route[1] && L.latLng(route[1].split(","));
311
312     if (params.engine) {
313       var engineIndex = findEngine(params.engine);
314
315       if (engineIndex >= 0) {
316         setEngine(engineIndex);
317       }
318     }
319
320     endpoints[0].setValue(params.from || "", from);
321     endpoints[1].setValue(params.to || "", to);
322
323     map.setSidebarOverlaid(!from || !to);
324
325     getRoute(true, true);
326   };
327
328   page.load = function () {
329     page.pushstate();
330   };
331
332   page.unload = function () {
333     $(".search_form").show();
334     $(".directions_form").hide();
335     $("#map").off("dragend dragover drop");
336
337     map
338       .removeLayer(popup)
339       .removeLayer(polyline)
340       .removeLayer(endpoints[0].marker)
341       .removeLayer(endpoints[1].marker);
342   };
343
344   return page;
345 };
346
347 OSM.Directions.engines = [];
348
349 OSM.Directions.addEngine = function (engine, supportsHTTPS) {
350   if (document.location.protocol === "http:" || supportsHTTPS) {
351     OSM.Directions.engines.push(engine);
352   }
353 };