forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListGeodatabaseVersions.xaml.cs
152 lines (130 loc) · 6.21 KB
/
ListGeodatabaseVersions.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
140
141
142
143
144
145
146
147
148
149
150
151
152
// Copyright 2016 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.Data;
using Esri.ArcGISRuntime.Tasks;
using Esri.ArcGISRuntime.Tasks.Geoprocessing;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Text;
using Xamarin.Forms;
namespace ArcGISRuntime.Samples.ListGeodatabaseVersions
{
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"List geodatabase versions",
"Geoprocessing",
"This sample calls a custom GeoprocessingTask to get a list of available versions for an enterprise geodatabase. The task returns a table of geodatabase version information, which is displayed in the app as a list.",
"")]
public partial class ListGeodatabaseVersions : ContentPage
{
// Url to used geoprocessing service
private const string ListVersionsUrl =
"https://sampleserver6.arcgisonline.com/arcgis/rest/services/GDBVersions/GPServer/ListVersions";
public ListGeodatabaseVersions()
{
InitializeComponent ();
// Create the UI, setup the control references and execute initialization
Initialize();
}
private async void Initialize()
{
// Set the UI to indicate that the geoprocessing is running
SetBusy(true);
try
{
// Get versions from a geodatabase
IFeatureSet versionsFeatureSet = await GetGeodatabaseVersionsAsync();
// Continue if we got a valid geoprocessing result
if (versionsFeatureSet != null)
{
// Create a string builder to hold all of the information from the geoprocessing
// task to display in the UI
StringBuilder myStringBuilder = new StringBuilder();
// Loop through each Feature in the FeatureSet
foreach (Feature version in versionsFeatureSet)
{
// Get the attributes (a dictionary of <key,value> pairs) from the Feature
IDictionary<string,object> myDictionary = version.Attributes;
// Loop through each attribute (a <key,value> pair)
foreach (KeyValuePair<string,object> attribute in myDictionary)
{
// Add the key and value strings to the string builder
myStringBuilder.AppendLine(attribute.Key + ": " + attribute.Value);
}
// Add a blank line after each Feature (the listing of geodatabase versions)
myStringBuilder.AppendLine();
}
// Display the results to the user
theTextBox.Text = myStringBuilder.ToString();
}
}
catch (Exception e)
{
await ((Page)Parent).DisplayAlert("Error", e.ToString(), "OK");
}
// Set the UI to indicate that the geoprocessing is not running
SetBusy(false);
}
private async Task<IFeatureSet> GetGeodatabaseVersionsAsync()
{
// Results will be returned as a feature set
IFeatureSet results = null;
// Create new geoprocessing task
GeoprocessingTask listVersionsTask = await GeoprocessingTask.CreateAsync(new Uri(ListVersionsUrl));
// Create default parameters that are passed to the geoprocessing task
GeoprocessingParameters listVersionsParameters = await listVersionsTask.CreateDefaultParametersAsync();
// Create job that handles the communication between the application and the geoprocessing task
GeoprocessingJob listVersionsJob = listVersionsTask.CreateJob(listVersionsParameters);
try
{
// Execute analysis and wait for the results
GeoprocessingResult analysisResult = await listVersionsJob.GetResultAsync();
// Get results from the outputs
GeoprocessingFeatures listVersionsResults = (GeoprocessingFeatures)analysisResult.Outputs["Versions"];
// Set results
results = listVersionsResults.Features;
}
catch (Exception ex)
{
// Error handling if something goes wrong
if (listVersionsJob.Status == JobStatus.Failed && listVersionsJob.Error != null)
{
await ((Page)Parent).DisplayAlert("Geoprocessing error", "Executing geoprocessing failed. " + listVersionsJob.Error.Message, "OK");
}
else
{
await ((Page)Parent).DisplayAlert("Sample error", "An error occurred. " + ex.ToString(), "OK");
}
}
finally
{
// Set the UI to indicate that the geoprocessing is not running
SetBusy(false);
}
return results;
}
private void SetBusy(bool isBusy = true)
{
// This function toggles running of the 'progress' control feedback status to denote if
// the viewshed analysis is executing as a result of the user click on the map
if (isBusy)
{
// Show busy activity indication
MyActivityIndicator.IsVisible = true;
MyActivityIndicator.IsRunning = true;
}
else
{
// Remove the busy activity indication
MyActivityIndicator.IsRunning = false;
MyActivityIndicator.IsVisible = false;
}
}
}
}