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 placedsublocationId
- sublocation id where eddystone placedname
- eddystone's namenamespaceId
- eddystone's namespace idinstanceId
- eddystone's instance idpower
- eddystone's power valuepoint
- eddystone's X and Y coordinates in meters as Point (within the sublocation)