TomTom Maps for JavaScript
    Preparing search index...

    Type Alias AreaAnalyticsFeatureProperties

    Properties attached to each region feature in an area analytics result.

    type AreaAnalyticsFeatureProperties = {
        anomalies?: Partial<
            Record<AreaAnalyticsDataType, AreaAnalyticsAnomaly[]>,
        >;
        baseData: AreaAnalyticsMetrics;
        level: number;
        name: string;
        tiledData?: { tiles: AreaAnalyticsTileEntry[] };
        timedData: AreaAnalyticsTimedData;
        timezone: string;
    }
    Index

    Properties

    anomalies?: Partial<Record<AreaAnalyticsDataType, AreaAnalyticsAnomaly[]>>

    Detected anomalies keyed by data type, if anomaly detection was performed.

    Overall aggregated traffic metrics for the full analysis period.

    level: number

    Hierarchical level of the region in the analysis.

    name: string

    Name of the analysis region.

    tiledData?: { tiles: AreaAnalyticsTileEntry[] }

    Per-tile traffic metrics for the region, if heatmap data was requested.

    Traffic metrics broken down by time granularity.

    timezone: string

    IANA timezone identifier for the region (e.g. 'Europe/Amsterdam').