forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindPlace.xaml.cs
466 lines (380 loc) · 17.8 KB
/
FindPlace.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
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
// Copyright 2017 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.Geometry;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Symbology;
using Esri.ArcGISRuntime.Tasks.Geocoding;
using Esri.ArcGISRuntime.UI;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace ArcGISRuntime.Samples.FindPlace
{
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Find place",
"Search",
"This sample demonstrates how to use geocode functionality to search for points of interest, around a location or within an extent.",
"1. Enter a point of interest you'd like to search for (e.g. 'Starbucks')\n2. Enter a search location or accept the default 'Current Location'\n3. Select 'search all' to get all results, or press 'search view' to only get results within the current extent.")]
[ArcGISRuntime.Samples.Shared.Attributes.EmbeddedResource(@"PictureMarkerSymbols\pin_star_blue.png")]
public partial class FindPlace : ContentPage
{
// The LocatorTask provides geocoding services
private LocatorTask _geocoder;
// Service Uri to be provided to the LocatorTask (geocoder)
private Uri _serviceUri = new Uri("https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer");
public FindPlace()
{
InitializeComponent();
// Create the UI, setup the control references and execute initialization
Initialize();
MyMapView.GeoViewTapped += MyMapView_GeoViewTapped;
}
private async void Initialize()
{
// Create new Map with basemap
Map myMap = new Map(Basemap.CreateStreets());
// Assign the map to the MapView
MyMapView.Map = myMap;
// Subscribe to location changed event so that map can zoom to location
MyMapView.LocationDisplay.LocationChanged += LocationDisplay_LocationChanged;
// Enable location display
MyMapView.LocationDisplay.IsEnabled = true;
// Initialize the LocatorTask with the provided service Uri
_geocoder = await LocatorTask.CreateAsync(_serviceUri);
// Enable all controls now that the locator task is ready
MySearchBox.IsEnabled = true;
MyLocationBox.IsEnabled = true;
MySearchButton.IsEnabled = true;
MySearchRestrictedButton.IsEnabled = true;
}
private void LocationDisplay_LocationChanged(object sender, Esri.ArcGISRuntime.Location.Location e)
{
// Return if position is null; event is raised with null location after
if (e.Position == null) { return; }
// Unsubscribe from further events; only want to zoom to location once
((LocationDisplay)sender).LocationChanged -= LocationDisplay_LocationChanged;
// Need to use this to interact with UI elements because this function is called from a background thread
Device.BeginInvokeOnMainThread(() =>
{
MyMapView.SetViewpoint(new Viewpoint(e.Position, 100000));
});
}
/// <summary>
/// Gets the map point corresponding to the text in the location textbox.
/// If the text is 'Current Location', the returned map point will be the device's location.
/// </summary>
/// <param name="locationText"></param>
/// <returns></returns>
private async Task<MapPoint> GetSearchMapPoint(string locationText)
{
// Get the map point for the search text
if (locationText != "Current Location")
{
// Geocode the location
IReadOnlyList<GeocodeResult> locations = await _geocoder.GeocodeAsync(locationText);
// return if there are no results
if (!locations.Any()) { return null; }
// Get the first result
GeocodeResult result = locations.First();
// Return the map point
return result.DisplayLocation;
}
else
{
// Get the current device location
return MyMapView.LocationDisplay.Location.Position;
}
}
/// <summary>
/// Runs a search and populates the map with results based on the provided information
/// </summary>
/// <param name="enteredText">Results to search for</param>
/// <param name="locationText">Location around which to find results</param>
/// <param name="restrictToExtent">If true, limits results to only those that are within the current extent</param>
private async void UpdateSearch(string enteredText, string locationText, bool restrictToExtent = false)
{
// Clear any existing markers
MyMapView.GraphicsOverlays.Clear();
// Return gracefully if the textbox is empty or the geocoder isn't ready
if (String.IsNullOrWhiteSpace(enteredText) || _geocoder == null) { return; }
// Create the geocode parameters
GeocodeParameters parameters = new GeocodeParameters();
// Get the MapPoint for the current search location
MapPoint searchLocation = await GetSearchMapPoint(locationText);
// Update the geocode parameters if the map point is not null
if (searchLocation != null)
{
parameters.PreferredSearchLocation = searchLocation;
}
// Update the search area if desired
if (restrictToExtent)
{
// Get the current map extent
Geometry extent = MyMapView.VisibleArea;
// Update the search parameters
parameters.SearchArea = extent;
}
// Show the progress bar
MyProgressBar.IsVisible = true;
// Get the location information
IReadOnlyList<GeocodeResult> locations = await _geocoder.GeocodeAsync(enteredText, parameters);
// Stop gracefully and show a message if the geocoder does not return a result
if (locations.Count < 1)
{
MyProgressBar.IsVisible = false; // 1. Hide the progress bar
ShowStatusMessage("No results found"); // 2. Show a message
return; // 3. Stop
}
// Create the GraphicsOverlay so that results can be drawn on the map
GraphicsOverlay resultOverlay = new GraphicsOverlay();
// Add each address to the map
foreach (GeocodeResult location in locations)
{
// Get the Graphic to display
Graphic point = await GraphicForPoint(location.DisplayLocation);
// Add the specific result data to the point
point.Attributes["Match_Title"] = location.Label;
// Get the address for the point
IReadOnlyList<GeocodeResult> addresses = await _geocoder.ReverseGeocodeAsync(location.DisplayLocation);
// Add the first suitable address if possible
if (addresses.Any())
{
point.Attributes["Match_Address"] = addresses.First().Label;
}
// Add the Graphic to the GraphicsOverlay
resultOverlay.Graphics.Add(point);
}
// Hide the progress bar
MyProgressBar.IsVisible = false;
// Add the GraphicsOverlay to the MapView
MyMapView.GraphicsOverlays.Add(resultOverlay);
// Update the map viewpoint.
await MyMapView.SetViewpointGeometryAsync(resultOverlay.Extent, 50);
}
/// <summary>
/// Creates and returns a Graphic associated with the given MapPoint
/// </summary>
private async Task<Graphic> GraphicForPoint(MapPoint point)
{
#if WINDOWS_UWP
// Get current assembly that contains the image
Assembly currentAssembly = GetType().GetTypeInfo().Assembly;
#else
// Get current assembly that contains the image
Assembly currentAssembly = Assembly.GetExecutingAssembly();
#endif
// Get image as a stream from the resources
// Picture is defined as EmbeddedResource and DoNotCopy
Stream resourceStream = currentAssembly.GetManifestResourceStream(
"ArcGISRuntime.Resources.PictureMarkerSymbols.pin_star_blue.png");
// Create new symbol using asynchronous factory method from stream
PictureMarkerSymbol pinSymbol = await PictureMarkerSymbol.CreateAsync(resourceStream);
pinSymbol.Width = 60;
pinSymbol.Height = 60;
// The image is a pin; offset the image so that the pinpoint
// is on the point rather than the image's true center
pinSymbol.LeaderOffsetX = 30;
pinSymbol.OffsetY = 14;
return new Graphic(point, pinSymbol);
}
/// <summary>
/// Shows a callout for any tapped graphics
/// </summary>
private async void MyMapView_GeoViewTapped(object sender, Esri.ArcGISRuntime.Xamarin.Forms.GeoViewInputEventArgs e)
{
// Search for the graphics underneath the user's tap
IReadOnlyList<IdentifyGraphicsOverlayResult> results = await MyMapView.IdentifyGraphicsOverlaysAsync(e.Position, 12, false);
// Clear callouts and return if there was no result
if (results.Count < 1 || results.First().Graphics.Count < 1) { MyMapView.DismissCallout(); return; }
// Get the first graphic from the first result
Graphic matchingGraphic = results.First().Graphics.First();
// Get the title; manually added to the point's attributes in UpdateSearch
string title = matchingGraphic.Attributes["Match_Title"] as String;
// Get the address; manually added to the point's attributes in UpdateSearch
string address = matchingGraphic.Attributes["Match_Address"] as String;
// Define the callout
CalloutDefinition calloutBody = new CalloutDefinition(title, address);
// Show the callout on the map at the tapped location
MyMapView.ShowCalloutAt(e.Location, calloutBody);
}
/// <summary>
/// Returns a list of suggestions based on the input search text and limited by the specified parameters
/// </summary>
/// <param name="searchText">Text to get suggestions for</param>
/// <param name="location">Location around which to look for suggestions</param>
/// <param name="poiOnly">If true, restricts suggestions to only Points of Interest (e.g. businesses, parks),
/// rather than all matching results</param>
/// <returns>List of suggestions as strings</returns>
private async Task<List<string>> GetSuggestResults(string searchText, string location = "", bool poiOnly = false)
{
// Quit if string is null, empty, or whitespace
if (String.IsNullOrWhiteSpace(searchText))
{
return new List<string>();
}
// Quit if the geocoder isn't ready
if (_geocoder == null)
{
return new List<string>();
}
// Create geocode parameters
SuggestParameters parameters = new SuggestParameters();
// Restrict suggestions to points of interest if desired
if (poiOnly) { parameters.Categories.Add("POI"); }
// Set the location for the suggest parameters
if (!String.IsNullOrWhiteSpace(location))
{
// Get the MapPoint for the current search location
MapPoint searchLocation = await GetSearchMapPoint(location);
// Update the geocode parameters if the map point is not null
if (searchLocation != null)
{
parameters.PreferredSearchLocation = searchLocation;
}
}
// Get the updated results from the query so far
IReadOnlyList<SuggestResult> results = await _geocoder.SuggestAsync(searchText, parameters);
// Return the list
return results.Select(result => result.Label).ToList();
}
/// <summary>
/// Method abstracts the platform-specific message box functionality to maximize re-use of common code
/// </summary>
/// <param name="message">Text of the message to show.</param>
private void ShowStatusMessage(string message)
{
// Display the message to the user
((Page)Parent).DisplayAlert("Alert", message, "OK");
}
/// <summary>
/// Method used to keep the suggestions up-to-date for the location box
/// </summary>
private async void MyLocationBox_TextChanged(object sender, TextChangedEventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Get the current text
string searchText = MyLocationBox.Text;
// Get the results
List<String> results = await GetSuggestResults(searchText);
// Quit if there are no results
if (!results.Any()) { return; }
// Add a 'current location' option to the list
results.Insert(0, "Current Location");
// Update the list of options
lstViewSuggestions.ItemsSource = results;
}
/// <summary>
/// Method used to keep the suggestions up-to-date for the search box
/// </summary>
private async void MySearchBox_TextChanged(object sender, TextChangedEventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Get the current text
string searchText = MySearchBox.Text;
// Get the current search location
string locationText = MyLocationBox.Text;
// Convert the list into a usable format for the suggest box
List<string> results = await GetSuggestResults(searchText, locationText, true);
// Quit if there are no results
if (!results.Any())
{
return;
}
// Update the list of options
lstViewSuggestions.ItemsSource = results;
}
/// <summary>
/// Method called to start a search that is restricted to results within the current extent
/// </summary>
private void MySearchRestrictedButton_Clicked(object sender, EventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Get the search text
string searchText = MySearchBox.Text;
// Get the location text
string locationText = MyLocationBox.Text;
// Run the search
UpdateSearch(searchText, locationText, true);
}
/// <summary>
/// Method called to start an unrestricted search
/// </summary>
private void MySearchButton_Clicked(object sender, EventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Get the search text
string searchText = MySearchBox.Text;
// Get the location text
string locationText = MyLocationBox.Text;
// Run the search
UpdateSearch(searchText, locationText);
}
/// <summary>
/// Show the map and hide suggestions
/// </summary>
private void MyLocationBox_Unfocused(object sender, FocusEventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Hide the suggestion list
lstViewSuggestions.IsVisible = false;
// Show the map view
MyMapView.IsVisible = true;
}
/// <summary>
/// Hide the map view and show suggestions
/// </summary>
private void MySearchBox_Focused(object sender, FocusEventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Show the suggestion list
lstViewSuggestions.IsVisible = true;
// Hide the map view
MyMapView.IsVisible = false;
}
/// <summary>
/// Update the appropriate textbox with the selected suggestion
/// </summary>
private void lstViewSuggestions_ItemSelected(object sender, SelectedItemChangedEventArgs e)
{
// Dismiss callout, if any
UserInteracted();
// Get the text of the selected item
string suggestion = e.SelectedItem.ToString();
// Update the location search box if it has focus
if (MyLocationBox.IsFocused)
{
MyLocationBox.Text = suggestion;
}
else
{
// Otherwise, update the search box
MySearchBox.Text = suggestion;
}
}
/// <summary>
/// Method to handle hiding the callout, should be called by all UI event handlers
/// </summary>
private void UserInteracted()
{
// Hide the callout
MyMapView.DismissCallout();
}
}
}