|
@@ -372,15 +372,14 @@ class AuthenticMap {
|
|
|
removePoint(callback) {
|
|
|
// 获取多边形的所有坐标
|
|
|
const features = this.kmap.getLayerFeatures()
|
|
|
- if(mapData.point){
|
|
|
- this.deletePointFun(mapData.point,callback)
|
|
|
- }else{
|
|
|
- if(mapData.selectPointArr.length<1) return ElMessage.warning("请选择点位")
|
|
|
+ if(mapData.selectPointArr.length>0){
|
|
|
features.forEach(item =>{
|
|
|
if(item.get("id")===mapData.selectPointArr[0].get("id")){
|
|
|
this.deletePointFun(item,callback)
|
|
|
}
|
|
|
})
|
|
|
+ }else{
|
|
|
+ this.deletePointFun(mapData.point,callback)
|
|
|
}
|
|
|
}
|
|
|
|