]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/routing_engines/mapquest_bicycle.js
add a credits line for each routing service
[rails.git] / app / assets / javascripts / routing_engines / mapquest_bicycle.js
index f74ccba151951c9032b5be80ea9c4dd7a8daec60..4cff366a604d43b4668e4c1a15f4bbda7b6e890e 100644 (file)
@@ -6,7 +6,8 @@
 // *** needs to give credit
 
 OSM.RoutingEngines.list.push({
-       name: 'Bicycle (MapQuest Open)',
+       name: "javascripts.directions.engines.mapquest_bike",
+       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">',
        draggable: false,
        _hints: {},
        MQ_SPRITE_MAP: {
@@ -36,6 +37,7 @@ OSM.RoutingEngines.list.push({
                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=");