Fix eslint warnings
This commit is contained in:
parent
26fedd0031
commit
18c2bf62ae
1 changed files with 10 additions and 10 deletions
|
@ -30,13 +30,13 @@ function FOSSGISValhallaEngine(id, costing) {
|
||||||
11, // kRoundaboutExit = 27;
|
11, // kRoundaboutExit = 27;
|
||||||
17, // kFerryEnter = 28;
|
17, // kFerryEnter = 28;
|
||||||
0, // kFerryExit = 29;
|
0, // kFerryExit = 29;
|
||||||
undefined, // kTransit = 30;
|
null, // kTransit = 30;
|
||||||
undefined, // kTransitTransfer = 31;
|
null, // kTransitTransfer = 31;
|
||||||
undefined, // kTransitRemainOn = 32;
|
null, // kTransitRemainOn = 32;
|
||||||
undefined, // kTransitConnectionStart = 33;
|
null, // kTransitConnectionStart = 33;
|
||||||
undefined, // kTransitConnectionTransfer = 34;
|
null, // kTransitConnectionTransfer = 34;
|
||||||
undefined, // kTransitConnectionDestination = 35;
|
null, // kTransitConnectionDestination = 35;
|
||||||
undefined, // kPostTransitConnectionDestination = 36;
|
null, // kPostTransitConnectionDestination = 36;
|
||||||
21, // kMergeRight = 37;
|
21, // kMergeRight = 37;
|
||||||
20 // kMergeLeft = 38;
|
20 // kMergeLeft = 38;
|
||||||
];
|
];
|
||||||
|
@ -113,6 +113,6 @@ function FOSSGISValhallaEngine(id, costing) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_car", "auto"), true);
|
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_car", "auto"), true);
|
||||||
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_bicycle", "bicycle"), true);
|
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_bicycle", "bicycle"), true);
|
||||||
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_foot", "pedestrian"), true);
|
OSM.Directions.addEngine(new FOSSGISValhallaEngine("fossgis_valhalla_foot", "pedestrian"), true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue