1 function GraphHopperEngine(id, vehicleType) {
 
   5     "-1": 5, // slight left
 
  10     4: 14, // finish reached
 
  17     creditline: '<a href="https://www.graphhopper.com/" target="_blank">Graphhopper</a>',
 
  20     getRoute: function (points, callback) {
 
  21       // GraphHopper Directions API documentation
 
  22       // https://graphhopper.com/api/1/docs/routing/
 
  24         url: OSM.GRAPHHOPPER_URL,
 
  27           locale: I18n.currentLocale(),
 
  28           key: "LijBPDQGfu7Iiq80w3HzwB4RUDJbMbhs6BU0dEnn",
 
  29           "ch.disable": vehicleType === "car",
 
  32           point: points.map(function (p) { return p.lat + "," + p.lng; })
 
  36         success: function (data) {
 
  37           if (!data.paths || data.paths.length === 0)
 
  38             return callback(true);
 
  40           var path = data.paths[0];
 
  41           var line = L.PolylineUtil.decode(path.points);
 
  44           var len = path.instructions.length;
 
  45           for (var i = 0; i < len; i++) {
 
  46             var instr = path.instructions[i];
 
  47             var instrCode = (i === len - 1) ? 14 : GH_INSTR_MAP[instr.sign];
 
  48             var instrText = "<b>" + (i + 1) + ".</b> ";
 
  49             instrText += instr.text;
 
  50             var latLng = line[instr.interval[0]];
 
  51             var distInMeter = instr.distance;
 
  53             for (var j = instr.interval[0]; j <= instr.interval[1]; j++) {
 
  54               lineseg.push({lat: line[j][0], lng: line[j][1]});
 
  57               {lat: latLng[0], lng: latLng[1]},
 
  62             ]); // TODO does graphhopper map instructions onto line indices?
 
  68             distance: path.distance,
 
  69             time: path.time / 1000,
 
  82 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_car", "car"), true);
 
  83 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_bicycle", "bike"), true);
 
  84 OSM.Directions.addEngine(new GraphHopperEngine("graphhopper_foot", "foot"), true);