Manage operational layers

View inAndroidFormsUWPWPFWinUIiOSView on GitHub

Add, remove, and reorder operational layers in a map.

Image of manage operational layers

Use case

Operational layers display the primary content of the map and usually provide dynamic content for the user to interact with (as opposed to basemap layers that provide context).

The order of operational layers in a map determines the visual hierarchy of layers in the view. You can bring attention to a specific layer by rendering above other layers.

How to use the sample

When the app starts, a list displays the operational layers that are currently displayed in the map. Right-tap on the list item to remove the layer, or left-tap to move it to the top. The map will be updated automatically.

The second list shows layers that have been removed from the map. Tap one to add it to the map.

How it works

  1. Get the operational layers from the map using map.OperationalLayers.
  2. Add or remove layers using layerList.Add(layer) and layerList.Remove(layer) respectively. The last layer in the list will be rendered on top.

Relevant API

  • ArcGISMapImageLayer
  • Map
  • MapView
  • MapView.OperationalLayers

Additional information

You cannot add the same layer to the map multiple times or add the same layer to multiple maps. Instead, create a new layer using the FeatureTable.

Tags

add, delete, layer, map, remove

Sample Code

ManageOperationalLayers.cs
Use dark colors for code blocksCopy
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// Copyright 2019 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
// language governing permissions and limitations under the License.

using Android.App;
using Android.OS;
using Android.Views;
using Android.Widget;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.UI.Controls;
using System;
using System.Linq;

namespace ArcGISRuntimeXamarin.Samples.ManageOperationalLayers
{
    [Activity (ConfigurationChanges=Android.Content.PM.ConfigChanges.Orientation | Android.Content.PM.ConfigChanges.ScreenSize)]
    [ArcGISRuntime.Samples.Shared.Attributes.Sample(
        name: "Manage operational layers",
        category: "Map",
        description: "Add, remove, and reorder operational layers in a map.",
        instructions: "When the app starts, a list displays the operational layers that are currently displayed in the map. Right-tap on the list item to remove the layer, or left-tap to move it to the top. The map will be updated automatically.",
        tags: new[] { "add", "delete", "layer", "map", "remove" })]
    public class ManageOperationalLayers : Activity
    {
        // Hold references to the UI controls.
        private MapView _myMapView;
        private ListView _includedListView;
        private ListView _excludedListView;
        private PopupMenu _menu;
        private MapViewModel _viewModel;

        // Some URLs of layers to add to the map.
        private readonly string[] _layerUrls = new[]
        {
            "https://sampleserver5.arcgisonline.com/arcgis/rest/services/Elevation/WorldElevations/MapServer",
            "https://sampleserver5.arcgisonline.com/arcgis/rest/services/Census/MapServer",
            "https://sampleserver5.arcgisonline.com/arcgis/rest/services/DamageAssessment/MapServer"
        };

        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            Title = "Manage operational layers";

            CreateLayout();
            Initialize();
        }

        private void Initialize()
        {
            // Configure the view model and the map.
            _viewModel = new MapViewModel(new Map(BasemapStyle.ArcGISStreets));
            _myMapView.Map = _viewModel.Map;

            // Add the layers.
            foreach (string layerUrl in _layerUrls)
            {
                _viewModel.AddLayerFromUrl(layerUrl);
            }

            // Configure the list views to show the layer lists.
            UpdateLayerListViews();

            // Listen for taps to enable reconfiguring.
            _includedListView.ItemClick += ListItem_Click;
            _excludedListView.ItemClick += ListItem_Click;
        }

        private void UpdateLayerListViews()
        {
            // Configure array adapters - these convert the layer lists into arrays of strings that can be displayed in a list view.
            ArrayAdapter includedLayerAdapter = new ArrayAdapter<string>(
                this,
                Android.Resource.Layout.SimpleListItem1,
                _viewModel.IncludedLayers.Select(layer => layer.Name).ToArray());
            ArrayAdapter excludedLayerAdapter = new ArrayAdapter<string>(
                this,
                Android.Resource.Layout.SimpleListItem1,
                _viewModel.ExcludedLayers.Select(layer => layer.Name).ToArray());

            _includedListView.Adapter = includedLayerAdapter;
            _excludedListView.Adapter = excludedLayerAdapter;
        }

        private void ListItem_Click(object sender, AdapterView.ItemClickEventArgs e)
        {
            // Find the list the item belongs to.
            LayerCollection sendingList = sender == _includedListView ? _viewModel.IncludedLayers : _viewModel.ExcludedLayers;

            // Constants for command names.
            const string moveUpCommand = "Move up";
            const string moveDownCommand = "Move down";
            const string addToMapCommand = "Add to map";
            const string removeFromMapCommand = "Remove from map";

            // Create menu to show options.
            _menu = new PopupMenu(this, (ListView) sender);

            // Handle the click, calling the right method depending on the command.
            _menu.MenuItemClick += (o, menuArgs) =>
            {
                _menu.Dismiss();
                switch (menuArgs.Item.ToString())
                {
                    case moveUpCommand:
                        _viewModel.PromoteLayer(sendingList, e.Position);
                        break;
                    case moveDownCommand:
                        _viewModel.DemoteLayer(sendingList, e.Position);
                        break;
                    case addToMapCommand:
                    case removeFromMapCommand:
                        _viewModel.MoveLayer(sendingList, e.Position);
                        break;
                }

                // Update the lists in the view.
                UpdateLayerListViews();
            };

            // Add the menu commands.
            _menu.Menu.Add(moveUpCommand);
            _menu.Menu.Add(moveDownCommand);
            _menu.Menu.Add(sender == _includedListView ? removeFromMapCommand : addToMapCommand);

            // Show menu in the view.
            _menu.Show();
        }

        private void CreateLayout()
        {
            // Create a new vertical layout for the app.
            var layout = new LinearLayout(this) {Orientation = Orientation.Vertical};

            // Create and add a help label.
            TextView helpLabel = new TextView(this);
            helpLabel.Text = "Tap to reorder or add/remove layers.";
            helpLabel.Gravity = GravityFlags.Center;
            layout.AddView(helpLabel);

            // Create and add layer lists and their labels.
            TextView inMapLabel = new TextView(this);
            inMapLabel.Text = "Layers in map";
            inMapLabel.Gravity = GravityFlags.Center;
            layout.AddView(inMapLabel);

            _includedListView = new ListView(this);
            layout.AddView(_includedListView);

            TextView outOfMapLabel = new TextView(this);
            outOfMapLabel.Text = "Layers not in map";
            outOfMapLabel.Gravity = GravityFlags.Center;
            layout.AddView(outOfMapLabel);

            _excludedListView = new ListView(this);
            layout.AddView(_excludedListView);

            // Create the map view.
            _myMapView = new MapView(this);

            // Add the map view to the layout.
            layout.AddView(_myMapView);

            // Show the layout in the app.
            SetContentView(layout);
        }
    }

    class MapViewModel
    {
        public Map Map { get; }
        public LayerCollection IncludedLayers => Map.OperationalLayers;
        public LayerCollection ExcludedLayers { get; } = new LayerCollection();

        public MapViewModel(Map map)
        {
            Map = map;
        }

        public void AddLayerFromUrl(string layerUrl)
        {
            ArcGISMapImageLayer layer = new ArcGISMapImageLayer(new Uri(layerUrl));
            Map.OperationalLayers.Add(layer);
        }

        public void DemoteLayer(LayerCollection owningCollection, int position)
        {
            // Skip if the layer can't be moved because its already at the bottom.
            if (position == owningCollection.Count - 1)
            {
                return;
            }

            // Move the layer by removing it from its current position and inserting it at the next higher position.
            Layer selectedLayer = owningCollection[position];
            owningCollection.RemoveAt(position);
            owningCollection.Insert(position + 1, selectedLayer);
        }

        public void PromoteLayer(LayerCollection owningCollection, int position)
        {
            // Skip if the layer can't be moved up because it is already at the top.
            if (position < 1)
            {
                return;
            }

            // Move the layer by removing it from its current position and adding it at the next lower position.
            Layer selectedLayer = owningCollection[position];
            owningCollection.RemoveAt(position);
            owningCollection.Insert(position - 1, selectedLayer);
        }

        public void MoveLayer(LayerCollection owningCollection, int position)
        {
            // Find the selected layer.
            Layer selectedLayer = owningCollection[position];

            // Move the layer from one list to another by removing it from the source list and adding it to the destination list.
            if (IncludedLayers.Contains(selectedLayer))
            {
                IncludedLayers.Remove(selectedLayer);
                ExcludedLayers.Add(selectedLayer);
            }
            else
            {
                ExcludedLayers.Remove(selectedLayer);
                IncludedLayers.Add(selectedLayer);
            }
        }
    }
}

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