之前主要是Entity的一個大概流程,本文主要介紹Cesium的屬性,比如defineProperties,Property(ConstantProperty,CallbackProperty,ConstantPositionProperty)以及createPropertyDescriptor的相關(guān)內(nèi)容,研究一下Cesium對Object的屬性設(shè)計和使用方式。

       我們以Entity為例,看看它是如何封裝自己的屬性:

電腦培訓,計算機培訓,平面設(shè)計培訓,網(wǎng)頁設(shè)計培訓,美工培訓,Web培訓,Web前端開發(fā)培訓

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培訓,做最負責任的教育,學習改變命運,軟件學習,再就業(yè),大學生如何就業(yè),幫大學生找到好工作,lphotoshop培訓,電腦培訓,電腦維修培訓,移動軟件開發(fā)培訓,網(wǎng)站設(shè)計培訓,網(wǎng)站建設(shè)培訓學習是年輕人改變自己的最好方式