LaneMarkings
public struct LaneMarkings : Hashable
A struct that provides information for the lane markings.
Lane markings indicate the markings on the road.
Lane Divider Marker indicates the lane separator on the right side of the specified lane in the lane driving direction for Right-side driving countries. For left-sided driving countries the Lane Divider Marker is indicating the lane separator on the left side of the specified lane in the lane driving direction.
-
Center Divider Marker describes the type of lane separator for center dividers on bidirectional roads.
Declaration
Swift
public var centerDividerMarker: DividerMarker? -
Lane Divider Marker describes the appearance and type of driving lane separators existing on a road.
Declaration
Swift
public var laneDividerMarker: DividerMarker? -
List of lane directions
Declaration
Swift
public var directions: [LaneDirection] -
Creates a new instance.
Declaration
Swift
public init(centerDividerMarker: DividerMarker? = nil, laneDividerMarker: DividerMarker? = nil, directions: [LaneDirection] = [])