本文简要介绍 python 语言中 arcgis.apps.storymap.story.StoryMap.navigation
的用法。
返回:
导航中的节点列表。
故事导航是作者添加标题作为链接的一种方式,以允许读者在故事的不同部分之间导航。故事导航节点将
TextStyle.HEADING
文本样式作为其唯一允许的子节点。您只能让 30 个Text
子节点可见并充当故事中的链接。文本节点必须已经存在于故事中。传递标题文本节点的节点 ID 列表以将它们分配给导航。
Parameter
Description
nodes
要包含在导航中的可选节点列表。这些节点只能是样式标题 (“h2”)。按顺序包含。这将覆盖当前列表和顺序。
要查看当前列表,请使用
navigation_list
属性。hidden
可选的布尔值。如果为 True,则隐藏导航。
#Example >>> story = StoryMap("<existing story id>") >>> story.navigation_list >>> story.navigation(["<header node id>", "<header node id>"], False)
相关用法
- Python ArcGIS StoryMap.move用法及代码示例
- Python ArcGIS StoryMap.theme用法及代码示例
- Python ArcGIS StoryMap.add用法及代码示例
- Python ArcGIS StoryMap.credits用法及代码示例
- Python ArcGIS StoryMap.cover用法及代码示例
- Python ArcGIS StoryMap.get用法及代码示例
- Python ArcGIS StoryMap.duplicate用法及代码示例
- 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.navigation。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。