Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,33 @@
#pragma once
#include "drape_frontend/tile_key.hpp"
#include <functional>
#include <set>
namespace df
{
using TTilesCollection = std::set<TileKey>;
struct CoverageResult
{
int m_minTileX = 0;
int m_maxTileX = 0;
int m_minTileY = 0;
int m_maxTileY = 0;
};
// This function determines the tiles coverage in specified zoom level.
// Each tile can be processed in processTile callback.
CoverageResult CalcTilesCoverage(m2::RectD const & rect, int targetZoom,
std::function<void(int, int)> const & processTile);
// This function checks if tileKey1 and tileKey2 are neighbours
bool IsNeighbours(TileKey const & tileKey1, TileKey const & tileKey2);
// This function performs clipping by maximum zoom label available for map data.
int ClipTileZoomByMaxDataZoom(int zoom);
// This function returns tile key by point on specific zoom level.
TileKey GetTileKeyByPoint(m2::PointD const & pt, int zoom);
} // namespace df