sakitam-fdd/ol-plot

画完图形后,某些图形缺少了可编辑点

Closed this issue · 2 comments

image
图中,钳图,顶端两个可编辑点缺失。鼠标离开后,重新聚焦可编辑点能出来。

@bignose678 你是说 blog.sakitam.com/ol-plot/ 这个地址的是吧,应该是这个位置有问题

if (feature && feature.get('isPlot')) {

项目中使用的话需要判断是 plot 图形,并且未在绘制过程中再激活编辑

 if (feature && feature.get("isPlot") && !this.plot.plotDraw.isDrawing()) {
    this.plot.plotEdit.activate(feature);
  } else {
    this.plot.plotEdit.deactivate();
  }

fixed