SPRouteAction
Objective-C
enum SPRouteAction {}
Swift
enum SPRouteAction : UInt
Route action types.
-
No actions to take.
Declaration
Objective-C
SPRouteActionNone = 1
Swift
case none = 1
-
Continue forward.
Declaration
Objective-C
SPRouteActionContinue
Swift
case `continue` = 2
-
Turn left.
Declaration
Objective-C
SPRouteActionTurnLeft
Swift
case turnLeft = 3
-
Turn left slightly.
Declaration
Objective-C
SPRouteActionTurnLeftSlightly
Swift
case turnLeftSlightly = 4
-
Turn left sharp.
Declaration
Objective-C
SPRouteActionTurnLeftSharp
Swift
case turnLeftSharp = 5
-
Turn right.
Declaration
Objective-C
SPRouteActionTurnRight
Swift
case turnRight = 6
-
Turn right slightly.
Declaration
Objective-C
SPRouteActionTurnRightSlightly
Swift
case turnRightSlightly = 7
-
Turn right sharp.
Declaration
Objective-C
SPRouteActionTurnRightSharp
Swift
case turnRightSharp = 8
-
Go up.
Declaration
Objective-C
SPRouteActionGoUp
Swift
case goUp = 9
-
Go down.
Declaration
Objective-C
SPRouteActionGoDown
Swift
case goDown = 10
-
Enter.
Declaration
Objective-C
SPRouteActionEnter
Swift
case enter = 11
-
Go
Declaration
Objective-C
SPRouteActionGo
Swift
case go = 12
-
Destination
Declaration
Objective-C
SPRouteActionDestination
Swift
case destination = 13