summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_layer_group.hpp
blob: 79b75a55e97be5886262f1af76e2fb23805028a4 (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
#ifndef MBGL_STYLE_STYLE_LAYER_GROUP
#define MBGL_STYLE_STYLE_LAYER_GROUP

#include <mbgl/style/style_layer.hpp>

#include <vector>
#include <chrono>

namespace mbgl {

class StyleLayerGroup {
public:
    void setClasses(const std::vector<std::string> &class_names, std::chrono::steady_clock::time_point now,
                    const PropertyTransition &defaultTransition);
    void updateProperties(float z, std::chrono::steady_clock::time_point now, ZoomHistory &zoomHistory);

    bool hasTransitions() const;
public:
    std::vector<util::ptr<StyleLayer>> layers;
};

}

#endif