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

namespace mbgl {
namespace style {

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

} // namespace style
} // namespace mbgl