次の方法で共有


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目印が見つからない場合は 。

適用対象