Error
| Número de ID del error | BUG-000181229 |
|---|---|
| Enviado | November 25, 2025 |
| Última modificación | December 29, 2025 |
| Relacionado con | ArcGIS QuickCapture |
| Versión encontrada | 1.24 |
| Sistema operativo | Apple iOS |
| Versión de sistema operativo | 26.0 |
| Estado | 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 del error: BUG-000181229
Software:
Obtener ayuda de expertos en ArcGIS
Descargar la aplicación de soporte de Esri