forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeatureLayerQuery.cs
201 lines (165 loc) · 7.56 KB
/
FeatureLayerQuery.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
// 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 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.UI.Controls;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Threading.Tasks;
using Android.Text;
namespace ArcGISRuntime.Samples.FeatureLayerQuery
{
[Activity]
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Feature layer query",
"Data",
"Query a feature layer via a feature table.",
"The sample provides a search bar on the top, where you can input the name of a US State. When you hit search the app performs a query on the feature table and based on the result either highlights the state geometry or provides an error.")]
public class FeatureLayerQuery : Activity
{
// Create reference to service of US States
private string _statesUrl = "https://services.arcgis.com/jIL9msH9OI208GCb/arcgis/rest/services/USA_Daytime_Population_2016/FeatureServer/0";
// Create and hold reference to the used MapView
private MapView _myMapView = new MapView();
// Create globally available text box for easy referencing
private EditText _queryTextBox;
// Create globally available feature table for easy referencing
private ServiceFeatureTable _featureTable;
// Create globally available feature layer for easy referencing
private FeatureLayer _featureLayer;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
Title = "Feature layer query";
// Create the UI, setup the control references and execute initialization
CreateLayout();
Initialize();
}
private void Initialize()
{
// Create new Map with basemap
Map myMap = new Map(Basemap.CreateTopographic());
// Create and set initial map location
MapPoint initialLocation = new MapPoint(
-11000000, 5000000, SpatialReferences.WebMercator);
myMap.InitialViewpoint = new Viewpoint(initialLocation, 100000000);
// Create feature table using a url
_featureTable = new ServiceFeatureTable(new Uri(_statesUrl));
// Create feature layer using this feature table
_featureLayer = new FeatureLayer(_featureTable)
{
// Set the Opacity of the Feature Layer
Opacity = 0.6,
// Work around service setting
MaxScale = 10
};
// Create a new renderer for the States Feature Layer.
SimpleLineSymbol lineSymbol = new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, Color.Black, 1);
SimpleFillSymbol fillSymbol = new SimpleFillSymbol(SimpleFillSymbolStyle.Solid, Color.Transparent, lineSymbol);
// Set States feature layer renderer
_featureLayer.Renderer = new SimpleRenderer(fillSymbol);
// Add feature layer to the map
myMap.OperationalLayers.Add(_featureLayer);
// Update the selection color
_myMapView.SelectionProperties.Color = Color.Cyan;
// Assign the map to the MapView
_myMapView.Map = myMap;
}
private async void OnQueryClicked(object sender, EventArgs e)
{
// Remove any previous feature selections that may have been made
_featureLayer.ClearSelection();
// Begin query process
await QueryStateFeature(_queryTextBox.Text);
}
private async Task QueryStateFeature(string stateName)
{
// Create dialog to display alert information
AlertDialog.Builder alert = new AlertDialog.Builder(this);
try
{
// Create a query parameters that will be used to Query the feature table
QueryParameters queryParams = new QueryParameters
{
// Construct and assign the where clause that will be used to query the feature table
WhereClause = "upper(STATE_NAME) LIKE '%" + stateName.Trim().ToUpper() + "%'"
};
// Query the feature table
FeatureQueryResult queryResult = await _featureTable.QueryFeaturesAsync(queryParams);
// Cast the QueryResult to a List so the results can be interrogated.
List<Feature> features = queryResult.ToList();
if (features.Any())
{
// Create an envelope.
EnvelopeBuilder envBuilder = new EnvelopeBuilder(SpatialReferences.WebMercator);
// Loop over each feature from the query result.
foreach (Feature feature in features)
{
// Add the extent of each matching feature to the envelope.
envBuilder.UnionOf(feature.Geometry.Extent);
// Select each feature.
_featureLayer.SelectFeature(feature);
}
// Zoom to the extent of the selected feature(s).
await _myMapView.SetViewpointGeometryAsync(envBuilder.ToGeometry(), 50);
}
else
{
alert.SetTitle("State Not Found!");
alert.SetMessage("Add a valid state name.");
alert.Show();
}
}
catch (Exception ex)
{
alert.SetTitle("Sample Error");
alert.SetMessage(ex.Message);
alert.Show();
}
}
private void CreateLayout()
{
// Create a new vertical layout for the app
LinearLayout layout = new LinearLayout(this) { Orientation = Orientation.Vertical };
// Create new Text box that will take the query parameter
_queryTextBox = new EditText(this)
{
InputType = InputTypes.ClassText | InputTypes.TextVariationNormal
};
_queryTextBox.SetMaxLines(1);
// Create Button that will start the Feature Query
Button queryButton = new Button(this)
{
Text = "Query"
};
queryButton.Click += OnQueryClicked;
// Create and add a help label
TextView helpLabel = new TextView(this)
{
Text = "Enter the name of a state, then press 'Query' to search."
};
layout.AddView(helpLabel);
// Add TextBox to the layout
layout.AddView(_queryTextBox);
// Add Button to the layout
layout.AddView(queryButton);
// Add the map view to the layout
layout.AddView(_myMapView);
// Show the layout in the app
SetContentView(layout);
}
}
}