Lane.withAll constructor
- LaneType type,
- LaneRecommendationState recommendationState,
- LaneAccess access,
- LaneMarkings laneMarkings,
- List<
LaneDirection> directions, - List<
LaneDirection> directionsOnRoute,
Creates a new instance.
typeIndicates the properties of this lane. For example, it indicates whether parking is allowed, if it is an acceleration lane, an express lane, or other attributes.recommendationStateIndicates if this lane leads to the upcoming maneuvers.accessIndicates which vehicle types can access this lane.laneMarkingsIndicates the lane markings between the lanes.directionsIndicates all the lane directions that are available for this lane.directionsOnRouteIndicates the lane directions that are on the route. Following these directions keeps the driver on the route. This is a subset of Lane.directions.
Implementation
Lane.withAll(this.type, this.recommendationState, this.access, this.laneMarkings, this.directions, this.directionsOnRoute);