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

@implementation MGLShape

- (CLLocationCoordinate2D)coordinate
{
    [[NSException exceptionWithName:@"MGLAbstractClassException"
                             reason:@"MGLShape is an abstract class"
                           userInfo:nil] raise];

    return CLLocationCoordinate2DMake(MAXFLOAT, MAXFLOAT);
}

@end