Forge Viewer - 我们可以将模型对象与在查看器中绘制的标记相关联吗?
Forge Viewer - can we associate objects of model with markups which are drawn in viewer?
我的查看器左侧有对象树视图,现在我正在寻求与查看器上绘制的标记建立关联,例如,如果单击墙对象,它应该使我关注特定的墙对象以及那里的标记也应该隐藏该查看器中的其他标记。因此,用户可以轻松地仅在该墙上看到所有这些关联的标记。
这可行吗?
提前致谢
这个标记扩展示例至少应该向您展示如何做您正在寻找的部分内容:
https://github.com/apprentice3d/ForgeViewerExtensions
it should focus me that particular wall object along with the markups there and also should hide other markups in that viewer.
尝试使用以下方法控制标记的可见性:
markupExt.markups[index].shape.style.display='none/block'
要将标记添加到特定节点的位置,请按照此处操作:https://forge.autodesk.com/blog/placing-custom-markup-dbid
我的查看器左侧有对象树视图,现在我正在寻求与查看器上绘制的标记建立关联,例如,如果单击墙对象,它应该使我关注特定的墙对象以及那里的标记也应该隐藏该查看器中的其他标记。因此,用户可以轻松地仅在该墙上看到所有这些关联的标记。 这可行吗?
提前致谢
这个标记扩展示例至少应该向您展示如何做您正在寻找的部分内容: https://github.com/apprentice3d/ForgeViewerExtensions
it should focus me that particular wall object along with the markups there and also should hide other markups in that viewer.
尝试使用以下方法控制标记的可见性:
markupExt.markups[index].shape.style.display='none/block'
要将标记添加到特定节点的位置,请按照此处操作:https://forge.autodesk.com/blog/placing-custom-markup-dbid