]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/routing_engines/graphhopper_bicycle.js
add a credits line for each routing service
[rails.git] / app / assets / javascripts / routing_engines / graphhopper_bicycle.js
index 39c7bca595e9ccba42fef8b48a606f63fa9eeb46..bec855f88dd44e0f1b07f6cd21a537ddf18055ab 100644 (file)
@@ -1,16 +1,17 @@
 // GraphHopper bicycle engine
 
 OSM.RoutingEngines.list.push({    
-    name: 'Bicycle (GraphHopper)',
+    name: "javascripts.directions.engines.graphhopper_bike",
+    creditline: 'Directions courtesy of <a href="http://graphhopper.com/routing/" target="_blank">Graphhopper</a>',
     draggable: true,
     _hints: {},
-    getRoute: function(final, points) {
-        var url = "http://graphhopper.com/routing/api/route?vehicle=bike&locale=en";
+    getRoute: function(isFinal, points) {
+        var url = "http://graphhopper.com/routing/api/route?vehicle=bike&locale=" + I18n.currentLocale();
         for (var i = 0; i < points.length; i++) {
             var pair = points[i].join(',');
             url += "&point=" + pair;
         }
-        if (final)
+        if (isFinal)
             url += "&instructions=true";
         this.requestJSONP(url + "&type=jsonp&callback=");
     },