summaryrefslogtreecommitdiff
path: root/platform/ios/MGLPolygon.m
blob: d3b5f2c2a4c52309c7608826642cd408da8a5ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "MGLPolygon.h"

#import "MGLMultiPoint_Private.h"

@implementation MGLPolygon

@synthesize overlayBounds;

+ (instancetype)polygonWithCoordinates:(CLLocationCoordinate2D *)coords
                                 count:(NSUInteger)count
{
    return [[self alloc] initWithCoordinates:coords count:count];
}

@end