TollStructureManeuver

public struct TollStructureManeuver

A struct that provides information for a toll structure at a toll point.

  • Toll structure properties Could be empty for checkpoint not related to toll.

    Declaration

    Swift

    public var tollStructure: TollStructure?
  • Vehicle Checkpoint identifies locations on the through route, where vehicles are required to slow down/stop with the intended purpose of inspecting vehicles to deter illegal immigration and smuggling activities, to perform customs/passport checks, toll payment, etc. This is not limited to border locations.

    Declaration

    Swift

    public var isCheckpoint: Bool
  • Optional destinations segment references. Destination shows for which exactly outgoing segment current toll/checkpoint is applied. Empty if structure applied to all outgoing connected segments.

    Declaration

    Swift

    public var destinations: [DirectedOCMSegmentId]
  • Optional image providing guidance through an electronic toll collection (ETC) point.

    Declaration

    Swift

    public var etcGuidanceFile: FileReference?
  • Creates a new instance.

    Declaration

    Swift

    public init(tollStructure: TollStructure? = nil, isCheckpoint: Bool = false, destinations: [DirectedOCMSegmentId], etcGuidanceFile: FileReference? = nil)