summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/heatmap_layer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/layers/heatmap_layer.hpp')
-rw-r--r--include/mbgl/style/layers/heatmap_layer.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/mbgl/style/layers/heatmap_layer.hpp b/include/mbgl/style/layers/heatmap_layer.hpp
index 0b740c470b..588aaa81df 100644
--- a/include/mbgl/style/layers/heatmap_layer.hpp
+++ b/include/mbgl/style/layers/heatmap_layer.hpp
@@ -21,12 +21,6 @@ public:
HeatmapLayer(const std::string& layerID, const std::string& sourceID);
~HeatmapLayer() final;
- // Dynamic properties
- optional<conversion::Error> setProperty(const std::string& name, const conversion::Convertible& value) final;
-
- StyleProperty getProperty(const std::string& name) const final;
- Value serialize() const final;
-
// Paint properties
static ColorRampPropertyValue getDefaultHeatmapColor();
@@ -69,6 +63,12 @@ public:
std::unique_ptr<Layer> cloneRef(const std::string& id) const final;
protected:
+ // Dynamic properties
+ optional<conversion::Error> setPropertyInternal(const std::string& name, const conversion::Convertible& value) final;
+
+ StyleProperty getProperty(const std::string& name) const final;
+ Value serialize() const final;
+
Mutable<Layer::Impl> mutableBaseImpl() const final;
};