Arcgis UWP从指针事件中获取地理位置

时间:2018-06-13 16:03:49

标签: c# uwp arcgis uwp-xaml arcgis-runtime-net

我不熟悉使用适用于UWP的Arcgis Runtime SDK。我想知道是否有人知道如何使用指针式事件处理程序来获取地图上点击的纬度和经度坐标。

1 个答案:

答案 0 :(得分: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}");
}