flatgeobuf
    Preparing search index...

    Interface FeatureCollectionOptions

    interface FeatureCollectionOptions {
        dataProjection: string;
        featureClass: typeof Feature | typeof RenderFeature;
        featureProjection?: string;
        headerMetaFn?: HeaderMetaFn;
        headers: HeadersInit;
        nocache: boolean;
    }
    Index

    Properties

    dataProjection: string

    Data projection. Defaults to EPSG:4326

    featureClass: typeof Feature | typeof RenderFeature

    Feature class to be used when creating features. The default is Feature. If performance is the primary concern and features are not going to be modified, consider using RenderFeature (Circle and GeometryCollection are not supported. As coordinates are flattened, multi geometries and polygons with holes are not well rendered). Default to ol/Feature.

    featureProjection?: string

    Feature projection. Defaults to undefined (no conversion).

    headerMetaFn?: HeaderMetaFn

    Callback that will receive header metadata when available. Defaults to undefined.

    headers: HeadersInit

    Header to request the file from. Defaults to an empty object.

    nocache: boolean

    Disable caching of the file. Defaults to false.