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


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


基本信息

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

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

components String[]


创建 MapViewSceneView 时显示的默认小部件的字符串数组。 MapView 和 SceneView 之间的默认小部件不同。

以下是每个视图中的默认组件:

Map视图: ["attribution", "zoom"]

场景视图: ["attribution", "navigation-toggle", "compass", "zoom"]

Esri 要求当您在应用程序中使用 ArcGIS 在线底图时,该Map必须包含 Esri 署名,并且您必须获得使用该内容的许可。有关使用归因的详细指南,请访问官方 attribution in your app 文档。有关使用条款的信息,请参阅Terms of Use FAQ

例子:

// Removes all default UI components, except Attribution.
// Passing an empty array will remove all components.
view.ui.components = [ "attribution" ];

相关用法


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