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


JavaScript ArcGIS Popup.content用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/widgets/Popup"], (Popup) => { /* code goes here */ });

ESM: import Popup from "@arcgis/core/widgets/Popup";

类: esri/widgets/Popup

继承: Popup > Widget > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

Popup.content函数(或属性)的定义如下:

content String | HTMLElement | Widget


弹出窗口的内容。直接在 Popup 上设置时,此内容是静态的,不能使用字段设置内容模板。要根据字段或属性名称为内容设置模板,请参阅 PopupTemplate.content

例子:

// This sets generic instructions in the popup that will always be displayed
// unless it is overridden by a PopupTemplate
view.popup.content = "Click a feature on the map to view its attributes";

相关用法


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