Open vladimir-rybalko opened 11 months ago
Hi ! Thanks for your feedback.
There is an network error (ERR_TUNNEL_CONNECTION_FAILED
) when fetching your 3d tiles from the url you set in your iTowns example. You can check this by trying to access https://storage.yandexcloud.net/geotiff/model/tileset.json. The model loaded on Cesium does not come from the same server (it appears to use Cesium Ion), so this could explain why it is visible on Cesium and not in iTowns.
You could try to use a C3DTilesIonSource
to visualize the data stored on Cesium Ion within iTowns (see this example).
Hi ! Thanks for your feedback.
There is an network error (
ERR_TUNNEL_CONNECTION_FAILED
) when fetching your 3d tiles from the url you set in your iTowns example. You can check this by trying to access https://storage.yandexcloud.net/geotiff/model/tileset.json. The model loaded on Cesium does not come from the same server (it appears to use Cesium Ion), so this could explain why it is visible on Cesium and not in iTowns.You could try to use a
C3DTilesIonSource
to visualize the data stored on Cesium Ion within iTowns (see this example).
Thanks for the quick response!
The network error (ERR_TUNNEL_CONNECTION_FAILED
) is related to the CORS on the bucket, I corrected this problem. You can check it.
I also rewrote the example to use a Сesium ion source in your example.
I receive a JSON file from ION, but iTowns does not load the 3D tiles.
Thanks for the example update.
I took a look at it, and added the following line at its end (to get debug menu on C3DTilesLayer
) :
debug.create3dTilesDebugUI(debugMenu.gui, view, threeDTilesIonLayer);
When setting the sseThreshold
parameter to 0
within debug menu, the dataset becomes visible.
We might have an issue with sse
computing (perhaps also related to #1987 ?) that should be fixed. We'll take a look at it.
Your Environment
Context
Hello! Thank you for your great work! I have a display problem 3D tiles. I'm creating 3D tiles using Obj2Tiles. When trying to display them in iTowns, an error occurs. If I load these 3D tiles into Cesium, they display normally. Here is an example display.
Here's an example of my problem.
What could be the problem with preparing my data?