Geolocator.PositionChanged Evento
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.
Generato quando la posizione viene aggiornata.
// Register
event_token PositionChanged(TypedEventHandler<Geolocator, PositionChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void PositionChanged(event_token const* cookie) const;
// Revoke with event_revoker
Geolocator::PositionChanged_revoker PositionChanged(auto_revoke_t, TypedEventHandler<Geolocator, PositionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<Geolocator,PositionChangedEventArgs> PositionChanged;
function onPositionChanged(eventArgs) { /* Your code */ }
geolocator.addEventListener("positionchanged", onPositionChanged);
geolocator.removeEventListener("positionchanged", onPositionChanged);
- or -
geolocator.onpositionchanged = onPositionChanged;
Public Custom Event PositionChanged As TypedEventHandler(Of Geolocator, PositionChangedEventArgs)
Tipo evento
Requisiti Windows
Funzionalità dell'app |
location
ID_CAP_LOCATION [Windows Phone]
|
Commenti
È possibile accedere alle informazioni sull'evento con l'oggetto PositionChangedEventArgs passato al gestore eventi.
Suggerimento
Quando si usa un emulatore, è necessario modificare manualmente la posizione emulata per attivare l'evento PositionChanged.