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


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


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

用法:

add_layer(layer, options=None)

返回:

如果图层已成功添加,则为真。否则,引发适当的异常。

将给定层添加到WebMap 对象。

Parameter

Description

layer

必需的对象。你可以加:

options

可选字典。指定所添加图层的属性,例如标题、符号、不透明度、可见性、渲染器。如果未指定,则应用适当的默认值。

例子:

# USAGE EXAMPLE: Add feature layer and map image layer item objects to the WebMap object.

crime_fl_item = gis.content.search("2012 crime")[0]
streets_item = gis.content.search("LA Streets","Map Service")[0]

wm = WebMap()  # create an empty web map with a default basemap
wm.add_layer(streets_item)
>> True

# Add crime layer, but customize the title, transparency and turn off the default visibility.
wm.add_layer(fl_item, {'title':'2012 crime in LA city',
                       'opacity':0.5,
                       'visibility':False})
 >> True

相关用法


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