TomTom Maps for JavaScript
    Preparing search index...

    Type Alias TimeZone

    Time zone information using IANA Time Zone Database identifiers.

    IANA identifiers follow the format Area/Location (e.g., America/New_York, Europe/London). These are standardized time zone identifiers maintained by the Internet Assigned Numbers Authority.

    const timezone: TimeZone = {
    ianaId: 'Europe/Amsterdam'
    };
    type TimeZone = {
        ianaId: string;
    }
    Index

    Properties

    Properties

    ianaId: string

    IANA Time Zone Database identifier.

    Examples: America/New_York, Europe/London, Asia/Tokyo