/**
* @constructor
*/
function XUILightingCity() {
}
XUILightingCity.prototype = {
//接口
/**
* 设置中心点坐标
* @param {Array} ArrCoordinate 坐标
*/
SetCenter:function (ArrCoordinate) {
},
/**
* 设置颜色
* @param {Number} nIndex 索引
* @param {String} strColor 颜色
* @property {Collection} LightingCityColor [0,"0xfff8fafc"]
*/
SetLightingCityColor:function (nIndex,strColor) {
},
/**
* 设置建筑样式透明度
* @param {Number} nArchitectureOpacity 建筑透明度
* @property {Number} ArchitectureOpacity 1
*/
SetArchitectureStyleOpacity:function (nArchitectureOpacity) {
},
/**
* 设置建筑窗户颜色
* @param {String} strWindowColor 建筑窗户颜色
* @property {Color} WindowColor "0xff0e0220"
*/
SetWindowColor:function (strWindowColor) {
},
/**
* 设置建筑点亮窗户颜色
* @param {String} strWindowBrightColor 点亮窗户颜色
* @property {Color} WindowBrightColor "0xff08faee"
*/
SetWindowBrightColor:function (strWindowBrightColor) {
},
/**
* 设置道路流线大小
* @param {Number} nLineSize 流线大小
* @property {Number} LineSize 1
*/
SetLineSize:function (nLineSize) {
},
/**
* 设置道路流线轨迹间隔
* @param {Number} nInterval 轨迹间隔
* @property {Number} LineInterval 1
*/
SetLineInterval:function (nInterval) {
},
/**
* 设置道路流线轨迹持续时间
* @param {Number} nDuration 持续时间
* @property {Number} LineDuration 2
*/
SetLineDuration:function (nDuration) {
},
/**
* 设置道路流线轨迹长度
* @param {Number} nLength 轨迹长度
* @property {Number} LineLength 2
*/
SetLineLength:function (nLength) {
},
/**
* 获取数据
* @return {Array}
*/
GetData:function () {
},
}