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


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


基本信息

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

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

remove (component) inherited


从 UI 中删除一个或多个 HTML 组件或widgets

参数:

类型说明

要从 UI 中移除的组件。这可以是小部件实例、HTML 元素、表示 DOM 节点 ID 的字符串值或包含任何这些类型组合的数组。有关代码示例,请参阅下面的示例片段。

例子:

// Removes the BasemapToggle widget from the view if added.
// See the example for add() for more context
view.ui.remove(toggle);
// Removes the default zoom widget from the view's container
view.ui.remove("zoom");
// Removes multiple widgets from the view's UI
view.ui.remove([ compass, toggle, "zoom" ]);

相关用法


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