次の方法で共有


GeolocationExtensions.GetLocationAsync メソッド

定義

オーバーロード

GetLocationAsync(IGeolocation)

デバイスの現在の場所を返します。

GetLocationAsync(IGeolocation, GeolocationRequest)

デバイスの現在の場所を返します。

GetLocationAsync(IGeolocation)

ソース:
Geolocation.shared.cs
ソース:
Geolocation.shared.cs

デバイスの現在の場所を返します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::Maui::Devices::Sensors::Location ^> ^ GetLocationAsync(Microsoft::Maui::Devices::Sensors::IGeolocation ^ geolocation);
public static System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location?> GetLocationAsync (this Microsoft.Maui.Devices.Sensors.IGeolocation geolocation);
static member GetLocationAsync : Microsoft.Maui.Devices.Sensors.IGeolocation -> System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location>
<Extension()>
Public Function GetLocationAsync (geolocation As IGeolocation) As Task(Of Location)

パラメーター

geolocation
IGeolocation

このメソッドが呼び出されるオブジェクト。

戻り値

現在の Location 位置情報を含むオブジェクト、または null 場所を特定できない場合は 。

注釈

場所のアクセス許可は、必要に応じて実行時に要求されます。 アプリ マニフェストで何かを宣言する必要がある場合があります。

適用対象

GetLocationAsync(IGeolocation, GeolocationRequest)

ソース:
Geolocation.shared.cs
ソース:
Geolocation.shared.cs

デバイスの現在の場所を返します。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Threading::Tasks::Task<Microsoft::Maui::Devices::Sensors::Location ^> ^ GetLocationAsync(Microsoft::Maui::Devices::Sensors::IGeolocation ^ geolocation, Microsoft::Maui::Devices::Sensors::GeolocationRequest ^ request);
public static System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location?> GetLocationAsync (this Microsoft.Maui.Devices.Sensors.IGeolocation geolocation, Microsoft.Maui.Devices.Sensors.GeolocationRequest request);
static member GetLocationAsync : Microsoft.Maui.Devices.Sensors.IGeolocation * Microsoft.Maui.Devices.Sensors.GeolocationRequest -> System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location>
<Extension()>
Public Function GetLocationAsync (geolocation As IGeolocation, request As GeolocationRequest) As Task(Of Location)

パラメーター

geolocation
IGeolocation

このメソッドが呼び出されるオブジェクト。

request
GeolocationRequest

デバイスの場所を決定するときに使用する条件。

戻り値

現在の Location 位置情報を含むオブジェクト、または null 場所を特定できない場合は 。

注釈

場所のアクセス許可は、必要に応じて実行時に要求されます。 アプリ マニフェストで何かを宣言する必要がある場合があります。

適用対象