CesiumJs

UI Extension

CesiumJS is an open-source JavaScript library for world-class 3D globes and maps with terrain, imagery, and geospatial data visualization.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #139
KEY FEATURES
3D globe
Terrain rendering
Satellite imagery
3D tiles
Time-dynamic data
CZML support
Entity API
Usage Example

Here's how you'll use CesiumJs with Oorian once the extension is available:

Java
// Create and configure CesiumJs component
CesiumJs component = new CesiumJs();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, CesiumJsEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.