implement the cesiumJS in mendix

0
hi team , how i can implement the  cesiumJS  functionality in mendix? Actually i have tried to implement it with html and javascript snippet but on UI it is not showing .   Please share the quick smaple code is possible  thanks !!
asked
2 answers
0

These script could not make on your html java script snippet. The only way is to append the script into body section, however the javascript action is in async mode, and async mode can only modify the script tag on head tag not in body tag. 

Therefore the last choice is wrap the cesiumjs into react component and build a pluggable widget.

answered
0

Take the custom widget route :)

1. Make a new Pluggable Web widget

2. check the react library for this library

3. As per the library requirement just drop in the JSX components in the widget code and you should be good to go as a first draft.

 

Based on your requirements you can tweak the options. 

answered