NextGIS Frontend
    Preparing search index...

    Interface LayerAdapters

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

    Indexable

    Index

    Properties

    GEOJSON: VectorLayerAdapter<
        any,
        any,
        GeoJsonAdapterOptions<
            Feature<Geometry, GeoJsonProperties>,
            any,
            Record<string, any>,
            Record<string, any>,
        >,
    >