AI-generated Key Takeaways
-
GMTCMapViewMarkerTypeis an enumeration that defines different types of markers for a map view. -
GMTCMapViewMarkerTypeUnknownrepresents an unspecified or unknown marker type, with a value of 0. -
GMTCMapViewMarkerTypeVehicleidentifies a marker that represents a vehicle, and is represented by the integer value 1. -
GMTCMapViewMarkerTypeTripPickupPointsignifies a marker for a trip's pickup location, assigned the value 2. -
GMTCMapViewMarkerTypeTripDropoffPointsignifies a marker for a trip's dropoff location, assigned the value 3, whileGMTCMapViewMarkerTypeIntermediateDestinationsignifies a marker for a trip's intermediate destination, assigned the value 4.
GMTCMapViewMarkerType
enum GMTCMapViewMarkerType : NSUInteger {}\defgroup GMTCMapViewMarkerType GMTCMapViewMarkerType @{
-
Declaration
Swift
case unknown = 0Objective-C
GMTCMapViewMarkerTypeUnknown -
Declaration
Swift
case vehicle = 1Objective-C
GMTCMapViewMarkerTypeVehicle -
Declaration
Swift
case tripPickupPoint = 2Objective-C
GMTCMapViewMarkerTypeTripPickupPoint -
Declaration
Swift
case tripDropoffPoint = 3Objective-C
GMTCMapViewMarkerTypeTripDropoffPoint -
Declaration
Swift
case intermediateDestination = 4Objective-C
GMTCMapViewMarkerTypeIntermediateDestination