(function () {
function GraphHopperEngine(modeId, vehicleType) {
const GH_INSTR_MAP = {
"-3": 7, // sharp left
"-2": 6, // left
"-1": 5, // slight left
"0": 0, // straight
"1": 1, // slight right
"2": 2, // right
"3": 3, // sharp right
"4": 14, // finish reached
"5": 14, // via reached
"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
};
function _processDirections(path) {
const line = L.PolylineUtil.decode(path.points);
const steps = path.instructions.map(function (instr, i) {
const num = `${i + 1}. `;
const lineseg = line
.slice(instr.interval[0], instr.interval[1] + 1)
.map(([lat, lng]) => ({ lat, lng }));
return [
lineseg[0],
GH_INSTR_MAP[instr.sign],
num + instr.text,
instr.distance,
lineseg
]; // TODO does graphhopper map instructions onto line indices?
});
steps.at(-1)[1] = 14;
return {
line: line,
steps: steps,
distance: path.distance,
time: path.time / 1000,
ascend: path.ascend,
descend: path.descend
};
}
return {
mode: modeId,
provider: "graphhopper",
creditline: "GraphHopper",
draggable: false,
getRoute: function (points, signal) {
// GraphHopper Directions API documentation
// https://graphhopper.com/api/1/docs/routing/
const query = new URLSearchParams({
vehicle: vehicleType,
locale: I18n.currentLocale(),
key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
elevation: false,
instructions: true,
turn_costs: vehicleType === "car"
});
points.forEach(p => query.append("point", p.lat + "," + p.lng));
return fetch(OSM.GRAPHHOPPER_URL + "?" + query, { signal })
.then(response => response.json())
.then(({ paths }) => {
if (!paths || paths.length === 0) throw new Error();
return _processDirections(paths[0]);
});
}
};
}
OSM.Directions.addEngine(new GraphHopperEngine("car", "car"), true);
OSM.Directions.addEngine(new GraphHopperEngine("bicycle", "bike"), true);
OSM.Directions.addEngine(new GraphHopperEngine("foot", "foot"), true);
}());