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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。