2 function GraphHopperEngine(id, vehicleType) {
6 "-1": 5, // slight left
8 "1": 1, // slight right
10 "3": 3, // sharp right
11 "4": 14, // finish reached
12 "5": 14, // via reached
13 "6": 10, // roundabout
14 "-7": 19, // keep left
15 "7": 18, // keep right
16 "-98": 4, // unknown direction u-turn
17 "-8": 4, // left u-turn
18 "8": 4 // right u-turn
21 function _processDirections(path) {
22 const line = L.PolylineUtil.decode(path.points);
24 const steps = path.instructions.map(function (instr, i) {
25 const num = `<b>${i + 1}.</b> `;
27 .slice(instr.interval[0], instr.interval[1] + 1)
28 .map(([lat, lng]) => ({ lat, lng }));
31 GH_INSTR_MAP[instr.sign],
35 ]; // TODO does graphhopper map instructions onto line indices?
42 distance: path.distance,
43 time: path.time / 1000,
51 creditline: "<a href=\"https://www.graphhopper.com/\" target=\"_blank\">GraphHopper</a>",
54 getRoute: function (points, signal) {
55 // GraphHopper Directions API documentation
56 // https://graphhopper.com/api/1/docs/routing/
57 const query = new URLSearchParams({
59 locale: I18n.currentLocale(),
60 key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
63 turn_costs: vehicleType === "car"
65 points.forEach(p => query.append("point", p.lat + "," + p.lng));
66 return fetch(OSM.GRAPHHOPPER_URL + "?" + query, { signal })
67 .then(response => response.json())
68 .then(({ paths }) => {
69 if (!paths || paths.length === 0) throw new Error();
70 return _processDirections(paths[0]);
76 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_car", "car"), true);
77 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_bicycle", "bike"), true);
78 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_foot", "foot"), true);