diff options
author | Sudarsana Babu Nagineni <sudarsana.babu@mapbox.com> | 2019-03-04 11:25:13 +0200 |
---|---|---|
committer | Sudarsana Babu Nagineni <sudarsana.babu@mapbox.com> | 2019-03-04 13:49:51 +0200 |
commit | 9676028be8393aaf616f3abd6f2a3e6bf493b54c (patch) | |
tree | 6bf4c0c88eed3ea910a7822d32edaaff31301210 /test/api/recycle_map.cpp | |
parent | 405e20e3c8e1ba489fb48ad76fcbe5738ce643b3 (diff) | |
download | qtlocation-mapboxgl-upstream/map_options.tar.gz |
[WIP][core] Add Map optionsupstream/map_options
Diffstat (limited to 'test/api/recycle_map.cpp')
-rw-r--r-- | test/api/recycle_map.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/api/recycle_map.cpp b/test/api/recycle_map.cpp index fc7e5223ec..0883241274 100644 --- a/test/api/recycle_map.cpp +++ b/test/api/recycle_map.cpp @@ -3,6 +3,7 @@ #include <mbgl/gl/headless_frontend.hpp> #include <mbgl/map/map.hpp> +#include <mbgl/map/map_options.hpp> #include <mbgl/renderer/backend_scope.hpp> #include <mbgl/storage/online_file_source.hpp> #include <mbgl/style/layers/symbol_layer.hpp> @@ -29,7 +30,8 @@ TEST(API, RecycleMapUpdateImages) { HeadlessFrontend frontend { pixelRatio, fileSource, threadPool }; auto map = std::make_unique<Map>(frontend, MapObserver::nullObserver(), frontend.getSize(), - pixelRatio, fileSource, threadPool, MapMode::Static); + pixelRatio, fileSource, threadPool, + MapOptions().withMapMode(MapMode::Static)); EXPECT_TRUE(map); |