UNPKG

@cpc/cesium-api

Version:

18 lines (17 loc) 553 B
import { PCamera } from "../camera/PCamera"; import { PViewPort } from "../viewPort/PViewPort"; import { PTerrain } from "../terrain/PTerrain"; import { PWeather } from "../weather/PWeather"; import { PSkyBox } from "../skyBox/PSkyBox"; import { PNavigation } from "../navigation/PNavigation"; export interface PCPC { container: String; camera?: PCamera; baseMaps?: Array<any>; cesium?: any; viewPort?: PViewPort; terrain?: PTerrain; weather?: PWeather; skyBox?: PSkyBox; navigation?: PNavigation; }