summaryrefslogtreecommitdiff
path: root/include/mbgl/map/map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/map/map.hpp')
-rw-r--r--include/mbgl/map/map.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index 9aa0cb165e..3c61140eb8 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -135,6 +135,14 @@ public:
bool isFullyLoaded() const;
void dumpDebugLogs() const;
+ // FreeCameraOptions provides more direct access to the underlying camera entity.
+ // For backwards compatibility the state set using this API must be representable with
+ // `CameraOptions` as well. Parameters are clamped to a valid range or discarded as invalid
+ // if the conversion to the pitch and bearing presentation is ambiguous. For example orientation
+ // can be invalid if it leads to the camera being upside down or the quaternion has zero length.
+ void setFreeCameraOptions(const FreeCameraOptions& camera);
+ FreeCameraOptions getFreeCameraOptions() const;
+
protected:
class Impl;
const std::unique_ptr<Impl> impl;