GeoLeaf Core API - v3.0.0
    Preparing search index...

    GeoJSON Feature (geometry + properties)

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

    Properties

    type: "Feature"
    id?: string | number
    geometry: GeoJSONGeometry
    properties?: Record<string, unknown> | null