Interface GeoJsonFeatureCollection

A GeoJSON FeatureCollection typed against the SDK feature type. The SDK contract intentionally ships only GeoJsonFeature; the geometry package adds the collection wrapper it needs for union/nearest-point style operations.

interface GeoJsonFeatureCollection {
    features: GeoJsonFeature[];
    type: "FeatureCollection";
}

Properties

Properties

features: GeoJsonFeature[]
type