Error
| Número de ID del error | BUG-000139012 |
|---|---|
| Enviado | April 14, 2021 |
| Última modificación | June 5, 2024 |
| Relacionado con | ArcGIS Dashboards |
| Versión encontrada | 9.1 |
| Sistema operativo | Windows OS |
| Versión de sistema operativo | 10.0 |
| Estado | Will Not Be Addressed |
var portal = Portal("https://www.arcgis.com/");
var fl1 = FeatureSetByPortalItem(portal,"<layer id>",0,["*"],true)
var fl2 = FeatureSetByPortalItem(portal,"<layer id?",0,["*"],true)
var combinedDict = {
fields: [
{ name: "textField", type: "esriFieldTypeString"},
],
geometryType: "esriGeometryPoint",
features: [],
};
// Loop through each of the three FeatureSets and store attributes into a combined dictionary.
var i = 0;
for (feature in fl1) {
combinedDict.features[i] = {
'geometry':Geometry(feature),
attributes: {
textField: feature["textField"],
}
};
i++;
}
for (feature in fl2) {
combinedDict.features[i] = {
'geometry':Geometry(feature),
attributes: {
textField: feature["textField"]
}
};
i++;
}
// Return dictionary cast as a feature set
return FeatureSet(Text(combinedDict));
ID del error: BUG-000139012
Software:
Obtener ayuda de expertos en ArcGIS
Descargar la aplicación de soporte de Esri