blob: 007b03550b7a06ee3195983cf32e7d6804d253db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#import "MGLAnnotationContainerView.h"
#import "MGLAnnotationView.h"
@class MGLAnnotationView;
NS_ASSUME_NONNULL_BEGIN
@interface MGLAnnotationContainerView (Private)
@property (nonatomic) NS_MUTABLE_ARRAY_OF(MGLAnnotationView *) *annotationViews;
@end
NS_ASSUME_NONNULL_END
|