當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS Sidecar用法及代碼示例


本文簡要介紹 python 語言中 arcgis.apps.storymap.story_content.Sidecar 的用法。

用法:

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

基礎:object

從預先存在的 immersive 節點創建 Sidecar 沉浸式對象。

Sidecar 由幻燈片組成。幻燈片由兩個節點組成:敘述麵板和媒體節點。媒體節點可以是:圖像、視頻、嵌入、Map或滑動。敘述麵板可以包含多種類型的內容,包括圖像、視頻、嵌入、按鈕、文本、Map等。

Parameter

Description

node_id

必需的字符串。 Sidecar 類型的節點 ID。

story

sidecar 所屬的必需StoryMap

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

# Method 1: Use the Sidecar Class
>>> sidecar = Sidecar(my_story, <node_id>)

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

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.apps.storymap.story_content.Sidecar。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。