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


Python ArcGIS FeatureLayer.fromitem用法及代码示例


本文简要介绍 python 语言中 arcgis.features.FeatureLayer.fromitem 的用法。

用法:

classmethod fromitem(item, layer_id=0)

返回:

FeatureSet 对象

fromitem 方法从 Item 对象创建 FeatureLayer

Parameter

Description

item

必需的 Item 对象。项目的类型应该是代表 FeatureLayerCollectionFeature Service

layer_id

必需的整数。要素图层集合(要素服务)中图层的 id。 layer_id 的默认值为 0。

例子:

# Usage Example

>>> from arcgis.features import FeatureLayer

>>> gis = GIS("pro")
>>> buck = gis.content.search("owner:"+ gis.users.me.username)
>>> buck_1 =buck[1]
>>> buck_1.type
'Feature Service'
>>> new_layer= FeatureLayer.fromitem(item = buck_1)
>>> type(new_layer)
<class 'arcgis.features.layer.FeatureLayer'>

相关用法


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