0
我有下面的事件,被激發geocoordinatewatcher對象位置更改事件。如何在Windows Phone中手動調用PositionChanged方法?
void watcher_PositionChanged(object sender, GeoPositionChangedEventArgs<GeoCoordinate> e)
{
//do the stuff here
}
現在當用戶點擊地圖上的任何位置時,我想調用上述方法並每次都做同樣的事情。 任何想法如何實現這一目標?