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


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