From a73cc9d8e363b0b3f4fa66c5d9c34625dffbb7e5 Mon Sep 17 00:00:00 2001 From: Ander Conselvan de Oliveira Date: Thu, 7 Mar 2019 15:43:06 +0200 Subject: [core] Remove support for setting minimum and maximum pitch Support for limiting pitch was introduced in commit c4fc89977bcb ([core] Added {set,get}{Min,Max}Pitch) in 2017 but was never exposed by the platform SDKs. Simplify the Map interface by removing this unused feature. v2: Add util::PITCH_MIN --- include/mbgl/map/map.hpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index 548a9f6257..0c979f3e19 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -83,10 +83,6 @@ public: double getMinZoom() const; void setMaxZoom(double); double getMaxZoom() const; - void setMinPitch(double); - double getMinPitch() const; - void setMaxPitch(double); - double getMaxPitch() const; // North Orientation void setNorthOrientation(NorthOrientation); -- cgit v1.2.1