]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/routing_engines/mapquest_bicycle.js
Merge pull request #6 from apmon/jsroute
[rails.git] / app / assets / javascripts / routing_engines / mapquest_bicycle.js
index 5dfe13234954e5957e960b341938dcc4cfa1720b..b080969558400c03fd2d012a7d86b0697d65daed 100644 (file)
@@ -6,8 +6,8 @@
 // *** needs to give credit
 
 OSM.RoutingEngines.list.push({
-       name: 'Bicycle (MapQuest Open)',
-       draggable: true,
+       name: "javascripts.directions.engines.mapquest_bike",
+       draggable: false,
        _hints: {},
        MQ_SPRITE_MAP: {
                0: 1, // straight
@@ -30,12 +30,13 @@ OSM.RoutingEngines.list.push({
                17: 8, // left fork
                18: 1  // straight fork
        },
-       getRoute: function(final,points) {
+       getRoute: function(isFinal,points) {
                var url="http://open.mapquestapi.com/directions/v2/route?key=Fmjtd%7Cluur290anu%2Crl%3Do5-908a0y";
                var from=points[0]; var to=points[points.length-1];
                url+="&from="+from.join(',');
                url+="&to="+to.join(',');
                url+="&routeType=bicycle";
+        //url+="&locale=" + I18n.currentLocale(); //Doesn't actually work. MapQuest requires full locale e.g. "de_DE", but I18n only provides language, e.g. "de"
                url+="&manMaps=false";
                url+="&shapeFormat=raw&generalize=0";
                this.requestJSONP(url+"&callback=");
@@ -52,7 +53,6 @@ OSM.RoutingEngines.list.push({
 
                // data.shape.maneuverIndexes links turns to polyline positions
                // data.legs[0].maneuvers is list of turns
-               console.log(data);
                var steps=[];
                var mq=data.route.legs[0].maneuvers;
                for (var i=0; i<mq.length; i++) {