0

我是使用 Arcgis Runtime SDK for UWP 的新手。我想知道是否有人知道使用指针按下事件处理程序来获取地图上单击的纬度和经度坐标的方法。

4

1 回答 1

0

是的,您可以使用 ScreenToLocation 方法:

private void mapView_PointerPressed(object sender, PointerRoutedEventArgs e)
{
    MapPoint location = mapView.ScreenToLocation(e.GetCurrentPoint(mapView).Position);
    Debug.WriteLine($"You pressed at {location.X} , {location.Y}");
}
于 2018-06-13T16:57:38.730 回答