I am trying to integrate an arcgis javascript visualisation with Three.js. My particular requirement involves rendering some HTML in the 3d space.
In pure three.js, this can be achieved with a CSS3DRenderer, see here
Three.js CSS 3D Renderer
However I cannot get this working in combination with arcgis's externalrenderer.
Digging into the code this might be because Three.CSS3DRenderer does not accept a context as a parameter, so I guess it won't work.
Does anyone have any idea if it is possible to render some HTML in the arcgis 3d space, as per the codepen example linked?