不具合 ID 番号 |
BUG-000173532 |
送信されました | January 10, 2025 |
最終更新日 | January 27, 2025 |
適用対象 | ArcGIS API for Python |
見つかったバージョン | 2.4 |
オペレーティング システム | Windows OS |
オペレーティング システムのバージョン | 11.0 64 bit |
ステータス | As Designed
開発チームによる確認後に、この動作が設計どおりであると判断されました。 詳細については、「参考情報」セクションをご参照ください。
|
参考情報
The arcgis.map module is a new addition, and while some functionality and workflows from the arcgis.mapping module has been carried over, they are not identical
For maps with broken layer URLs, it is recommended to update them using the methods available in the Item class. Refer to the example code below:
```
gis = GIS(profile="your_online_profile")
item = gis.content.get("map_item_id")
data = item.get_data()
data["operationalLayers"][0]["url"] = "my_new_url"
item.update(data=data)
print(item.get_data())
```
対処法
Use the web map's JSON property to check the layers' URLs.
再現の手順