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


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


基本信息

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

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.alignment函数(或属性)的定义如下:

alignment String | Function


自从:ArcGIS 适用于 JavaScript 4.8 的 API

弹出窗口相对于所选特征的位置。默认行为是显示在函数上方并在空间不足时进行调整。如果需要明确控制与函数相关的弹出窗口的显示位置,请选择 auto 之外的选项。

可能的值"auto"|"top-center"|"top-right"|"bottom-left"|"bottom-center"|"bottom-right"

默认值:auto

例子:

// Popup will display on the bottom-right of the selected feature regardless of where that feature is located
view.popup.alignment = "bottom-right";

相关用法


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