NMSPolyline.h
1 //
2 // NMSPolyline.h
3 // NavionicsMobileSDK
4 //
5 // Copyright © 2016 Navionics. All rights reserved.
6 //
7 
8 #import "NMSOverlay.h"
9 #import <UIKit/UIKit.h>
10 #import <CoreGraphics/CoreGraphics.h>
11 
12 @class NMSPath;
13 
15 @interface NMSPolyline : NMSOverlay
16 
22 + (instancetype)polylineWithPath:(NMSPath*)path;
23 
25 @property(nonatomic, retain)NMSPath* path;
26 
28 @property(nonatomic, assign)CGFloat strokeWidth;
29 
31 @property(nonatomic, retain)UIColor* strokeColor;
32 
33 @end
CGFloat strokeWidth
The width of the line in screen points.
Definition: NMSPolyline.h:28
Array of CLLocationCoordinate2D.
Definition: NMSPath.h:12
A polyline on the Earth&#39;s surface.
Definition: NMSPolyline.h:15
UIColor * strokeColor
The color used to render the polyline.
Definition: NMSPolyline.h:31
Abstract class that represents some overlay that may be attached to a specific NMSMapView.
Definition: NMSOverlay.h:12