Share via


StreetsidePanorama.FindNearbyAsync Method

Definition

Overloads

FindNearbyAsync(Geopoint)

Creates a StreetsidePanorama near the specified geographic ___location.

FindNearbyAsync(Geopoint, Double)

Creates a StreetsidePanorama near the specified geographic ___location and radius.

FindNearbyAsync(Geopoint)

Creates a StreetsidePanorama near the specified geographic ___location.

public:
 static IAsyncOperation<StreetsidePanorama ^> ^ FindNearbyAsync(Geopoint ^ ___location);
/// [Windows.Foundation.Metadata.Overload("FindNearbyWithLocationAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint const& ___location);
[Windows.Foundation.Metadata.Overload("FindNearbyWithLocationAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint ___location);
function findNearbyAsync(___location)
Public Shared Function FindNearbyAsync (___location As Geopoint) As IAsyncOperation(Of StreetsidePanorama)

Parameters

___location
Geopoint

The center of the panoramic view.

Returns

If available, the nearest StreetsidePanorama; otherwise, null.

Attributes

Remarks

Panoramic street-level views are not available for all locations. We recommend checking for null return values before proceeding with a StreetsideExperience.

See also

Applies to

FindNearbyAsync(Geopoint, Double)

Creates a StreetsidePanorama near the specified geographic ___location and radius.

public:
 static IAsyncOperation<StreetsidePanorama ^> ^ FindNearbyAsync(Geopoint ^ ___location, double radiusInMeters);
/// [Windows.Foundation.Metadata.Overload("FindNearbyWithLocationAndRadiusAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint const& ___location, double const& radiusInMeters);
[Windows.Foundation.Metadata.Overload("FindNearbyWithLocationAndRadiusAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint ___location, double radiusInMeters);
function findNearbyAsync(___location, radiusInMeters)
Public Shared Function FindNearbyAsync (___location As Geopoint, radiusInMeters As Double) As IAsyncOperation(Of StreetsidePanorama)

Parameters

___location
Geopoint

The center of the panoramic view.

radiusInMeters
Double

double

The radius to appear in the panoramic view, in meters.

Returns

If available, the nearest StreetsidePanorama; otherwise, null.

Attributes

Remarks

Panoramic street-level views are not available for all locations. We recommend checking for null return values before proceeding with a StreetsideExperience.

See also

Applies to