summaryrefslogtreecommitdiff
path: root/include/mbgl/style/conversion/tileset.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/conversion/tileset.hpp')
-rw-r--r--include/mbgl/style/conversion/tileset.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/style/conversion/tileset.hpp b/include/mbgl/style/conversion/tileset.hpp
index 6ec46aa7b6..16322b58ee 100644
--- a/include/mbgl/style/conversion/tileset.hpp
+++ b/include/mbgl/style/conversion/tileset.hpp
@@ -100,6 +100,8 @@ public:
error = { "bounds left longitude should be less than right longitude" };
return {};
}
+ *left = util::max(-180.0, *left);
+ *right = util::min(180.0, *right);
result.bounds = LatLngBounds::hull({ *bottom, *left }, { *top, *right });
}