Loading AutoCAD drawing on Cesium map

Hi,

Do you have an option to load AutoCAD drawings as 3D models on Cesiumm map??

Regards,
Prashanth

Hey Prashanth,

What formats are you using? If it’s one of the formats on here: https://cesium.com/docs/tutorials/uploading/ you should be able to upload it to Cesium ion and select “3D model” to see it in CesiumJS.

We also do have some feature requests for adding support for more formats here: https://github.com/AnalyticalGraphicsInc/cesium-ion-community/issues?q=is%3Aopen+is%3Aissue+label%3A%22Input±+3D+Model%22+label%3AEnhancement

If you don’t see your preferred format here, let me know!

Hey Omar,

Thank you for the prompt reply.
I'm adding gltf/glb 3D files and they load fine on the map. I was looking forward to adding dwg format files, which is already requested by an user as per the link shared by you.

My requirement is to zoom into a device placed within a 3D building on receiving an alert. Kindly help here with some links if available. It will be of great help!

If this device is a separate model loaded into the scene, you can zoom in on it with:

viewer.flyTo(deviceModel);

``

Assuming it’s a model entity. Alternatively you can fly to a Cartesian3 location. You can see a full list of the parameters here:

https://cesiumjs.org/Cesium/Build/Documentation/Camera.html?classFilter=Camera#flyTo

Got it! Thank you Omar!