本文简要介绍 python 语言中 arcgis.apps.storymap.story.StoryMap.credits
的用法。
用法:
credits(content=None, attribution=None, heading=None, description=None)
返回:
字符串列表,它们是属于学分的文本节点的节点 ID。
学分出现在故事的结尾,因此始终是最后一个节点。
要创建信用,请添加应显示在分隔线两侧的文本。内容代表左侧看到的文本,归属与分隔线右侧的内容一致。 (即‘content’ | ‘attribution’)
添加
content
和attribution
将在学分中添加一个新行,并且不会更改以前的学分。添加
heading
和description
将更改当前的内容。Parameter
Description
content
可选字符串。要添加的内容。 (见学分左侧。)
确保文本具有“<strong> </strong>”标签。添加到现有的学分。
attribution
可选字符串。要添加的属性。 (见学分右侧。)添加到现有学分。
heading
可选字符串。将当前标题替换为学分。
description
可选字符串。替换当前的学分说明。
#Example >>> story = StoryMap() >>> story.credits("Python Dev" , "Python API Team", "Thank You", "A big thank you to those who contributed")
相关用法
- Python ArcGIS StoryMap.cover用法及代码示例
- Python ArcGIS StoryMap.move用法及代码示例
- Python ArcGIS StoryMap.theme用法及代码示例
- Python ArcGIS StoryMap.add用法及代码示例
- Python ArcGIS StoryMap.get用法及代码示例
- 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.credits。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。