-
Notifications
You must be signed in to change notification settings - Fork 518
/
ManageOperationalLayers.xaml.cs
139 lines (119 loc) · 5.4 KB
/
ManageOperationalLayers.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
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
// 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 Esri.ArcGISRuntime.Mapping;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Windows.ApplicationModel.DataTransfer;
namespace ArcGIS.WinUI.Samples.ManageOperationalLayers
{
[ArcGIS.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-click on the list item to remove the layer, or left-click to move it to the top. The map will be updated automatically.",
tags: new[] { "add", "delete", "layer", "map", "remove" })]
public partial class ManageOperationalLayers
{
// The view model manages the data for the sample.
private MapViewModel _viewModel;
// Hold a reference to the originating listview when dragging and dropping.
private ListView _originListView;
// Some URLs of layers to add to the map.
private readonly string[] _layerUrls = new[]
{
"http://sampleserver5.arcgisonline.com/arcgis/rest/services/Elevation/WorldElevations/MapServer",
"http://sampleserver5.arcgisonline.com/arcgis/rest/services/Census/MapServer",
"http://sampleserver5.arcgisonline.com/arcgis/rest/services/DamageAssessment/MapServer"
};
public ManageOperationalLayers()
{
InitializeComponent();
Initialize();
}
private void Initialize()
{
_viewModel = new MapViewModel(new Map(BasemapStyle.ArcGISStreets));
// Configure the bindings to point to the view model.
this.DataContext = _viewModel;
// Add the layers.
foreach (string layerUrl in _layerUrls)
{
_viewModel.AddLayerFromUrl(layerUrl);
}
}
private void ListBox_OnDragOver(object sender, DragEventArgs e)
{
// Specify that the listview accepts dropping and that the operation is a move (rather than a copy or link)
e.AcceptedOperation = DataPackageOperation.Move;
}
private void ListBox_OnDrop(object sender, DragEventArgs e)
{
// If the item being dropped is a layer...
if (e.DataView != null && e.DataView.Properties != null && e.DataView.Properties.Any(x => x.Key == "item" && x.Value is Layer))
{
try
{
// Start doing work for the drop.
DragOperationDeferral deferral = e.GetDeferral();
// Get the layer that is being moved.
KeyValuePair<string, object> draggedItem = e.Data.Properties.FirstOrDefault(x => x.Key == "item");
Layer draggedLayer = draggedItem.Value as Layer;
// Find the source and destination views.
ListView destinationList = sender as ListView;
ListView sourceList = _originListView;
// Remove the layer and re-add it.
((LayerCollection)sourceList.ItemsSource).Remove(draggedLayer);
((LayerCollection)destinationList.ItemsSource).Add(draggedLayer);
// Finish the drop.
deferral.Complete();
}
catch (Exception ex)
{
Debug.WriteLine(ex.ToString());
}
}
else
{
// Don't allow other things to be dropped (e.g. files from the desktop).
e.AcceptedOperation = DataPackageOperation.None;
}
}
private void ListBox_OnDragItemsStarting(object sender, DragItemsStartingEventArgs e)
{
// Store the originating list view for the drag operation.
_originListView = sender as ListView;
// Specify the type of drag and drop.
e.Data.RequestedOperation = DataPackageOperation.Move;
if (e.Items != null && e.Items.Any())
{
// Store the layer in the data package.
e.Data.Properties.Add("item", e.Items.FirstOrDefault());
}
}
}
internal 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);
}
}
}