Interface MapLibreSourceProjection

interface MapLibreSourceProjection {
    authorizationScope: readonly string[];
    diagnostics: readonly MapLibreSourceDiagnostic[];
    layerId: string;
    layers: readonly Readonly<Record<string, unknown>>[];
    planFingerprint: string;
    planId: string;
    schemaVersion?: string;
    source: Readonly<Record<string, unknown>>;
    sourceId: string;
    sourceVersion?: string;
    state: "degraded" | "empty" | "ready";
    strategy: "geojson-query";
}

Properties

authorizationScope: readonly string[]
diagnostics: readonly MapLibreSourceDiagnostic[]
layerId: string
layers: readonly Readonly<Record<string, unknown>>[]
planFingerprint: string
planId: string
schemaVersion?: string
source: Readonly<Record<string, unknown>>
sourceId: string
sourceVersion?: string
state: "degraded" | "empty" | "ready"
strategy