summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLGeoJSONOptions.m
blob: bab99ef88d1909622419907f6ca6aa0221c462bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "MGLGeoJSONOptions.h"

@implementation MGLGeoJSONOptions

- (instancetype)init
{
    if (self = [super init]) {
        _maximumZoom = 18;
        _buffer = 128;
        _tolerance = 0.375;
        
        _cluster = NO;
        _clusterRadius = 50;
        _clusterMaximumZoom = 17;
    }
    return self;
}

@end