要求用户在地图Windows Phone中指向一个位置

时间:2014-01-16 11:28:42

标签: c# windows-phone-7 windows-phone-8 windows-phone

我希望用户在地图上选择他所选择的点并获得该点的GeoCoordinate。我怎样才能做到这一点?

我目前能够发布地图。 是否有类似于photoChooser任务的东西,我可以用来实现这个目标?

1 个答案:

答案 0 :(得分:1)

This might help

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