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