TomTom Maps for JavaScript
    Preparing search index...

    Type Alias TrafficAreaAnalyticsDays

    Specific-dates variant: analyse traffic on an explicit list of dates.

    Useful for non-consecutive dates such as "all Mondays in August". Mutually exclusive with TrafficAreaAnalyticsDateRange.

    type TrafficAreaAnalyticsDays = {
        days: AreaAnalyticsDateInput[];
        endDate?: never;
        startDate?: never;
    }
    Index

    Properties

    List of specific dates to include in the analysis. Accepts Date objects or ISO 'YYYY-MM-DD' strings.

    ['2024-08-05', '2024-08-12', '2024-08-19', '2024-08-26']
    
    endDate?: never
    startDate?: never