當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS BaseLayerViewGL2D.tessellateExtent用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/views/2d/layers/BaseLayerViewGL2D"], (BaseLayerViewGL2D) => { /* code goes here */ });

ESM: import BaseLayerViewGL2D from "@arcgis/core/views/2d/layers/BaseLayerViewGL2D";

類: esri/views/2d/layers/BaseLayerViewGL2D

繼承: BaseLayerViewGL2D > LayerView > Accessor

自從:用於 JavaScript 4.11 的 ArcGIS API

用法說明

BaseLayerViewGL2D.tessellateExtent函數(或屬性)的定義如下:

tessellateExtent (extent) {Promise<TessellatedMesh>}


自從:ArcGIS 適用於 JavaScript 4.14 的 API

Extent 鑲嵌成一個矩形。

參數:

類型說明
extent Extent

輸入幾何。

返回:

類型 說明
Promise<TessellatedMesh>

例子:

this.tessellateExtent(g.geometry).then(function (mesh) {
   // do something with mesh
 });

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 BaseLayerViewGL2D.tessellateExtent。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。