summaryrefslogtreecommitdiff
path: root/include/mbgl/util/tileset.hpp
blob: 8a7fbe9b73d27ae3a615fbc58de72b0624e83838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <mbgl/util/range.hpp>

#include <vector>
#include <string>
#include <cstdint>

namespace mbgl {

class Tileset {
public:
    std::vector<std::string> tiles;
    Range<uint8_t> zoomRange { 0, 22 };
    std::string attribution;

    // TileJSON also includes center, zoom, and bounds, but they are not used by mbgl.
};

} // namespace mbgl