MBXLocationExtraKeys.h 714 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Keys for additional information (extra) in Location. */
  4. NS_SWIFT_NAME(LocationExtraKeys)
  5. __attribute__((visibility ("default")))
  6. @interface MBXLocationExtraKeys : NSObject
  7. /**
  8. * The key to indicate if this location fix is a mock.
  9. *
  10. * Value: Boolean
  11. */
  12. @property (nonatomic, class, readonly) NSString * IsMock;
  13. /**
  14. * The key to indicate if this location fix is retrieved from an external
  15. * accessory attached to the device such as GNSS dongle, CarPlay, etc.
  16. *
  17. * Value: Boolean
  18. */
  19. @property (nonatomic, class, readonly) NSString * IsExternal;
  20. @end