ArcGIS API for JS 4.24 @arcgis/core Editor小部件选择要素后界面乱了

环境:@ arcgis/core 4.24.4
          chrome 版本 104.0.5112.81(正式版本) (64 位)
          Vue3.0
 
目前有两个问题,第一个问题比较严重,单击选择要素:
选择.png

正常是这样子:
正常.png

但是后面出现页面乱的情况:
异常.png

刷新页面不管用,要重新用yarn serve启动项目才行
样式文件也是引用过的,不引用的话连小部件都不会显示。

样式.png


第二个问题就是捕捉关掉,但是设置enabled为false后,没有效果,“捕捉”还是显示在窗口里面
代码:
 const editor = new Editor({
view: view,
snappingOptions: {
// autocasts to SnappingOptions()
enabled: false,
selfEnabled: false
},
// allowedWorkflows:["updtate"],
layerInfos: layerInfos
})

// 编辑工具收缩控制器
const editorExpand = new Expand({
view: view,
// expandTooltip: '编辑',
content: editor
})

// Add the widgets to top and bottom right of the view
view.ui.add(editorExpand, 'top-right')
已邀请:

谢军

赞同来自: 柚子

第一个问题,怀疑是在重复执行Editor Widget创建部分的代码,可以确认一下。第二个问题,如果要去掉Editor UI中的捕捉按钮,通过设置对应dom的css实现。

要回复问题请先登录注册