Loading...
Searching...
No Matches
NCCircleMapObject.h
Go to the documentation of this file.
1#import "NCAnimationType.h"
2#import "NCExport.h"
3#import "NCGlobalPoint.h"
4#import "NCMapObject.h"
5#import <Foundation/Foundation.h>
6#import <UIKit/UIKit.h>
7
8
22DEFAULT_EXPORT_ATTRIBUTE
24
41- (BOOL)setPosition:(nonnull NCGlobalPoint *)point
42 sublocationId:(nullable NSNumber *)sublocationId;
43
62- (BOOL)setPositionAnimated:(nonnull NCGlobalPoint *)point
63 sublocationId:(nullable NSNumber *)sublocationId
64 duration:(float)duration
65 type:(NCAnimationType)type;
66
82- (BOOL)setColor:(nonnull UIColor *)color;
83
99- (BOOL)setRadius:(float)radius;
100
116- (BOOL)setCollisionEnabled:(BOOL)enabled;
117
134- (BOOL)setBuffer:(float)width
135 height:(float)height;
136
153- (BOOL)setOffset:(float)width
154 height:(float)height;
155
171- (BOOL)setPriority:(float)priority;
172
188- (BOOL)setOutlineColor:(nonnull UIColor *)color;
189
205- (BOOL)setOutlineRadius:(float)radius;
206
222- (BOOL)setOutlineAlpha:(float)alpha;
223
230@property (nonatomic, readonly, getter=isValid) BOOL valid;
231
232@end