GT2/GT2-Android/node_modules/react-native-maps/lib/ios/AirGoogleMaps/AIRGoogleMapPolyline.m

85 lines
1.5 KiB
Objective-C

//
// AIRGoogleMapPolyline.m
//
// Created by Nick Italiano on 10/22/16.
//
#import <UIKit/UIKit.h>
#import "AIRGoogleMapPolyline.h"
#import "AIRGMSPolyline.h"
#import "AIRMapCoordinate.h"
#import "AIRGoogleMapMarker.h"
#import "AIRGoogleMapMarkerManager.h"
#import <GoogleMaps/GoogleMaps.h>
#import <React/RCTUtils.h>
@implementation AIRGoogleMapPolyline
- (instancetype)init
{
if (self = [super init]) {
_polyline = [[AIRGMSPolyline alloc] init];
}
return self;
}
-(void)setCoordinates:(NSArray<AIRMapCoordinate *> *)coordinates
{
_coordinates = coordinates;
GMSMutablePath *path = [GMSMutablePath path];
for(int i = 0; i < coordinates.count; i++)
{
[path addCoordinate:coordinates[i].coordinate];
}
_polyline.path = path;
}
-(void)setStrokeColor:(UIColor *)strokeColor
{
_strokeColor = strokeColor;
_polyline.strokeColor = strokeColor;
}
-(void)setStrokeWidth:(double)strokeWidth
{
_strokeWidth = strokeWidth;
_polyline.strokeWidth = strokeWidth;
}
-(void)setFillColor:(UIColor *)fillColor
{
_fillColor = fillColor;
_polyline.spans = @[[GMSStyleSpan spanWithColor:fillColor]];
}
-(void)setGeodesic:(BOOL)geodesic
{
_geodesic = geodesic;
_polyline.geodesic = geodesic;
}
-(void)setTitle:(NSString *)title
{
_title = title;
_polyline.title = _title;
}
-(void) setZIndex:(int)zIndex
{
_zIndex = zIndex;
_polyline.zIndex = zIndex;
}
-(void)setTappable:(BOOL)tappable
{
_tappable = tappable;
_polyline.tappable = tappable;
}
- (void)setOnPress:(RCTBubblingEventBlock)onPress {
_polyline.onPress = onPress;
}
@end