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


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


基本信息

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

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

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

类: esri/Map

继承: Map > Accessor

子类: WebMap , WebScene

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

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

destroy ()


自从:ArcGIS 适用于 JavaScript 4.17 的 API

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

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

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

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

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

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

相关用法


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