本文簡要介紹 python 語言中 arcgis.gis.Item.create_tile_service
的用法。
用法:
create_tile_service(title, min_scale, max_scale, cache_info=None, build_cache=False)
返回:
如果成功添加則為
Item
對象,如果不成功則為 None。
create_tile_service
方法允許發布者和管理員將托管要素圖層和托管要素圖層視圖發布為切片服務。Parameter
Description
title
必需的字符串。新服務的名稱。
min_scale
所需的浮點數。查看數據的最小比例。
max_scale
所需的浮點數。查看數據的最大比例。
cache_info
可選字典。如果不是,管理員將提供服務的切片緩存信息。默認值為ArcGIS Online 方案。
build_cache
可選的布爾值。默認為假;如果為 True,緩存將在發布時構建。這將增加發布服務所需的時間。
例子:
# Usage Example >>> item.create_tile_service(title="SeasideHeightsNJTiles", min_scale= 70000.0,max_scale=80000.0)
相關用法
- Python ArcGIS Item.copy用法及代碼示例
- Python ArcGIS Item.copy_feature_layer_collection用法及代碼示例
- Python ArcGIS Item.publish用法及代碼示例
- Python ArcGIS Item.reassign_to用法及代碼示例
- Python ArcGIS Item.share用法及代碼示例
- Python ArcGIS Item.status用法及代碼示例
- Python ArcGIS Item.delete_relationship用法及代碼示例
- Python ArcGIS Item.download用法及代碼示例
- Python ArcGIS Item.delete用法及代碼示例
- Python ArcGIS Item.move用法及代碼示例
- Python ArcGIS Item.related_items用法及代碼示例
- Python ArcGIS Item.register用法及代碼示例
- Python ArcGIS Item.add_comment用法及代碼示例
- Python ArcGIS Item.export用法及代碼示例
- Python ArcGIS Item.update_thumbnail用法及代碼示例
- Python ArcGIS Item.add_relationship用法及代碼示例
- Python ArcGIS Item.update用法及代碼示例
- Python ArcGIS Item.usage用法及代碼示例
- Python ArcGIS Item.get_thumbnail用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS ImageryLayer.draw_graph用法及代碼示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代碼示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代碼示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.Item.create_tile_service。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。