TomTom Maps for JavaScript
    Preparing search index...

    Class POIsModule

    POIs Module for controlling Points of Interest displayed in the map style.

    This module manages the built-in POI layer from the vector map, allowing you to show/hide POIs and filter them by category. POIs are already part of the map style and include businesses, landmarks, and other points of interest.

    Features:

    • Toggle POI visibility on/off
    • Filter by POI categories or category groups
    • Event handling for POI interactions
    • Based on vector tile data in the map style

    POI Categories:

    • Individual categories (e.g., RESTAURANT, HOTEL_MOTEL, PARKING_GARAGE)
    • Category groups (e.g., FOOD_DRINKS_GROUP, SHOPPING_GROUP, TRANSPORTATION_GROUP)

    Difference from PlacesModule:

    • POIsModule: Controls existing POIs in the map style
    • PlacesModule: Displays custom place data from Search API or other sources

    Basic usage:

    import { POIsModule } from '@tomtom-international/maps-sdk-js/map';

    // Get module
    const poisModule = await POIsModule.get(map);

    // Toggle visibility
    poisModule.setVisible(false);
    poisModule.setVisible(true);

    Filter specific categories:

    // Show only restaurants and hotels
    poisModule.filterCategories({
    show: 'only',
    values: ['RESTAURANT', 'HOTEL_MOTEL']
    });

    // Hide parking garages
    poisModule.filterCategories({
    show: 'all_except',
    values: ['PARKING_GARAGE', 'OPEN_PARKING_AREA']
    });

    Filter using category groups:

    // Show only food and shopping POIs
    poisModule.filterCategories({
    show: 'only',
    values: ['FOOD_DRINKS_GROUP', 'SHOPPING_GROUP']
    });

    // Hide transportation POIs
    pois.filterCategories({
    show: 'all_except',
    values: ['TRANSPORTATION_GROUP']
    });

    Event handling:

    pois.events.on('click', (feature, lngLat) => {
    console.log('Clicked POI:', feature.properties.name);
    console.log('Category:', feature.properties.category);
    });

    Hierarchy (View Summary)

    Index

    Accessors

    • Gets the events interface for handling user interactions with POIs.

      Returns EventsModule<POIsModuleFeature>

      An EventsModule instance for registering event handlers.

      Supported Events:

      • click: User clicks on a POI
      • contextmenu: User right-clicks on a POI
      • hover: Mouse enters a POI
      • long-hover: Mouse hovers over POI for extended time

      Event Feature Properties:

      • id: Unique POI identifier
      • name: POI name in native language
      • category: POI category
      • iconID: Icon sprite ID
      • group: Category group
      • priority: Importance level (lower = more important)
      pois.events.on('click', (feature, lngLat) => {
      console.log('POI:', feature.properties.name);
      console.log('Category:', feature.properties.category);
      console.log('ID:', feature.properties.id);
      });

      pois.events.on('hover', (feature) => {
      showTooltip(feature.properties.name);
      });
    • get sourceAndLayerIDs(): Record<keyof SOURCES_WITH_LAYERS, SourceWithLayerIDs>

      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.

      Returns Record<keyof SOURCES_WITH_LAYERS, SourceWithLayerIDs>

      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:

      • Directly manipulate layers using MapLibre's native API
      • Identify which layers on the map belong to this module
      • Set layer ordering or positioning relative to other layers
      • Access source or layer properties through MapLibre methods
      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');
      });

    Methods

    • 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.

      Parameters

      • config: POIsModuleConfig | undefined

        The configuration object to apply to the module. Pass undefined to reset the configuration to default values.

      Returns void

      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);
      • resetConfig for a convenience method to reset configuration
      • getConfig to retrieve the current configuration
    • Filters POIs by category or category group.

      Parameters

      • OptionalcategoriesFilter: ValuesFilter<string>

        Filter configuration specifying which categories to show/hide. Pass undefined to reset to default (show all).

      Returns void

      Filter Modes:

      • only: Show only the specified categories, hide all others
      • all_except: Show all categories except the specified ones

      Category Types:

      • Individual categories (e.g., 'RESTAURANT', 'HOTEL_MOTEL')
      • Category groups (e.g., 'FOOD_DRINKS_GROUP', 'SHOPPING_GROUP')

      Available Category Groups:

      • FOOD_DRINKS_GROUP
      • SHOPPING_GROUP
      • TRANSPORTATION_GROUP
      • HEALTH_GROUP
      • PARKING_GROUP
      • HOLIDAY_TOURISM_GROUP
      • EV_CHARGING_STATIONS_GROUP
      • GAS_STATIONS_GROUP
      • ACCOMMODATION_GROUP
      • ENTERTAINMENT_GROUP
      • SPORTS_LEISURE_GROUP
      • EDUCATION_GROUP
      • GOVERNMENT_GROUP

      Show only restaurants:

      pois.filterCategories({
      show: 'only',
      values: ['RESTAURANT']
      });

      Hide parking:

      pois.filterCategories({
      show: 'all_except',
      values: ['PARKING_GROUP']
      });

      Reset filter (show all):

      pois.filterCategories(undefined);
      
    • 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.

      Returns NonNullable<POIsModuleConfig> | 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
    • Checks if POI layers are currently visible.

      Returns boolean

      true if at least one POI layer is visible, false if all are hidden.

      if (pois.isVisible()) {
      console.log('POIs are displayed');
      }
    • 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).

      Returns void

      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();
      • applyConfig to apply a new configuration
      • getConfig to retrieve the current configuration before resetting
    • Sets the visibility of POI layers.

      Parameters

      • visible: boolean

        true to show POIs, false to hide them.

      Returns void

      Changes are applied immediately if the map is ready.

      pois.setVisible(false); // Hide all POIs
      pois.setVisible(true); // Show all POIs
    • Retrieves a POIsModule instance for the given map.

      Parameters

      • map: TomTomMap

        The TomTomMap instance to attach this module to.

      • Optionalconfig: POIsModuleConfig

        Optional initial configuration for visibility and filters.

      Returns Promise<POIsModule>

      A promise that resolves to the initialized POIsModule.

      Configuration:

      • visible: Initial visibility state
      • filters.categories: Category filter to apply on initialization

      Error if the POI source is not found in the map style

      Default initialization:

      const poisModule = await POIsModule.get(map);
      

      With initial filter:

      const poisModule = await POIsModule.get(map, {
      visible: true,
      filters: {
      categories: {
      show: 'only',
      values: ['RESTAURANT', 'CAFE_PUB']
      }
      }
      });