geoview-core - v2.3.0
    Preparing search index...

    Type Alias SourceFeaturesInfo

    Represents the result of reading features from a source, including the parsed features and their original projection.

    type SourceFeaturesInfo = {
        dataProjection: ProjectionLike;
        features: Feature<Geometry>[];
    }
    Index
    dataProjection: ProjectionLike

    The projection the source data was in, or undefined if it could not be determined.

    features: Feature<Geometry>[]

    The array of parsed OpenLayers features.