当前位置:   article > 正文

Cesium.js移除自带地形和影像_cesium移除地形

cesium移除地形

前言

Cesium.js 默认是自带地形和影像的,对于自己有影响和地形的数据用户来说就没有什么用了,而且Cesium.js自带的影像经常由于网络原因会报错,这里简单记录一下如何移除Cesium.js自带的地形和影像

移除自带地形

主要有以下两种方法

  • 初始化时移除

     const viewer = new Cesium.Viewer('map3d', {
            terrainProvider: new Cesium.EllipsoidTerrainProvider({}),//移除自带地形
            baseLayerPicker:false,
            homeButton:false,
            infoBox:false,
            timeline:false,
            navigationHelpButton:false,
            geocoder:false,
            sceneModePicker:false,
            animation:false,
            fullscreenButton:false
          });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
  • 使用时移除

    viewer.scene.terrainProvider=new Cesium.EllipsoidTerrainProvider({});
    
    • 1

移除自带影像

在这里插入图片描述

  • 使用时移除

    viewer.imageryLayers.removeAll()
    //或
    viewer.imageryLayers.remove(viewer.imageryLayers.get(0));
    
    
    • 1
    • 2
    • 3
    • 4
  • 初始化时移除

     const viewer = new Cesium.Viewer('map3d', {
           
            imageryProvider:  new Cesium.UrlTemplateImageryProvider({
              url: {{url}}
            }),//替换为自己的影像
            baseLayerPicker:false,
            homeButton:false,
            infoBox:false,
            timeline:false,
            navigationHelpButton:false,
            geocoder:false,
            sceneModePicker:false,
            animation:false,
            fullscreenButton:false
          });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/687593
推荐阅读
相关标签
  

闽ICP备14008679号