當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS WebMap.move_to_basemap用法及代碼示例


本文簡要介紹 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()

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.mapping.WebMap.move_to_basemap。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。