地图窗口手机上的当前点击位置

时间:2013-12-18 04:55:17

标签: windows-phone

我多次谷歌但无法找到合适的解决方案 我想获取当前在Windows手机中点击地图上的位置,并将图钉添加到该位置,以便将其保存为提醒

1 个答案:

答案 0 :(得分:2)

试试这个..

private void Map_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
     GeoCoordinate asd = this.Map.ConvertViewportPointToGeoCoordinate(e.GetPosition(this.Map));
}