TomTom Maps for JavaScript
    Preparing search index...

    Type Alias CustomGeometriesAnalysis

    A single aggregation/analysis result attached to a custom-geometries entry. Produced by analyseData; data is whatever the dynamic code returned.

    type CustomGeometriesAnalysis = {
        data: unknown;
        description?: string;
        name: string;
        outputFormat: AnalysisOutputFormat;
        timestamp: number;
    }
    Index

    Properties

    data: unknown

    Arbitrary aggregation result returned by the dynamic code.

    description?: string

    Optional human-readable description of what the analysis computed.

    name: string

    Unique name within the parent entry (used as a key for future UI).

    outputFormat: AnalysisOutputFormat

    How data should be interpreted — plain JSON or a Chart.js configuration.

    timestamp: number