/**
* @constructor
*/
function XUIGISEarth() {
}

XUIGISEarth.prototype = {

    //接口
    /**
    * 地球皮肤
    * @param {ImageProp} strImg 皮肤
    * @property {ImageProp} EarthSkin "websiteCase/XUIGISEarth/images/worldtietu.jpg"
    */
    SetEarthSkin:function (strImg) {
    },

    /**
    * 地球自转
    * @param {Boolean} bRotate ture自转false停转
    * @property {Boolean} EarthRotate true
    */
    SetEarthRotate:function (bRotate) {
    },

    /**
    * 复位
    */
    SetEarthReset:function () {
    },

    /**
    * 地球缩放
    * @param {Number} nSacle 缩放值
    * @property {Number} EarthSacle 220
    */
    SetEarthSacle:function (nSacle) {
    },

}