我正在使用ArcGis API(10.2.7)执行程序。 问题是我有一个等待点击的异步功能
private async Task AcceptPointsAsync()
{
while (MapView.GetCurrentViewpoint(ViewpointType.BoundingGeometry).TargetGeometry.Extent != null)
{
Esri.ArcGISRuntime.Geometry.MapPoint point = await MapView.Editor.RequestPointAsync();
.
.
.
问题是,在默认情况下,当我双击时它有一个缩放,但知道如果我这样做,它会转到这个异步方法。我可以做些什么来区分它?
感谢。