Altitude, Elevation or LocationCoordinate3D
Is there any roadmap for the addition of altitude data (by convention the 3 Double in the array of Coords in a Geometry LineString Object is an optional altitude value).
Or is there any know branch or fork with this functionality?
This library has always used CLLocationCoordinate2D in order to better integrate with frameworks in the Apple ecosystem such as Core Location. We could define our own Position struct with an altitude property, but it would require us to provide conversions to and from CLLocationCoordinate2D. We’d need to make sure relying so heavily on these conversions wouldn’t significantly affect performance for the very common use cases that require CLLocationCoordinate2D.
If we move off CLLocationCoordinate2D as the principle data type, we should consider depending on an SPM package that conditionally includes Core Location on Apple platforms, as a more seamless way to support Core Location and Linux simultaneously.
Edit: wrong link, wrong library.