Graphics remain in the same location in the browser window when zooming in ArcGIS API for JavaScript 3.21, where the graphics are created from the ArcGIS Online web map based on the map's FeatureLayer query.
上次发布: January 5, 2021ArcGIS API for JavaScript
漏洞 ID 编号
BUG-000108316
已提交
September 26, 2017
上次修改时间
June 5, 2024
适用范围
ArcGIS API for JavaScript
找到的版本
3.21
操作系统
N/A
操作系统版本
N/A
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
This is as designed.
解决办法
Construct a new graphic from each graphic in the query result FeatureSet:Example:rather than:lyrSummary.add(r.features[i]);use the following:lyrSummary.add(new Graphic(r.features[i].toJson());