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


JavaScript ArcGIS MultipointDrawAction draw-complete事件用法及代碼示例


基本信息

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

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

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

類: esri/views/draw/MultipointDrawAction

繼承: MultipointDrawAction > DrawAction > Accessor

自從:用於 JavaScript 4.6 的 ArcGIS API

用法說明

MultipointDrawAction draw-complete事件的定義如下:

draw-complete


在用戶完成繪製 multipoint 後觸發。

屬性:

類型說明
vertices Number[][]

代表繪製幾何圖形的每個頂點坐標的二維數字數組。

preventDefault Function

防止事件傳播在事件鏈上冒泡。

defaultPrevented Boolean

調用 preventDefault() 時設置為 true。

type String

事件的類型。

值永遠是"draw-complete".

例子:

// fires when completed drawing the multipoint.
action.on("draw-complete", function (evt) {
  view.graphics.removeAll();
  let multipoint = new Multipoint({
    points: evt.vertices,
    spatialReference: view.spatialReference
  });
  let graphic = createGraphic(multipoint);
  view.graphics.add(graphic);
});

相關用法


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