GLRoutePointType
Objective-C
enum GLRoutePointType : uint8_t {}
Swift
@frozen enum GLRoutePointType : UInt8, @unchecked Sendable
Route point types to describe the behavior of navigation waypoints. More details at: https://valhalla.github.io/valhalla/api/turn-by-turn/api-reference/#locations
-
A
breakis a location at which we allows u-turns and generate legs and arrival/departure maneuvers.Declaration
Objective-C
GLRoutePointType_Break = 0Swift
case `break` = 0 -
A
throughlocation is a location at which we neither allow u-turns nor generate legs or arrival/departure maneuvers.Declaration
Objective-C
GLRoutePointType_ThroughSwift
case through = 1 -
A
vialocation is a location at which we allow u-turns but do not generate legs or arrival/departure maneuvers.Declaration
Objective-C
GLRoutePointType_ViaSwift
case via = 2 -
A
break_throughlocation is a location at which we do not allow u-turns but do generate legs and arrival/departure maneuvers.Declaration
Objective-C
GLRoutePointType_BreakThroughSwift
case breakThrough = 3
Install in Dash