2 // http://developer.mapquest.com/web/products/open/directions-service
3 // http://open.mapquestapi.com/directions/
4 // https://github.com/apmon/openstreetmap-website/blob/21edc353a4558006f0ce23f5ec3930be6a7d4c8b/app/controllers/routing_controller.rb#L153
6 function MapQuestEngine(id, vehicleParam) {
20 12: 2, // right on-ramp
21 13: 8, // left on-ramp
22 14: 2, // right off-ramp
23 15: 8, // left off-ramp
26 18: 1 // straight fork
31 creditline: '<a href="http://www.mapquest.com/" target="_blank">MapQuest</a> <img src="' + document.location.protocol + '//developer.mapquest.com/content/osm/mq_logo.png">',
34 getRoute: function (points, callback) {
35 var url = document.location.protocol + "//open.mapquestapi.com/directions/v2/route?key=Fmjtd%7Cluur290anu%2Crl%3Do5-908a0y";
37 var to = points[points.length - 1];
38 url += "&from=" + from.lat + ',' + from.lng;
39 url += "&to=" + to.lat + ',' + to.lng;
40 url += "&" + vehicleParam;
41 //url+="&locale=" + I18n.currentLocale(); //Doesn't actually work. MapQuest requires full locale e.g. "de_DE", but I18n may only provides language, e.g. "de"
42 url += "&manMaps=false";
43 url += "&shapeFormat=raw&generalize=0&unit=k";
47 success: function (data) {
48 if (data.info.statuscode !== 0)
49 return callback(true);
53 var shape = data.route.shape.shapePoints;
54 for (i = 0; i < shape.length; i += 2) {
55 line.push(L.latLng(shape[i], shape[i + 1]));
58 // data.route.shape.maneuverIndexes links turns to polyline positions
59 // data.route.legs[0].maneuvers is list of turns
61 var mq = data.route.legs[0].maneuvers;
62 for (i = 0; i < mq.length; i++) {
65 var linesegstart, linesegend, lineseg;
66 linesegstart = data.route.shape.maneuverIndexes[i];
67 if (i === mq.length - 1) {
69 linesegend = linesegstart + 1;
71 d = MQ_SPRITE_MAP[s.turnType];
72 linesegend = data.route.shape.maneuverIndexes[i + 1] + 1;
75 for (var j = linesegstart; j < linesegend; j++) {
76 lineseg.push(L.latLng(data.route.shape.shapePoints[j * 2], data.route.shape.shapePoints[j * 2 + 1]));
78 steps.push([L.latLng(s.startPoint.lat, s.startPoint.lng), d, s.narrative, s.distance * 1000, lineseg]);
84 distance: data.route.distance * 1000,
93 OSM.Directions.addEngine(new MapQuestEngine("mapquest_bicycle", "routeType=bicycle"), true);
94 OSM.Directions.addEngine(new MapQuestEngine("mapquest_foot", "routeType=pedestrian"), true);
95 OSM.Directions.addEngine(new MapQuestEngine("mapquest_car", "routeType=fastest"), true);