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 MapQuestEngine = function(vehicleName, vehicleParam, locale) {
7 this.vehicleName = vehicleName;
8 this.vehicleParam = vehicleParam;
14 MapQuestEngine.prototype.createConfig = function() {
17 name: "javascripts.directions.engines.mapquest_"+this.vehicleName.toLowerCase(),
18 creditline: 'Directions courtesy of <a href="http://www.mapquest.com/" target="_blank">MapQuest</a> <img src="http://developer.mapquest.com/content/osm/mq_logo.png">',
34 12: 2, // right on-ramp
35 13: 8, // left on-ramp
36 14: 2, // right off-ramp
37 15: 8, // left off-ramp
40 18: 1 // straight fork
42 getRoute: function(isFinal,points) {
43 var url="http://open.mapquestapi.com/directions/v2/route?key=Fmjtd%7Cluur290anu%2Crl%3Do5-908a0y";
44 var from=points[0]; var to=points[points.length-1];
45 url+="&from="+from.join(',');
46 url+="&to="+to.join(',');
47 url+="&"+that.vehicleParam;
48 //url+="&locale=" + I18n.currentLocale(); //Doesn't actually work. MapQuest requires full locale e.g. "de_DE", but I18n only provides language, e.g. "de"
49 url+="&manMaps=false";
50 url+="&shapeFormat=raw&generalize=0&unit=k";
51 this.requestCORS(url);
53 gotRoute: function(router,data) {
54 if (data.info.statuscode!=0) return false;
57 var shape=data.route.shape.shapePoints;
58 for (var i=0; i<shape.length; i+=2) {
59 poly.push(L.latLng(shape[i],shape[i+1]));
61 router.setPolyline(poly);
63 // data.shape.maneuverIndexes links turns to polyline positions
64 // data.legs[0].maneuvers is list of turns
66 var mq=data.route.legs[0].maneuvers;
67 for (var i=0; i<mq.length; i++) {
69 var d=(i==mq.length-1) ? 15: this.MQ_SPRITE_MAP[s.turnType];
70 steps.push([L.latLng(s.startPoint.lat, s.startPoint.lng), d, s.narrative, s.distance*1000]);
72 router.setItinerary( { steps: steps, distance: data.route.distance*1000, time: data.route['time'] });
78 OSM.RoutingEngines.list.push(new MapQuestEngine("Bicycle", "routeType=bicycle").createConfig());
79 OSM.RoutingEngines.list.push(new MapQuestEngine("Foot", "routeType=pedestrian").createConfig());
80 OSM.RoutingEngines.list.push(new MapQuestEngine("Car", "routeType=fastest").createConfig());
81 // can be: routeType=fastest|shortest|pedestrian|multimodal|bicycle