Loading...
Searching...
No Matches
NCRoutePath.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCLocationPoint.h"
3#import "NCRouteEvent.h"
4#import <Foundation/Foundation.h>
5@class NCRoutePath;
6
7
22DEFAULT_EXPORT_ATTRIBUTE
23@interface NCRoutePath : NSObject
24
36- (nullable NCRoutePath *)head:(float)advance;
37
49- (nullable NCRoutePath *)tail:(float)advance;
50
54@property (nonatomic, readonly) float length;
55
59@property (nonatomic, nonnull, readonly) NSArray<NCRouteEvent *> * events;
60
66@property (nonatomic, nonnull, readonly) NSArray<NCLocationPoint *> * points;
67
68@end