Class NCEddystone - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCEddystone class is used for storing eddystones (Eddystone).

Referenced from: NCSublocation.

@interface NCEddystone : NSObject

@property (nonatomic, nonnull, readonly) NCPoint * point;

@property (nonatomic, readonly) int32_t locationId;

@property (nonatomic, readonly) int32_t sublocationId;

@property (nonatomic, nonnull, readonly) NSString * name;

@property (nonatomic, nonnull, readonly) NSString * namespaceId;

@property (nonatomic, nonnull, readonly) NSString * instanceId;

@property (nonatomic, readonly) int32_t power;

@end

Public fields

  • locationId - location id where eddystone placed
  • sublocationId - sublocation id where eddystone placed
  • name - eddystone's name
  • namespaceId - eddystone's namespace id
  • instanceId - eddystone's instance id
  • power - eddystone's power value
  • point - eddystone's X and Y coordinates in meters as Point (within the sublocation)