Interface TileJSONSpecificationVector

Structure for TileJSON specification of vector type, specifying vector-specific properties.

interface TileJSONSpecificationVector {
    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[];
    vector_layers: VectorLayer[];
    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[]
vector_layers: VectorLayer[]
version?: string