OffRoadProgress

public struct OffRoadProgress : Hashable

Represents the information needed to help the users to reach their off-road destination.

  • Distance to the off-road destination in meters.

    Declaration

    Swift

    public var remainingDistanceInMeters: Int32
  • The direction, in degrees, the user should take in order to reach the off-road destination.

    Declaration

    Swift

    public var bearingInDegrees: Double
  • Creates a new instance.

    Declaration

    Swift

    public init(remainingDistanceInMeters: Int32 = 0, bearingInDegrees: Double = 0.0)