summaryrefslogtreecommitdiff
path: root/include/mbgl/map/map_options.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/map/map_options.hpp')
-rw-r--r--include/mbgl/map/map_options.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/mbgl/map/map_options.hpp b/include/mbgl/map/map_options.hpp
index fcb8c8f32f..52c06a600f 100644
--- a/include/mbgl/map/map_options.hpp
+++ b/include/mbgl/map/map_options.hpp
@@ -3,6 +3,7 @@
#include <mbgl/map/mode.hpp>
#include <mbgl/util/geo.hpp>
#include <mbgl/util/size.hpp>
+#include <mbgl/map/camera.hpp>
#include <memory>
@@ -134,6 +135,21 @@ public:
*/
float pixelRatio() const;
+ /**
+ * @brief Sets the camera options.
+ *
+ * @param camera_ Camera options.
+ * @return reference to MapOptions for chaining options together.
+ */
+ MapOptions& withCamera(CameraOptions camera_);
+
+ /**
+ * @brief Gets the previously set camera options.
+ *
+ * @return Camera options.
+ */
+ const CameraOptions& camera() const;
+
private:
class Impl;
std::unique_ptr<Impl> impl_;