Page Summary
-
GMTSVehicleTypeCategoryis an enumeration defining different types of vehicles. -
The
unknowncategory, represented by the value 0, is used when the vehicle type is not identified. -
The
autocategory, represented by the value 1, identifies automobiles. -
The
taxi,truck, andtwoWheelercategories are identified with values 2, 3, and 4, respectively, for taxis, trucks, and two-wheeled vehicles. -
Each vehicle type category has a corresponding representation in both Swift and Objective-C.
GMTSVehicleTypeCategory
enum GMTSVehicleTypeCategory : NSUInteger {}@}
-
Declaration
Swift
case unknown = 0Objective-C
GMTSVehicleTypeCategoryUnknown -
Declaration
Swift
case auto = 1Objective-C
GMTSVehicleTypeCategoryAuto -
Declaration
Swift
case taxi = 2Objective-C
GMTSVehicleTypeCategoryTaxi -
Declaration
Swift
case truck = 3Objective-C
GMTSVehicleTypeCategoryTruck -
Declaration
Swift
case twoWheeler = 4Objective-C
GMTSVehicleTypeCategoryTwoWheeler