当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS PointDrawAction draw-complete事件用法及代码示例


基本信息

以下是所在类或对象的基本信息。

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

ESM: import PointDrawAction from "@arcgis/core/views/draw/PointDrawAction";

类: esri/views/draw/PointDrawAction

继承: PointDrawAction > DrawAction > Accessor

自从:用于 JavaScript 4.5 的 ArcGIS API

用法说明

PointDrawAction draw-complete事件的定义如下:

draw-complete


在用户完成绘制点后触发。它将指针在视图上的位置作为数字数组返回,该数组表示视图空间参考中的 x,y 坐标对。

属性:

类型说明
coordinates Number[]

表示视图空间参考中的 x,y 坐标对的数字数组。

preventDefault Function

防止事件传播在事件链上冒泡。

defaultPrevented Boolean

调用preventDefault() 时设置为true

type String

事件的类型。

值永远是"draw-complete".

例子:

action.on("draw-complete", function (evt) {
  view.graphics.removeAll();
  let point = new Point({
    x: evt.coordinates[0],
    y: evt.coordinates[1],
    spatialReference: view.spatialReference
  });
  let graphic = createGraphic(point);
  view.graphics.add(graphic);
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 PointDrawAction draw-complete event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。