共用方式為


Geocoding.GetPlacemarksAsync 方法

定義

多載

GetPlacemarksAsync(Location)

擷取所指定 Location位置的潛在標記。

GetPlacemarksAsync(Double, Double)

擷取座標所指定位置的潛在標記。

GetPlacemarksAsync(Location)

來源:
Geocoding.shared.cs
來源:
Geocoding.shared.cs

擷取所指定 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))

參數

location
Location

Location 尋找附近標記的實例。

傳回

Placemark最符合座標的清單,如果null找不到任何尺規,則為 。

適用於

GetPlacemarksAsync(Double, Double)

來源:
Geocoding.shared.cs
來源:
Geocoding.shared.cs

擷取座標所指定位置的潛在標記。

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))

參數

latitude
Double

要尋找標記的緯度座標。

longitude
Double

要尋找標記的經度座標。

傳回

Placemark最符合座標的清單,如果null找不到任何尺規,則為 。

適用於