summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layer.cpp
blob: e2eba0e2e0ecd1f4705e4c412f8bb99d317da186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <mbgl/style/layer.hpp>
#include <mbgl/style/layer_impl.hpp>
#include <mbgl/style/layer_type.hpp>

namespace mbgl {
namespace style {

Layer::Layer(LayerType type_, std::unique_ptr<Impl> baseImpl_)
    : type(type_), baseImpl(std::move(baseImpl_)) {
}

Layer::~Layer() = default;

const std::string& Layer::getID() const {
    return baseImpl->id;
}

VisibilityType Layer::getVisibility() const {
    return baseImpl->visibility;
}

void Layer::setVisibility(VisibilityType value) {
    if (value == getVisibility())
        return;
    baseImpl->visibility = value;
    baseImpl->observer->onLayerVisibilityChanged(*this);
}

float Layer::getMinZoom() const {
    return baseImpl->minZoom;
}

void Layer::setMinZoom(float minZoom) const {
    baseImpl->minZoom = minZoom;
}

float Layer::getMaxZoom() const {
    return baseImpl->maxZoom;
}

void Layer::setMaxZoom(float maxZoom) const {
    baseImpl->maxZoom = maxZoom;
}

} // namespace style
} // namespace mbgl