UNPKG

bcgis-type

Version:

The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.

27 lines (26 loc) 382 B
/** * 地形类型 */ declare enum TerrainType { /** * 无地形 */ NONE = "none", /** * xyz 格式地形 */ XYZ = "xyz", /** * 谷歌地形 */ ARCGIS = "arcgis", /** * arcgis 地形 */ GOOGLE = "google", /** * VR 地形 */ VR = "vr" } export default TerrainType;