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


JavaScript ArcGIS DefaultUI.find用法及代码示例


基本信息

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

AMD: require(["esri/views/ui/DefaultUI"], (DefaultUI) => { /* code goes here */ });

ESM: import DefaultUI from "@arcgis/core/views/ui/DefaultUI";

类: esri/views/ui/DefaultUI

继承: DefaultUI > UI > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

DefaultUI.find函数(或属性)的定义如下:


通过小部件或 DOM ID 查找组件。

参数:

类型说明
id String

组件的 ID。

返回:

类型 说明
HTMLElement | Widget 如果找到 id,则返回 Widget 或 HTMLElement,否则返回 null

例子:

let compassWidget = new Compass({
  view: view,
  id: "myCompassWidget" // set an id to get the widget with find
});

// Add the Compass widget to the top left corner of the view
view.ui.add(compassWidget, "top-left");

// Find the Widget with the specified ID
let compassWidgetFind = view.ui.find("myCompassWidget"))

相关用法


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