Loading...
Searching...
No Matches
NCLocationPolyline.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCGlobalPoint.h"
3#import <Foundation/Foundation.h>
4
26DEFAULT_EXPORT_ATTRIBUTE
27@interface NCLocationPolyline : NSObject
28
32- (nonnull instancetype)initWithPoints:(nonnull NSArray<NCGlobalPoint *> *)points
33 sublocationId:(nullable NSNumber *)sublocationId;
34
38+ (nonnull instancetype)locationPolylineWithPoints:(nonnull NSArray<NCGlobalPoint *> *)points
39 sublocationId:(nullable NSNumber *)sublocationId;
40
46@property (nonatomic, readonly, nonnull) NSArray<NCGlobalPoint *> * points;
47
53@property (nonatomic, readonly, nullable) NSNumber * sublocationId;
54
55@end