Map styles
Map Styles in the TomTom Maps SDK define the visual appearance and data presentation of maps. This guide covers TomTom’s built-in styles, style components, and customization options.
A map style consists of various layers and sources that determine how geographic features are rendered.
The SDK provides several pre-defined styles optimized for different use cases, along with the ability to customize styles by including additional layers or modifying existing ones.
Built-in Styles
Basic Styles
import { TomTomMap } from '@tomtom-org/maps-sdk/map';
// Light theme (default)const map = new TomTomMap({ mapLibre: { container: 'map' }, style: 'monoLight'});
// Dark themeconst map = new TomTomMap({ mapLibre: { container: 'map' }, style: 'monoDark'});
// Satellite imagery with roadsconst map = new TomTomMap({ mapLibre: { container: 'map' }, style: 'hybrid'});
// Pure satellite imageryconst map = new TomTomMap({ mapLibre: { container: 'map' }, style: 'satellite'});Dynamic Style Switching
const map = new TomTomMap({ mapLibre: { container: 'map' } });
// Change style after map creationmap.setStyle('monoDark');// ...map.setStyle('drivingLight');Available Style Parts
The map style includes multiple parts that come from different data sources:
- Base Map and POIs: Core geographic features and points of interest.
- Included and visible by default with all styles.
- Controlled by BaseMapModule and POIsModule .
- Traffic Incidents: Real-time traffic incident data.
- Included in the style by default, but hidden upfront.
- Can be optionally excluded from the style for performance.
- Controlled by TrafficIncidentsModule .
- Traffic Flow: Live traffic flow information.
- Included in the style by default, but hidden upfront.
- Can be optionally excluded from the style for performance.
- Controlled by TrafficFlowModule .
- Hillshade: Terrain elevation shading for enhanced topography.
- Included in the style by default, but hidden upfront.
- Can be optionally excluded from the style for performance.
- Controlled by HillshadeModule .
// Common layer modules you can include or not:include: [ 'trafficIncidents', // Traffic incidents 'trafficFlow', // Traffic flow data 'hillshade' // Terrain shading]Map Language
const map = new TomTomMap({ mapLibre: { container: 'map' }, style: 'monoLight', language: 'de-DE' // German labels}););Related Guides and Examples
Core Map Setup
- Map Quickstart - Basic map creation and style configuration
- Base Map - Control fundamental map layer visibility
- About MapLibre - Understanding the underlying mapping technology
Advanced Features
- Traffic Flow - Add real-time traffic data to your styles
- Traffic Incidents - Display traffic incidents with custom styling
- Hillshade - Add terrain elevation shading to your maps
Practical Examples
- Keep State When Changing Style - Maintain map state during style transitions
- Load Style Parts - Dynamic style component loading
- Map Language - Language switching and localization
- Base Map Example - Simple style implementation
Integration and Customization
- User Interaction Events - Handle style-related user interactions
- Places - Style integration with places data
- Routes - Route visualization with different map styles