Class NCZone - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki
NCZone class is used for storing location polygonal zones.
Referenced from: NCSublocation.
@interface NCZone : NSObject
@property (nonatomic, nonnull, readonly) NCPolygon * polygon;
@property (nonatomic, readonly) int32_t locationId;
@property (nonatomic, readonly) int32_t sublocationId;
@property (nonatomic, readonly) int32_t id;
@property (nonatomic, nonnull, readonly) NSString * name;
@property (nonatomic, nonnull, readonly) NSString * color;
@property (nonatomic, nonnull, readonly) NSString * alias;
@end
Public fields
id
- zone identifierlocationId
- location id where zone placedsublocationId
- sublocation id where zone placedname
- zone namealias
- zone's alias name (external identifier)color
- zone's colorpolygon
- list of points composing the polygonal zone (see NCPolygon class)