RoutePathAlgorithmType
Objective-C
enum RoutePathAlgorithmType : NSInteger {}
Swift
enum RoutePathAlgorithmType : Int, @unchecked Sendable
Constants indicating the Path calculation algorithm.
-
Path calculation algorithm - Default Magic Lane routing algorithm.
Declaration
Objective-C
RoutePathAlgorithmTypeMagicLane
Swift
case magicLane = 0
-
Simplified Magic Lane routing algorithm - Best speed, recommended for low end devices.
Declaration
Objective-C
RoutePathAlgorithmTypeMagicLaneSimplified
Swift
case magicLaneSimplified = 1
-
Path calculation algorithm - Magic Lane Contraction Hierarchy routing algorithm.
Declaration
Objective-C
RoutePathAlgorithmTypeMagicLaneCH
Swift
case magicLaneCH = 2
-
Path calculation algorithm - External Contraction Hierarchy routing algorithm.
Declaration
Objective-C
RoutePathAlgorithmTypeExternalCH
Swift
case externalCH = 3