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


Python ArcGIS MapServiceLayer用法及代碼示例


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

用法:

class arcgis.mapping.MapServiceLayer(url, gis=None, container=None, dynamic_layer=None)

基礎: arcgis.gis.Layer

MapServiceLayer 類是生成Map服務圖層的工廠。

Parameter

Description

url

必填字符串,指定以 /MapServer/<index> 結尾的 url

gis

可選的 GIS 對象。如果未指定,則使用活動的 GIS 連接。

例子:

# USAGE EXAMPLE 1: Instantiating a Map Service Layer object

from arcgis.mapping import MapServiceLayer
ms_layer = MapServiceLayer(url='https://your_portal.com/arcgis/rest/services/service_name/MapServer/0')

type(ms_layer)
>> arcgis.mapping._types.MapTable

print(ms_layer.properties.name)
>> 'pipe_properties'

相關用法


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