summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer_type.hpp
blob: 0987ea4d0a439b7dc91b110f769e86cc7ae883bd (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