Page Summary
-
The
GMTSSpeedTypeenum represents the different speed types that can be associated with a path. -
GMTSSpeedTypeNoDataindicates that there is no speed data available, represented by a value of 0. -
GMTSSpeedTypeNormalsignifies a normal speed, represented by a value of 1. -
GMTSSpeedTypeSlowindicates a slow speed, represented by a value of 2. -
GMTSSpeedTypeTrafficJamindicates a traffic jam speed, represented by a value of 3.
GMTSSpeedType
enum GMTSSpeedType : NSUInteger {}Enum representing supported speed types on a path.
-
Declaration
Swift
case noData = 0Objective-C
GMTSSpeedTypeNoData -
Declaration
Swift
case normal = 1Objective-C
GMTSSpeedTypeNormal -
Declaration
Swift
case slow = 2Objective-C
GMTSSpeedTypeSlow -
Declaration
Swift
case trafficJam = 3Objective-C
GMTSSpeedTypeTrafficJam