-
click
View 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/MapView"], (MapView) => { /* code goes here */ });
ESM:
import MapView from "@arcgis/core/views/MapView";
类:
esri/views/MapView
自从:用于 JavaScript 4.0 的 ArcGIS API
用法说明
MapView click事件
的定义如下:
相关用法
- JavaScript ArcGIS MapView double-click事件用法及代码示例
- JavaScript ArcGIS MapView layerview-create事件用法及代码示例
- JavaScript ArcGIS MapView pointer-move事件用法及代码示例
- JavaScript ArcGIS MapView layerview-create-error事件用法及代码示例
- JavaScript ArcGIS MapView hold事件用法及代码示例
- JavaScript ArcGIS MapView mouse-wheel事件用法及代码示例
- JavaScript ArcGIS MapView key-down事件用法及代码示例
- JavaScript ArcGIS MapView immediate-click事件用法及代码示例
- JavaScript ArcGIS MapView drag事件用法及代码示例
- JavaScript ArcGIS MapView.constraints用法及代码示例
- JavaScript ArcGIS MapView.takeScreenshot用法及代码示例
- JavaScript ArcGIS MapView.when用法及代码示例
- JavaScript ArcGIS MapView.highlightOptions用法及代码示例
- JavaScript ArcGIS MapView.extent用法及代码示例
- JavaScript ArcGIS MapView.whenLayerView用法及代码示例
- JavaScript ArcGIS MapView.scale用法及代码示例
- JavaScript ArcGIS MapView.toScreen用法及代码示例
- JavaScript ArcGIS MapView.navigation用法及代码示例
- JavaScript ArcGIS MapView.animation用法及代码示例
- JavaScript ArcGIS MapView.widthBreakpoint用法及代码示例
- JavaScript ArcGIS MapView.input用法及代码示例
- JavaScript ArcGIS MapView.fatalError用法及代码示例
- JavaScript ArcGIS MapView.hitTest用法及代码示例
- JavaScript ArcGIS MapView.destroy用法及代码示例
- JavaScript ArcGIS MapView.background用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 MapView click event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。