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 = 0Swift
case objectNotFound = 0 -
Route not found to target object. There’s no connecting navigation path to the target.
Declaration
Objective-C
SPNavigationErrorRouteNotFound = 1Swift
case routeNotFound = 1 -
User location not available. User does not have a blue dot and navigation can not be started.
Declaration
Objective-C
SPNavigationErrorUserLocationNotFound = 2Swift
case userLocationNotFound = 2
SPNavigationError Enumeration Reference