TomTom Maps for JavaScript
    Preparing search index...

    Type Alias TrafficIncidentTMC

    Traffic Message Channel (TMC) data associated with a traffic incident.

    TMC is an international standard for encoding traffic and travel information in FM radio broadcasts (RDS-TMC) and digital data streams.

    type TrafficIncidentTMC = {
        countryCode: string;
        direction: "positive" | "negative";
        points: TrafficIncidentTMCPoint[];
        tableNumber: string;
        tableVersion: string;
    }
    Index

    Properties

    countryCode: string

    ISO 3166-1 alpha-2 country code.

    direction: "positive" | "negative"

    Direction of the incident along the TMC path.

    Ordered list of TMC location points describing the incident extent.

    tableNumber: string

    TMC table number.

    tableVersion: string

    TMC table version.