Interface VectorLayer

Represents the structure of a vector layer in a TileJSON specification.

interface VectorLayer {
    description?: string;
    fields: Record<string, "Boolean" | "Number" | "String">;
    id: string;
    maxzoom?: number;
    minzoom?: number;
}

Properties

description?: string
fields: Record<string, "Boolean" | "Number" | "String">
id: string
maxzoom?: number
minzoom?: number