我不熟悉使用适用于UWP的Arcgis Runtime SDK。我想知道是否有人知道如何使用指针式事件处理程序来获取地图上点击的纬度和经度坐标。
答案 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}");
}