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

#import "MGLMultiPoint_Private.h"

@implementation MGLPolyline

@synthesize overlayBounds;

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

@end