IndoorWaypoint.withPassThrough constructor
- GeoCoordinates coordinates,
- String venueId,
- String levelId,
- bool passThrough,
Creates a passthrough indoor waypoint (for via waypoints).
The route will continue through this waypoint without stopping when pass_through is true.
When pass_through is false, it behaves the same as the basic constructor.
-
coordinatesA waypoint's geographic coordinates. -
venueIdAn ID of the venue where the waypoint is located. -
levelIdAn ID of the level where the waypoint is located. -
passThroughIftrue, the route passes through without stopping. Iffalse, the route stops at this waypoint.
Implementation
factory IndoorWaypoint.withPassThrough(GeoCoordinates coordinates, String venueId, String levelId, bool passThrough) => $prototype.withPassThrough(coordinates, venueId, levelId, passThrough);