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


JavaScript ArcGIS Sketch.VertexRemoveEventInfo用法及代碼示例


基本信息

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

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

ESM: import Sketch from "@arcgis/core/widgets/Sketch";

類: esri/widgets/Sketch

繼承: Sketch > Widget > Accessor

自從:用於 JavaScript 4.10 的 ArcGIS API

用法說明

Sketch.VertexRemoveEventInfo函數(或屬性)的定義如下:

VertexRemoveEventInfo Object


當用戶從圖形中刪除頂點時,此信息作為更新事件的 toolEventInfo 參數返回。

屬性:

類型說明
type String

類型始終為 vertex-remove

值永遠是"vertex-remove".

removed Number[]

表示移除的頂點的 x,y 坐標數組。

vertices Object[]

包含已移除頂點的詳細信息,以跟蹤幾何拓撲的變化。

規格:
coordinates Number[]

表示移除的頂點的 x,y 坐標數組。

componentIndex Number

已移除頂點的環/路徑索引。

vertexIndex Number

頂點位置的索引。

例子:

// listen to update event
sketch.on("update", function(event){
  // check if vertices are being added to the graphic that is being updated.
  const eventInfo = event.toolEventInfo;
  if (eventInfo && eventInfo.type === "vertex-remove"){
    const removedPoint = eventInfo.removed[0].geometry;
    console.log(eventInfo.type, removedPoint.x,removedPoint.y);
  }
});

相關用法


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