In Collector for ArcGIS (iOS), the feature of the pop-up media does not display when the image URL contains a space or %20.
最後に公開された状態: November 27, 2019ArcGIS Collector
不具合 ID 番号
BUG-000126192
送信されました
October 22, 2019
最終更新日
June 5, 2024
適用対象
ArcGIS Collector
見つかったバージョン
19.1.0
オペレーティング システム
Apple iOS
オペレーティング システムのバージョン
N/A
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
This is expected behavior when including non-URL encoded spaces for the image URL within the popup media.
In this scenario, since image names are being concatenated from an attribute field to a common URL, if/when the image name contains spaces, you can utilize Arcade expressions in the popup to encode them. Such as:
if (Find($feature.PhotoNameField," ") < 0)
// URL encode the string
return UrlEncode(Text($feature.PhotoNameField))
or
if (Find($feature.PhotoNameField," ") < 0)
// or manually encode spaces
return Replace($feature.PhotoNameField, " ", "%20", True)
else
return $feature.PhotoNameField