GMSLengthKind indicates the type of a length value, which can be geodesic (in meters), rhumb
length (in meters) and projected length (in GMSMapPoint units).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-15 UTC."],[[["`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)."],["These types are represented by the constants `kGMSLengthGeodesic`, `kGMSLengthRhumb`, and `kGMSLengthProjected`, respectively."]]],["`GMSLengthKind` defines the type of a length value. It includes three options: `geodesic` (meters), representing the shortest distance between two points on the Earth's surface; `rhumb` (meters), indicating a length measured along a constant bearing; and `projected`, representing length in `GMSMapPoint` units. The enum uses `NSUInteger` for its values. Geodesic is represented by 0, Rhumb by 1 and Projected by 2.\n"]]