2 // Doesn't yet support hints
4 function OSRMEngine() {
9 creditline: '<a href="http://project-osrm.org/" target="_blank">OSRM</a>',
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 'exit roundabout': 'javascripts.directions.instructions.exit_roundabout',
36 'exit rotary': 'javascripts.directions.instructions.exit_roundabout',
37 'depart': 'javascripts.directions.instructions.start',
38 'arrive': 'javascripts.directions.instructions.destination',
50 'end of road right': 22,
51 'end of road left': 23,
53 'turn slight right': 1,
55 'turn sharp right': 3,
57 'turn slight left': 5,
62 'exit roundabout': 10,
67 var numToWord = function(num) {
68 return ["first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth", "ninth", "tenth"][num-1];
70 var transformed_steps = input_steps.map(function(step, idx) {
73 // special case handling
74 switch (step.maneuver.type) {
80 maneuver_id = step.maneuver.type + ' ' + (step.maneuver.modifier.indexOf('left') >= 0 ? 'left' : 'right');
86 case 'exit roundabout':
88 maneuver_id = step.maneuver.type;
90 case 'roundabout turn':
92 maneuver_id = "turn " + step.maneuver.modifier;
94 // for unknown types the fallback is turn
96 maneuver_id = "turn " + step.maneuver.modifier;
99 var template = INSTRUCTION_TEMPLATE[maneuver_id];
101 // convert lat,lng pairs to LatLng objects
102 var step_geometry = L.PolylineUtil.decode(step.geometry, { precision: 5 }).map(function(a) { return L.latLng(a); }) ;
103 // append step_geometry on line
104 Array.prototype.push.apply(line, step_geometry);
106 var instText = "<b>" + (idx + 1) + ".</b> ";
107 var destinations = "<b>" + step.destinations + "</b>";
108 var namedRoad = true;
111 if (step.name && step.ref) {
112 name = "<b>" + step.name + " (" + step.ref + ")</b>";
113 } else if (step.name) {
114 name = "<b>" + step.name + "</b>";
115 } else if (step.ref) {
116 name = "<b>" + step.ref + "</b>";
118 name = I18n.t('javascripts.directions.instructions.unnamed');
122 if (step.maneuver.type.match(/^exit (rotary|roundabout)$/)) {
123 instText += I18n.t(template, { name: name });
124 } else if (step.maneuver.type.match(/^(rotary|roundabout)$/)) {
125 if (step.maneuver.exit) {
126 if (step.maneuver.exit <= 10) {
127 instText += I18n.t(template + '_with_exit_ordinal', { exit: I18n.t('javascripts.directions.instructions.exit_counts.' + numToWord(step.maneuver.exit)), name: name });
129 instText += I18n.t(template + '_with_exit', { exit: step.maneuver.exit, name: name });
132 instText += I18n.t(template + '_without_exit', { name: name });
134 } else if (step.maneuver.type.match(/^(on ramp|off ramp)$/)) {
136 if (step.exits && step.maneuver.type.match(/^off ramp$/)) params.exit = step.exits;
137 if (step.destinations) params.directions = destinations;
138 if (namedRoad) params.directions = name;
139 if (Object.keys(params).length > 0) {
140 template = template + "_with_" + Object.keys(params).join("_");
142 instText += I18n.t(template, params);
144 instText += I18n.t(template + '_without_exit', { name: name });
146 return [[step.maneuver.location[1], step.maneuver.location[0]], ICON_MAP[maneuver_id], instText, step.distance, step_geometry];
149 return transformed_steps;
152 getRoute: function (points, callback) {
155 { name: "overview", value: "false" },
156 { name: "geometries", value: "polyline" },
157 { name: "steps", value: true }
161 if (cachedHints.length === points.length) {
162 params.push({name: "hints", value: cachedHints.join(";")});
168 var encoded_coords = points.map(function(p) {
169 return p.lng + ',' + p.lat;
172 var req_url = OSM.OSRM_URL + encoded_coords;
174 var onResponse = function (data) {
175 if (data.code !== 'Ok')
176 return callback(true);
178 cachedHints = data.waypoints.map(function(wp) {
183 var transformLeg = function (leg) {
184 return this._transformSteps(leg.steps, line);
187 var steps = [].concat.apply([], data.routes[0].legs.map(transformLeg.bind(this)));
192 distance: data.routes[0].distance,
193 time: data.routes[0].duration
201 success: onResponse.bind(this),
210 OSM.Directions.addEngine(new OSRMEngine(), true);