我有一个 python 脚本,我正在尝试将要素图层添加到网络地图中。脚本完成时没有任何错误,但未添加要素图层。
这是有问题的代码:
from arcgis.gis import GIS
from arcgis.mapping import WebMap
print("Logging in...")
gis = GIS("https://fotnf.maps.arcgis.com/", "XXXXXXX", "YYYYYYYY")
print(f"Connected to {gis.properties.portalHostname} as {gis.users.me.username}")
webmap_item = gis.content.get('e1405425e52d43689cfdaecd43e0239d')
feature_layer = gis.content.get('cc5eb6737f5441c48f2ea1c5ab42935e')
webmap = WebMap(webmap_item)
print("Adding layer")
webmap.add_layer(feature_layer)
print("Done")
这是 arcgis online 中内容窗格的屏幕截图。该代码尝试将 Join_2_12_23 要素图层添加到 Test Mesa 地图。
arcgis python包的版本是2.1.0.3