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


JavaScript ArcGIS Ground.destroy用法及代码示例


基本信息

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

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

ESM: import Ground from "@arcgis/core/Ground";

类: esri/Ground

继承: Ground > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

Ground.destroy函数(或属性)的定义如下:

destroy ()


自从:ArcGIS 适用于 JavaScript 4.17 的 API

破坏地面及其各层。一旦地面被破坏,这些就不能再使用。为了防止图层被破坏,请在调用 destroy() 之前将它们从地面上移除。

// prevent the layers from being destroyed by removing them from the ground
const layers = ground.layers.removeAll();

// destroy the ground and any remaining associated resources
ground.destroy();

相关用法


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