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


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


基本信息

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

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

location Point autocast


用于定位弹出窗口的点。通过选择函数查看弹出窗口时会自动设置此值。如果使用弹出窗口显示与Map中的要素无关的内容(例如任务的结果),则必须在使弹出窗口对用户可见之前设置此属性。

例子:

// Sets the location of the popup to the center of the view
view.popup.location = view.center;
// Displays the popup
view.popup.visible = true;
// Sets the location of the popup to a specific place (using autocast)
// Note: using latlong only works if view is in Web Mercator or WGS84 spatial reference.
view.popup.location = {latitude: 34.0571, longitude: -117.1968};
// Sets the location of the popup to the location of a click on the view
view.on("click", function(event){
  view.popup.location = event.mapPoint;
  // Displays the popup
  view.popup.visible = true;
});

相关用法


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