Optionalfilters?: { categories: ValuesFilter<FilterablePOICategory> }Optional filters for controlling which POI categories are displayed.
Category filter configuration.
Optionalvisible?: booleanControls the visibility of the POI layers.
POIs are part of the base map vector tiles and include businesses, landmarks, and other points of interest. This configuration allows you to control which categories are visible.
// Show only restaurants
const config: POIsModuleConfig = {
visible: true,
filters: {
categories: {
show: 'only',
values: ['RESTAURANT']
}
}
};
// Hide parking-related POIs
const noParkingConfig: POIsModuleConfig = {
filters: {
categories: {
show: 'all_except',
values: ['PARKING_GROUP']
}
}
};
// Show only food and shopping
const limitedConfig: POIsModuleConfig = {
filters: {
categories: {
show: 'only',
values: ['FOOD_DRINKS_GROUP', 'SHOPPING_GROUP']
}
}
};
Configuration options for the POIsModule.
Controls visibility and filtering of Points of Interest displayed in the map style.