beckyta写了个WebGIS界面 中发帖

拿Cesium写了个WebGIS界面,在线地图和离线地图两个版本。离线地图使用nginx服务,下了个300M的地图测试,到7级。 
    const viewer = new Cesium.Viewer('cesiumContainer', {
      terrainProvider: new Cesium.EllipsoidTerrainProvider(),

      animation: false,         // 关闭左下角动画控件
      timeline: false,          // 关闭底部时间轴
      // fullscreenButton: false,  // 关闭右上角全屏按钮
      homeButton: false,        // 关闭右上角主页按钮
      sceneModePicker: false,  ...
 
 
Back to Top