DirectionsError

public enum DirectionsError
  • The provided start and end are in coverage, but no routes were found e.g. because no transport is currently running

    Note

    message is NOT user-facing

    Declaration

    Swift

    case noRoutesFound(message: String?)
  • One or both of the provided start and end are outside of the coverage area, or in different coverage areas

    Note

    message is NOT user-facing

    Declaration

    Swift

    case startOrEndOutOfCoverage(message: String?)
  • Another error occured. See message for detail

    Note

    message is NOT user-facing

    Declaration

    Swift

    case unknown(message: String?)