StreetsidePanorama
StreetsidePanorama
StreetsidePanorama
StreetsidePanorama
Class
Definition
Represents a panoramic view of a geographic location from a street-level perspective.
public : sealed class StreetsidePanorama : DependencyObject, IStreetsidePanoramapublic sealed class StreetsidePanorama : DependencyObject, IStreetsidePanoramaPublic NotInheritable Class StreetsidePanorama Inherits DependencyObject Implements IStreetsidePanorama// This API is not available in Javascript.
- Inheritance
-
StreetsidePanoramaStreetsidePanoramaStreetsidePanoramaStreetsidePanorama
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Inherited properties
Remarks
Use StreetsidePanorama with StreetsideExperience to create a street-level map experience.
Properties
Location Location Location Location
Gets the geographic location that corresponds to the StreetsidePanorama.
public : Geopoint Location { get; }public Geopoint Location { get; }Public ReadOnly Property Location As Geopoint// This API is not available in Javascript.
The geographic location that corresponds to the StreetsidePanorama.
Methods
FindNearbyAsync(Geopoint) FindNearbyAsync(Geopoint) FindNearbyAsync(Geopoint) FindNearbyAsync(Geopoint)
Creates a StreetsidePanorama near the specified geographic location.
public : static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint location)public static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint location)Public Static Function FindNearbyAsync(location As Geopoint) As IAsyncOperation( Of StreetsidePanorama )// This API is not available in Javascript.
If available, the nearest StreetsidePanorama; otherwise, null.
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
FindNearbyAsync(Geopoint, Double) FindNearbyAsync(Geopoint, Double) FindNearbyAsync(Geopoint, Double) FindNearbyAsync(Geopoint, Double)
Creates a StreetsidePanorama near the specified geographic location and radius.
public : static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint location, double radiusInMeters)public static IAsyncOperation<StreetsidePanorama> FindNearbyAsync(Geopoint location, Double radiusInMeters)Public Static Function FindNearbyAsync(location As Geopoint, radiusInMeters As Double) As IAsyncOperation( Of StreetsidePanorama )// This API is not available in Javascript.
- radiusInMeters
- double Double Double Double
The radius to appear in the panoramic view, in meters.
If available, the nearest StreetsidePanorama; otherwise, null.
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