本文簡要介紹 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>
相關用法
- Python ArcGIS MapImageLayerManager.delete_tiles用法及代碼示例
- Python arcgis.mapping.MapImageLayerManager.import_tiles用法及代碼示例
- Python ArcGIS MapImageLayerManager.edit_tile_service用法及代碼示例
- Python ArcGIS MapImageLayer.find用法及代碼示例
- Python ArcGIS MapImageLayer.create_dynamic_layer用法及代碼示例
- Python ArcGIS MapImageLayer.identify用法及代碼示例
- Python ArcGIS MapImageLayer.export_map用法及代碼示例
- Python ArcGIS MapImageLayer.fromitem用法及代碼示例
- Python ArcGIS MapView.update用法及代碼示例
- Python ArcGIS MapView.layers用法及代碼示例
- Python ArcGIS MapView.basemap用法及代碼示例
- Python ArcGIS MapView.center用法及代碼示例
- Python ArcGIS MapView.save用法及代碼示例
- Python ArcGIS MapServiceLayer用法及代碼示例
- Python ArcGIS MapView.scale用法及代碼示例
- Python ArcGIS MapView.rotation用法及代碼示例
- Python ArcGIS MapFeatureLayer.time_filter用法及代碼示例
- Python ArcGIS MapFeatureLayer.query用法及代碼示例
- Python ArcGIS MapView.zoom用法及代碼示例
- Python ArcGIS MapTour用法及代碼示例
- Python ArcGIS MapView.sync_navigation用法及代碼示例
- Python ArcGIS MapView.extent用法及代碼示例
- Python ArcGIS MapView.add_layer用法及代碼示例
- Python ArcGIS MapTable.fromitem用法及代碼示例
- Python ArcGIS MapView.clear_graphics用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.mapping.MapImageLayerManager.update_tiles。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。