]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/directions.js.erb
fix typo which prevented directions closebox from working
[rails.git] / app / assets / javascripts / index / directions.js.erb
1 //= require_self
2 //= require_tree ./directions_engines
3
4 OSM.Directions = function (map) {
5   var awaitingGeocode; // true if the user has requested a route, but we're waiting on a geocode result
6   var awaitingRoute;   // true if we've asked the engine for a route and are waiting to hear back
7   var dragging;        // true if the user is dragging a start/end point
8   var chosenEngine;
9
10   var popup = L.popup();
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 endpoints = [
25     Endpoint($("input[name='route_from']"), <%= asset_path('marker-green.png').to_json %>),
26     Endpoint($("input[name='route_to']"),   <%= asset_path('marker-red.png').to_json %>)
27   ];
28
29   function Endpoint(input, iconUrl) {
30     var endpoint = {};
31
32     endpoint.marker = L.marker([0, 0], {
33       icon: L.icon({
34         iconUrl: iconUrl,
35         iconSize: [25, 41],
36         iconAnchor: [12, 41],
37         popupAnchor: [1, -34],
38         shadowUrl: <%= asset_path('images/marker-shadow.png').to_json %>,
39         shadowSize: [41, 41]
40       }),
41       draggable: true
42     });
43
44     endpoint.marker.on('drag dragend', function (e) {
45       dragging = (e.type == 'drag');
46       if (dragging && !chosenEngine.draggable) return;
47       if (dragging && awaitingRoute) return;
48       endpoint.setLatLng(e.target.getLatLng());
49       if (map.hasLayer(polyline)) {
50         getRoute();
51       }
52     });
53
54     input.on("change", function (e) {
55       // make text the same in both text boxes
56       var value = e.target.value;
57       endpoint.setValue(value)
58       endpoint.getGeocode();
59     });
60
61     endpoint.setValue = function(value) {
62       endpoint.value = value;
63       input.val(value);
64     }
65
66     endpoint.getGeocode = function() {
67       // if no one has entered a value yet, then we can't geocode, so don't
68       // even try.
69       if (!endpoint.value) {
70         return;
71       }
72
73       endpoint.awaitingGeocode = true;
74
75       $.getJSON('<%= NOMINATIM_URL %>search?q=' + encodeURIComponent(endpoint.value) + '&format=json', function (json) {
76         endpoint.awaitingGeocode = false;
77         endpoint.hasGeocode = true;
78         if (json.length == 0) {
79           alert(I18n.t('javascripts.directions.errors.no_place'));
80           return;
81         }
82
83         input.val(json[0].display_name);
84
85         endpoint.latlng = L.latLng(json[0]);
86         endpoint.marker
87           .setLatLng(endpoint.latlng)
88           .addTo(map);
89
90         if (awaitingGeocode) {
91           awaitingGeocode = false;
92           getRoute();
93         }
94       });
95     }
96
97     endpoint.setLatLng = function (ll) {
98       var precision = OSM.zoomPrecision(map.getZoom());
99       input.val(ll.lat.toFixed(precision) + ", " + ll.lng.toFixed(precision));
100       endpoint.hasGeocode = true;
101       endpoint.latlng = ll;
102       endpoint.marker
103         .setLatLng(ll)
104         .addTo(map);
105     };
106
107     return endpoint;
108   }
109
110   $(".directions_form a.directions_close").on("click", function(e) {
111     e.preventDefault();
112     var route_from = endpoints[0].value;
113     if (route_from) {
114       OSM.router.route("/?query=" + encodeURIComponent(route_from) + OSM.formatHash(map));
115     } else {
116       OSM.router.route("/" + OSM.formatHash(map));
117     }
118   });
119
120   function formatDistance(m) {
121     if (m < 1000) {
122       return Math.round(m) + "m";
123     } else if (m < 10000) {
124       return (m / 1000.0).toFixed(1) + "km";
125     } else {
126       return Math.round(m / 1000) + "km";
127     }
128   }
129
130   function formatTime(s) {
131     var m = Math.round(s / 60);
132     var h = Math.floor(m / 60);
133     m -= h * 60;
134     return h + ":" + (m < 10 ? '0' : '') + m;
135   }
136
137   function setEngine(id) {
138     engines.forEach(function(engine, i) {
139       if (engine.id == id) {
140         chosenEngine = engine;
141         select.val(i);
142       }
143     });
144   }
145
146   function getRoute() {
147     // go fetch geocodes for any endpoints which have not already
148     // been geocoded.
149     for (var ep_i = 0; ep_i < 2; ++ep_i) {
150       var endpoint = endpoints[ep_i];
151       if (!endpoint.hasGeocode && !endpoint.awaitingGeocode) {
152         endpoint.getGeocode();
153         awaitingGeocode = true;
154       }
155     }
156     if (endpoints[0].awaitingGeocode || endpoints[1].awaitingGeocode) {
157       awaitingGeocode = true;
158       return;
159     }
160
161     var o = endpoints[0].latlng,
162         d = endpoints[1].latlng;
163
164     if (!o || !d) return;
165
166     var precision = OSM.zoomPrecision(map.getZoom());
167
168     OSM.router.replace("/directions?" + querystring.stringify({
169       engine: chosenEngine.id,
170       route: o.lat.toFixed(precision) + ',' + o.lng.toFixed(precision) + ';' +
171              d.lat.toFixed(precision) + ',' + d.lng.toFixed(precision)
172     }));
173
174     // copy loading item to sidebar and display it. we copy it, rather than
175     // just using it in-place and replacing it in case it has to be used
176     // again.
177     $('#sidebar_content').html($('.directions_form .loader_copy').html());
178     awaitingRoute = true;
179     map.setSidebarOverlaid(false);
180
181     chosenEngine.getRoute([o, d], function (err, route) {
182       awaitingRoute = false;
183
184       if (err) {
185         map.removeLayer(polyline);
186
187         if (!dragging) {
188           alert(I18n.t('javascripts.directions.errors.no_route'));
189         }
190
191         return;
192       }
193
194       polyline
195         .setLatLngs(route.line)
196         .addTo(map);
197
198       if (!dragging) {
199         map.fitBounds(polyline.getBounds().pad(0.05));
200       }
201
202       var html = '<h2><a class="geolink" href="#">' +
203         '<span class="icon close"></span></a>' + I18n.t('javascripts.directions.directions') +
204         '</h2><p id="routing_summary">' +
205         I18n.t('javascripts.directions.distance') + ': ' + formatDistance(route.distance) + '. ' +
206         I18n.t('javascripts.directions.time') + ': ' + formatTime(route.time) + '.</p>' +
207         '<table id="turnbyturn" />';
208
209       $('#sidebar_content')
210         .html(html);
211
212       // Add each row
213       var cumulative = 0;
214       route.steps.forEach(function (step) {
215         var ll        = step[0],
216           direction   = step[1],
217           instruction = step[2],
218           dist        = step[3],
219           lineseg     = step[4];
220
221         cumulative += dist;
222
223         if (dist < 5) {
224           dist = "";
225         } else if (dist < 200) {
226           dist = Math.round(dist / 10) * 10 + "m";
227         } else if (dist < 1500) {
228           dist = Math.round(dist / 100) * 100 + "m";
229         } else if (dist < 5000) {
230           dist = Math.round(dist / 100) / 10 + "km";
231         } else {
232           dist = Math.round(dist / 1000) + "km";
233         }
234
235         var row = $("<tr class='turn'/>");
236         row.append("<td><div class='direction i" + direction + "'/></td> ");
237         row.append("<td class='instruction'>" + instruction);
238         row.append("<td class='distance'>" + dist);
239
240         row.on('click', function () {
241           popup
242             .setLatLng(ll)
243             .setContent("<p>" + instruction + "</p>")
244             .openOn(map);
245         });
246
247         row.hover(function () {
248           highlight
249             .setLatLngs(lineseg)
250             .addTo(map);
251         }, function () {
252           map.removeLayer(highlight);
253         });
254
255         $('#turnbyturn').append(row);
256       });
257
258       $('#sidebar_content').append('<p id="routing_credit">' +
259         I18n.t('javascripts.directions.instructions.courtesy', {link: chosenEngine.creditline}) +
260         '</p>');
261
262       $('#sidebar_content a.geolink').on('click', function(e) {
263         e.preventDefault();
264         map.removeLayer(polyline);
265         $('#sidebar_content').html('');
266         map.setSidebarOverlaid(true);
267         // TODO: collapse width of sidebar back to previous
268       });
269     });
270   }
271
272   var engines = OSM.Directions.engines;
273
274   engines.sort(function (a, b) {
275     a = I18n.t('javascripts.directions.engines.' + a.id);
276     b = I18n.t('javascripts.directions.engines.' + b.id);
277     return a.localeCompare(b);
278   });
279
280   var select = $('select.routing_engines');
281
282   engines.forEach(function(engine, i) {
283     select.append("<option value='" + i + "'>" + I18n.t('javascripts.directions.engines.' + engine.id) + "</option>");
284   });
285
286   setEngine('osrm_car');
287
288   select.on("change", function (e) {
289     chosenEngine = engines[e.target.selectedIndex];
290     if (map.hasLayer(polyline)) {
291       getRoute();
292     }
293   });
294
295   $(".directions_form").on("submit", function(e) {
296     e.preventDefault();
297     $("header").addClass("closed");
298     getRoute();
299   });
300
301   $(".routing_marker").on('dragstart', function (e) {
302     e.originalEvent.dataTransfer.effectAllowed = 'move';
303     e.originalEvent.dataTransfer.setData('id', this.id);
304     var xo = e.originalEvent.clientX - $(e.target).offset().left;
305     var yo = e.originalEvent.clientY - $(e.target).offset().top;
306     e.originalEvent.dataTransfer.setData('offsetX', e.originalEvent.target.width / 2 - xo);
307     e.originalEvent.dataTransfer.setData('offsetY', e.originalEvent.target.height - yo);
308   });
309
310   var page = {};
311
312   page.pushstate = page.popstate = function() {
313     $(".search_form").hide();
314     $(".directions_form").show();
315
316     $("#map").on('dragend dragover', function (e) {
317       e.preventDefault();
318     });
319
320     $("#map").on('drop', function (e) {
321       e.preventDefault();
322       var oe = e.originalEvent;
323       var id = oe.dataTransfer.getData('id');
324       var pt = L.DomEvent.getMousePosition(oe, map.getContainer());  // co-ordinates of the mouse pointer at present
325       pt.x += Number(oe.dataTransfer.getData('offsetX'));
326       pt.y += Number(oe.dataTransfer.getData('offsetY'));
327       var ll = map.containerPointToLatLng(pt);
328       endpoints[id === 'marker_from' ? 0 : 1].setLatLng(ll);
329       getRoute();
330     });
331
332     var params = querystring.parse(location.search.substring(1)),
333       route = (params.route || '').split(';');
334
335     if (params.engine) {
336       setEngine(params.engine);
337     }
338
339     if (params.from) {
340       endpoints[0].setValue(params.from);
341     }
342
343     var o = route[0] && L.latLng(route[0].split(',')),
344         d = route[1] && L.latLng(route[1].split(','));
345
346     if (o) endpoints[0].setLatLng(o);
347     if (d) endpoints[1].setLatLng(d);
348
349     map.setSidebarOverlaid(!o || !d);
350
351     getRoute();
352   };
353
354   page.load = function() {
355     page.pushstate();
356   };
357
358   page.unload = function() {
359     $(".search_form").show();
360     $(".directions_form").hide();
361     $("#map").off('dragend dragover drop');
362
363     map
364       .removeLayer(popup)
365       .removeLayer(polyline)
366       .removeLayer(endpoints[0].marker)
367       .removeLayer(endpoints[1].marker);
368   };
369
370   return page;
371 };
372
373 OSM.Directions.engines = [];
374
375 OSM.Directions.addEngine = function (engine, supportsHTTPS) {
376   if (document.location.protocol == "http:" || supportsHTTPS) {
377     OSM.Directions.engines.push(engine);
378   }
379 };