#pragma once #include #include #include #include #include #include namespace mbgl { class Tileset { public: std::vector tiles; uint8_t minZoom = 0; uint8_t maxZoom = 22; std::string attribution; LatLng center; double zoom = 0; LatLngBounds bounds = LatLngBounds::world(); }; } // namespace mbgl