SuperMap iClient3D for WebGL教程-CallbackProperty

这一节课程讲解CallbackProperty机制,官方解释为由回调函数延迟计算其值的属性。小编个人的理解为,该机制为间隔时间执行指定的方法返回属性值,用于对属性进行赋值。该机制可以可以说非常强大,可以实现许多动态效果。
首先来看下CallbackProperty的实例化参数

let CallbackProperty=new Cesium.CallbackProperty(callback, isConstant)

callback:回调函数,用于计算并返回属性值
isConstant:返回值是否变化
在Cesium原生范例中提供了一个线生长并计算线长度的范例,


callback

可以看到线非常平滑的在生长,同步的文本也在变化,下面来看下示例代码

var startLatitude = 35;
var startLongitude = -120;
var endLongitude;
var startTime = Cesium.JulianDate.now();

// Add a polyline to the scene. Positions are dynamic.
var isConstant = false;
var redLine =  viewer.entities.add({
    polyline : {
        // This callback updates positions each frame.
        positions : new Cesium.CallbackProperty(function(time, result) {
            endLongitude = startLongitude + 0.001 * Cesium.JulianDate.secondsDifference(time, startTime);
            return Cesium.Cartesian3.fromDegreesArray([startLongitude, startLatitude, endLongitude, startLatitude], Cesium.Ellipsoid.WGS84, result);
        }, isConstant),
        width : 5,
        material : Cesium.Color.RED
    }
});

可以看到在polyline的position设置时,使用CallbackProperty,通过计算线的结束点,不断返回位置坐标。
对于CallbackProperty有了初步的了解之后,这个时候会产生疑问,在什么情况下可以使用CallbackProperty?
根据小编的测试发现,在添加所有的entity时只要属性为property的都可以使用CallbackProperty。
下面来看下小编实现的一些效果:


交互绘制

高程量算

交互绘制和高程量算利用对鼠标事件的封装组合,形成常用的一些工具。以高程量算为例,示例代码如下

/**
 * 作者:ljw20190619
 */
define([], function () {
    Cesium.measureHeighthandler = function (viewer) {
        this._viewer = viewer
        this._dislabel
        this._disline
        
        this._startposition
        this._endposition
        this._startpoint
        this._endpoint
        this._startHeight
        this._endHeight
        this._height
        this._circledis = 0
        this._circle
        this._customdatasoure = new Cesium.CustomDataSource('myData');
        this._handler = new Cesium.ScreenSpaceEventHandler(this._viewer.scene.canvas);
        this._viewer.dataSources.add(this._customdatasoure)
        let _that = this
        this.active = function () {
            //设置鼠标左键单击回调事件
            _that._handler.setInputAction(function (e) {
                //获取点击位置笛卡尔坐标
                let position = _that._viewer.scene.pickPosition(e.position);

                _that._startposition = position
                //将笛卡尔坐标转化为经纬度坐标
                let cartographic = Cesium.Cartographic.fromCartesian(position);
                let startheight = cartographic.height;
                _that._startHeight = startheight


                //在点击位置添加对应点
                if (!_that._startpoint) {
                    _that._startpoint = _that._customdatasoure.entities.add({
                        point: {
                            color: new Cesium.Color(1, 1, 0),
                            pixelSize: 5,
                            outlineColor: new Cesium.Color(0, 1, 1),
                            disableDepthTestDistance: Number.POSITIVE_INFINITY
                        },
                        position: new Cesium.CallbackProperty(function () {
                            return _that._startposition
                        }, false),

                    });
                }

                _that._handler.removeInputAction(Cesium.ScreenSpaceEventType.LEFT_CLICK)
                _that._handler.setInputAction(function (e) {
                    let position = _that._viewer.scene.pickPosition(e.endPosition);
                    _that._endposition = position
                    //将笛卡尔坐标转化为经纬度坐标
                    let cartographic = Cesium.Cartographic.fromCartesian(position);
                    let endheight = cartographic.height;
                    _that._endHeight = endheight
                    _that._height = _that._endHeight - _that._startHeight
                    _that._circledis = Cesium.Cartesian3.distance(_that._startposition, Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, _that._startHeight))
                    if (!_that._endpoint) {
                        _that._endpoint = _that._customdatasoure.entities.add({
                            point: {
                                color: new Cesium.Color(1, 1, 0),
                                pixelSize: 5,
                                outlineColor: new Cesium.Color(0, 1, 1),
                                disableDepthTestDistance: Number.POSITIVE_INFINITY
                            },
                            position: new Cesium.CallbackProperty(function () {
                                let cartographic = Cesium.Cartographic.fromCartesian(_that._startposition);
                                return Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, _that._endHeight)
                            }, false),

                        });
                    }
                    //绘制结果文本
                    if (!_that._dislabel) {
                        _that._dislabel = _that._customdatasoure.entities.add({
                            position: new Cesium.CallbackProperty(function () {
                                let cartographic = Cesium.Cartographic.fromCartesian(_that._startposition);
                                return Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, (cartographic.height + _that._endHeight) / 2)
                            }, false),
                            label: {
                                text: new Cesium.CallbackProperty(function () {
                                    return Math.abs(_that._height).toFixed(2) + '米'
                                }, false),
                                font: '24px Helvetica',
                                // fillColor: Cesium.Color.SKYBLUE,
                                // outlineColor: Cesium.Color.BLACK,
                                outlineWidth: 2,
                                pixelOffset: new Cesium.Cartesian2(60, 0),
                                showBackground: true,
                                // style: Cesium.LabelStyle.FILL_AND_OUTLINE,
                                disableDepthTestDistance: Number.POSITIVE_INFINITY
                            }
                        })

                    }
                    //绘制结果线
                    if (!_that._disline) {
                        _that._disline = _that._customdatasoure.entities.add({
                            polyline: {
                                positions: new Cesium.CallbackProperty(function () {
                                    let cartographic = Cesium.Cartographic.fromCartesian(_that._startposition);
                                    return Cesium.Cartesian3.fromRadiansArrayHeights([cartographic.longitude, cartographic.latitude, cartographic.height, cartographic.longitude, cartographic.latitude, _that._endHeight])
                                }, false),
                                width: 2,
                                material: Cesium.Color.ORANGERED.withAlpha(0.5),
                                //depthFailMaterial: Cesium.Color.ORANGERED.withAlpha(0.5)
                                depthFailMaterial: new Cesium.ColorMaterialProperty(Cesium.Color.ORANGERED.withAlpha(0.5))
                            }
                        })


                    }
                    //绘制圆面
                    if (!_that._circle) {
                        _that._circle = _that._customdatasoure.entities.add({
                            position: new Cesium.CallbackProperty(function () {
                                let cartographic = Cesium.Cartographic.fromCartesian(_that._startposition);
                                return Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, _that._endHeight)
                            }, false),
                            ellipse: {
                                semiMajorAxis: new Cesium.CallbackProperty(function () {
                                    return _that._circledis
                                }, false),
                                semiMinorAxis: new Cesium.CallbackProperty(function () {
                                    return _that._circledis
                                }, false),
                                height: new Cesium.CallbackProperty(function () {
                                    return _that._endHeight
                                }, false),
                                material: Cesium.Color.YELLOW.withAlpha(0.2),
                                outline: true,
                                outlineColor: Cesium.Color.WHITE.withAlpha(0.5)
                            }
                        })
                    }
                    _that._handler.setInputAction(function (e) {
                        if (_that._circle) {
                            _that._customdatasoure.entities.remove(_that._circle)
                            
                        }
                        _that._circle = undefined

                        _that._handler.removeInputAction(Cesium.ScreenSpaceEventType.MOUSE_MOVE)
                        _that._handler.removeInputAction(Cesium.ScreenSpaceEventType.RIGHT_CLICK)
                    }, Cesium.ScreenSpaceEventType.RIGHT_CLICK)
                }, Cesium.ScreenSpaceEventType.MOUSE_MOVE)

            }, Cesium.ScreenSpaceEventType.LEFT_CLICK);

        }
        this.disactive = function () {
            _that._customdatasoure.entities.removeAll()
            _that._dislabel=undefined
            _that._disline = undefined

            _that._startposition = undefined
            _that._endposition = undefined
            _that._startpoint = undefined
            _that._endpoint = undefined
            _that._startHeight = undefined
            _that._endHeight = undefined
            _that._height = undefined
            _that._circledis = 0
            _that._circle = undefined
        }
    }
    return Cesium.measureHeighthandler
})

旋转

旋转相对比较简单,利用对圆面设置旋转实现,代码如下:

            var addRoatePOI = function(POIObjs) {
                POIObjs.forEach(function(value, index, array) {
                    var POIEntity = viewer.entities.add({
                        name: value[2],
                        position: Cesium.Cartesian3.fromDegrees(value[0], value[1], 180000),
                        ellipse: {
                            semiMinorAxis: 100000,
                            semiMajorAxis: 100000,
                            height: 180000,
                            material: new Cesium.ImageMaterialProperty({
                                image: 'images/Oval.png',
                                repeat: new Cesium.Cartesian2(1, 1),
                                transparent: true
                            }),
                            rotation: new Cesium.CallbackProperty(getRotationValue, false),
                            stRotation: new Cesium.CallbackProperty(getRotationValue, false),
                            outline: false, // height must be set for outline to display
                            numberOfVerticalLines: 100
                        },
                        description: '测试数据'

                    });

                })
                var rotation = Cesium.Math.toRadians(30);

                function getRotationValue() {
                    rotation += 0.002;
                    return rotation;
                }

            }

本节教程就到这里,欢迎转发、留言、讨论。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351