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


JavaScript ArcGIS SegmentDrawAction.redo用法及代码示例


基本信息

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

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

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

类: esri/views/draw/SegmentDrawAction

继承: SegmentDrawAction > DrawAction > Accessor

自从:用于 JavaScript 4.7 的 ArcGIS API

用法说明

SegmentDrawAction.redo函数(或属性)的定义如下:

redo () inherited


增量重做操作记录在堆栈中。在调用此方法之前调用canRedo(),以检查是否可以在操作实例上调用此方法。调用此方法将根据最后一个操作触发 vertex-add 或 vertex-remove 事件。

例子:

if (action.canRedo()) {
  action.redo();
}

相关用法


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