//
//  AMapLineDashPolyline.m
//  react-native-anavi
//
//  Created by xiuyanger on 2020/9/15.
//

#import "AMapLineDashPolyline.h"

@implementation AMapLineDashPolyline

@synthesize coordinate;

@synthesize boundingMapRect ;

@synthesize polyline = _polyline;

- (id)initWithPolyline:(MAPolyline *)polyline
{
    self = [super init];
    if (self)
    {
        self.polyline = polyline;
    }
    return self;
}

- (CLLocationCoordinate2D) coordinate
{
    return [_polyline coordinate];
}

- (MAMapRect) boundingMapRect
{
    return [_polyline boundingMapRect];
}
@end
