API (v2.0.2) - Giro3D
    Preparing search index...

    Variable ogcApiFeaturesBuilderConst

    ogcApiFeaturesBuilder: (
        serverUrl: string,
        collection: string,
        options?: { limit?: number; params?: Record<string, string> },
    ) => StreamableFeatureSourceQueryBuilder = ...

    A query builder to fetch data from an OGC API Features service.

    Type Declaration

      • (
            serverUrl: string,
            collection: string,
            options?: { limit?: number; params?: Record<string, string> },
        ): StreamableFeatureSourceQueryBuilder
      • Parameters

        • serverUrl: string
        • collection: string

          The name of the feature collection.

        • Optionaloptions: { limit?: number; params?: Record<string, string> }

          Optional parameters to customize the query.

          • Optionallimit?: number

            The limit of features to retrieve with each query.

            1000
            
          • Optionalparams?: Record<string, string>

            Additional parameters to pass to the query, such as CQL filter, etc, with the exception of the limit (passed with the limit option) and bbox parameters (dynamically computed for each query).

        Returns StreamableFeatureSourceQueryBuilder