Geocoding.GetPlacemarksAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetPlacemarksAsync(Location) |
擷取所指定 Location位置的潛在標記。 |
GetPlacemarksAsync(Double, Double) |
擷取座標所指定位置的潛在標記。 |
GetPlacemarksAsync(Location)
擷取所指定 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))
參數
傳回
Placemark最符合座標的清單,如果null
找不到任何尺規,則為 。
適用於
GetPlacemarksAsync(Double, Double)
擷取座標所指定位置的潛在標記。
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
找不到任何尺規,則為 。