Interface FeatureServiceAdapterMap

The minimal MapLibre Map surface the adapter mutates. Any object exposing these methods — including a real maplibre-gl Map — satisfies it.

interface FeatureServiceAdapterMap {
    addSource(id: string, source: unknown): void;
    getSource(id: string): unknown;
    removeSource(id: string): void;
}

Methods