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


JavaScript ArcGIS MapView double-click事件用法及代碼示例


基本信息

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

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 double-click事件的定義如下:


在視圖上的 double-clicking 之後觸發。

屬性:

類型說明
mapPoint Point

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

x Number

點擊視圖的橫屏坐標。

y Number

點擊視圖的屏幕垂直坐標。

button Number

指示單擊了哪個鼠標按鈕。

buttons Number

指示當前鼠標按鈕狀態。

說明
0 左鍵單擊(或觸摸)
1 中鍵
2 右鍵點擊

可能的值0|1|2

type String

事件類型。

值永遠是"double-click".

stopPropagation Function

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

timestamp Number

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

native Object

標準 DOM PointerEvent

例子:

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

相關用法


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