我多次谷歌但无法找到合适的解决方案 我想获取当前在Windows手机中点击地图上的位置,并将图钉添加到该位置,以便将其保存为提醒
答案 0 :(得分:2)
试试这个..
private void Map_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
GeoCoordinate asd = this.Map.ConvertViewportPointToGeoCoordinate(e.GetPosition(this.Map));
}