You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// import * as Cesium from 'cesium'
|
|
import type { Cesium, Viewer } from 'cesium'
|
|
|
|
// 扩展全局变量
|
|
declare global {
|
|
// 定义全局Cesium类型
|
|
const Cesium: Cesium
|
|
// 允许扩展 Window
|
|
interface Window {
|
|
Cesium: Cesium
|
|
CESIUM_BASE_URL: string
|
|
Viewer: Viewer
|
|
}
|
|
}
|