2 //= require_tree ./directions
3 //= require querystring
5 OSM.Directions = function (map) {
6 var querystring = require("querystring-component");
8 var awaitingGeocode; // true if the user has requested a route, but we're waiting on a geocode result
9 var awaitingRoute; // true if we've asked the engine for a route and are waiting to hear back
12 var popup = L.popup({ autoPanPadding: [100, 100] });
14 var polyline = L.polyline([], {
20 var highlight = L.polyline([], {
27 Endpoint($("input[name='route_from']"), OSM.MARKER_GREEN),
28 Endpoint($("input[name='route_to']"), OSM.MARKER_RED)
31 var expiry = new Date();
32 expiry.setYear(expiry.getFullYear() + 10);
34 var engines = OSM.Directions.engines;
36 engines.sort(function (a, b) {
37 var localised_a = I18n.t("javascripts.directions.engines." + a.id),
38 localised_b = I18n.t("javascripts.directions.engines." + b.id);
39 return localised_a.localeCompare(localised_b);
42 var select = $("select.routing_engines");
44 engines.forEach(function (engine, i) {
45 select.append("<option value='" + i + "'>" + I18n.t("javascripts.directions.engines." + engine.id) + "</option>");
48 function Endpoint(input, iconUrl) {
51 endpoint.marker = L.marker([0, 0], {
56 popupAnchor: [1, -34],
57 shadowUrl: OSM.MARKER_SHADOW,
64 endpoint.marker.on("drag dragend", function (e) {
65 var dragging = (e.type === "drag");
66 if (dragging && !chosenEngine.draggable) return;
67 if (dragging && awaitingRoute) return;
68 endpoint.setLatLng(e.target.getLatLng());
69 if (map.hasLayer(polyline)) {
70 getRoute(false, !dragging);
74 input.on("keydown", function () {
75 input.removeClass("error");
78 input.on("change", function (e) {
79 awaitingGeocode = true;
81 // make text the same in both text boxes
82 var value = e.target.value;
83 endpoint.setValue(value);
86 endpoint.setValue = function (value, latlng) {
87 endpoint.value = value;
88 delete endpoint.latlng;
89 input.removeClass("error");
93 endpoint.setLatLng(latlng);
95 endpoint.getGeocode();
99 endpoint.getGeocode = function () {
100 // if no one has entered a value yet, then we can't geocode, so don't
102 if (!endpoint.value) {
106 endpoint.awaitingGeocode = true;
108 var viewbox = map.getBounds().toBBoxString(); // <sw lon>,<sw lat>,<ne lon>,<ne lat>
110 $.getJSON(OSM.NOMINATIM_URL + "search?q=" + encodeURIComponent(endpoint.value) + "&format=json&viewbox=" + viewbox, function (json) {
111 endpoint.awaitingGeocode = false;
112 endpoint.hasGeocode = true;
113 if (json.length === 0) {
114 input.addClass("error");
115 alert(I18n.t("javascripts.directions.errors.no_place", { place: endpoint.value }));
119 endpoint.setLatLng(L.latLng(json[0]));
121 input.val(json[0].display_name);
123 if (awaitingGeocode) {
124 awaitingGeocode = false;
125 getRoute(true, true);
130 endpoint.setLatLng = function (ll) {
131 var precision = OSM.zoomPrecision(map.getZoom());
132 input.val(ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision));
133 endpoint.hasGeocode = true;
134 endpoint.latlng = ll;
143 $(".directions_form .reverse_directions").on("click", function () {
144 var coordFrom = endpoints[0].latlng,
145 coordTo = endpoints[1].latlng,
149 routeFrom = coordFrom.lat + "," + coordFrom.lng;
152 routeTo = coordTo.lat + "," + coordTo.lng;
155 OSM.router.route("/directions?" + querystring.stringify({
156 from: $("#route_to").val(),
157 to: $("#route_from").val(),
158 route: routeTo + ";" + routeFrom
162 $(".directions_form .close").on("click", function (e) {
164 var route_from = endpoints[0].value;
166 OSM.router.route("/?query=" + encodeURIComponent(route_from) + OSM.formatHash(map));
168 OSM.router.route("/" + OSM.formatHash(map));
172 function formatDistance(m) {
174 return Math.round(m) + "m";
175 } else if (m < 10000) {
176 return (m / 1000.0).toFixed(1) + "km";
178 return Math.round(m / 1000) + "km";
182 function formatTime(s) {
183 var m = Math.round(s / 60);
184 var h = Math.floor(m / 60);
186 return h + ":" + (m < 10 ? "0" : "") + m;
189 function findEngine(id) {
190 return engines.findIndex(function (engine) {
191 return engine.id === id;
195 function setEngine(index) {
196 chosenEngine = engines[index];
200 function getRoute(fitRoute, reportErrors) {
201 // Cancel any route that is already in progress
202 if (awaitingRoute) awaitingRoute.abort();
204 // go fetch geocodes for any endpoints which have not already
206 for (var ep_i = 0; ep_i < 2; ++ep_i) {
207 var endpoint = endpoints[ep_i];
208 if (!endpoint.hasGeocode && !endpoint.awaitingGeocode) {
209 endpoint.getGeocode();
210 awaitingGeocode = true;
213 if (endpoints[0].awaitingGeocode || endpoints[1].awaitingGeocode) {
214 awaitingGeocode = true;
218 var o = endpoints[0].latlng,
219 d = endpoints[1].latlng;
221 if (!o || !d) return;
222 $("header").addClass("closed");
224 var precision = OSM.zoomPrecision(map.getZoom());
226 OSM.router.replace("/directions?" + querystring.stringify({
227 engine: chosenEngine.id,
228 route: o.lat.toFixed(precision) + "," + o.lng.toFixed(precision) + ";" +
229 d.lat.toFixed(precision) + "," + d.lng.toFixed(precision)
232 // copy loading item to sidebar and display it. we copy it, rather than
233 // just using it in-place and replacing it in case it has to be used
235 $("#sidebar_content").html($(".directions_form .loader_copy").html());
236 map.setSidebarOverlaid(false);
238 awaitingRoute = chosenEngine.getRoute([o, d], function (err, route) {
239 awaitingRoute = null;
242 map.removeLayer(polyline);
245 $("#sidebar_content").html("<p class=\"search_results_error\">" + I18n.t("javascripts.directions.errors.no_route") + "</p>");
252 .setLatLngs(route.line)
256 map.fitBounds(polyline.getBounds().pad(0.05));
259 var html = "<h2><a class=\"geolink\" href=\"#\">" +
260 "<span class=\"icon close\"></span></a>" + I18n.t("javascripts.directions.directions") +
261 "</h2><p id=\"routing_summary\">" +
262 I18n.t("javascripts.directions.distance") + ": " + formatDistance(route.distance) + ". " +
263 I18n.t("javascripts.directions.time") + ": " + formatTime(route.time) + ".";
264 if (typeof route.ascend !== "undefined" && typeof route.descend !== "undefined") {
266 I18n.t("javascripts.directions.ascend") + ": " + Math.round(route.ascend) + "m. " +
267 I18n.t("javascripts.directions.descend") + ": " + Math.round(route.descend) + "m.";
269 html += "</p><table id=\"turnbyturn\" />";
271 $("#sidebar_content")
275 route.steps.forEach(function (step) {
278 instruction = step[2],
284 } else if (dist < 200) {
285 dist = String(Math.round(dist / 10) * 10) + "m";
286 } else if (dist < 1500) {
287 dist = String(Math.round(dist / 100) * 100) + "m";
288 } else if (dist < 5000) {
289 dist = String(Math.round(dist / 100) / 10) + "km";
291 dist = String(Math.round(dist / 1000)) + "km";
294 var row = $("<tr class='turn'/>");
295 row.append("<td><div class='direction i" + direction + "'/></td> ");
296 row.append("<td class='instruction'>" + instruction);
297 row.append("<td class='distance'>" + dist);
299 row.on("click", function () {
302 .setContent("<p>" + instruction + "</p>")
306 row.hover(function () {
311 map.removeLayer(highlight);
314 $("#turnbyturn").append(row);
317 $("#sidebar_content").append("<p id=\"routing_credit\">" +
318 I18n.t("javascripts.directions.instructions.courtesy", { link: chosenEngine.creditline }) +
321 $("#sidebar_content a.geolink").on("click", function (e) {
323 map.removeLayer(polyline);
324 $("#sidebar_content").html("");
325 map.setSidebarOverlaid(true);
326 // TODO: collapse width of sidebar back to previous
331 var chosenEngineIndex = findEngine("fossgis_osrm_car");
332 if ($.cookie("_osm_directions_engine")) {
333 chosenEngineIndex = findEngine($.cookie("_osm_directions_engine"));
335 setEngine(chosenEngineIndex);
337 select.on("change", function (e) {
338 chosenEngine = engines[e.target.selectedIndex];
339 $.cookie("_osm_directions_engine", chosenEngine.id, { expires: expiry, path: "/" });
340 if (map.hasLayer(polyline)) {
341 getRoute(true, true);
345 $(".directions_form").on("submit", function (e) {
347 getRoute(true, true);
350 $(".routing_marker").on("dragstart", function (e) {
351 var dt = e.originalEvent.dataTransfer;
352 dt.effectAllowed = "move";
353 var dragData = { type: $(this).data("type") };
354 dt.setData("text", JSON.stringify(dragData));
355 if (dt.setDragImage) {
356 var img = $("<img>").attr("src", $(e.originalEvent.target).attr("src"));
357 dt.setDragImage(img.get(0), 12, 21);
363 page.pushstate = page.popstate = function () {
364 $(".search_form").hide();
365 $(".directions_form").show();
367 $("#map").on("dragend dragover", function (e) {
371 $("#map").on("drop", function (e) {
373 var oe = e.originalEvent;
374 var dragData = JSON.parse(oe.dataTransfer.getData("text"));
375 var type = dragData.type;
376 var pt = L.DomEvent.getMousePosition(oe, map.getContainer()); // co-ordinates of the mouse pointer at present
378 var ll = map.containerPointToLatLng(pt);
379 endpoints[type === "from" ? 0 : 1].setLatLng(ll);
380 getRoute(true, true);
383 var params = querystring.parse(location.search.substring(1)),
384 route = (params.route || "").split(";"),
385 from = route[0] && L.latLng(route[0].split(",")),
386 to = route[1] && L.latLng(route[1].split(","));
389 var engineIndex = findEngine(params.engine);
391 if (engineIndex >= 0) {
392 setEngine(engineIndex);
396 endpoints[0].setValue(params.from || "", from);
397 endpoints[1].setValue(params.to || "", to);
399 map.setSidebarOverlaid(!from || !to);
401 getRoute(true, true);
404 page.load = function () {
408 page.unload = function () {
409 $(".search_form").show();
410 $(".directions_form").hide();
411 $("#map").off("dragend dragover drop");
415 .removeLayer(polyline)
416 .removeLayer(endpoints[0].marker)
417 .removeLayer(endpoints[1].marker);
423 OSM.Directions.engines = [];
425 OSM.Directions.addEngine = function (engine, supportsHTTPS) {
426 if (document.location.protocol === "http:" || supportsHTTPS) {
427 OSM.Directions.engines.push(engine);