summaryrefslogtreecommitdiff
path: root/src/mbgl/util/tileset.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/tileset.hpp')
-rw-r--r--src/mbgl/util/tileset.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mbgl/util/tileset.hpp b/src/mbgl/util/tileset.hpp
index 7e53850dfe..8a7fbe9b73 100644
--- a/src/mbgl/util/tileset.hpp
+++ b/src/mbgl/util/tileset.hpp
@@ -1,10 +1,7 @@
#pragma once
-#include <mbgl/util/constants.hpp>
#include <mbgl/util/range.hpp>
-#include <mbgl/util/geo.hpp>
-#include <array>
#include <vector>
#include <string>
#include <cstdint>
@@ -16,9 +13,8 @@ public:
std::vector<std::string> tiles;
Range<uint8_t> zoomRange { 0, 22 };
std::string attribution;
- LatLng center;
- double zoom = 0;
- LatLngBounds bounds = LatLngBounds::world();
+
+ // TileJSON also includes center, zoom, and bounds, but they are not used by mbgl.
};
} // namespace mbgl