Class NCBeacon - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki
NCBeacon class is used for storing beacons (iBeacons).
Referenced from: NCSublocation.
@interface NCBeacon : 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, readonly) int32_t major;
@property (nonatomic, readonly) int32_t minor;
@property (nonatomic, nonnull, readonly) NSString * uuid;
@property (nonatomic, readonly) int32_t power;
@end
Public fields
locationId
- location id where beacon placedsublocationId
- sublocation id where beacon placedname
- beacon nameuuid
- beacon's uuid valuemajor
- beacon's major valueminor
- beacon's minor valuepower
- beacon's power valuepoint
- beacon's X and Y coordinates in meters as Point (within the sublocation)