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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。