BDLocationInfo
Objective-C
@interface BDLocationInfo : NSObject
Swift
class BDLocationInfo : NSObject
Information about a location update.
-
The time at which this location was determined.
Declaration
Objective-C
@property (copy, readonly) NSDate *timestamp;
Swift
var timestamp: Date! { get }
-
The latitude at which this location was determined.
Declaration
Objective-C
@property (readonly) BDLocationDegrees latitude;
Swift
var latitude: BDLocationDegrees { get }
-
The longitude at which this location was determined.
Declaration
Objective-C
@property (readonly) BDLocationDegrees longitude;
Swift
var longitude: BDLocationDegrees { get }
-
The bearing of the device at the latitude and longitude of the location.
Declaration
Objective-C
@property (readonly) BDLocationDirection bearing;
Swift
var bearing: BDLocationDirection { get }
-
The speed of the device at the latitude and longitude of the location.
Declaration
Objective-C
@property (readonly) BDLocationSpeed speed;
Swift
var speed: BDLocationSpeed { get }