NMSPath.h
1 //
2 // NMSPath.h
3 // NavionicsMobileSDK
4 //
5 // Copyright © 2016 Navionics. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import <CoreLocation/CoreLocation.h>
10 
12 @interface NMSPath : NSObject
13 
14 
18 + (instancetype)path;
19 
24 - (id)initWithPath:(NMSPath*)path;
25 
30 - (NSUInteger)count;
31 
37 - (CLLocationCoordinate2D)coordinateAtIndex:(NSUInteger)index;
38 
39 @end
Array of CLLocationCoordinate2D.
Definition: NMSPath.h:12
NSUInteger count()
Get size of path.
instancetype path()
Convenience constructor for an empty path.