-
click
用户单击视图后触发。此事件的发出速度比 immediate-click 事件稍慢,以确保不会触发双击事件。 immediate-click事件可用于立即响应点击事件。
-
类型 说明 mapPoint Point在Map的空间参考中单击视图的点位置。
x Number点击视图的横屏坐标。
y Number点击视图的屏幕垂直坐标。
button Number指示单击了哪个鼠标按钮。
buttons Number指示当前鼠标按钮状态。
值 说明 0 左键单击(或触摸) 1 中键 2 右键点击 type String事件类型。
值永远是"click".
stopPropagation Function防止事件在事件链中冒泡。
timestamp Number发出事件的时间戳(以毫秒为单位)。
native Object标准 DOM PointerEvent 。
属性:
例子:
// Set up a click event handler and retrieve the screen point view.on("click", function(event) { // the hitTest() checks to see if any graphics in the view // intersect the given screen x, y coordinates view.hitTest(event) .then(getGraphics); });
view.on("click", function(event) { // you must overwrite default click-for-popup // behavior to display your own popup view.popup.autoOpenEnabled = false; // Get the coordinates of the click on the view let lat = Math.round(event.mapPoint.latitude * 1000) / 1000; let lon = Math.round(event.mapPoint.longitude * 1000) / 1000; view.popup.open({ // Set the popup's title to the coordinates of the location title: "Reverse geocode: [" + lon + ", " + lat + "]", location: event.mapPoint // Set the location of the popup to the clicked location content: "This is a point of interest" // content displayed in the popup }); });
-
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/views/View"], (View) => { /* code goes here */ });
ESM:
import View from "@arcgis/core/views/View";
类:
esri/views/View
继承: View > Accessor
自从:用于 JavaScript 4.0 的 ArcGIS API
用法说明
View click事件
的定义如下:
相关用法
- JavaScript ArcGIS View pointer-move事件用法及代码示例
- JavaScript ArcGIS View layerview-create-error事件用法及代码示例
- JavaScript ArcGIS View immediate-click事件用法及代码示例
- JavaScript ArcGIS View double-click事件用法及代码示例
- JavaScript ArcGIS View key-down事件用法及代码示例
- JavaScript ArcGIS View drag事件用法及代码示例
- JavaScript ArcGIS View hold事件用法及代码示例
- JavaScript ArcGIS View mouse-wheel事件用法及代码示例
- JavaScript ArcGIS View layerview-create事件用法及代码示例
- JavaScript ArcGIS View.popup用法及代码示例
- JavaScript ArcGIS Viewpoint.rotation用法及代码示例
- JavaScript ArcGIS View.tryFatalErrorRecovery用法及代码示例
- JavaScript ArcGIS View.when用法及代码示例
- JavaScript ArcGIS View.timeExtent用法及代码示例
- JavaScript ArcGIS ViewAnimation.when用法及代码示例
- JavaScript ArcGIS View.whenLayerView用法及代码示例
- JavaScript ArcGIS ViewAnimation用法及代码示例
- JavaScript ArcGIS View用法及代码示例
- JavaScript ArcGIS View.graphics用法及代码示例
- JavaScript ArcGIS View.fatalError用法及代码示例
- JavaScript ArcGIS View.navigation用法及代码示例
- JavaScript ArcGIS View.input用法及代码示例
- JavaScript ArcGIS View.destroy用法及代码示例
- JavaScript ArcGIS View.on用法及代码示例
- JavaScript ArcGIS View.container用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 View click event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。