当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS WebMap.layers用法及代码示例


本文简要介绍 python 语言中 arcgis.mapping.WebMap.layers 的用法。

用法:

property layers

返回:

FeatureLayer 列表作为字典

获取Web Map 对象中的业务图层。

例子:

# USAGE EXAMPLE 1: Get the list of layers from a web map

from arcgis.mapping import WebMap
wm = WebMap(wm_item)

wm.layers
>> [{"id": "Landsat8_Views_515",
"layerType": "ArcGISImageServiceLayer",
"url": "https://landsat2.arcgis.com/arcgis/rest/services/Landsat8_Views/ImageServer",
...},
{...}]

len(wm.layers)
>> 2

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.mapping.WebMap.layers。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。