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


JavaScript ArcGIS Sketch.MoveEventInfo用法及代码示例


基本信息

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

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.MoveEventInfo函数(或属性)的定义如下:

MoveEventInfo Object


当用户移动图形时,此信息作为更新事件的 toolEventInfo 参数返回。它返回与移动操作及其所处阶段相关的附加信息。

属性:

类型说明
type String

返回指示移动操作阶段的信息。

可能的值

说明
move-start move 操作开始时,类型更改为move-start
move 移动图形时,类型更改为move
move-stop 移动图形后,类型将更改为move-stop

可能的值"move-start"|"move"|"move-stop"

dx Number

从最后一个已知位置在 x 轴上移动的像素数。

dy Number

从最后一个已知位置在 y 轴上移动的像素数。

mover Graphic

正在移动的图形的实例。

例子:

// listen to update event
sketch.on("update", function(event){
  // check if the graphics are done being moved, printout dx, dy parameters to the console.
  const eventInfo = event.toolEventInfo;
  if (eventInfo && eventInfo.type.includes("move")){
    console.log(eventInfo.type, eventInfo.dx, eventInfo.dy);
  }
});

相关用法


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