Interface GeoJsonFeature

A GeoJSON Feature object.

interface GeoJsonFeature {
    geometry: null | GeoJsonGeometry;
    id?: string | number;
    properties: null | Record<string, unknown>;
    type: "Feature";
}

Properties

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