-
The north–south position of a point on the Earth’s surface, in decimal degrees (WGS84).
Declaration
Objective-C
@property (nonatomic, readonly) double latitude;
-
The east–west position of a point on the Earth’s surface, in decimal degrees (WGS84).
Declaration
Objective-C
@property (nonatomic, readonly) double longitude;
-
The UTC time of this location fix, in milliseconds since epoch (January 1, 1970).
Declaration
Objective-C
@property (nonatomic, readonly) uint64_t timestamp;
-
The monotonic timestamp, in nanoseconds.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *monotonicTimestamp;
-
The altitude of the location in meters above the WGS84 reference ellipsoid.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *altitude;
-
The estimated horizontal accuracy of this location, radial, in meters.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *horizontalAccuracy;
-
The estimated vertical accuracy of this location, in meters.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *verticalAccuracy;
-
The instantaneous speed of the device, measured in meters/second over ground.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *speed;
-
The estimated speed accuracy of this location, in meters/second.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *speedAccuracy;
-
The GNSS bearing, in degrees.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *bearing;
-
The estimated bearing accuracy of this location, in degrees.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *bearingAccuracy;
-
The logical floor of the building.
Note that 0 zero indicates the ground floor, negative values indicate underground floors and positive values indicate floors above ground level.
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *floor;
-
The source that provides this location
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *source;
-
Additional information
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) id extra;