Layer group visibility configuration with explicit visible state.
Extends BaseMapLayerGroups to include a visibility flag, allowing you to show or hide specific groups of base map layers.
// Hide all buildingsconst config: BaseMapLayerGroupsVisibility = { mode: 'include', names: ['buildings2D', 'buildings3D'], visible: false};// Show only roadsconst roadsOnly: BaseMapLayerGroupsVisibility = { mode: 'include', names: ['roadLines', 'roadLabels'], visible: true}; Copy
// Hide all buildingsconst config: BaseMapLayerGroupsVisibility = { mode: 'include', names: ['buildings2D', 'buildings3D'], visible: false};// Show only roadsconst roadsOnly: BaseMapLayerGroupsVisibility = { mode: 'include', names: ['roadLines', 'roadLabels'], visible: true};
Layer group visibility configuration with explicit visible state.
Extends BaseMapLayerGroups to include a visibility flag, allowing you to show or hide specific groups of base map layers.