summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layer_type.hpp
blob: 951757134bcbc05272854e7470d34ded6aa49b65 (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,
    Hillshade,
    Background,
    Custom,
    FillExtrusion,
};

} // namespace style
} // namespace mbgl