TomTom Maps for JavaScript
    Preparing search index...

    Type Alias GeometryProvenance

    Provenance metadata for a custom-geometries entry — captures every input source that fed the polygon-producing operation. sourceIds holds tagged ids in the same form geometriesEntryIDs accepts: { kind: 'place' } for a single place footprint, { kind: 'places' } for every footprint in a places entry, { kind: 'ranges' } for an isochrone entry, { kind: 'customGeometries' } for a derived entry. operation is a short label for the kind of computation that produced the entry (e.g. 'union', 'buffer', 'h3-coverage').

    type GeometryProvenance = {
        operation?: string;
        sourceIds: readonly GeometriesId[];
    }
    Index

    Properties

    operation?: string

    Short label for the operation that produced this entry (free-form).

    sourceIds: readonly GeometriesId[]

    Tagged source ids that fed the producing operation.