summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer_type.hpp
blob: 69390d642a5cb29fb74b81c4a761ebd11f5eb1ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

namespace mbgl {
namespace style {

enum class LayerType {
    Fill,
    Line,
    Circle,
    Symbol,
    Raster,
    Hillshade,
    Background,
    Custom,
    FillExtrusion,
    Heatmap
};

} // namespace style
} // namespace mbgl