summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLAnnotationView.h
blob: 475d9aa758bc70e9aafc737076facc00df8342a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#import <UIKit/UIKit.h>

#import "MGLTypes.h"

NS_ASSUME_NONNULL_BEGIN

@interface MGLAnnotationView : UIView

- (instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier;

/**
 The string that identifies that this annotation view is reusable. (read-only)
 */
@property (nonatomic, readonly, nullable) NSString *reuseIdentifier;

- (void)prepareForReuse;

@end

NS_ASSUME_NONNULL_END