BDLocationInfo

@interface BDLocationInfo : NSObject

@brief Information about a location update.

@copyright Bluedot Innovation

  • The time at which this location was determined.

    Declaration

    Objective-C

    @property (copy, readonly) NSDate *timestamp;
  • The latitude at which this location was determined.

    Declaration

    Objective-C

    @property (readonly) BDLocationDegrees latitude;
  • The longitude at which this location was determined.

    Declaration

    Objective-C

    @property (readonly) BDLocationDegrees longitude;
  • The bearing of the device at the latitude and longitude of the location.

    Declaration

    Objective-C

    @property (readonly) BDLocationDirection bearing;
  • The speed of the device at the latitude and longitude of the location.

    Declaration

    Objective-C

    @property (readonly) BDLocationSpeed speed;