Interface QueryTileSourceSpecOptions

interface QueryTileSourceSpecOptions {
    cache?: QueryTileCacheIdentityDescriptor;
    endpoint?: QueryTileEndpointDescriptor;
    extraParams?: Readonly<Record<string,
        | undefined
        | string
        | number
        | boolean>>;
    includeCacheKey?: boolean;
    useTileJsonUrl?: boolean;
    volatile?: boolean;
}

Hierarchy (view full)

Properties

extraParams?: Readonly<Record<string,
    | undefined
    | string
    | number
    | boolean>>
includeCacheKey?: boolean
useTileJsonUrl?: boolean
volatile?: boolean