本文簡要介紹 python 語言中 arcgis.apps.storymap.story.StoryMap.get
的用法。
用法:
get(node=None, type=None)
返回:
如果指定了類型:節點 ID 及其類型的列表,按故事Map中出現的順序排列。
如果指定node_id:節點本身。
按類型或 ID 獲取節點。如果提供了節點 ID,則使用此函數將有助於從故事中獲取特定節點。將此設置為變量,這樣就可以在故事中的節點上進行編輯。
Parameter
Description
node_id
可選字符串。應返回的節點的節點 ID。如果是故事內容類型,這將返回節點的類。
type
可選字符串。用戶希望返回的節點類型。如果未指定,則返回所有節點的列表。
值:
image
|video
|audio
|embed
|webmap
|text
|button
|separator
|expressmap
|webscene
|immersive
>>> story = StoryMap(<story item>) # Example get by type >>> story.get(type = "text") Returns a list of all nodes of type text # Example by id >>> text = story.get(node= "<id for text node>") >>> text.properties Returns a specific node of type text
相關用法
- Python ArcGIS StoryMap.move用法及代碼示例
- Python ArcGIS StoryMap.theme用法及代碼示例
- Python ArcGIS StoryMap.add用法及代碼示例
- Python ArcGIS StoryMap.credits用法及代碼示例
- Python ArcGIS StoryMap.cover用法及代碼示例
- Python ArcGIS StoryMap.duplicate用法及代碼示例
- Python ArcGIS StoryMap.navigation用法及代碼示例
- Python ArcGIS StreamLayer用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS Site.export_site用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.update_tiles用法及代碼示例
- Python ArcGIS SiteManager.get用法及代碼示例
- Python ArcGIS SceneLayer用法及代碼示例
- Python ArcGIS Site.update_theme用法及代碼示例
- Python ArcGIS System.index_status用法及代碼示例
- Python ArcGIS Site.update_layout用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.import_tiles用法及代碼示例
- Python ArcGIS SavedSearchesManager.update用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.delete_tiles用法及代碼示例
- Python ArcGIS Server用法及代碼示例
- Python ArcGIS Sidecar用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.edit_tile_service用法及代碼示例
- Python ArcGIS SiteManager.get_by_domain用法及代碼示例
- Python ArcGIS SSLCertificates.import_certificate用法及代碼示例
- Python ArcGIS SiteManager.add用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.apps.storymap.story.StoryMap.get。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。