Geolocator.PositionChanged 事件

定义

在更新位置时引发。

// 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) 

事件类型

Windows 要求

应用功能
location ID_CAP_LOCATION [Windows Phone]

注解

可以使用传递给事件处理程序的 PositionChangedEventArgs 对象访问有关事件的信息。

提示

使用模拟器时,必须手动更改模拟位置才能触发 PositionChanged 事件。

适用于

另请参阅