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.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index 1b45c87c28..b9811733bc 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -30,6 +30,8 @@ class Image;
class Style;
} // namespace style
+using mat4 = std::array<double, 16>;
+
class Map : private util::noncopyable {
public:
explicit Map(Backend&,
@@ -139,6 +141,7 @@ public:
// Projection
ScreenCoordinate pixelForLatLng(const LatLng&) const;
LatLng latLngForPixel(const ScreenCoordinate&) const;
+ void getProjMatrix(mat4& matrix, uint16_t nearZ = 1) const;
// Annotations
void addAnnotationImage(std::unique_ptr<style::Image>);