TransitStop

public struct TransitStop : Hashable

A transit stop between the departure and destination of a transit section.

  • Departure.

    Declaration

    Swift

    public var departure: TransitDeparture
  • Stop duration. If not set, the vehicle departs as soon as people are on board. Defaults to nil.

    Declaration

    Swift

    public var duration: TimeInterval?
  • Creates a new instance.

    Declaration

    Swift

    public init(departure: TransitDeparture, duration: TimeInterval? = nil)