summaryrefslogtreecommitdiff
path: root/test/map/map.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/map/map.test.cpp')
-rw-r--r--test/map/map.test.cpp32
1 files changed, 17 insertions, 15 deletions
diff --git a/test/map/map.test.cpp b/test/map/map.test.cpp
index e75fdf06da..a0cd64bdd5 100644
--- a/test/map/map.test.cpp
+++ b/test/map/map.test.cpp
@@ -252,7 +252,7 @@ TEST(Map, CameraToLatLngBounds) {
ASSERT_NEAR(camera.center->longitude(), virtualCamera.center->longitude(), 1e-7);
}
-TEST(Map, CameraToLatLngBoundsWithRotation) {
+TEST(Map, CameraToLatLngBoundsUnwrappedWithRotation) {
MapTest<> test;
test.map.jumpTo(CameraOptions().withCenter(LatLng{45, 90}).withZoom(16.0).withBearing(45.0));
@@ -261,16 +261,18 @@ TEST(Map, CameraToLatLngBoundsWithRotation) {
CameraOptions camera = test.map.getCameraOptions();
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({})));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({0.0, double(size.height)})));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({double(size.width), 0.0})));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(test.map.latLngForPixel({})));
+ ASSERT_TRUE(
+ test.map.latLngBoundsForCameraUnwrapped(camera).contains(test.map.latLngForPixel({0.0, double(size.height)})));
+ ASSERT_TRUE(
+ test.map.latLngBoundsForCameraUnwrapped(camera).contains(test.map.latLngForPixel({double(size.width), 0.0})));
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
test.map.latLngForPixel({double(size.width), double(size.height)})));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
test.map.latLngForPixel({double(size.width) / 2, double(size.height) / 2})));
}
-TEST(Map, CameraToLatLngBoundsCrossDateLine) {
+TEST(Map, CameraToLatLngBoundsUnwrappedCrossDateLine) {
MapTest<> test;
test.map.jumpTo(CameraOptions().withCenter(LatLng{0, 180}).withZoom(16.0));
@@ -279,17 +281,17 @@ TEST(Map, CameraToLatLngBoundsCrossDateLine) {
CameraOptions camera = test.map.getCameraOptions();
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({}), LatLng::Wrapped));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({0.0, double(size.height)}),
- LatLng::Wrapped));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(test.map.latLngForPixel({double(size.width), 0.0}),
- LatLng::Wrapped));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(test.map.latLngForPixel({}), LatLng::Wrapped));
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
+ test.map.latLngForPixel({0.0, double(size.height)}), LatLng::Wrapped));
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
+ test.map.latLngForPixel({double(size.width), 0.0}), LatLng::Wrapped));
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
test.map.latLngForPixel({double(size.width), double(size.height)}), LatLng::Wrapped));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).contains(
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).contains(
test.map.latLngForPixel({double(size.width) / 2, double(size.height) / 2})));
- ASSERT_TRUE(test.map.latLngBoundsForCamera(camera).crossesAntimeridian());
+ ASSERT_TRUE(test.map.latLngBoundsForCameraUnwrapped(camera).crossesAntimeridian());
}
TEST(Map, Offline) {