MapLocationFinderResult
MapLocationFinderResult
MapLocationFinderResult
MapLocationFinderResult
Class
Definition
Returns the result of a MapLocationFinder query.
public : sealed class MapLocationFinderResult : IMapLocationFinderResultpublic sealed class MapLocationFinderResult : IMapLocationFinderResultPublic NotInheritable Class MapLocationFinderResult Implements IMapLocationFinderResult// This API is not available in Javascript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
A MapLocationFinderResult is returned when you call the methods of the MapLocationFinder class.
Your Universal Windows app must be authenticated before it can use the MapControl and map services in the Windows.Services.Maps namespace. To authenticate your app, you must specify a maps authentication key.
See Request a maps authentication key.
Properties
Locations Locations Locations Locations
Gets the list of locations found by a MapLocationFinder query.
public : IVectorView<MapLocation> Locations { get; }public IReadOnlyList<MapLocation> Locations { get; }Public ReadOnly Property Locations As IReadOnlyList<MapLocation>// This API is not available in Javascript.
- Value
- IVectorView<MapLocation> IReadOnlyList<MapLocation> IReadOnlyList<MapLocation> IReadOnlyList<MapLocation>
The list of locations found by a MapLocationFinder query. This property returns a collection of MapLocation objects.
- See Also
Status Status Status Status
Gets the status of a MapLocationFinder query.
public : MapLocationFinderStatus Status { get; }public MapLocationFinderStatus Status { get; }Public ReadOnly Property Status As MapLocationFinderStatus// This API is not available in Javascript.
- Value
- MapLocationFinderStatus MapLocationFinderStatus MapLocationFinderStatus MapLocationFinderStatus
The status of a MapLocationFinder query.
- See Also