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