summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/fill_layer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/layers/fill_layer.hpp')
-rw-r--r--include/mbgl/style/layers/fill_layer.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mbgl/style/layers/fill_layer.hpp b/include/mbgl/style/layers/fill_layer.hpp
index e70d67f538..72bb7c498f 100644
--- a/include/mbgl/style/layers/fill_layer.hpp
+++ b/include/mbgl/style/layers/fill_layer.hpp
@@ -26,24 +26,31 @@ public:
// Paint properties
+ static PropertyValue<bool> getDefaultFillAntialias();
PropertyValue<bool> getFillAntialias() const;
void setFillAntialias(PropertyValue<bool>, const optional<std::string>& klass = {});
+ static PropertyValue<float> getDefaultFillOpacity();
PropertyValue<float> getFillOpacity() const;
void setFillOpacity(PropertyValue<float>, const optional<std::string>& klass = {});
+ static PropertyValue<Color> getDefaultFillColor();
PropertyValue<Color> getFillColor() const;
void setFillColor(PropertyValue<Color>, const optional<std::string>& klass = {});
+ static PropertyValue<Color> getDefaultFillOutlineColor();
PropertyValue<Color> getFillOutlineColor() const;
void setFillOutlineColor(PropertyValue<Color>, const optional<std::string>& klass = {});
+ static PropertyValue<std::array<float, 2>> getDefaultFillTranslate();
PropertyValue<std::array<float, 2>> getFillTranslate() const;
void setFillTranslate(PropertyValue<std::array<float, 2>>, const optional<std::string>& klass = {});
+ static PropertyValue<TranslateAnchorType> getDefaultFillTranslateAnchor();
PropertyValue<TranslateAnchorType> getFillTranslateAnchor() const;
void setFillTranslateAnchor(PropertyValue<TranslateAnchorType>, const optional<std::string>& klass = {});
+ static PropertyValue<std::string> getDefaultFillPattern();
PropertyValue<std::string> getFillPattern() const;
void setFillPattern(PropertyValue<std::string>, const optional<std::string>& klass = {});