@versatiles/style
    Preparing search index...

    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;
    }
    Index

    Properties

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