summaryrefslogtreecommitdiff
path: root/include/mbgl/ios/MGLMapView+MGLCustomStyleLayerAdditions.h
blob: de4dc01f999cec0a8a876ef5d08d1a10c1613fef (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
#import "MGLMapView.h"

NS_ASSUME_NONNULL_BEGIN

typedef void (^MGLCustomStyleLayerPreparationHandler)(void);

typedef void (^MGLCustomStyleLayerDrawingHandler)(CGSize size,
                                                  CLLocationCoordinate2D centerCoordinate,
                                                  double zoomLevel,
                                                  CLLocationDirection direction,
                                                  CGFloat pitch,
                                                  CGFloat perspectiveSkew);

typedef void (^MGLCustomStyleLayerCompletionHandler)(void);

@interface MGLMapView (MGLCustomStyleLayerAdditions)

- (void)insertCustomStyleLayerWithIdentifier:(NSString *)identifier preparationHandler:(MGLCustomStyleLayerPreparationHandler)preparation drawingHandler:(MGLCustomStyleLayerDrawingHandler)drawing completionHandler:(MGLCustomStyleLayerCompletionHandler)completion belowStyleLayerWithIdentifier:(nullable NSString *)otherIdentifier;

- (void)removeCustomStyleLayerWithIdentifier:(NSString *)identifier;

- (void)setCustomStyleLayersNeedDisplay;

@end

NS_ASSUME_NONNULL_END