diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/map/map.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index d4eb0ce8d1..b740c3462e 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -109,9 +109,11 @@ public: CameraOptions cameraForLatLngs(const std::vector<LatLng>&, optional<EdgeInsets>) const; LatLngBounds latLngBoundsForCamera(const CameraOptions&) const; void resetZoom(); - void setMinZoom(const double minZoom); + + // Bounds + void setMinZoom(double); double getMinZoom() const; - void setMaxZoom(const double maxZoom); + void setMaxZoom(double); double getMaxZoom() const; // Rotation |