Group layers

View inMAUIUWPWPFWinUIView on GitHub

Group a collection of layers together and toggle their visibility as a group.

Image of group layers

Use case

Group layers communicate to the user that layers are related and can be managed together.

In a land development project, you might group layers according to the phase of development.

How to use the sample

The layers in the map will be displayed in a table of contents. Toggle the checkbox next to a layer's name to change its visibility. Turning a group layer's visibility off will override the visibility of its child layers.

How it works

NOTE See WPF for an example of using a TreeView with a hierarchical data template.

  1. Create an empty GroupLayer.
  2. Add a child layer to the group layer's layers collection.
  3. To build the table of contents, use a TreeView with a HierarchicalDataTemplate.
  4. To toggle the visibility of the group, change the group layer's visibility property.

Relevant API

  • GroupLayer
  • ILayerContent

Additional information

The full extent of a group layer may change when child layers are added/removed. Group layers do not have a spatial reference, but the full extent will have the spatial reference of the first child layer.

Group layers can be saved to web scenes. In web maps, group layers will be ignored.

Tags

group layer, layers

Sample Code

GroupLayers.xamlGroupLayers.xamlGroupLayers.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<UserControl
    x:Class="ArcGIS.UWP.Samples.GroupLayers.GroupLayers"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls"
    xmlns:mapping="using:Esri.ArcGISRuntime.Mapping">
    <Grid>
        <esriUI:SceneView x:Name="MySceneView" />
        <Border Style="{StaticResource BorderStyle}">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="auto" />
                    <RowDefinition Height="*" />
                </Grid.RowDefinitions>
                <TextBlock Text="Select layers for display."
                           Grid.Row="0" Margin="5"
                           Foreground="Black" FontWeight="SemiBold" TextAlignment="Center" />
                <!-- This is a workaround until UWP TreeView supports proper HierarchicalDataTemplate. -->
                <ListView SelectionMode="None"
                          ItemsSource="{Binding ElementName=MySceneView,Path=Scene.OperationalLayers}"
                          Grid.Row="1">
                    <ListView.ItemTemplate>
                        <DataTemplate x:DataType="mapping:Layer">
                            <StackPanel>
                                <CheckBox IsChecked="{Binding IsVisible,Mode=TwoWay}"
                                          Content="{Binding Name,Mode=OneWay}" />
                                <ListView SelectionMode="None" ItemsSource="{Binding SublayerContents}"
                                          Margin="15,0,0,0">
                                    <ListView.ItemTemplate>
                                        <DataTemplate x:DataType="mapping:ILayerContent">
                                            <StackPanel>
                                                <CheckBox IsChecked="{Binding IsVisible,Mode=TwoWay}"
                                                          Content="{Binding Name,Mode=OneWay}" />
                                            </StackPanel>
                                        </DataTemplate>
                                    </ListView.ItemTemplate>
                                </ListView>
                            </StackPanel>
                        </DataTemplate>
                    </ListView.ItemTemplate>
                </ListView>
            </Grid>
        </Border>
    </Grid>
</UserControl>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close