@maplibre/geojson-vt
    Preparing search index...

    Type Alias GeoJSONVTFeatureDiff

    type GeoJSONVTFeatureDiff = {
        addOrUpdateProperties?: { key: string; value: unknown }[];
        id: string | number;
        newGeometry?: GeoJSON.Geometry;
        removeAllProperties?: boolean;
        removeProperties?: string[];
    }
    Index

    Properties

    addOrUpdateProperties?: { key: string; value: unknown }[]

    Properties to add or update

    id: string | number

    ID of the feature being updated

    newGeometry?: GeoJSON.Geometry

    Optional new geometry

    removeAllProperties?: boolean

    Remove all properties if true

    removeProperties?: string[]

    Specific properties to delete