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


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


基本信息

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

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

fetchFeatures (screenPoint, options) {Promise<FetchPopupFeaturesResult>}


自从:ArcGIS 适用于 JavaScript 4.15 的 API

使用此方法返回给定屏幕位置的函数。这些特征是从 view 中的所有 LayerViews 中获取的。为了使用它,一个层必须已经有一个关联的 PopupTemplate 并且有它的 popupEnabled 。然后可以在自定义 PopupFeature 小部件体验中使用这些函数。一个示例可以是自定义侧面板,它根据最终用户的点击位置显示feature-specific 信息。此方法允许开发人员控制如何处理输入位置,然后控制如何处理结果。

参数:

类型说明
screenPoint Object

表示屏幕上一个点的对象。该点可以在 MapViewSceneView 中。

规格:
x

Number

x 坐标。

y

Number

y 坐标。

可选的

options 传递给 fetchFeatures 方法。

返回:

类型 说明
Promise<FetchPopupFeaturesResult> 使用选定的hitTest 位置解析。此外,如果 hitTest 直接在 view 上执行,它还会返回一个 graphics 数组,一个包含所有结果 graphics 的数组的单个 Promise ,或包含此结果数组的对象数组 graphics 除了其关联的 layerview 。最常见的是,如果访问所有函数,请使用 result's allGraphicsPromise 中返回的单个承诺并调用 .then(),如示例代码段所示。

例子:

// Add Feature widget to UI
view.ui.add(featureWidget, "top-right");

// Get view's click event
view.on("click", function(event) {
  // Call fetchFeatures and pass in the click event screenPoint
  view.popup.fetchFeatures(event.screenPoint).then(function(response) {
    // Access the response from fetchFeatures
    response.allGraphicsPromise.then(function(graphics) {
      // Set the feature widget's graphic to the returned graphic from fetchFeatures
      featureWidget.graphic = graphics[0];
    });
  });
});

相关用法


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