summaryrefslogtreecommitdiff
path: root/src/style/style_layer_group.cpp
blob: bb19df45be5dd7202acbcb23203d46812d2d1ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <llmr/style/style_layer_group.hpp>

namespace llmr {

void StyleLayerGroup::setClasses(const std::vector<std::string> &class_names, timestamp now,
                                 const PropertyTransition &defaultTransition) {
    for (const std::shared_ptr<StyleLayer> &layer : layers) {
        if (layer) {
            layer->setClasses(class_names, now, defaultTransition);
        }
    }
}

void StyleLayerGroup::updateProperties(float z, timestamp t) {
    for (const std::shared_ptr<StyleLayer> &layer: layers) {
        if (layer) {
            layer->updateProperties(z, t);
        }
    }
}

}