Interface MountedMapLibreSource

interface MountedMapLibreSource {
    diagnostics: readonly MapLibreSourceDiagnostic[];
    layerIds: readonly string[];
    planFingerprint: string;
    planId: string;
    sourceId: string;
    state: MapLibreSourceWorkflowState;
    strategy: "geojson-query";
    dispose(): void;
    refresh(options?: ExecuteQueryPlanOptions): Promise<MapLibreSourceProjection>;
}

Properties

diagnostics: readonly MapLibreSourceDiagnostic[]
layerIds: readonly string[]
planFingerprint: string
planId: string
sourceId: string
strategy

Methods