Interface AdapterGeoJsonFeature

A GeoJSON feature produced by the adapter.

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

Properties

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