X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7986576b0ebe2567b494256c9cf6e88b6c9d6338..ae00fa84c8f981e909c61ab31b6115bb96e859cc:/app/assets/javascripts/index/directions/graphhopper.js diff --git a/app/assets/javascripts/index/directions/graphhopper.js b/app/assets/javascripts/index/directions/graphhopper.js index 829eb54a0..e72f6d75f 100644 --- a/app/assets/javascripts/index/directions/graphhopper.js +++ b/app/assets/javascripts/index/directions/graphhopper.js @@ -9,12 +9,17 @@ function GraphHopperEngine(id, vehicleType) { "3": 3, // sharp right "4": 14, // finish reached "5": 14, // via reached - "6": 10 // roundabout + "6": 10, // roundabout + "-7": 19, // keep left + "7": 18, // keep right + "-98": 4, // unknown direction u-turn + "-8": 4, // left u-turn + "8": 4 // right u-turn }; return { id: id, - creditline: "Graphhopper", + creditline: "GraphHopper", draggable: false, getRoute: function (points, callback) { @@ -28,7 +33,7 @@ function GraphHopperEngine(id, vehicleType) { key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn", elevation: false, instructions: true, - turn_costs: true, + turn_costs: vehicleType === "car", point: points.map(function (p) { return p.lat + "," + p.lng; }) }, traditional: true,