Interface TileJSONSpecificationRaster

Basic structure for TileJSON specification, applicable to both raster and vector types.

interface TileJSONSpecificationRaster {
    attribution?: string;
    bounds?: [number, number, number, number];
    center?: [number, number];
    data?: string[];
    description?: string;
    fillzoom?: number;
    grids?: string[];
    legend?: string;
    maxzoom?: number;
    minzoom?: number;
    name?: string;
    scheme?: "xyz" | "tms";
    template?: string;
    tilejson?: "3.0.0";
    tiles: string[];
    version?: string;
}

Hierarchy (View Summary)

Properties

attribution?: string
bounds?: [number, number, number, number]
center?: [number, number]
data?: string[]
description?: string
fillzoom?: number
grids?: string[]
legend?: string
maxzoom?: number
minzoom?: number
name?: string
scheme?: "xyz" | "tms"
template?: string
tilejson?: "3.0.0"
tiles: string[]
version?: string