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


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