summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLUserLocationHeadingIndicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/src/MGLUserLocationHeadingIndicator.h')
-rw-r--r--platform/ios/src/MGLUserLocationHeadingIndicator.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/platform/ios/src/MGLUserLocationHeadingIndicator.h b/platform/ios/src/MGLUserLocationHeadingIndicator.h
new file mode 100644
index 0000000000..61476b96a2
--- /dev/null
+++ b/platform/ios/src/MGLUserLocationHeadingIndicator.h
@@ -0,0 +1,10 @@
+#import <QuartzCore/QuartzCore.h>
+#import "MGLUserLocationAnnotationView.h"
+
+@protocol MGLUserLocationHeadingIndicator <NSObject>
+
+- (instancetype)initWithUserLocationAnnotationView:(MGLUserLocationAnnotationView *)userLocationView;
+- (void)updateHeadingAccuracy:(CLLocationDirection)accuracy;
+- (void)updateTintColor:(CGColorRef)color;
+
+@end