X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/30a39b35e55e0b83d3261720eecfa94ed769d6e3..4179fbbbeb3fa063e912e09d3ebfb4d011d770c2:/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 8d01bcd16..356de3477 100644 --- a/app/assets/javascripts/index/directions/graphhopper.js +++ b/app/assets/javascripts/index/directions/graphhopper.js @@ -19,7 +19,7 @@ function GraphHopperEngine(id, vehicleParam) { getRoute: function (points, callback) { // documentation // https://github.com/graphhopper/graphhopper/blob/master/docs/web/api-doc.md - var url = "https://graphhopper.com/api/1/route?" + var url = document.location.protocol + "//graphhopper.com/api/1/route?" + vehicleParam + "&locale=" + I18n.currentLocale() + "&key=LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn" @@ -70,5 +70,5 @@ function GraphHopperEngine(id, vehicleParam) { }; } -OSM.Directions.addEngine(GraphHopperEngine("graphhopper_bicycle", "vehicle=bike"), false); -OSM.Directions.addEngine(GraphHopperEngine("graphhopper_foot", "vehicle=foot"), false); +OSM.Directions.addEngine(GraphHopperEngine("graphhopper_bicycle", "vehicle=bike"), true); +OSM.Directions.addEngine(GraphHopperEngine("graphhopper_foot", "vehicle=foot"), true);