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


Python arcgis.mapping.SceneLayerManager.update_tiles用法及代碼示例


用法:

update_tiles(levels=None, extent=None)

參數:

  • levels: 可選字符串/整數列表,要更新的詳細信息級別。示例:“1,2,10,20” 或 [1,2,10,20]
  • extent: 可選字符串/字典。要更新的區域為 Xmin、YMin、XMax、YMax 示例:“-100,-50,200,500” 或 {‘xmin’:100、‘ymin’:200、‘xmax’:105、‘ymax’:205}

返回:

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

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

注意:

update_tiles 操作僅適用於 ArcGIS Online。

例子:

# USAGE EXAMPLE

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

# connect to your GIS and get the web map item
>>> gis = GIS(url, username, password)
>>> scene_item = gis.content.get('abcd_item-id')
>>> scene_layer = SceneLayer(scene_item.sourceUrl, gis)
>>> sl_manager = scene_layer.manager
>>> update_tiles = sl_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.SceneLayerManager.update_tiles。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。