summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-27 16:03:04 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-02 14:51:39 -0700
commit18149cbcc27a926f280b08d8d0e09104b2147688 (patch)
tree924bc6665f19f5bf768d84a808801646ef9f16d9 /include
parent67ee51360c1bf72d54544cecb8d8fd638ad4df14 (diff)
downloadqtlocation-mapboxgl-18149cbcc27a926f280b08d8d0e09104b2147688.tar.gz
[core] Add {min,max}Zoom accessors
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/style/layer.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mbgl/style/layer.hpp b/include/mbgl/style/layer.hpp
index e6c33a9784..4a40cc0cff 100644
--- a/include/mbgl/style/layer.hpp
+++ b/include/mbgl/style/layer.hpp
@@ -49,6 +49,12 @@ public:
VisibilityType getVisibility() const;
void setVisibility(VisibilityType);
+ // Zoom range
+ float getMinZoom() const;
+ void setMinZoom(float) const;
+ float getMaxZoom() const;
+ void setMaxZoom(float) const;
+
// Create a new layer with the specified `id` and `ref`. All other properties
// are copied from this layer.
std::unique_ptr<Layer> copy(const std::string& id,