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


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


基本信息

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

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

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

类: esri/WebMap

继承: WebMap > Map > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

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

destroy ()


自从:ArcGIS 适用于 JavaScript 4.17 的 API

销毁 web Map以及任何关联的资源,包括其图层、底图、地面、表格和 PortalItem。一旦Map被破坏,这些就不能再使用。为了防止这些对象被破坏,请在调用 destroy() 之前将它们从 web Map中删除。

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

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

// unset basemap from the webmap so that it is not destroyed
const basemap = webmap.basemap;
webmap.basemap = null;

// unset ground from the webmap so that it is not destroyed
const ground = webmap.ground;
webmap.ground = null;

// unset portalItem from the webmap so that it is not destroyed
const portalItem = webmap.portalItem;
webmap.portalItem = null;

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

相关用法


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