From efc1bff65f1667b59e3045c5258b2aa1dd9532b5 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Fri, 7 Oct 2016 13:46:42 +0300 Subject: [core] Ignore placement for symbol annotations --- test/api/annotations.test.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'test/api') diff --git a/test/api/annotations.test.cpp b/test/api/annotations.test.cpp index 5b9fe7502e..b82a7adaca 100644 --- a/test/api/annotations.test.cpp +++ b/test/api/annotations.test.cpp @@ -341,3 +341,28 @@ TEST(Annotations, QueryRenderedFeatures) { EXPECT_TRUE(!!features2[0].id); EXPECT_EQ(*features2[0].id, 1); } + +TEST(Annotations, QueryFractionalZoomLevels) { + AnnotationTest test; + + auto viewSize = test.view.getSize(); + auto box = ScreenBox { {}, { double(viewSize[0]), double(viewSize[1]) } }; + + test.map.setStyleJSON(util::read_file("test/fixtures/api/empty.json")); + test.map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); + + std::vector ids; + for (int longitude = 0; longitude < 10; ++longitude) { + for (int latitude = 0; latitude < 10; ++latitude) { + ids.push_back(test.map.addAnnotation(SymbolAnnotation { { double(latitude), double(longitude) }, "default_marker" })); + } + } + + test.map.setLatLngZoom({ 5, 5 }, 0); + for (uint16_t zoomSteps = 0; zoomSteps <= 20; ++zoomSteps) { + test.map.setZoom(zoomSteps / 10.0); + test::render(test.map); + auto features = test.map.queryRenderedFeatures(box); + EXPECT_EQ(features.size(), ids.size()); + } +} -- cgit v1.2.1