geoview-core
    Preparing search index...

    Interface TypeSourceEsriFeatureInitialConfig

    interface TypeSourceEsriFeatureInitialConfig {
        crossOrigin?: string;
        dataAccessPath?: string;
        dataProjection?: string;
        featureInfo?: TypeFeatureInfoLayerConfig;
        format: "EsriJSON";
        layerFilter?: string;
        maxRecordCount?: number;
        postSettings?: TypePostSettings;
        projection?: TypeValidSourceProjectionCodes;
        separator?: string;
        strategy?: VectorStrategy;
    }

    Hierarchy

    • Omit<TypeVectorSourceInitialConfig, "format">
      • TypeSourceEsriFeatureInitialConfig
    Index

    Properties

    crossOrigin?: string

    The crossOrigin attribute if needed to load the data.

    dataAccessPath?: string

    Path used to access the data.

    dataProjection?: string

    The projection code of the source. Default value is EPSG:4326.

    featureInfo?: TypeFeatureInfoLayerConfig

    Definition of the feature information structure that will be used by the getFeatureInfo method.

    format: "EsriJSON"
    layerFilter?: string

    Filter to apply on features of this layer.

    maxRecordCount?: number

    Maximum number of records to fetch (default: 0).

    postSettings?: TypePostSettings

    Settings to use when loading a GeoJSON layer using a POST instead of a GET

    projection?: TypeValidSourceProjectionCodes

    Spatial Reference EPSG code supported (https://epsg.io/). We support lon/lat, Web Mercator and Lambert Conical Conform Canada. Default = 3978.

    separator?: string

    The character used to separate columns of csv file.

    strategy?: VectorStrategy

    Loading strategy to use (all or bbox).