CurrentSituationLaneView
public struct CurrentSituationLaneView : Hashable
A struct that provides current situation lane assistance view information for the street at the current position of a single lane.
Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
Indicates which vehicle types can access this lane.
Declaration
Swift
public var access: LaneAccess -
Indicates towards which directions this lane leads.
Declaration
Swift
public var directionCategory: LaneDirectionCategory -
Indicates this lane’s properties.
Declaration
Swift
public var type: LaneType -
Indicates the lane markings between the lanes.
Declaration
Swift
public var laneMarkings: LaneMarkings -
Indicates which lane directions are available for this lane.
Declaration
Swift
public var directions: [LaneDirection] -
Indicates which lane directions are on the route. Following those directions keeps the driver on the route.
Declaration
Swift
public var directionsOnRoute: [LaneDirection] -
Creates a new instance.
Declaration
Swift
public init(access: LaneAccess, directionCategory: LaneDirectionCategory, type: LaneType, laneMarkings: LaneMarkings = LaneMarkings(), directions: [LaneDirection] = [], directionsOnRoute: [LaneDirection] = [])