-
actions
Collection<(ActionButton|ActionToggle)>
autocast
定义可以通过单击弹出窗口中的图标或图像来执行的操作。默认情况下,每个弹出窗口都有一个
zoom-to
带有放大镜图标的动作.单击此图标时,视图会放大四个 LOD 并以所选要素为中心。您可以通过将 includeDefaultActions 设置为
false
或在 PopupTemplate 中将 overwriteActions 属性设置为true
来从默认弹出操作中删除此操作。弹出窗口中每个动作的顺序是它们在数组中出现的顺序。每次单击弹出窗口中的操作时都会触发 trigger-action 事件。此事件应用于为每个单击的操作执行自定义代码。例如,如果您想向弹出窗口添加
zoom-out
操作以将视图缩小多个 LOD,则可以在单独的函数中定义 zoom-out 代码。然后,您将在 trigger-action 事件处理程序中调用自定义zoom-out
函数。有关其工作原理的更多详细信息,请参阅下面的示例代码片段。使用 ActionButton 或 ActionToggle 类中列出的属性定义操作。
例子:
// Defines an action to zoom out from the selected feature let zoomOutAction = { // This text is displayed as a tooltip title: "Zoom out", // The ID by which to reference the action in the event handler id: "zoom-out", // Sets the icon font used to style the action button className: "esri-icon-zoom-out-magnifying-glass" }; // Adds the custom action to the popup. view.popup.actions.push(zoomOutAction); // The function to execute when the zoom-out action is clicked function zoomOut() { // in this case the view zooms out two LODs on each click view.goTo({ center: view.center, zoom: view.zoom - 2 }); } // This event fires for each click on any action view.popup.on("trigger-action", function(event){ // If the zoom-out action is clicked, fire the zoomOut() function if(event.action.id === "zoom-out"){ zoomOut(); } });
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/widgets/Popup"], (Popup) => { /* code goes here */ });
ESM:
import Popup from "@arcgis/core/widgets/Popup";
类:
esri/widgets/Popup
自从:用于 JavaScript 4.0 的 ArcGIS API
用法说明
Popup.actions
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS Popup.autoOpenEnabled用法及代码示例
- JavaScript ArcGIS Popup.alignment用法及代码示例
- JavaScript ArcGIS Popup.location用法及代码示例
- JavaScript ArcGIS Popup.headingLevel用法及代码示例
- JavaScript ArcGIS Popup.features用法及代码示例
- JavaScript ArcGIS Popup.content用法及代码示例
- JavaScript ArcGIS Popup.title用法及代码示例
- JavaScript ArcGIS Popup.classes用法及代码示例
- JavaScript ArcGIS Popup.when用法及代码示例
- JavaScript ArcGIS Popup.visibleElements用法及代码示例
- JavaScript ArcGIS Popup.open用法及代码示例
- JavaScript ArcGIS Popup.fetchFeatures用法及代码示例
- JavaScript ArcGIS Popup.dockEnabled用法及代码示例
- JavaScript ArcGIS Popup.on用法及代码示例
- JavaScript ArcGIS Popup.goToOverride用法及代码示例
- JavaScript ArcGIS Popup.container用法及代码示例
- JavaScript ArcGIS Popup.dockOptions用法及代码示例
- JavaScript ArcGIS PopupTemplate.fieldInfos用法及代码示例
- JavaScript ArcGIS Popup trigger-action事件用法及代码示例
- JavaScript ArcGIS PopupTemplate.returnGeometry用法及代码示例
- JavaScript ArcGIS PopupTemplate.expressionInfos用法及代码示例
- JavaScript ArcGIS PopupTemplate.actions用法及代码示例
- JavaScript ArcGIS PopupTemplate.content用法及代码示例
- JavaScript ArcGIS PopupTemplate.title用法及代码示例
- JavaScript ArcGIS PopupTemplate用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Popup.actions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。