Interface MountedAutomaticMapLibreSource

interface MountedAutomaticMapLibreSource {
    diagnostics: readonly AutomaticMapLibreDiagnostic[];
    layerIds: readonly string[];
    ready: Promise<AutomaticMapLibrePlan>;
    sourceId: string;
    state: AutomaticMapLibreWorkflowState;
    strategy: AutomaticMapLibreStrategy;
    cancel(reason?: unknown): void;
    dispose(): void;
    refresh(options?: ExecuteQueryPlanOptions): Promise<AutomaticMapLibrePlan>;
}

Properties

diagnostics: readonly AutomaticMapLibreDiagnostic[]
layerIds: readonly string[]
ready: Promise<AutomaticMapLibrePlan>
sourceId: string

Methods