interface LayerAdapters {
    COG: MainLayerAdapter<any, any, RasterAdapterOptions>;
    GEOJSON: VectorLayerAdapter<any, any, GeoJsonAdapterOptions<Feature<Geometry, GeoJsonProperties>, any, Record<string, any>, Record<string, any>>, Feature<Geometry, GeoJsonProperties>, GeoJsonProperties, Record<string, any> | {
        [name: string]: any;
    }>;
    IMAGE: MainLayerAdapter<any, any, ImageAdapterOptions>;
    MVT: VectorLayerAdapter<any, any, VectorAdapterOptions<Feature<Geometry, GeoJsonProperties>, any, Record<string, any>, Record<string, any>, FeatureProperties>, Feature<Geometry, GeoJsonProperties>, GeoJsonProperties, Record<string, any> | {
        [name: string]: any;
    }>;
    OSM: MainLayerAdapter<any, any, AdapterOptions<Record<string, any>, Record<string, any>>>;
    TILE: MainLayerAdapter<any, any, TileAdapterOptions>;
    WMS: MainLayerAdapter<any, any, WmsAdapterOptions>;
    [name: string]: MainLayerAdapter;
}

Indexable

Properties

GEOJSON: VectorLayerAdapter<any, any, GeoJsonAdapterOptions<Feature<Geometry, GeoJsonProperties>, any, Record<string, any>, Record<string, any>>, Feature<Geometry, GeoJsonProperties>, GeoJsonProperties, Record<string, any> | {
    [name: string]: any;
}>
MVT: VectorLayerAdapter<any, any, VectorAdapterOptions<Feature<Geometry, GeoJsonProperties>, any, Record<string, any>, Record<string, any>, FeatureProperties>, Feature<Geometry, GeoJsonProperties>, GeoJsonProperties, Record<string, any> | {
    [name: string]: any;
}>
OSM: MainLayerAdapter<any, any, AdapterOptions<Record<string, any>, Record<string, any>>>