summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/heatmap_layer_impl.hpp
blob: 10c0e4aa46d2f9be8aeab685291e0692c8904782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <mbgl/style/layer_impl.hpp>
#include <mbgl/style/layers/heatmap_layer.hpp>
#include <mbgl/style/layers/heatmap_layer_properties.hpp>

namespace mbgl {
namespace style {

class HeatmapLayer::Impl : public Layer::Impl {
public:
    using Layer::Impl::Impl;

    bool hasLayoutDifference(const Layer::Impl&) const override;
    void stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const override;
    LayerFactory* getLayerFactory() const noexcept final;

    HeatmapPaintProperties::Transitionable paint;
};

} // namespace style
} // namespace mbgl