Layer group filter for selective base map display.
Defines which layer groups to include or exclude from the base map module.
Can be expressed as explicit inclusions (show only these) or exclusions
(show all except these).
Remarks
Filter Modes:
include: Only the specified groups are shown, all others are hidden
exclude: All groups are shown except the specified ones
Common Use Cases:
Show only roads and labels (minimal map)
Hide buildings for cleaner appearance
Show only water and land (base terrain)
Remove labels for overlay maps
Example
// Show only roads and borders constroadsOnly: BaseMapLayerGroups = { mode:'include', names: ['roadLines', 'roadLabels', 'borders'] };
Layer group filter for selective base map display.
Defines which layer groups to include or exclude from the base map module. Can be expressed as explicit inclusions (show only these) or exclusions (show all except these).
Remarks
Filter Modes:
include: Only the specified groups are shown, all others are hiddenexclude: All groups are shown except the specified onesCommon Use Cases:
Example