如何在 Forge 查看器中创建虚线标记?
How do I create a dashed line markup in the forge viewer?
有没有办法将折线标记的样式设置为在 Forge 查看器的 Autodesk.Viewing.MarkupsCore 扩展中显示为虚线?
我尝试使用 markup.setStyle({ 'stroke-dasharray': "5,5" })
但会引发未定义的错误。
不确定内置标记,但在定义自定义标记类型时绝对可以使用虚线。如果您关注它链接到的 tutorial, and the sample code,您可以将以下行添加到自定义标记的 updateStyle
方法中:
avemcu.setAttributeToMarkupSvg(shape, 'stroke-dasharray', '5,5');
你会得到这样的结果:
有没有办法将折线标记的样式设置为在 Forge 查看器的 Autodesk.Viewing.MarkupsCore 扩展中显示为虚线?
我尝试使用 markup.setStyle({ 'stroke-dasharray': "5,5" })
但会引发未定义的错误。
不确定内置标记,但在定义自定义标记类型时绝对可以使用虚线。如果您关注它链接到的 tutorial, and the sample code,您可以将以下行添加到自定义标记的 updateStyle
方法中:
avemcu.setAttributeToMarkupSvg(shape, 'stroke-dasharray', '5,5');
你会得到这样的结果: