30 lines
918 B
Objective-C
30 lines
918 B
Objective-C
//
|
|
// AIRGoogleMapPolyline.h
|
|
//
|
|
// Created by Nick Italiano on 10/22/16.
|
|
//
|
|
#import <UIKit/UIKit.h>
|
|
#import <GoogleMaps/GoogleMaps.h>
|
|
#import <React/RCTBridge.h>
|
|
#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<AIRMapCoordinate *> *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
|