SpeedWarningStatus

public enum SpeedWarningStatus : UInt32, CaseIterable, Codable

This enum represents the status of the speed warning feature.

  • Status when the current speed exceeded the speed limit (plus offset) for the current road segment. This status is followed by SpeedWarningStatus.speedLimitRestored once the driving speed is again below the speed limit (plus offset) for the current road segment.

    Note: The speed limit used to check this condition does not take into account any temporary special speed limit. See SpeedLimitListener.

    Declaration

    Swift

    case speedLimitExceeded
  • Status where the current speed is again below the speed limit (plus offset) for the current road segment. This status is only possible after previously exceeding a speed limit.

    Note: The speed limit used to check this condition does not take into account any temporary special speed limit. See `SpeedLimitListener.

    Declaration

    Swift

    case speedLimitRestored