summaryrefslogtreecommitdiff
path: root/include/mbgl/map
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-04-03 18:37:03 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-04-11 12:51:09 +0300
commitc4fc89977bcba83ed5de87dcc8de1a68e8a31541 (patch)
treee304b26bb59523b4ee30136f9f615742eb4dbb91 /include/mbgl/map
parentc1c6c1e298521c177b64665b823d1444ce5e2cfe (diff)
downloadqtlocation-mapboxgl-c4fc89977bcba83ed5de87dcc8de1a68e8a31541.tar.gz
[core] Added {set,get}{Min,Max}Pitch
Diffstat (limited to 'include/mbgl/map')
-rw-r--r--include/mbgl/map/map.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index 908beb6b29..74942e211d 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -117,6 +117,10 @@ public:
double getMinZoom() const;
void setMaxZoom(double);
double getMaxZoom() const;
+ void setMinPitch(double);
+ double getMinPitch() const;
+ void setMaxPitch(double);
+ double getMaxPitch() const;
// Rotation
void rotateBy(const ScreenCoordinate& first, const ScreenCoordinate& second, const AnimationOptions& = {});