TomTom Maps for JavaScript
    Preparing search index...

    Type Alias RoutingEvents

    RoutingEvents: CombinedEvents<
        MapGeoJSONFeature,
        RoutingModuleConfig,
        RoutingShownFeatures,
    > & {
        chargingStops: UserEvents<RouteSection>;
        ferries: UserEvents<RouteSection>;
        incidents: UserEvents<RouteSection<DisplayTrafficSectionProps>>;
        instructionLines: UserEvents<DisplayInstruction>;
        mainLines: UserEvents<Route<DisplayRouteProps>>;
        summaryBubbles: UserEvents<DisplayRouteSummary>;
        tollRoads: UserEvents<RouteSection>;
        tunnels: UserEvents<RouteSection>;
        vehicleRestricted: UserEvents<RouteSection>;
        waypoints: UserEvents<Waypoint<WaypointDisplayProps>>;
    }

    Event surface of RoutingModule: the module's own events, plus one named scope per part of a route it draws.

    Type Declaration