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

Cesium-entiy闪烁范例

时间:2019-07-15 01:34:13      阅读:508      评论:0      收藏:0      [点我收藏+]

标签:minor   color   java   lin   int   rop   log   gre   prope   

 // name:"圆闪烁",
    function f1() {
        var x=1;
        var flog=true;
        viewer.entities.add({
            name:"圆形区域闪烁",
            position:Cesium.Cartesian3.fromDegrees(lon,lat,0),
            ellipse : {
                semiMinorAxis : 2000.0,
                semiMajorAxis : 2000.0,
                height : 0,
                material:new Cesium.ColorMaterialProperty(new Cesium.CallbackProperty(function () {
                    if(flog){
                        x=x-0.05;
                        if(x<=0){
                            flog=false;
                        }
                    }else{
                        x=x+0.05;
                        if(x>=1){
                            flog=true;
                        }
                    }
                    return Cesium.Color.RED.withAlpha(x);
                },false))
            }
        });

    }f1();
    function f2(){
        var x=1;
        var flog=true;
        viewer.entities.add({
            name:"圆点point闪烁",
            position:Cesium.Cartesian3.fromDegrees(lon+0.03,lat+0.03,0),
            point : {
                show : true, // default
                color :new Cesium.CallbackProperty(function () {
                    if(flog){
                        x=x-0.05;
                        if(x<=0){
                            flog=false;
                        }
                    }else{
                        x=x+0.05;
                        if(x>=1){
                            flog=true;
                        }
                    }
                    return Cesium.Color.RED.withAlpha(x);
                },false),
                pixelSize : 10, // default: 1
                outlineWidth :0
            }
        });

    } f2();
    viewer.zoomTo(viewer.entities);

  

Cesium-entiy闪烁范例

标签:minor   color   java   lin   int   rop   log   gre   prope   

原文地址:https://www.cnblogs.com/yaohuimo/p/11186521.html

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