API (v2.0.2) - Giro3D
    Preparing search index...
    interface StreamableFeatureSourceOptions {
        cache?: Cache;
        enableCaching?: boolean;
        extent?: Extent | null;
        format?: FeatureFormat<Feature<Geometry, { [x: string]: any }>>;
        getter?: StreamableFeatureSourceGetter;
        loadingStrategy?: StreamableFeatureSourceLoadingStrategy;
        queryBuilder: StreamableFeatureSourceQueryBuilder;
        sourceCoordinateSystem?: CoordinateSystem;
    }
    Index

    Properties

    cache?: Cache

    The cache to use.

    GlobalCache

    enableCaching?: boolean

    Enable caching of downloaded features.

    true
    
    extent?: Extent | null

    Limits the extent in which features are queried. If a feature request is outside this extent, no query happens.

    null

    format?: FeatureFormat<Feature<Geometry, { [x: string]: any }>>

    The format of the features.

    GeoJSON

    The function to download and process the data.

    defaultGetter

    The loading strategy.

    The query builder.

    sourceCoordinateSystem?: CoordinateSystem

    The source coordinate system.

    EPSG:4326