kSITIndicationOrientation
Objective-C
enum kSITIndicationOrientation : NSInteger {}
Swift
enum kSITIndicationOrientation : Int, @unchecked Sendable
The type of turn (if any) the user should perform in order to arrive to the destination.
-
invalid orientation.
Declaration
Objective-C
kSITInvalidOrientation
Swift
case sitInvalidOrientation = 0
-
keep the same direction.
Declaration
Objective-C
kSITStraight
Swift
case sitStraight = 1
-
turn slightly to the right.
Declaration
Objective-C
kSITVeerRight
Swift
case sitVeerRight = 2
-
turn right.
Declaration
Objective-C
kSITRight
Swift
case sitRight = 3
-
turn heavily to right.
Declaration
Objective-C
kSITSharpRight
Swift
case sitSharpRight = 4
-
turn slightly to the left.
Declaration
Objective-C
kSITVeerLeft
Swift
case sitVeerLeft = 5
-
turn left.
Declaration
Objective-C
kSITLeft
Swift
case sitLeft = 6
-
turn heavily to the left.
Declaration
Objective-C
kSITSharpLeft
Swift
case sitSharpLeft = 7
-
turn around.
Declaration
Objective-C
kSITBackward
Swift
case sitBackward = 8