AttachmentsContent

AMD: require(["geoscene/popup/content/AttachmentsContent"], (AttachmentsContent) => { /* code goes here */ });
ESM: import AttachmentsContent from "@geoscene/core/popup/content/AttachmentsContent";
类: geoscene/popup/content/AttachmentsContent
继承于:AttachmentsContent Content Accessor
起始版本:GeoScene API for JavaScript 4.11

AttachmentsContent 弹出元素表示与要素关联的附件元素。此资源仅在 FeatureLayer.capabilities.data.supportsAttachmenttrue 时可用。

弹出模板附件元素

另请参阅:
示例:
// Create the AttachmentsContent popup element
// If the selected feature has attributes associated with it, they will display within the popup
let attachmentsElement = new AttachmentsContent({
  displayType: "list" // this will show all attachments as a list of linked files
});

// Create the PopupTemplate
let template = new PopupTemplate({
  title: "Beverly Hills trees by block",
  outFields: ["*"],
  content: [attachmentsElement]
});

构造函数

new AttachmentsContent(properties)
参数:
properties Object
可选

有关可能传递到构造函数中的所有属性的列表,请参阅属性

属性概述

可以设置、检索或收听任何属性。请查阅使用属性主题。
显示继承的属性 隐藏继承的属性
名称 类型 描述
String更多信息

类的名称。

更多信息Accessor
String更多信息

详细描述附件的内容。

更多信息AttachmentsContent
String更多信息

指示如何显示附件的字符串值。

更多信息AttachmentsContent
String更多信息

指示附件内容所表示内容的标题。

更多信息AttachmentsContent
String更多信息

显示的弹出窗口元素的类型。

更多信息AttachmentsContent

属性详情

declaredClass Stringreadonly inherited

类的名称。声明的类名的格式为 geoscene.folder.className

description String
起始版本:GeoScene API for JavaScript 4.19

详细描述附件的内容。

displayType String
起始版本:GeoScene API for JavaScript 4.22

指示如何显示附件的字符串值。

说明
auto 如果要素图层的功能支持调整附件大小,则弹出窗口将以preview 模式显示附件。
preview 显示附件的缩略图。
list 显示附件链接的列表。

可能值:"auto"|"preview"|"list"

默认值:"auto"
title String
起始版本:GeoScene API for JavaScript 4.19

指示附件内容所表示内容的标题。

type Stringreadonly

显示的弹出窗口元素的类型。

对于 AttachmentsContent 类型始终为 "attachments"

默认值:attachments

方法概述

名称 返回类型 描述
*更多信息

创建此类的新实例,并使用从 Geoscene 产品生成的 JSON 对象中的值对其进行初始化。

更多信息AttachmentsContent
Object更多信息

将此类的实例转换为其 GeoScene portal JSON 表现形式。

更多信息AttachmentsContent

方法详情

fromJSON(json){*}static

创建此类的新实例,并使用从 Geoscene 产品生成的 JSON 对象中的值对其进行初始化。传递到输入 json 数的对象通常来自对 REST API 中的查询操作的响应或来自另一个 GeoScene 产品的 toJSON() 方法。请参阅指南中的 fromJSON() 主题,了解有关何时以及如何使用此功能的详细信息和示例。

参数:
json Object

GeoScene 格式的实例的 JSON 表示形式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档

返回:
类型 说明
* 返回此类的新实例。
toJSON(){Object}

将此类的实例转换为其 GeoScene portal JSON 表现形式。有关更多信息,请参阅使用 fromJSON() 主题。

返回:
类型 说明
对象 此类实例的 GeoScene portal JSON 表现形式。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.