Attribute expression with StreetView opens a blank web-page when accessed through ArcGIS Collector.
上次发布: December 1, 2020ArcGIS Collector
漏洞 ID 编号
BUG-000127546
已提交
December 20, 2019
上次修改时间
January 9, 2026
适用范围
ArcGIS Collector
找到的版本
19.2.0
操作系统
Apple iOS
操作系统版本
13.0x
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
This is as designed in ArcGIS Collector given how the Arcade expression is written.
When working with a basemap where spatial reference includes references to both a well-known ID (WKID) as well as a latestWkid, both numbers should be referenced within the Arcade expression. This helps ensures both ArcGIS Online as well as the app can allow the expression to work as expected.
For the referenced expression, modify the following line:
} else if (ArcadeSr == 102100) {
to:
} else if (ArcadeSr == 3857 || ArcadeSr == 102100) {
This allows the expression to support web maps that use Esri basemaps that have a well-known ID (WKID) of 102100 as well as a latestWkid of 3857.