]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/directions/osrm.js
Avoid relying on global state to detect when we are dragging
[rails.git] / app / assets / javascripts / index / directions / osrm.js
1 // OSRM car engine
2 // Doesn't yet support hints
3
4 function OSRMEngine() {
5   var cachedHints = [];
6
7   return {
8     id: "osrm_car",
9     creditline: '<a href="http://project-osrm.org/" target="_blank">OSRM</a>',
10     draggable: true,
11
12     _transformSteps: function(input_steps, line) {
13       var INSTRUCTION_TEMPLATE = {
14         'continue': 'javascripts.directions.instructions.continue',
15         'merge right': 'javascripts.directions.instructions.merge_right',
16         'merge left': 'javascripts.directions.instructions.merge_left',
17         'off ramp right': 'javascripts.directions.instructions.offramp_right',
18         'off ramp left': 'javascripts.directions.instructions.offramp_left',
19         'on ramp right': 'javascripts.directions.instructions.onramp_right',
20         'on ramp left': 'javascripts.directions.instructions.onramp_left',
21         'fork right': 'javascripts.directions.instructions.fork_right',
22         'fork left': 'javascripts.directions.instructions.fork_left',
23         'end of road right': 'javascripts.directions.instructions.endofroad_right',
24         'end of road left': 'javascripts.directions.instructions.endofroad_left',
25         'turn straight': 'javascripts.directions.instructions.continue',
26         'turn slight right': 'javascripts.directions.instructions.slight_right',
27         'turn right': 'javascripts.directions.instructions.turn_right',
28         'turn sharp right': 'javascripts.directions.instructions.sharp_right',
29         'turn uturn': 'javascripts.directions.instructions.uturn',
30         'turn sharp left': 'javascripts.directions.instructions.sharp_left',
31         'turn left': 'javascripts.directions.instructions.turn_left',
32         'turn slight left': 'javascripts.directions.instructions.slight_left',
33         'roundabout': 'javascripts.directions.instructions.roundabout',
34         'rotary': 'javascripts.directions.instructions.roundabout',
35         'depart': 'javascripts.directions.instructions.start',
36         'arrive': 'javascripts.directions.instructions.destination',
37       };
38       var ICON_MAP = {
39         'continue': 0,
40         'merge right': 21,
41         'merge left': 20,
42         'off ramp right': 24,
43         'off ramp left': 25,
44         'on ramp right': 2,
45         'on ramp left': 6,
46         'fork right': 18,
47         'fork left': 19,
48         'end of road right': 22,
49         'end of road left': 23,
50         'turn straight': 0,
51         'turn slight right': 1,
52         'turn right': 2,
53         'turn sharp right': 3,
54         'turn uturn': 4,
55         'turn slight left': 5,
56         'turn left': 6,
57         'turn sharp left': 7,
58         'roundabout': 10,
59         'rotary': 10,
60         'depart': 8,
61         'arrive': 14
62       };
63       var transformed_steps = input_steps.map(function(step, idx) {
64         var maneuver_id;
65
66         // special case handling
67         switch (step.maneuver.type) {
68           case 'on ramp':
69           case 'off ramp':
70           case 'merge':
71           case 'end of road':
72           case 'fork':
73             maneuver_id = step.maneuver.type + ' ' + (step.maneuver.modifier.indexOf('left') >= 0 ? 'left' : 'right');
74             break;
75           case 'depart':
76           case 'arrive':
77           case 'roundabout':
78           case 'rotary':
79             maneuver_id = step.maneuver.type;
80             break;
81           case 'roundabout turn':
82           case 'turn':
83             maneuver_id = "turn " + step.maneuver.modifier;
84             break;
85           // for unknown types the fallback is turn
86           default:
87             maneuver_id = "turn " + step.maneuver.modifier;
88             break;
89         }
90         var template = INSTRUCTION_TEMPLATE[maneuver_id];
91
92         // convert lat,lng pairs to LatLng objects
93         var step_geometry = L.PolylineUtil.decode(step.geometry, { precision: 5 }).map(function(a) { return L.latLng(a); }) ;
94         // append step_geometry on line
95         Array.prototype.push.apply(line, step_geometry);
96
97         var instText = "<b>" + (idx + 1) + ".</b> ";
98         var destinations = "<b>" + step.destinations + "</b>";
99         var namedRoad = true;
100         var name;
101
102         if (step.name && step.ref) {
103           name = "<b>" + step.name + " (" + step.ref + ")</b>";
104         } else if (step.name) {
105           name = "<b>" + step.name + "</b>";
106         } else if (step.ref) {
107           name = "<b>" + step.ref + "</b>";
108         } else {
109           name = I18n.t('javascripts.directions.instructions.unnamed');
110           namedRoad = false;
111         }
112
113         if (step.maneuver.type.match(/rotary|roundabout/)) {
114           instText += I18n.t(template + '_with_exit', { exit: step.maneuver.exit, name: name } );
115         } else if (step.maneuver.type.match(/on ramp|off ramp/)) {
116           if (step.destinations) {
117             if (namedRoad) {
118               instText += I18n.t(template + '_with_name_and_directions', { name: name, directions: destinations } );
119             } else {
120               instText += I18n.t(template + '_with_directions', { directions: destinations } );
121             }
122           } else {
123             if (namedRoad) {
124               instText += I18n.t(template + '_without_exit', { name: name });
125             } else {
126               instText += I18n.t(template + '_without_directions');
127             }
128           }
129         } else {
130           instText += I18n.t(template + '_without_exit', { name: name });
131         }
132         return [[step.maneuver.location[1], step.maneuver.location[0]], ICON_MAP[maneuver_id], instText, step.distance, step_geometry];
133       });
134
135       return transformed_steps;
136     },
137
138     getRoute: function (points, callback) {
139
140       var params = [
141         { name: "overview", value: "false" },
142         { name: "geometries", value: "polyline" },
143         { name: "steps", value: true }
144       ];
145
146
147       if (cachedHints.length === points.length) {
148         params.push({name: "hints", value: cachedHints.join(";")});
149       } else {
150         // invalidate cache
151         cachedHints = [];
152       }
153
154       var encoded_coords = points.map(function(p) {
155         return p.lng + ',' + p.lat;
156       }).join(';');
157
158       var req_url = OSM.OSRM_URL + encoded_coords;
159
160       var onResponse = function (data) {
161         if (data.code !== 'Ok')
162           return callback(true);
163
164         cachedHints = data.waypoints.map(function(wp) {
165           return wp.hint;
166         });
167
168         var line = [];
169         var transformLeg = function (leg) {
170           return this._transformSteps(leg.steps, line);
171         };
172
173         var steps = [].concat.apply([], data.routes[0].legs.map(transformLeg.bind(this)));
174
175         callback(false, {
176           line: line,
177           steps: steps,
178           distance: data.routes[0].distance,
179           time: data.routes[0].duration
180         });
181       };
182
183       return $.ajax({
184         url: req_url,
185         data: params,
186         dataType: "json",
187         success: onResponse.bind(this),
188         error: function () {
189           callback(true);
190         }
191       });
192     }
193   };
194 }
195
196 OSM.Directions.addEngine(new OSRMEngine(), true);