2 function GraphHopperEngine(modeId, vehicleType) {
11 "4": "destination", // finish reached
12 "5": "destination", // via reached
16 "-98": "u-turn-left", // unknown direction u-turn
17 "-8": "u-turn-left", // left u-turn
18 "8": "u-turn-right" // right u-turn
21 function _processDirections(path) {
22 const line = L.PolylineUtil.decode(path.points);
24 const steps = path.instructions.map(function (instr) {
26 .slice(instr.interval[0], instr.interval[1] + 1);
28 GH_INSTR_MAP[instr.sign],
34 steps.at(-1)[0] = "destination";
39 distance: path.distance,
40 time: path.time / 1000,
48 provider: "graphhopper",
49 creditline: "<a href=\"https://www.graphhopper.com/\" target=\"_blank\">GraphHopper</a>",
52 getRoute: function (points, signal) {
53 // GraphHopper Directions API documentation
54 // https://graphhopper.com/api/1/docs/routing/
55 const query = new URLSearchParams({
57 locale: OSM.i18n.locale,
58 key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
61 turn_costs: vehicleType === "car"
63 points.forEach(p => query.append("point", p.lat + "," + p.lng));
64 return fetch(OSM.GRAPHHOPPER_URL + "?" + query, { signal })
65 .then(response => response.json())
66 .then(({ paths }) => {
67 if (!paths || paths.length === 0) throw new Error();
68 return _processDirections(paths[0]);
74 OSM.Directions.addEngine(new GraphHopperEngine("car", "car"), true);
75 OSM.Directions.addEngine(new GraphHopperEngine("bicycle", "bike"), true);
76 OSM.Directions.addEngine(new GraphHopperEngine("foot", "foot"), true);