/**
* @constructor
*/
function XUICesiumEarth() {
}
XUICesiumEarth.prototype = {
//事件
/**
* 自动报警
* @eventname XUI_ATUO_ALARM
* @eventid 0x00001007
*/
//接口
/**
* 地球自转
* @param {Boolean} bRotate true自转false停转
* @property {Boolean} EarthRotate true
*/
SetEarthRotate:function (bRotate) {
},
/**
* 复位
*/
SetReduction:function () {
},
/**
* 地球缩放
* @param {Number} nSacle 缩放值
*/
SetEarthSacle:function (nSacle) {
},
/**
* 控制地球转动
* @param {Number} nDirection 方向,0右,1左,2上,3下
*/
SetEarthDirection:function (nDirection) {
},
/**
* 报警点
* @param {Number} nIndex 地理索引
*/
SetAlarmPoint:function (nIndex) {
},
/**
* 报警框
*/
SetAlarmInfo:function () {
},
/**
* 报警信息
* @param {String} strInfo
*/
SetAlarmTipInfo:function (strInfo) {
},
/**
* 地点数据
* @param {ImageProp} strFlag 国旗
* @param {String} strCity 城市
* @param {String} strLoc 经度
* @param {String} strLon 纬度
*/
SetAlarmLocData:function (strFlag,strCity,strLoc,strLon) {
},
/**
* 地点数据
*/
ClearLocData:function () {
},
/**
* 鹰眼图位置偏移
* @param {Number} nX x方向
* @param {Number} nY y方向
* @property {Collection} EagleEyePosition [0,0]
*/
SetEagleEyePosition:function (nX,nY) {
},
/**
* 报警框位置偏移
* @param {Number} nX x方向
* @param {Number} nY y方向
* @property {Collection} AlarmPosition [0,0]
*/
SetAlarmPosition:function (nX,nY) {
},
/**
* 地球皮肤
* @param {ImageProp} strImg 皮肤
* @property {ImageProp} EarthSkin "websiteCase/XUICesiumEarth/images/worldtietu.png"
*/
SetEarthSkin:function (strImg) {
},
/**
* 显示滚动轴
* @param {Boolean} bShow true显示false不显示
* @property {Boolean} Slider true
*/
ShowSlider:function (bShow) {
},
/**
* 滚动轴位置
* @param {Number} nTop y轴位置
* @param {Number} nLeft x轴位置
* @property {Collection} SliderPosition [308,348]
*/
SetSliderPosition:function (nTop,nLeft) {
},
/**
* 滚动轴上按钮背景图
* @param {ImageProp} strImage 背景图
* @property {ImageProp} SliderTopBtnImage "websiteCase/XUICesiumEarth/images/btn_jia.png"
*/
SetSliderTopBtnImage:function (strImage) {
},
/**
* 滚动轴下按钮背景图
* @param {ImageProp} strImage 背景图
* @property {ImageProp} SliderBotBtnImage "websiteCase/XUICesiumEarth/images/btn_jian.png"
*/
SetSliderBotBtnImage:function (strImage) {
},
/**
* 滚动轴轨道背景图
* @param {ImageProp} strImage 背景图
* @property {ImageProp} SliderTrackImage "websiteCase/XUICesiumEarth/images/sf_bg.png"
*/
SetSliderTrackImage:function (strImage) {
},
/**
* 攻击线颜色
* @param {String} strColor 颜色
* @property {Color} AttackLineColor "0xffff0000"
*/
SetAttackLineColor:function (strColor) {
},
/**
* 防守线颜色
* @param {String} strColor 颜色
* @property {Color} DefenseLineColor "0xffffff00"
*/
SetDefenseLineColor:function (strColor) {
},
/**
* 攻击扩散圈图片
* @param {ImageProp} strImage 颜色
* @property {ImageProp} AttackCircleImage "websiteCase/XUICesiumEarth/images/redCircle2.png"
*/
SetAttackCircleImage:function (strImage) {
},
/**
* 防守扩散圈图片
* @param {ImageProp} strImage 颜色
* @property {ImageProp} DefenseCircleImage "websiteCase/XUICesiumEarth/images/yellowCircle2.png"
*/
SetDefenseCircleImage:function (strImage) {
},
}