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


JavaScript ArcGIS MapView hold事件用法及代碼示例


基本信息

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

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

ESM: import MapView from "@arcgis/core/views/MapView";

類: esri/views/MapView

繼承: MapView > View > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

MapView hold事件的定義如下:


在視圖上按住鼠標按鈕或單指短時間後觸發。

屬性:

類型說明
mapPoint Point

在Map的空間參考中單擊視圖的點位置。

x Number

在視圖上保持的水平屏幕坐標。

y Number

在視圖上保持的垂直屏幕坐標。

button Number

指示按下了哪個鼠標按鈕。見MouseEvent.button

說明
0 鼠標左鍵(或觸摸)
1 鼠標中鍵
2 鼠標右鍵

可能的值0|1|2

buttons Number

指示觸發事件時按下了哪些鼠標按鈕。見MouseEvent.buttons

type String

事件類型。

值永遠是"hold".

stopPropagation Function

防止事件在事件鏈中冒泡。

timestamp Number

發出事件的時間戳(以毫秒為單位)。

native Object

標準 DOM PointerEvent

例子:

view.on("hold", function(event) {
  // The event object contains the mapPoint and the screen coordinates of the location
  // that was clicked.
  console.log("hold at screen point", event.x, event.y);
  console.log("hold at map point", event.mapPoint);
});

相關用法


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