1 //
2 //  AIRMapPolylineRenderer.h
3 //  mapDemo
4 //
5 //  Created by IjzerenHein on 13-11-21.
6 //  Copyright (c) 2017 IjzerenHein. All rights reserved.
7 //
8 
9 #import <MapKit/MapKit.h>
10 
11 @interface AIRMapPolylineRenderer : MKOverlayPathRenderer
12 
13 -(id)initWithOverlay:(id<MKOverlay>)overlay polyline:(MKPolyline*)polyline;
14 -(id)initWithSnapshot:(MKMapSnapshot*)snapshot overlay:(id<MKOverlay>)overlay polyline:(MKPolyline*)polyline;
15 -(void)drawWithZoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)context;
16 
17 @property (nonatomic, strong) NSArray<UIColor *> *strokeColors;
18 
19 @end
20