SPRouteAction
Objective-C
enum SPRouteAction : NSUInteger {}
Swift
enum SPRouteAction : UInt
Route action types.
-
No actions to take.
Declaration
Objective-C
SPRouteActionNone = 1Swift
case none = 1 -
Continue forward.
Declaration
Objective-C
SPRouteActionContinueSwift
case `continue` = 2 -
Turn left.
Declaration
Objective-C
SPRouteActionTurnLeftSwift
case turnLeft = 3 -
Turn left slightly.
Declaration
Objective-C
SPRouteActionTurnLeftSlightlySwift
case turnLeftSlightly = 4 -
Turn left sharp.
Declaration
Objective-C
SPRouteActionTurnLeftSharpSwift
case turnLeftSharp = 5 -
Turn right.
Declaration
Objective-C
SPRouteActionTurnRightSwift
case turnRight = 6 -
Turn right slightly.
Declaration
Objective-C
SPRouteActionTurnRightSlightlySwift
case turnRightSlightly = 7 -
Turn right sharp.
Declaration
Objective-C
SPRouteActionTurnRightSharpSwift
case turnRightSharp = 8 -
Go up.
Declaration
Objective-C
SPRouteActionGoUpSwift
case goUp = 9 -
Go down.
Declaration
Objective-C
SPRouteActionGoDownSwift
case goDown = 10 -
Enter.
Declaration
Objective-C
SPRouteActionEnterSwift
case enter = 11 -
Go
Declaration
Objective-C
SPRouteActionGoSwift
case go = 12 -
Destination
Declaration
Objective-C
SPRouteActionDestinationSwift
case destination = 13
SPRouteAction Enumeration Reference