Interface HonuaOgcFeaturesSourceSpecification

A source backed by an OGC API Features collection.

URL format: https://host/ogc/collections/{collectionId} or https://host/ogc (with collectionId specified separately).

interface HonuaOgcFeaturesSourceSpecification {
    attribution?: string;
    collectionId?: string;
    crs?: string;
    filter?: string;
    limit?: number;
    type: "honua-ogc-features";
    url: string;
}

Hierarchy (view full)

Properties

attribution?: string

Attribution string displayed on the map.

collectionId?: string

The OGC collection identifier. Required if the URL does not include it.

crs?: string

Coordinate reference system URI (e.g. "http://www.opengis.net/def/crs/OGC/1.3/CRS84").

filter?: string

CQL2 filter expression applied server-side.

limit?: number

Maximum items per request page.

type
url: string

Full URL to the service endpoint.