// // AIRGoogleMapPolyline.h // // Created by Nick Italiano on 10/22/16. // #import #import #import #import "AIRGMSPolyline.h" #import "AIRMapCoordinate.h" #import "AIRGoogleMapMarker.h" @interface AIRGoogleMapPolyline : UIView @property (nonatomic, weak) RCTBridge *bridge; @property (nonatomic, strong) NSString *identifier; @property (nonatomic, strong) AIRGMSPolyline *polyline; @property (nonatomic, strong) NSArray *coordinates; @property (nonatomic, copy) RCTBubblingEventBlock onPress; @property (nonatomic, strong) UIColor *strokeColor; @property (nonatomic, assign) double strokeWidth; @property (nonatomic, assign) UIColor *fillColor; @property (nonatomic, assign) BOOL geodesic; @property (nonatomic, assign) NSString *title; @property (nonatomic, assign) int zIndex; @property (nonatomic, assign) BOOL tappable; @end