summaryrefslogtreecommitdiff
path: root/src/mbgl/util/tile_cover.hpp
blob: a489964abfbea0e34117aed553d3e91427f25f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MBGL_UTIL_TILE_COVER
#define MBGL_UTIL_TILE_COVER

#include <mbgl/map/tile_id.hpp>
#include <mbgl/style/types.hpp>

#include <vector>

namespace mbgl {

class TransformState;
class LatLngBounds;

int32_t coveringZoomLevel(double z, SourceType type, uint16_t tileSize);

std::vector<TileID> tileCover(const TransformState&, int32_t z, int32_t actualZ);
std::vector<TileID> tileCover(const LatLngBounds&,   int32_t z, int32_t actualZ);

} // namespace mbgl

#endif