AI-generated Key Takeaways
-
GMSLengthKind
is an enumeration used to specify the type of a length measurement. -
It includes three types: geodesic (in meters), rhumb (in meters), and projected (in
GMSMapPoint
units). -
Each type is represented by a constant:
kGMSLengthGeodesic
,kGMSLengthRhumb
, andkGMSLengthProjected
, respectively.
GMSLengthKind
enum GMSLengthKind : NSUInteger {}
GMSLengthKind
indicates the type of a length value, which can be geodesic (in meters), rhumb
length (in meters) and projected length (in GMSMapPoint
units).
-
Declaration
Swift
case geodesic = 0
Objective-C
kGMSLengthGeodesic
-
Declaration
Swift
case rhumb = 1
Objective-C
kGMSLengthRhumb
-
Declaration
Swift
case projected = 2
Objective-C
kGMSLengthProjected