Input representing a path or route to follow.
Used for route reconstruction or when you want the calculated route to follow a specific path rather than calculating a new one.
Position[]
Route
// As coordinate arrayconst path1: PathLike = [ [4.9, 52.3], [4.91, 52.31], [4.92, 52.32]];// As existing routeconst path2: PathLike = existingRoute; Copy
// As coordinate arrayconst path1: PathLike = [ [4.9, 52.3], [4.91, 52.31], [4.92, 52.32]];// As existing routeconst path2: PathLike = existingRoute;
Input representing a path or route to follow.
Used for route reconstruction or when you want the calculated route to follow a specific path rather than calculating a new one.