Interface HonuaOgcFeatureResponse

A single OGC API Feature (GeoJSON Feature).

interface HonuaOgcFeatureResponse {
    geometry: null | GeoJsonGeometry;
    id?: string | number;
    links?: HonuaOgcLink[];
    properties: null | Record<string, unknown>;
    type: "Feature";
}

Hierarchy (view full)

Properties

geometry: null | GeoJsonGeometry
id?: string | number
links?: HonuaOgcLink[]
properties: null | Record<string, unknown>
type