画完图形后,某些图形缺少了可编辑点
Closed this issue · 2 comments
bignose678 commented
sakitam-fdd commented
@bignose678 你是说 blog.sakitam.com/ol-plot/ 这个地址的是吧,应该是这个位置有问题
ol-plot/packages/ol-plot-vue/src/plot.vue
Line 476 in 9a20561
项目中使用的话需要判断是 plot 图形,并且未在绘制过程中再激活编辑
if (feature && feature.get("isPlot") && !this.plot.plotDraw.isDrawing()) {
this.plot.plotEdit.activate(feature);
} else {
this.plot.plotEdit.deactivate();
}
sakitam-fdd commented
fixed