本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。