Could I draw images or text on the 3DTiles or Models?

1. A concise explanation of the problem you're experiencing.

Is there some way to draw images or text on the 3DTiles or 3D-Models?

2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.

None.

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.

I had some area which build by 3DTiles;
(1) I want to draw the street-name on the road in 3DTiles, which lay and rotate with road, not float (like Label).
(2) I want to draw the Logo on the park ground (3DTiles).

4. The Cesium version you're using, your operating system and browser.
Any version, I can switch to.

Hey Dave,

You can drape polygons onto terrain (see the “textured polygon” exampled here https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/?src=Clamp%20to%20Terrain.html) but it looks like this only works on terrain, not 3D Tiles.

This is definitely something we want to add support for, we have an issue open for it and I went ahead and bumped it to make sure it gets attention:

https://github.com/AnalyticalGraphicsInc/cesium/issues/6636

Feel free to chime in there too if you’d like to add anything!

Thanks!

Current version(1.50) only works on Cesium.ClassificationType.TERRAIN,
the Cesium.ClassificationType.CESIUM_3D_TILE is draw on terrain too.

Yeah, that property won’t affect textured polygons I think. but you can see it working for other polygons here:

Hi Dave,