SPNavigationError

Objective-C

enum SPNavigationError : NSUInteger {}

Swift

enum SPNavigationError : UInt, @unchecked Sendable

Navigation error types

  • Target object for navigation was not found. This means that either the target object or the building is not found.

    Declaration

    Objective-C

    SPNavigationErrorObjectNotFound = 0

    Swift

    case objectNotFound = 0
  • Route not found to target object. There’s no connecting navigation path to the target.

    Declaration

    Objective-C

    SPNavigationErrorRouteNotFound = 1

    Swift

    case routeNotFound = 1
  • User location not available. User does not have a blue dot and navigation can not be started.

    Declaration

    Objective-C

    SPNavigationErrorUserLocationNotFound = 2

    Swift

    case userLocationNotFound = 2