之前主要是Entity的一个大概流程,本文主要介绍Cesium的属性,比如defineProperties,Property(ConstantProperty,CallbackProperty,ConstantPositionProperty)以及createPropertyDescriptor的相关内容,研究一下Cesium对Object的属性设计和使用方式。

       我们以Entity为例,看看它是如何封装自己的属性:

电脑培训,计算机培训,平面设计培训,网页设计培训,美工培训,Web培训,Web前端开发培训

function Entity(options) {    var id = options.id;    if (!defined(id)) {
        id = createGuid();
    }    this._id = id;    this._name = options.name;    this._description = undefined;    this._position = undefined;    this._rectangle = undefined;
}// Key 1:definePropertiesdefineProperties(Entity.prototype, {
    id : {
        get : function() {            return this._id;
        }
    },    // Key 2:createRawPropertyDescriptor
    name : createRawPropertyDescriptor('name'),    // Key 3:createPropertyDescriptor
    description : createPropertyDescriptor('description'),    // Key 4:createPositionPropertyDescriptor
    position : createPositionPropertyDescriptor('position'),    // Key 5:createPropertyTypeDescriptor
    rectangle : createPropertyTypeDescriptor('rectangle', RectangleGraphics)
});

延伸阅读

学习是年轻人改变自己的最好方式-Java培训,做最负责任的教育,学习改变命运,软件学习,再就业,大学生如何就业,帮大学生找到好工作,lphotoshop培训,电脑培训,电脑维修培训,移动软件开发培训,网站设计培训,网站建设培训学习是年轻人改变自己的最好方式