다음을 통해 공유


Geocoding.GetPlacemarksAsync 메서드

정의

오버로드

GetPlacemarksAsync(Location)

로 지정된 지정된 위치에 대한 잠재적인 위치 표시를 Location검색합니다.

GetPlacemarksAsync(Double, Double)

좌표로 지정된 지정된 위치에 대한 잠재적인 위치 표시를 검색합니다.

GetPlacemarksAsync(Location)

Source:
Geocoding.shared.cs
Source:
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 근처에서 자리 표시를 찾을 수 있는 instance.

반환

Placemark 좌표와 가장 일치하는 목록이거나 null 자리 표시가 없는 경우 입니다.

적용 대상

GetPlacemarksAsync(Double, Double)

Source:
Geocoding.shared.cs
Source:
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 자리 표시가 없는 경우 입니다.

적용 대상