Unable to select polyline features when zooming into the map using ArcGIS Runtime SDK for .NET 100.1.
上次发布: July 12, 2018ArcGIS Runtime SDK
漏洞 ID 编号
BUG-000107313
已提交
August 11, 2017
上次修改时间
June 5, 2024
适用范围
ArcGIS Runtime SDK
找到的版本
100.1.0
操作系统
Windows OS
操作系统版本
10.0 64 Bit
修正版本
100.2
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Increase the GraphicsOverlay.HitTestAsync parameter maximumResults from 1 to 2. Users can select the line even after zooming it.//maximumResults =1maximumResults = 2IdentifyGraphicsOverlayResult foundGraphic = await myMapview.IdentifyGraphicsOverlayAsync(overlay, point, tolerance, onlyReturnPopups, maximumResults);