summaryrefslogtreecommitdiff
path: root/include/mbgl/ios/MGLTypes.h
blob: 4c2e58b24badcf3c486ec0311699561ee6363ca5 (plain)
1
2
3
4
5
6
7
8
9
#import <Foundation/Foundation.h>

/// The degree to which the map view tracks the user’s location.
typedef NS_ENUM(NSUInteger, MGLUserTrackingMode)
{
    MGLUserTrackingModeNone              = 0,   ///< does not track the user’s location or heading
    MGLUserTrackingModeFollow            = 1,   ///< tracks the user’s location
    MGLUserTrackingModeFollowWithHeading = 2,   ///< tracks the user’s location and heading
};