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

    Minimal structural view of a GeoJSON geometry carried on feature-interaction events. Kept structural (not the full GeoJSONGeometry union) so the contract stays dependency-free and the payload survives the event bus' JSON clone.

    interface GeoLeafFeatureGeometry {
        type: string;
        coordinates?: unknown;
    }
    Index

    Properties

    Properties

    type: string

    Geometry type, e.g. "Point", "LineString", "Polygon".

    coordinates?: unknown

    Raw coordinate array (shape depends on type).