| Número de ID do Erro |
BUG-000173532 |
| Enviado | January 10, 2025 |
| Última Modificação | January 27, 2025 |
| Aplica-se à | ArcGIS API for Python |
| Versão encontrada | 2.4 |
| Sistema Operacional | Windows OS |
| Versão do Sistema Operacional | 11.0 64 bit |
| Status | As Designed
Após revisão pela equipe de desenvolvimento, foi determinado que esse comportamento é conforme projetado. Consulte a seção Informações Adicionais para obter detalhes.
|
Informações Adicionais
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())
```
Solução Provisória
Use the web map's JSON property to check the layers' URLs.
Etapas para Reproduzir