MapLocationFinder.FindLocationsAtAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FindLocationsAtAsync(Geopoint) |
Converts a geographic location to a collection of addresses (reverse geocoding). |
FindLocationsAtAsync(Geopoint, MapLocationDesiredAccuracy) |
Converts a geopoint to a collection of addresses with the desired accuracy (reverse geocoding). |
FindLocationsAtAsync(Geopoint)
Converts a geographic location to a collection of addresses (reverse geocoding).
public:
static IAsyncOperation<MapLocationFinderResult ^> ^ FindLocationsAtAsync(Geopoint ^ queryPoint);
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint const& queryPoint);
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Overload("FindLocationsAtAsync")]
static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint const& queryPoint);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint queryPoint);
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Overload("FindLocationsAtAsync")]
public static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint queryPoint);
function findLocationsAtAsync(queryPoint)
Public Shared Function FindLocationsAtAsync (queryPoint As Geopoint) As IAsyncOperation(Of MapLocationFinderResult)
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.
- Attributes
See also
Applies to
FindLocationsAtAsync(Geopoint, MapLocationDesiredAccuracy)
Converts a geopoint to a collection of addresses with the desired accuracy (reverse geocoding).
public:
static IAsyncOperation<MapLocationFinderResult ^> ^ FindLocationsAtAsync(Geopoint ^ queryPoint, MapLocationDesiredAccuracy accuracy);
/// [Windows.Foundation.Metadata.Overload("FindLocationsAtWithAccuracyAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint const& queryPoint, MapLocationDesiredAccuracy const& accuracy);
[Windows.Foundation.Metadata.Overload("FindLocationsAtWithAccuracyAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<MapLocationFinderResult> FindLocationsAtAsync(Geopoint queryPoint, MapLocationDesiredAccuracy accuracy);
function findLocationsAtAsync(queryPoint, accuracy)
Public Shared Function FindLocationsAtAsync (queryPoint As Geopoint, accuracy As MapLocationDesiredAccuracy) As IAsyncOperation(Of MapLocationFinderResult)
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.
- Attributes
Windows requirements
Device family |
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v3.0)
|