Condividi tramite


Geocoding.GetPlacemarksAsync Metodo

Definizione

Overload

GetPlacemarksAsync(Location)

Recuperare i segnaposto potenziali per una determinata posizione specificata da Location.

GetPlacemarksAsync(Double, Double)

Recuperare potenziali segnaposto per una determinata posizione specificata dalle coordinate.

GetPlacemarksAsync(Location)

Origine:
Geocoding.shared.cs
Origine:
Geocoding.shared.cs

Recuperare i segnaposto potenziali per una determinata posizione specificata da Location.

public:
 static System::Threading::Tasks::Task<System::Collections::Generic::IEnumerable<Microsoft::Maui::Devices::Sensors::Placemark ^> ^> ^ GetPlacemarksAsync(Microsoft::Maui::Devices::Sensors::Location ^ location);
public static System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Maui.Devices.Sensors.Placemark>> GetPlacemarksAsync (Microsoft.Maui.Devices.Sensors.Location location);
static member GetPlacemarksAsync : Microsoft.Maui.Devices.Sensors.Location -> System.Threading.Tasks.Task<seq<Microsoft.Maui.Devices.Sensors.Placemark>>
Public Shared Function GetPlacemarksAsync (location As Location) As Task(Of IEnumerable(Of Placemark))

Parametri

location
Location

Location Istanza di per trovare segnaposto vicino.

Restituisce

Elenco di Placemark che corrisponde meglio alle coordinate o null se non vengono trovati segnaposto.

Si applica a

GetPlacemarksAsync(Double, Double)

Origine:
Geocoding.shared.cs
Origine:
Geocoding.shared.cs

Recuperare potenziali segnaposto per una determinata posizione specificata dalle coordinate.

public:
 static System::Threading::Tasks::Task<System::Collections::Generic::IEnumerable<Microsoft::Maui::Devices::Sensors::Placemark ^> ^> ^ GetPlacemarksAsync(double latitude, double longitude);
public static System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Maui.Devices.Sensors.Placemark>> GetPlacemarksAsync (double latitude, double longitude);
static member GetPlacemarksAsync : double * double -> System.Threading.Tasks.Task<seq<Microsoft.Maui.Devices.Sensors.Placemark>>
Public Shared Function GetPlacemarksAsync (latitude As Double, longitude As Double) As Task(Of IEnumerable(Of Placemark))

Parametri

latitude
Double

Coordinata di latitudine per trovare segnaposto.

longitude
Double

Coordinata di longitudine per trovare i segnaposto.

Restituisce

Elenco di Placemark che corrisponde meglio alle coordinate o null se non vengono trovati segnaposto.

Si applica a