observation-js Documentation - v1.16.0
    Preparing search index...

    Interface GeoJSONFeature<G>

    interface GeoJSONFeature<G extends GeoJSONGeometry | null = GeoJSONGeometry> {
        type: "Feature";
        geometry: G;
        properties: Record<string, unknown> | null;
    }

    Type Parameters

    Index

    Properties

    type: "Feature"
    geometry: G
    properties: Record<string, unknown> | null