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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。