不具合
| 不具合 ID 番号 | BUG-000139012 |
|---|---|
| 送信されました | April 14, 2021 |
| 最終更新日 | June 5, 2024 |
| 適用対象 | ArcGIS Dashboards |
| 見つかったバージョン | 9.1 |
| オペレーティング システム | Windows OS |
| オペレーティング システムのバージョン | 10.0 |
| ステータス | 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: BUG-000139012
ソフトウェア:
ArcGIS エキスパートのサポートを受ける
Esri Support アプリのダウンロード