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

XUIChinaMap.prototype = {

    //组件
    /**
    "Title":{
      "title":"标题",
      "name":"Title",
      "type":"PUITitleInterface",
      "index":0
    }*/

    /**
    "Geo":{
      "title":"地理坐标系",
      "name":"Geo",
      "type":"PUIGeoInterface",
      "index":0
    }*/

    /**
    "GraphicImage0":{
      "title":"图片元素0",
      "name":"GraphicImage0",
      "type":"PUIGraphicImageInterface",
      "index":0
    }*/

    /**
    "GraphicImage1":{
      "title":"图片元素1",
      "name":"GraphicImage1",
      "type":"PUIGraphicImageInterface",
      "index":1
    }*/

    /**
    "Map":{
      "title":"地图",
      "name":"Map",
      "type":"PUIMapInterface",
      "index":0
    }*/


    //接口
    /**
     * 显示地图模块
     * @param {Number} nIndex 序号    
     * @property {Number} MapIndex 0 
     */
    ShowMapByIndex:function (nIndex) {
    },

    /**
     * 显示伪3d效果
     * @param {Boolean} bShow 是否显示
     * @property {Boolean} bShow false
     */
    SetShowFake3D:function (bShow) {
    },

    /**
     * 标题颜色
     * @param {String} TitleColor "0xffffe87d"
     * @property {Color} TitleColor "0xffffe87d"
     */
    SetTitleColor:function (TitleColor) {
    },

    /**
     * 地图颜色
     * @param {String} MapColor "0xff072744"
     * @property {Color} MapColor "0xff072744"
     */
    SetMapColor:function (MapColor) {
    },

    /**
     * 选中地图颜色
     * @param {String} CheckMapColor "0xff027eb3"
     * @property {Color} CheckMapColor "0xff027eb3"
     */
    SetCheckMapColor:function (CheckMapColor) {
    },

    /**
     * 地图边界颜色
     * @param {String} MapBorderColor 边界颜色
     * @property {Color} MapBorderColor "0xff154867"
     */
    SetMapBorderColor:function (MapBorderColor) {
    },

    /**
     * 地图背景颜色
     * @param {String} MapBgColor 背景颜色
     * @property {Color} MapBgColor ""
     */
    SetMapBgColor:function (MapBgColor) {
    },

    /**
     * 标题距左上位置
     * @param {String} strLeft 距左侧百分比
     * @param {String} strTop 距上方百分比
     * @property {Collection} TitlePos ["25%","3%"]
     */
    SetTitlePos:function (strLeft,strTop) {
    },

    /**
     * 地图距左上位置
     * @param {String} strLeft 距左侧百分比
     * @param {String} strTop 距上方百分比
     * @property {Collection} MapPos ["8%","8%"]
     */
    SetMapPos:function (strLeft,strTop) {
    },

    /**
     * 字体大小
     * @param {Number} nFontSize 字体大小
     * @property {Number} FontSize 23
     */
    SetFontSize:function (nFontSize) {
    },

    /**
     * 获取选中区域名称
     * @return {String} 选中区域名称
     */
    GetCheckAreaName:function () {
    },

}