UNPKG

@maptiler/weather

Version:

Weather layers for MapTiler Cloud and MapTiler SDK

10 lines (9 loc) 279 B
import { Tile } from '../../types'; /** * Get a square of slippy tiles around the center tile. * * @param centerTile - id, x, y, z * @param gridSize - 1x1, 3x3, 5x5, etc. */ declare function getTilesGrid(centerTile: Tile, gridSize: number): Tile[]; export { getTilesGrid };