Andrii Halashevskyi
Andrii Halashevskyi

Reputation: 13

How import model from forge scene to map(Google, arcGis etc)?

I use forge API in my application. I added an arcGis map to display the model using the methods from the post https://forge.autodesk.com/blog/dump-geometries-2d-curve in GEOMETRY_LOADED_EVENT. When I work with small models, the data is displayed on the ArcGis map well, but info about layers are lost. When the models are large, I get a very large data object(100mb + ) and my program does not work. Is it possible to save the model in threejs-friendly formats or to get a more compact object with model and layers data? Or are there still ways to display the model on the map? I would be very grateful for the advice.

I tried methods from the post https://forge.autodesk.com/blog/dump-geometries-2d-curve in GEOMETRY_LOADED_EVENT.

Upvotes: 0

Views: 391

Answers (1)

Petr Broz
Petr Broz

Reputation: 9934

Not sure if this fits your use case, but I've been working on a tool for converting Forge models into glTF format (which is pretty three.js-friendly I'd say): https://github.com/petrbroz/forge-extract.

Upvotes: 1

Related Questions