Interface HonuaOgcFeatureCollectionResponse

OGC API Features collection response (GeoJSON FeatureCollection).

interface HonuaOgcFeatureCollectionResponse {
    features: HonuaOgcFeatureResponse[];
    links?: HonuaOgcLink[];
    numberMatched?: number;
    numberReturned?: number;
    type: "FeatureCollection";
}

Properties

links?: HonuaOgcLink[]
numberMatched?: number
numberReturned?: number
type