本文简要介绍 python 语言中 arcgis.mapping.WebMap.move_to_basemap
的用法。
用法:
move_to_basemap(layer)
返回:
如果成功则 WebMap 定义,否则错误。
将图层移动为底图图层。底图图层是为Map提供地理背景的图层。 Web Map始终包含底图。以下是可能的底图图层类型的列表:
图像服务层
图像服务矢量图层
Map服务层
平铺图像服务层
切片Map服务层
矢量平铺层
Parameter
Definition
layer
所需词典。将发送到底图图层的图层字典。该字典是在调用 WebMap 上的
layers
属性时找到的。该图层必须已位于 WebMap 中。# Create a WebMap from an existing WebMap Item. wm = WebMap(<webmap_item_id>) # Get and add the layer to the map vtl = gis.content.get("<vector tile layer id>") wm.add_layer(vtl.layers[0]) # Move the layer to the basemap layer = wm.layers[0] wm.move_to_basemap(layer) wm.update()
相关用法
- Python ArcGIS WebMap.move_from_basemap用法及代码示例
- Python ArcGIS WebMap.update用法及代码示例
- Python ArcGIS WebMap.add_layer用法及代码示例
- Python ArcGIS WebMap.basemap用法及代码示例
- Python ArcGIS WebMap.tables用法及代码示例
- Python ArcGIS WebMap.add_table用法及代码示例
- Python ArcGIS WebMap.forms用法及代码示例
- Python ArcGIS WebMap.update_drawing_info用法及代码示例
- Python ArcGIS WebMap.print用法及代码示例
- Python ArcGIS WebMap.layers用法及代码示例
- Python ArcGIS WebMap.save用法及代码示例
- Python ArcGIS WebMap.bookmarks用法及代码示例
- Python ArcGIS WebMap.update_layer用法及代码示例
- Python ArcGIS WebMap用法及代码示例
- Python ArcGIS WebSocket用法及代码示例
- Python ArcGIS WebhookManager.create用法及代码示例
- Python ArcGIS WebAdaptors.list用法及代码示例
- Python ArcGIS Worker用法及代码示例
- Python ArcGIS WorkflowManager.create_lookup用法及代码示例
- Python ArcGIS WorkflowManager用法及代码示例
- Python ArcGIS WorkerManager用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.mapping.WebMap.move_to_basemap。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。