GPXFix
public enum GPXFix : String, Codable
Type of GPS fix.
Note
I believe this enum may not be useful asCoreLocation API does not appear to state GPS Fix type.
-
No Fix
Declaration
Swift
case none = "none" -
2D Fix, position only.
Declaration
Swift
case TwoDimensional = "2d" -
3D Fix, position and elevation.
Declaration
Swift
case ThreeDimensional = "3d" -
Differencial GPS fix
Declaration
Swift
case Dgps = "dgps" -
Military GPS-equivalent
Declaration
Swift
case Pps = "pps"
View on GitHub
GPXFix Enumeration Reference