GeolocationExtensions.GetLocationAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetLocationAsync(IGeolocation) |
Restituisce la posizione corrente del dispositivo. |
GetLocationAsync(IGeolocation, GeolocationRequest) |
Restituisce la posizione corrente del dispositivo. |
GetLocationAsync(IGeolocation)
- Origine:
- Geolocation.shared.cs
- Origine:
- Geolocation.shared.cs
Restituisce la posizione corrente del dispositivo.
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)
Parametri
- geolocation
- IGeolocation
L'oggetto in cui viene richiamato questo metodo.
Restituisce
Oggetto Location contenente informazioni sulla posizione corrente o null
se non è possibile determinare alcuna posizione.
Commenti
Se necessario, le autorizzazioni per la posizione verranno richieste in fase di esecuzione. Potrebbe essere comunque necessario dichiarare qualcosa nel manifesto dell'app.
Si applica a
GetLocationAsync(IGeolocation, GeolocationRequest)
- Origine:
- Geolocation.shared.cs
- Origine:
- Geolocation.shared.cs
Restituisce la posizione corrente del dispositivo.
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)
Parametri
- geolocation
- IGeolocation
L'oggetto in cui viene richiamato questo metodo.
- request
- GeolocationRequest
Criteri da usare per determinare la posizione del dispositivo.
Restituisce
Oggetto Location contenente informazioni sulla posizione corrente o null
se non è possibile determinare alcuna posizione.
Commenti
Se necessario, le autorizzazioni per la posizione verranno richieste in fase di esecuzione. Potrebbe essere comunque necessario dichiarare qualcosa nel manifesto dell'app.