Loading...
Searching...
No Matches
NCIconMapObject.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
24DEFAULT_EXPORT_ATTRIBUTE
26
43- (BOOL)setPosition:(nonnull NCGlobalPoint *)point
44 sublocationId:(nullable NSNumber *)sublocationId;
45
64- (BOOL)setPositionAnimated:(nonnull NCGlobalPoint *)point
65 sublocationId:(nullable NSNumber *)sublocationId
66 duration:(float)duration
67 type:(NCAnimationType)type;
68
84- (BOOL)setBitmap:(nullable UIImage *)bitmap;
85
102- (BOOL)setSize:(float)width
103 height:(float)height;
104
120- (BOOL)setCollisionEnabled:(BOOL)enabled;
121
137- (BOOL)setAngle:(float)angle;
138
156- (BOOL)setAngleAnimated:(float)angle
157 duration:(float)duration
158 type:(NCAnimationType)type;
159
176- (BOOL)setBuffer:(float)width
177 height:(float)height;
178
195- (BOOL)setOffset:(float)width
196 height:(float)height;
197
213- (BOOL)setPriority:(float)priority;
214
230- (BOOL)setFlat:(BOOL)flat;
231
238@property (nonatomic, readonly, getter=isValid) BOOL valid;
239
240@end