angular-cesium
Version:
Angular library for working with Cesium.
13 lines (12 loc) • 393 B
TypeScript
export declare class ViewerFactory {
cesium: any;
constructor();
/**
* Creates a viewer with default or custom options
* @param mapContainer - container to initialize the viewer on
* @param options - Options to create the viewer with - Optional
*
* @returns new viewer
*/
createViewer(mapContainer: HTMLElement, options?: any): any;
}