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


Python ArcGIS VectorTileLayerManager.update_tiles用法及代碼示例


本文簡要介紹 python 語言中 arcgis.mapping.VectorTileLayerManager.update_tiles 的用法。

用法:

update_tiles(merge_bundle=False)

返回:

字典。如果產品不是ArcGIS Online tile service,則結果將為 None。

update_tiles 操作支持更新托管矢量切片服務中的烹飪範圍和緩存級別。操作的結果是指示成功的響應以及作業統計頁麵的 URL,否則失敗。

當您的圖層已通過要素圖層發布時,建議使用rebuild_cache 方法,因為編輯需要重新生成切片。

Parameter

Description

merge_bundle

可選布爾值。默認值為 False。僅當矢量切片層已通過服務目錄發布時才會設置此參數。

例子:

# USAGE EXAMPLE

>>> from arcgis.mapping import VectorTileLayer
>>> from arcgis.gis import GIS

# connect to your GIS and get the web map item
>>> gis = GIS(url, username, password)
>>> vector_layer_item = gis.content.get('abcd_item-id')
>>> vector_tile_layer = VectorTileLayer.fromitem(vector_layer_item)
>>> vtl_manager = vector_tile_layer.manager
>>> update_tiles = vtl_manager.update_tiles()
>>> type(update_tiles)
<Dictionary>

相關用法


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