Create the events on/off for this module
An instance of EventsModule
Gets the source and layer identifiers for all sources managed by this module.
This property provides access to the MapLibre source and layer IDs that were created and are managed by this module. These IDs can be used to interact directly with MapLibre's API or to identify which layers belong to this module.
A record mapping each source name to its corresponding source ID and layer IDs. Each entry contains the MapLibre source identifier and an array of layer identifiers associated with that source.
The returned IDs are useful when you need to:
const ids = myModule.sourceAndLayerIDs;
console.log(ids);
// {
// mySource: {
// sourceID: 'my-source-id',
// layerIDs: ['layer-1', 'layer-2']
// }
// }
// Use with MapLibre API
const map = myModule.mapLibreMap;
ids.mySource.layerIDs.forEach(layerId => {
map.setLayoutProperty(layerId, 'visibility', 'visible');
});
Applies a configuration to this module.
This method updates the module's behavior and appearance based on the provided configuration. The configuration is stored internally and will be automatically reapplied if the map style changes.
The configuration object to apply to the module. Pass undefined to reset
the configuration to default values.
When a configuration is applied, the module updates its visual representation and behavior accordingly. The configuration persists across map style changes, ensuring consistent module behavior even when the map's base style is modified.
// Apply a new configuration
myModule.applyConfig({ visible: true, opacity: 0.8 });
// Reset to default configuration
myModule.applyConfig(undefined);
Applies filters to traffic flow display.
Optionalfilters: TrafficFlowFiltersFilter configuration for road types, categories, and closures.
Pass undefined to reset to defaults (show all).
Filter Options:
roadCategories: Filter by road importance (motorway, trunk, primary, etc.)roadSubCategories: Filter by specific street typesshowRoadClosures: Show only closures or exclude themAvailable Road Categories:
motorway: Major highwaystrunk: Major roadsprimary: Primary roadssecondary: Secondary roadstertiary: Tertiary roadsstreet: Local streetsFilter Logic: Uses "any" (OR) logic - traffic matching any filter is shown.
Show only major roads:
trafficFlow.filter({
any: [{
roadCategories: {
show: 'only',
values: ['motorway', 'trunk', 'primary']
}
}]
});
Hide street-level traffic:
trafficFlow.filter({
any: [{
roadCategories: {
show: 'all_except',
values: ['street']
}
}]
});
Retrieves a copy of the current module configuration.
This method returns a shallow copy of the configuration object that is currently
applied to the module. If no configuration has been applied, it returns undefined.
A shallow copy of the current configuration object, or undefined if no
configuration is currently applied. The returned object is a copy to prevent
unintended modifications to the internal state.
The returned configuration object is a shallow copy, which means that while the top-level properties are copied, any nested objects or arrays are still referenced from the original configuration. This is sufficient for most use cases but should be kept in mind when dealing with complex configurations.
// Apply a configuration
myModule.applyConfig({ visible: true, opacity: 0.8 });
// Later, retrieve the current configuration
const currentConfig = myModule.getConfig();
console.log(currentConfig); // { visible: true, opacity: 0.8 }
// When no config is applied
myModule.resetConfig();
console.log(myModule.getConfig()); // undefined
Returns if any layer for traffic flow is visible or not.
Resets the configuration of this module to its default values.
This is a convenience method that clears any previously applied configuration
and restores the module to its initial state. This is equivalent to calling
applyConfig(undefined).
After calling this method, the module will behave as if no configuration was ever applied. Any custom settings, styling, or behavior modifications will be removed and replaced with default values.
// Apply some configuration
myModule.applyConfig({ visible: true, opacity: 0.5 });
// Later, reset to defaults
myModule.resetConfig();
ProtectedwaitStaticgetRetrieves a TrafficFlowModule instance for the given map.
The TomTomMap instance to attach this module to.
Optionalconfig: FlowConfigOptional configuration for initialization, visibility, and filters.
A promise that resolves to the initialized TrafficFlowModule.
Traffic Flow Module for displaying and configuring real-time traffic flow information on the map.
This module controls the vector tile traffic flow layers that visualize current traffic speed conditions using color-coded road segments.
Remarks
Features:
Visual Representation:
Example
Basic usage:
Example
Filter by road type:
Example
Show only road closures:
See