summaryrefslogtreecommitdiff
path: root/platform/ios/MGLUserLocation_Private.h
blob: 48f6d40e8c1c9b7ec817c25e06e9bbf9cd449ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "MGLUserLocation.h"

#import <CoreLocation/CoreLocation.h>

@class MGLMapView;

NS_ASSUME_NONNULL_BEGIN

@interface MGLUserLocation (Private)

@property (nonatomic, weak) MGLMapView *mapView;
@property (nonatomic, readwrite, nullable) CLLocation *location;
@property (nonatomic, readwrite, nullable) CLHeading *heading;

- (instancetype)initWithMapView:(MGLMapView *)mapView;

@end

NS_ASSUME_NONNULL_END