summaryrefslogtreecommitdiff
path: root/include/mbgl/map/mode.hpp
blob: 4ade870d9098003fb793c21077ac111a47929cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MBGL_MAP_MODE
#define MBGL_MAP_MODE

#include <cstdint>

namespace mbgl {

enum class MapMode : uint8_t {
    Continuous, // continually updating map
    Still, // a once-off still image
};

}

#endif