maplibre-gl
Version:
BSD licensed community fork of mapbox-gl, a WebGL interactive maps library
16 lines (15 loc) • 416 B
text/typescript
export type TileJSON = {
tilejson: '2.2.0' | '2.1.0' | '2.0.1' | '2.0.0' | '1.0.0';
name?: string;
description?: string;
version?: string;
attribution?: string;
template?: string;
tiles: Array<string>;
grids?: Array<string>;
data?: Array<string>;
minzoom?: number;
maxzoom?: number;
bounds?: [number, number, number, number];
center?: [number, number, number];
};