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


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


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

用法:

update_tiles(levels=None, extent=None, merge=False, replace=False)

返回:

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

update_tiles 方法開始為 ArcGIS Online 生成圖塊。需要詳細程度和範圍來確定需要重建瓷磚的區域。

注意:

update_tiles 操作僅適用於 ArcGIS Online。

Parameter

Description

levels

可選字符串/整數列表,要更新的詳細信息級別。示例:“1,2,10,20” 或 [1,2,10,20]

extent

可選字符串/字典。要更新的區域為 Xmin、YMin、XMax、YMax 示例:

“-100,-50,200,500” or {‘xmin’:100, ‘ymin’:200, ‘xmax’:105, ‘ymax’:205}

merge

可選布爾值。默認為 false,適用於緊湊型緩存存儲格式。它控製 TPK 文件中的捆綁文件是否與現有緩存服務中的捆綁文件合並。否則,捆綁文件將被覆蓋。

replace

可選布爾值。默認為 false,適用於緊湊型緩存存儲格式,在 merge=true 時使用。它控製在合並捆綁包時新圖塊是否會替換現有圖塊。

例子:

# USAGE EXAMPLE

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

# connect to your GIS and get the web map item
>>> gis = GIS(url, username, password)
>>> map_image_layer = MapImageLayer("<url>", gis)
>>> mil_manager = map_image_layer.manager
>>> update_tiles = mil_manager.update_tiles(levels = "11-20",
                                            extent = {"xmin":6224324.092137296,
                                                        "ymin":487347.5253569535,
                                                        "xmax":11473407.698535524,
                                                        "ymax":4239488.369818687,
                                                        "spatialReference":{"wkid":102100}
                                                        }
                                            )
>>> type(update_tiles)
<Dictionary>

相關用法


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