码迷,mamicode.com
首页 > 其他好文 > 详细

cesium(实体)

时间:2018-11-13 02:44:52      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:view   class   mat   viewer   span   hal   rem   console   alpha   

本文示列 实体的添加、删除、获取

//创建viewer

var viewer = new Cesium.Viewer(cesiumContainer);

//添加实体

 var redBox = viewer.entities.add({
        id:Box,
        position : Cesium.Cartesian3.fromDegrees(108, 34,0),
        box : {
            dimensions : new Cesium.Cartesian3(4000, 3000, 5000),
            material : Cesium.Color.RED.withAlpha(0.5),
            outline : true,
            outlineColor : Cesium.Color.BLACK
        }
    })

//获取实体

var getByIdBox = viewer.entities.getById(Box);
    console.log(getByIdBox)

//删除实体

 //方法一(针对性删除某一个)
 viewer.entities.remove(redBox);
        
 //方法二(通过id删除)
  viewer.entities.remove(getByIdBox);
//方法三(删除所有实体) viewer.entities.removeAll();

 

cesium(实体)

标签:view   class   mat   viewer   span   hal   rem   console   alpha   

原文地址:https://www.cnblogs.com/MaShuai666/p/9949637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!