不具合
| 不具合 ID 番号 | BUG-000181229 |
|---|---|
| 送信されました | November 25, 2025 |
| 最終更新日 | December 29, 2025 |
| 適用対象 | ArcGIS QuickCapture |
| 見つかったバージョン | 1.24 |
| オペレーティング システム | Apple iOS |
| オペレーティング システムのバージョン | 26.0 |
| ステータス | Under Consideration |
Use the IsEmpty() Arcade function instead. Refer to the following code below:
// Create a feature set using the 'Regions' layer in the map
var regions = FeatureSetByName($map, 'Regions', ['name']);
// Intersect the current location with the regions and
// get the first region
var region = First(Intersects($feature, regions));
//IsEmpty function workaround
if (IsEmpty(region)) {
return "EMPTY";
} else {
return region["name"];
}
不具合 ID: BUG-000181229
ソフトウェア:
ArcGIS エキスパートのサポートを受ける
Esri Support アプリのダウンロード