当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS Timeline用法及代码示例


本文简要介绍 python 语言中 arcgis.apps.storymap.story_content.Timeline 的用法。

用法:

class arcgis.apps.storymap.story_content.Timeline(story, node)

基础:object

从预先存在的 timeline 节点创建时间轴对象。

时间线由事件组成。事件最多由三个节点组成:图像、sub-heading 文本和段落文本。

Parameter

Description

node_id

必需的字符串。时间线类型的节点 ID。

story

必需的时间线所属的StoryMap

>>> my_story.nodes #use to find timeline node id

# Method 1: Use the Timeline Class
>>> timeline = Timeline(my_story, <node_id>)

# Method 2: Use the get method in story
>>> timeline = my_story.get(node = <node_id>)

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.apps.storymap.story_content.Timeline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。