forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClosestFacilityStatic.cs
271 lines (217 loc) · 11.1 KB
/
ClosestFacilityStatic.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Copyright 2018 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.Widget;
using Esri.ArcGISRuntime.Data;
using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Symbology;
using Esri.ArcGISRuntime.Tasks.NetworkAnalysis;
using Esri.ArcGISRuntime.UI;
using Esri.ArcGISRuntime.UI.Controls;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
namespace ArcGISRuntime.Samples.ClosestFacilityStatic
{
[Activity(Label = "ClosestFacilityStatic")]
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Closest facility (static)",
"Network Analysis",
"Demonstrates how to solve a Closest Facility Task to find the closest route between facilities and incidents.",
"Click the solve button to find the closest facility to every incident.")]
public class ClosestFacilityStatic : Activity
{
// Create a MapView.
private MapView _myMapView = new MapView();
// Add buttons for the UI.
private Button _solveRoutesButton;
private Button _resetButton;
// Used to display route between incident and facility to mapview.
private List<SimpleLineSymbol> _routeSymbols;
// Solves task to find closest route between an incident and a facility.
private ClosestFacilityTask _task;
// Table of all facilities.
private ServiceFeatureTable _facilityTable;
// Table of all incidents.
private ServiceFeatureTable _incidentTable;
// Feature layer for facilities.
private FeatureLayer _facilityLayer;
// Feature layer for incidents.
private FeatureLayer _incidentLayer;
// Uri for facilities feature service.
private Uri _facilityUri = new Uri("https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/San_Diego_Facilities/FeatureServer/0");
// Uri for incident feature service.
private Uri _incidentUri = new Uri("https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/San_Diego_Incidents/FeatureServer/0");
// Uri for the closest facility service.
private Uri _closestFacilityUri = new Uri("https://sampleserver6.arcgisonline.com/arcgis/rest/services/NetworkAnalysis/SanDiego/NAServer/ClosestFacility");
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
Title = "Closest facility (static)";
// Create the UI
CreateLayout();
// Initialize the app
Initialize();
}
private void CreateLayout()
{
// Create a new layout for the entire page.
LinearLayout layout = new LinearLayout(this)
{
Orientation = Orientation.Vertical
};
// Create a new layout for the toolbar (buttons).
LinearLayout toolbar = new LinearLayout(this)
{
Orientation = Orientation.Horizontal
};
// Create a button to solve the routes and add it to the toolbar.
_solveRoutesButton = new Button(this) { Text = "Solve Routes" };
_solveRoutesButton.Click += SolveRoutesClick;
_solveRoutesButton.Enabled = false;
toolbar.AddView(_solveRoutesButton);
// Create a button to reset the route display, add it to the toolbar.
_resetButton = new Button(this) { Text = "Reset" };
_resetButton.Click += ResetClick;
_resetButton.Enabled = false;
toolbar.AddView(_resetButton);
// Add the toolbar to the layout.
layout.AddView(toolbar);
// Add the map view to the layout.
layout.AddView(_myMapView);
// Show the layout in the app.
SetContentView(layout);
}
private async void Initialize()
{
try
{
// Construct the map and set the MapView.Map property.
_myMapView.Map = new Map(Basemap.CreateLightGrayCanvasVector());
// Add a graphics overlay to MyMapView. (Will be used later to display routes)
_myMapView.GraphicsOverlays.Add(new GraphicsOverlay());
// Create a ClosestFacilityTask using the San Diego Uri.
_task = await ClosestFacilityTask.CreateAsync(_closestFacilityUri);
// Create a symbol for displaying facilities.
PictureMarkerSymbol facilitySymbol = new PictureMarkerSymbol(new Uri("https://static.arcgis.com/images/Symbols/SafetyHealth/FireStation.png"))
{
Height = 30,
Width = 30
};
// Incident symbol.
PictureMarkerSymbol incidentSymbol = new PictureMarkerSymbol(new Uri("https://static.arcgis.com/images/Symbols/SafetyHealth/esriCrimeMarker_56_Gradient.png"))
{
Height = 30,
Width = 30
};
// Create a list of line symbols to show unique routes. Different colors help make different routes visually distinguishable.
_routeSymbols = new List<SimpleLineSymbol>()
{
new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.FromArgb(125, 25, 45, 85), 5.0f),
new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.FromArgb(125, 35, 65, 120), 5.0f),
new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.FromArgb(125, 55, 100, 190), 5.0f),
new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.FromArgb(125, 75, 140, 255), 5.0f)
};
// Create a table for facilities using the FeatureServer.
_facilityTable = new ServiceFeatureTable(_facilityUri);
// Create a feature layer from the table.
_facilityLayer = new FeatureLayer(_facilityTable)
{
Renderer = new SimpleRenderer(facilitySymbol)
};
// Create a table for facilities using the FeatureServer.
_incidentTable = new ServiceFeatureTable(_incidentUri);
// Create a feature layer from the table.
_incidentLayer = new FeatureLayer(_incidentTable)
{
Renderer = new SimpleRenderer(incidentSymbol)
};
// Add the layers to the map.
_myMapView.Map.OperationalLayers.Add(_facilityLayer);
_myMapView.Map.OperationalLayers.Add(_incidentLayer);
// Wait for both layers to load.
await _facilityLayer.LoadAsync();
await _incidentLayer.LoadAsync();
// Zoom to the combined extent of both layers.
Envelope fullExtent = GeometryEngine.CombineExtents(_facilityLayer.FullExtent, _incidentLayer.FullExtent);
await _myMapView.SetViewpointGeometryAsync(fullExtent, 50);
// Enable the solve button.
_solveRoutesButton.Enabled = true;
}
catch (Exception exception)
{
CreateErrorDialog("An exception has occurred.\n" + exception.Message);
}
}
private async void SolveRoutesClick(object sender, EventArgs e)
{
// Holds locations of hospitals around San Diego.
List<Facility> facilities = new List<Facility>();
// Holds locations of hospitals around San Diego.
List<Incident> incidents = new List<Incident>();
// Create query parameters to select all features.
QueryParameters queryParams = new QueryParameters()
{
WhereClause = "1=1"
};
// Query all features in the facility table.
FeatureQueryResult facilityResult = await _facilityTable.QueryFeaturesAsync(queryParams);
// Add all of the query results to facilities as new Facility objects.
facilities.AddRange(facilityResult.ToList().Select(feature => new Facility((MapPoint)feature.Geometry)));
// Query all features in the incident table.
FeatureQueryResult incidentResult = await _incidentTable.QueryFeaturesAsync(queryParams);
// Add all of the query results to facilities as new Incident objects.
incidents.AddRange(incidentResult.ToList().Select(feature => new Incident((MapPoint)feature.Geometry)));
// Set facilities and incident in parameters.
ClosestFacilityParameters closestFacilityParameters = await _task.CreateDefaultParametersAsync();
closestFacilityParameters.SetFacilities(facilities);
closestFacilityParameters.SetIncidents(incidents);
try
{
// Use the task to solve for the closest facility.
ClosestFacilityResult result = await _task.SolveClosestFacilityAsync(closestFacilityParameters);
for (int i = 0; i < incidents.Count; i++)
{
// Get the index of the closest facility to incident. (i) is the index of the incident, [0] is the index of the closest facility.
int closestFacility = result.GetRankedFacilityIndexes(i)[0];
// Get the route to the closest facility.
ClosestFacilityRoute route = result.GetRoute(closestFacility, i);
// Display the route on the graphics overlay.
_myMapView.GraphicsOverlays[0].Graphics.Add(new Graphic(route.RouteGeometry, _routeSymbols[i % _routeSymbols.Count]));
}
// Disable the solve button.
_solveRoutesButton.Enabled = false;
// Enable the reset button.
_resetButton.Enabled = true;
}
catch (Esri.ArcGISRuntime.Http.ArcGISWebException exception)
{
CreateErrorDialog("An ArcGIS web exception occurred.\n" + exception.Message);
}
}
private void ResetClick(object sender, EventArgs e)
{
// Clear the route graphics.
_myMapView.GraphicsOverlays[0].Graphics.Clear();
// Reset the buttons.
_solveRoutesButton.Enabled = true;
_resetButton.Enabled = false;
}
private void CreateErrorDialog(string message)
{
// Create a dialog to show message to user.
AlertDialog alert = new AlertDialog.Builder(this).Create();
alert.SetMessage(message);
alert.Show();
}
}
}