diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2019-03-01 09:58:58 +0200 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2019-03-04 14:45:32 +0200 |
commit | ba7427b4acf116aca7451ad3a6067dc234d3fa70 (patch) | |
tree | 106462886345e60f47bdeeaaf46580c67987b064 /test/api | |
parent | 73ac3c784fe755650dc631e2e722a47890981248 (diff) | |
download | qtlocation-mapboxgl-ba7427b4acf116aca7451ad3a6067dc234d3fa70.tar.gz |
[core] Transform{State}: s/angle/bearing/
Diffstat (limited to 'test/api')
-rw-r--r-- | test/api/annotations.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/api/annotations.test.cpp b/test/api/annotations.test.cpp index a4534825a5..8d2dae177b 100644 --- a/test/api/annotations.test.cpp +++ b/test/api/annotations.test.cpp @@ -418,7 +418,7 @@ TEST(Annotations, VisibleFeatures) { } // Change bearing *after* adding annotations causes them to be reordered. - test.map.jumpTo(CameraOptions().withAngle(45.0)); + test.map.jumpTo(CameraOptions().withBearing(45.0)); test.frontend.render(test.map); auto features = test.frontend.getRenderer()->queryRenderedFeatures(box, {}); @@ -428,7 +428,7 @@ TEST(Annotations, VisibleFeatures) { features.erase(std::unique(features.begin(), features.end(), sameID), features.end()); EXPECT_EQ(features.size(), ids.size()); - test.map.jumpTo(CameraOptions().withZoom(4.0).withAngle(0.0)); + test.map.jumpTo(CameraOptions().withZoom(4.0).withBearing(0.0)); test.frontend.render(test.map); features = test.frontend.getRenderer()->queryRenderedFeatures(box); std::sort(features.begin(), features.end(), sortID); |