MapLocationFinder
Namespace: XPlat.Services.Maps
Provides methods to convert addresses to geographic locations (geocoding) and to convert geographic locations to addresses (reverse geocoding).
Supported platforms
Platform
Version
Xamarin.Android
9.0
Xamarin.iOS
1.0
UWP
10.0.16299
Example
This example shows how to convert a geographic location to an address (reverse geocoding).
Static Methods
Task FindLocationsAtAsync(Geopoint)
Converts a geopoint to a collection of addresses (reverse geocoding).
Parameters
queryPoint (Geopoint)
The point for which you want to get locations.
Returns
When this method completes successfully, it returns a list of locations contained in the MapLocationFinderResult.
Task FindLocationsAtAsync(Geopoint, MapLocationDesiredAccuracy)
Converts a geopoint to a collection of addresses with the desired accuracy (reverse geocoding).
Parameters
queryPoint (Geopoint)
The point for which you want to get locations.
accuracy (MapLocationDesiredAccuracy)
The desired accuracy for which you want to get locations.
Returns
When this method completes successfully, it returns a list of locations contained in the MapLocationFinderResult.
Related information
References
Last updated