X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2898633e72e8aa2efbcd6012a936ebab5ab58a56..e459aa9cdd0fc6a971e93112d432c146f05df5fb:/app/assets/javascripts/index/directions/graphhopper.js?ds=sidebyside
diff --git a/app/assets/javascripts/index/directions/graphhopper.js b/app/assets/javascripts/index/directions/graphhopper.js
index 2462d1d30..11d600316 100644
--- a/app/assets/javascripts/index/directions/graphhopper.js
+++ b/app/assets/javascripts/index/directions/graphhopper.js
@@ -14,7 +14,7 @@ function GraphHopperEngine(id, vehicleType) {
return {
id: id,
- creditline: "Graphhopper",
+ creditline: "GraphHopper",
draggable: false,
getRoute: function (points, callback) {
@@ -23,13 +23,13 @@ function GraphHopperEngine(id, vehicleType) {
return $.ajax({
url: OSM.GRAPHHOPPER_URL,
data: {
- "vehicle": vehicleType,
- "locale": I18n.currentLocale(),
- "key": "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
- "elevation": false,
- "instructions": true,
- "turn_costs": true,
- "point": points.map(function (p) { return p.lat + "," + p.lng; })
+ vehicle: vehicleType,
+ locale: I18n.currentLocale(),
+ key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
+ elevation: false,
+ instructions: true,
+ turn_costs: vehicleType === "car",
+ point: points.map(function (p) { return p.lat + "," + p.lng; })
},
traditional: true,
dataType: "json",