blob: 3e12beab34ede4fbe3518b62406c6053dd4fcc13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import "MGLUserLocationAnnotationView.h"
#import "MGLUserLocation.h"
NS_ASSUME_NONNULL_BEGIN
@class MGLMapView;
@interface MGLUserLocationAnnotationView (Private)
@property (nonatomic, weak, nullable) MGLUserLocation *userLocation;
@property (nonatomic, weak, nullable) MGLMapView *mapView;
@end
NS_ASSUME_NONNULL_END
|