Page Summary
-
This content defines the
GMTSTripWaypointTypeenum, which is used to identify different types of waypoints in a trip. -
The enum includes
GMTSTripWaypointTypeUnknownrepresenting an undefined waypoint. -
The enum includes
GMTSTripWaypointTypePickUpindicating a pick-up location for a trip. -
The enum includes
GMTSTripWaypointTypeDropOffspecifying a drop-off location for a trip. -
The enum includes
GMTSTripWaypointTypeIntermediateDestinationsignifying an intermediate destination within a trip.
GMTSTripWaypointType
enum GMTSTripWaypointType : NSUInteger {}Enum defining the waypoints associated with a trip.
-
Declaration
Swift
case unknown = 0Objective-C
GMTSTripWaypointTypeUnknown -
Declaration
Swift
case pickUp = 1Objective-C
GMTSTripWaypointTypePickUp -
Declaration
Swift
case dropOff = 2Objective-C
GMTSTripWaypointTypeDropOff -
Declaration
Swift
case intermediateDestination = 3Objective-C
GMTSTripWaypointTypeIntermediateDestination