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


Python ArcGIS Swipe用法及代碼示例


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

用法:

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

基礎:object

從預先存在的 swipe 節點創建一個 Swipe 對象。

Parameter

Description

node

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

story

滑動所屬的必需 StoryMap

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

# Method 1: Use the Swipe Class
>>> swipe = Swipe(my_story, <node_id>)

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

相關用法


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