summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLStyleLayer.mm
blob: b0fbb38dc900449e144f6bd4932f4c7918324e4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import "MGLStyleLayer_Private.h"
#import "MGLSource.h"

@implementation MGLForegroundStyleLayer

- (instancetype)initWithIdentifier:(NSString *)identifier source:(MGLSource *)source {
    if (self = [super initWithIdentifier:identifier]) {
        _sourceIdentifier = source.identifier;
    }
    return self;
}

@end

@implementation MGLVectorStyleLayer

- (void)setPredicate:(NSPredicate *)predicate {
    [NSException raise:@"MGLAbstractClassException"
                format:@"MGLVectorLayer is an abstract class"];
}

- (NSPredicate *)predicate {
    [NSException raise:@"MGLAbstractClassException"
                format:@"MGLVectorLayer is an abstract class"];
    return nil;
}

@end