NavigationStatus

public enum NavigationStatus

Current status of the navigation

  • Navigation was requested by user/developer

    Declaration

    Swift

    case requested
  • Route was computed and navigation started

    Declaration

    Swift

    case started
  • An error has occurred on the ongoing Navigation

    Declaration

    Swift

    case error(Error)
  • The destination was reached by user

    Declaration

    Swift

    case destinationReached
  • The ongoing navigation was cancelled by the user/developer

    Declaration

    Swift

    case canceled