summaryrefslogtreecommitdiff
path: root/src/mbgl/util/tile_cover.hpp
blob: 99c19a3052fa25677a6128ea1577043542c54862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MBGL_UTIL_TILE_COVER
#define MBGL_UTIL_TILE_COVER

#include <mbgl/map/tile_id.hpp>
#include <mbgl/util/box.hpp>

#include <forward_list>

namespace mbgl {

std::forward_list<TileID> tileCover(int8_t z, const box& bounds, int8_t actualZ);

}

#endif