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 // *** needs to give credit
8 OSM.RoutingEngines.list.push({
9 name: 'Bicycle (MapQuest Open)',
25 12: 2, // right on-ramp
26 13: 8, // left on-ramp
27 14: 2, // right off-ramp
28 15: 8, // left off-ramp
31 18: 1 // straight fork
33 getRoute: function(final,points) {
34 var url="http://open.mapquestapi.com/directions/v2/route?key=Fmjtd%7Cluur290anu%2Crl%3Do5-908a0y";
35 var from=points[0]; var to=points[points.length-1];
36 url+="&from="+from.join(',');
37 url+="&to="+to.join(',');
38 url+="&routeType=bicycle";
39 url+="&manMaps=false";
40 url+="&shapeFormat=raw&generalize=0";
41 this.requestJSONP(url+"&callback=");
43 gotRoute: function(router,data) {
44 // *** what if no route?
47 var shape=data.route.shape.shapePoints;
48 for (var i=0; i<shape.length; i+=2) {
49 poly.push(L.latLng(shape[i],shape[i+1]));
51 router.setPolyline(poly);
53 // data.shape.maneuverIndexes links turns to polyline positions
54 // data.legs[0].maneuvers is list of turns
56 var mq=data.route.legs[0].maneuvers;
57 for (var i=0; i<mq.length; i++) {
59 var d=(i==mq.length-1) ? 15: this.MQ_SPRITE_MAP[s.turnType];
60 steps.push([L.latLng(s.startPoint.lat, s.startPoint.lng), d, s.narrative, s.distance*1000]);
62 router.setItinerary( { steps: steps });