mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 04:51:15 +00:00
13 lines
450 B
Objective-C
13 lines
450 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
/** The mode used to track the user location on the map. */
|
|
typedef NS_ENUM(NSUInteger, MGLUserTrackingMode)
|
|
{
|
|
/** The map does not follow the user location. */
|
|
MGLUserTrackingModeNone = 0,
|
|
/** The map follows the user location. */
|
|
MGLUserTrackingModeFollow,
|
|
/** The map follows the user location and rotates when the heading changes. */
|
|
MGLUserTrackingModeFollowWithHeading
|
|
};
|