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


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


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

用法:

property tables

返回:

Table 列表作为字典

获取WebMap 对象中的表。

wm = WebMap()
table = Table('https://some-url.com/')
wm.add_layer(table)
wm.tables
>> [{"id": "fZvgsrA68ElmNajAZl3sOMSPG3iTnL",
     "title": "change_table",
     "url": "https://some-url.com/",
     "popupInfo": {
     ...

相关用法


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