本文簡要介紹 python 語言中 arcgis.widgets.MapView.add_layer
的用法。
用法:
add_layer(item, options=None)
add_layer
方法將指定的Layer
或Item
添加到Map小部件。Parameter
Description
item
必需的對象。您可以指定
Item
對象、Layer
對象,例如FeatureLayer
、ImageryLayer、MapImageLayer、FeatureSet
、Collection
、Raster
對象等。Item
對象的所有圖層將單獨添加到Map小部件中。options
可選字典。指定可視化選項,例如渲染器信息、不透明度、定義表達式。請參閱下麵的示例
警告:
在
Raster
實例上調用MapView.add_layer()
具有以下限製:本地柵格疊加在已發布的 web Map/web 場景上的筆記本會話之外不會持續存在 - 您需要單獨發布這些本地柵格。
整個光柵圖像數據放置在 MapView 的畫布上,沒有進行性能優化。這意味著沒有金字塔、沒有動態下采樣等。請注意本地柵格的大小和計算機的硬件限製。
像素值和投影不能保證準確,尤其是當本地柵格的空間參考沒有準確地重新投影到 Web 墨卡托(
MapView
小部件使用)時。
例子:
# USAGE EXAMPLE: Add a feature layer with smart mapping renderer and # a definition expression to limit the features drawn. map1 = gis.map("Seattle, WA") map1.add_layer(wa_streets_feature_layer, {'renderer':'ClassedSizeRenderer', 'field_name':'DistMiles', 'opacity':0.75})
相關用法
- Python ArcGIS MapView.update用法及代碼示例
- Python ArcGIS MapView.layers用法及代碼示例
- Python ArcGIS MapView.basemap用法及代碼示例
- Python ArcGIS MapView.center用法及代碼示例
- Python ArcGIS MapView.save用法及代碼示例
- Python ArcGIS MapView.scale用法及代碼示例
- Python ArcGIS MapView.rotation用法及代碼示例
- Python ArcGIS MapView.zoom用法及代碼示例
- Python ArcGIS MapView.sync_navigation用法及代碼示例
- Python ArcGIS MapView.extent用法及代碼示例
- Python ArcGIS MapView.clear_graphics用法及代碼示例
- Python ArcGIS MapView.draw用法及代碼示例
- Python ArcGIS MapImageLayer.find用法及代碼示例
- Python ArcGIS MapImageLayerManager.update_tiles用法及代碼示例
- Python ArcGIS MapImageLayerManager.delete_tiles用法及代碼示例
- Python ArcGIS MapServiceLayer用法及代碼示例
- Python ArcGIS MapImageLayer.create_dynamic_layer用法及代碼示例
- Python ArcGIS MapFeatureLayer.time_filter用法及代碼示例
- Python ArcGIS MapFeatureLayer.query用法及代碼示例
- Python ArcGIS MapImageLayer.identify用法及代碼示例
- Python ArcGIS MapTour用法及代碼示例
- Python arcgis.mapping.MapImageLayerManager.import_tiles用法及代碼示例
- Python ArcGIS MapTable.fromitem用法及代碼示例
- Python ArcGIS MapImageLayer.export_map用法及代碼示例
- Python ArcGIS MapFeatureLayer.fromitem用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.widgets.MapView.add_layer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。