OSRM and Graphhopper support HTTPS

This commit is contained in:
Richard Fairhurst 2015-02-02 01:31:08 +00:00
parent 1f0884a34c
commit 1add511c52
2 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -91,4 +91,4 @@ function OSRMEngine() {
};
}
OSM.Directions.addEngine(OSRMEngine(), false);
OSM.Directions.addEngine(OSRMEngine(), true);