From 13fdb067fc3d752e8bd278de539fb2de40fe8397 Mon Sep 17 00:00:00 2001
From: lixuliang <lixuliang_hd@126.com>
Date: 星期五, 10 十一月 2023 18:20:33 +0800
Subject: [PATCH] 土地管理弹窗、工具栏整合、功能点击响应

---
 src/components/left/layerTree/Layer.vue |    2 
 src/components/menu/bottom-menu.vue     |   96 
 src/components/right/right-legend.vue   |   27 
 src/components/left/layerTree.vue       |    3 
 src/components/left/lefttop.vue         |    2 
 src/components/menu/index.vue           |    2 
 src/components/map/viewer.vue           |    8 
 src/components/index.vue                |    4 
 src/components/menu/tools/setting.vue   |    2 
 src/components/right/right-bottom.vue   |   89 
 src/components/map/viewer1.vue          |    4 
 src/components/left/leftmenu.vue        |    4 
 src/components/menu/tools/analysis.vue  |    4 
 static/layers.json                      | 4887 ------------------------------------------------------
 src/components/menu/tools/special.vue   |   15 
 src/components/right/right-top.vue      |  170 +
 16 files changed, 322 insertions(+), 4,997 deletions(-)

diff --git a/src/components/index.vue b/src/components/index.vue
index 641ca3b..7506958 100644
--- a/src/components/index.vue
+++ b/src/components/index.vue
@@ -45,8 +45,6 @@
         :show-tooltip="false"
         @input="changeAlpha"
       ></el-slider> -->
-
-      <lefttop ref="lefttop" />
       <right ref="Right" />
       <leftpanel ref="Left" />
       <menupanel />
@@ -61,7 +59,6 @@
 import viewer from "@/components/map/viewer";
 import viewer1 from "@/components/map/viewer1";
 // import left from "@/components/left/left";
-import lefttop from "@/components/left/lefttop";
 import leftpanel from "@/components/left/index";
 import right from "@/components/right/right";
 // import bottom from "@/components/bottom/bottom";
@@ -82,7 +79,6 @@
     leftpanel,
     right,
     // bottom,
-    lefttop,
     yqfk,
     menupanel,
     bottommenu,
diff --git a/src/components/left/layerTree.vue b/src/components/left/layerTree.vue
index 41091e2..b3b0c3c 100644
--- a/src/components/left/layerTree.vue
+++ b/src/components/left/layerTree.vue
@@ -598,13 +598,10 @@
     Bus.$on("switchImage", () => {
       this.clearSwitchLayer();
       this.$refs.tree.setChecked("C0698021", true, true);
-
       this.setChecked("C0698021", true);
-
       //this.$refs.tree.setChecked("shijingsanwei", true, true);
     });
     // Bus.$on("switchImage", () => {
-
     //   this.$refs.tree.setChecked("shijingsanwei", true, true);
     // });
   },
diff --git a/src/components/left/layerTree/Layer.vue b/src/components/left/layerTree/Layer.vue
index e00c8d6..db0c791 100644
--- a/src/components/left/layerTree/Layer.vue
+++ b/src/components/left/layerTree/Layer.vue
@@ -1033,7 +1033,7 @@
   color: #ffffff !important;
 }
 .historyBtn {
-  margin-left: 28px;
+  margin-left: 10px;
 }
 .closeBtn {
   color: white;
diff --git a/src/components/left/leftmenu.vue b/src/components/left/leftmenu.vue
index 93e46f8..9221637 100644
--- a/src/components/left/leftmenu.vue
+++ b/src/components/left/leftmenu.vue
@@ -546,6 +546,10 @@
       this.$refs.tree.setChecked("zhianjiankong", true, true);
       this.setChecked("zhianjiankong", true);
     });
+    Bus.$on("closeSPJK", () => {
+      this.$refs.tree.setChecked("zhianjiankong", false, false);
+      this.setChecked("zhianjiankong", false);
+    });
     //鍏抽棴鑿滃崟寮圭獥
     Bus.$on("closeMenuPop", (data) => {
       if (data) {
diff --git a/src/components/left/lefttop.vue b/src/components/left/lefttop.vue
index e60a5e3..0321664 100644
--- a/src/components/left/lefttop.vue
+++ b/src/components/left/lefttop.vue
@@ -57,7 +57,7 @@
 export default {
   name: "lefttop",
   data() {
-    ``;
+    
     let checkpass = (rule, value, callback) => {
       if (value == this.form.newPassword) {
         callback();
diff --git a/src/components/map/viewer.vue b/src/components/map/viewer.vue
index 54d78ed..4b5c9c0 100644
--- a/src/components/map/viewer.vue
+++ b/src/components/map/viewer.vue
@@ -87,8 +87,8 @@
       window.sgworld = new SmartEarth.EarthCtrl(
         "sdkContainer",
         {
-          // StaticFileBaseUrl: "../../../static/CimSDK/",
-          StaticFileBaseUrl: "../../../YZXNCS/static/CimSDK/",
+          StaticFileBaseUrl: "../../../static/CimSDK/",
+          // StaticFileBaseUrl: "../../../YZXNCS/static/CimSDK/",
         },
         {},
         {},
@@ -415,8 +415,8 @@
   display: block;
   position: absolute;
   /*bottom: 120px;*/
-  bottom: 13px;
-  right: 46px;
+  bottom: 30px;
+  right: 80px;
   /* margin-right: -105px; */
   z-index: 9999;
   border-radius: 10px;
diff --git a/src/components/map/viewer1.vue b/src/components/map/viewer1.vue
index 04252c8..666a806 100644
--- a/src/components/map/viewer1.vue
+++ b/src/components/map/viewer1.vue
@@ -1275,8 +1275,8 @@
   position: absolute;
   z-index: 999;
   top: 20%;
-  /* left: 50%; */
-  right: -68%;
+  left: 35%;
+  /* right: -68%; */
   padding-top: 20px;
   width: 401px;
   height: 549px;
diff --git a/src/components/menu/bottom-menu.vue b/src/components/menu/bottom-menu.vue
index c4bbc7b..badb2fb 100644
--- a/src/components/menu/bottom-menu.vue
+++ b/src/components/menu/bottom-menu.vue
@@ -23,7 +23,7 @@
           <img src="@assets/img/new/chengshibujian.png" alt="" />
         </div>
         <div class="textbox">
-          <span> 鍩庡競閮ㄤ欢 </span>
+          <span> 缁煎悎鎵╁睍 </span>
         </div>
         <el-dropdown-menu
           slot="dropdown"
@@ -36,10 +36,12 @@
           <el-dropdown-item command="bzdSystem"
             >鏍囧噯鍦扮洃绠″钩鍙�</el-dropdown-item
           >
-          <el-dropdown-item command="spjkHandle"
+          <el-dropdown-item v-if="isShowSPJK" command="spjkHandle"
             >瑙嗛闆嗘垚涓庡彲瑙嗗寲</el-dropdown-item
           >
-
+          <el-dropdown-item v-else command="closeSpjk"
+            >鍏抽棴瑙嗛鐐逛綅鍒嗗竷</el-dropdown-item
+          >
           <el-dropdown-item v-if="isShowSjxl" command="sjxlHandle"
             >鎵嬫満淇′护鐑姏鍒嗗竷</el-dropdown-item
           >
@@ -65,8 +67,11 @@
         >
           <el-dropdown-item command="fcfhHandle">鍒嗗眰鍒嗘埛</el-dropdown-item>
           <!-- <el-dropdown-item command="sprhHandle">鍦烘櫙瑙嗛铻嶅悎</el-dropdown-item> -->
-          <el-dropdown-item command="jiqirendahui"
+          <el-dropdown-item v-if="isShowSPRH" command="jiqirendahui"
             >鍦烘櫙瑙嗛铻嶅悎</el-dropdown-item
+          >
+          <el-dropdown-item v-else command="jiqirendahui"
+            >鍏抽棴瑙嗛铻嶅悎</el-dropdown-item
           >
         </el-dropdown-menu>
       </el-dropdown>
@@ -341,6 +346,9 @@
   width: 155px;
   border: none;
 }
+.el-dropdown /deep/ .el-dropdown-selfdefine{
+  margin-left: 8px !important;
+}
 .csbj .el-dropdown-menu {
   top: -215px !important;
 }
@@ -428,6 +436,9 @@
   name: "bottom-menu",
   data() {
     return {
+      isShowSPJK: true,
+      isShowSjxl: true,
+      isShowSPRH: true,
       csbjShow: false,
       jxmxShow: false,
       romanOption: [
@@ -609,7 +620,6 @@
       // 閫忔槑搴�
       far: 166,
       videoarrList: [],
-      isShowSjxl: true,
     };
   },
   computed: {
@@ -637,6 +647,9 @@
         case "spjkHandle":
           this.spjkHandle();
           break;
+        case "closeSpjk":
+          this.closeSpjk();
+          break;
         case "stdsjHandle":
           this.stdsjHandle();
           break;
@@ -653,7 +666,7 @@
           this.shoujixinling();
           break;
         case "closeSjxl":
-          this.guanbi();
+          this.closeSjxl();
           break;
         case "csgxHandle":
           this.csgxHandle();
@@ -664,19 +677,40 @@
       }
     },
     tdglHandle() {
+      if (!this.viewer1Show) {
+        const loading = this.$loading({
+          lock: true,
+          text: "鍦熷湴绠$悊鍔熻兘鍔犺浇涓紝璇风◢鍚�",
+          spinner: "el-icon-loading",
+          background: "rgba(0, 0, 0, 0.7)",
+        });
+        setTimeout(() => {
+          loading.close();
+        }, 3500);
+      }
+
       this.setViewer1Show(!this.viewer1Show);
     },
     stdsjHandle() {
+      // window.location.href =
+      //   "http://10.9.2.29:8080/#/login?token=1ed14c5157acb8088efe65bc93a032c3";
       window.open(
         "http://10.9.2.29:8080/#/login?token=1ed14c5157acb8088efe65bc93a032c3"
       );
     },
     bzdSystem() {
-      window.open(
-        "http://192.162.24.2:8076/login"
-      );
+      window.open("http://192.162.24.2:8076/login");
     },
     shoujixinling() {
+      const loading = this.$loading({
+        lock: true,
+        text: "鎵嬫満淇′护鏁版嵁鍔犺浇涓紝璇风◢鍚�",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)",
+      });
+      setTimeout(() => {
+        loading.close();
+      }, 2000);
       this.isShowSjxl = false;
       let heatMapUrl = URLInCode.heatMapUrl;
       sgworld.Core.getJSON(heatMapUrl, (data) => {
@@ -705,7 +739,7 @@
         });
       });
     },
-    guanbi() {
+    closeSjxl() {
       if (heatMapItem) {
         this.isShowSjxl = true;
         heatMapItem.deleteObject();
@@ -762,6 +796,16 @@
       });
     },
     spjkHandle() {
+      const loading = this.$loading({
+        lock: true,
+        text: "瑙嗛鐐逛綅鏁版嵁鍔犺浇涓紝璇风◢鍚�",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)",
+      });
+      setTimeout(() => {
+        loading.close();
+      }, 2000);
+      this.isShowSPJK = false;
       if (window.sxtkGeojson) {
         window.sxtkGeojson.deleteObject();
         window.sxtkGeojson = null;
@@ -775,23 +819,51 @@
         // this.spjkLoad();
       }
     },
+    closeSpjk() {
+      this.isShowSPJK = true;
+      if (window.sxtkGeojson) {
+        window.sxtkGeojson.deleteObject();
+        window.sxtkGeojson = null;
+        window.sxthandler.destroy();
+        //鍏抽棴寮圭獥
+        Bus.$emit("closeRightPop", true);
+        layuiLayer.close(SmartEarthPopupData.layerProp);
+        return;
+      } else {
+        Bus.$emit("closeSPJK");
+        // this.spjkLoad();
+      }
+    },
     // 鍒嗗眰鍒嗘埛
     fencengfenhu() {
+      Bus.$emit("switchImage");
+      const loading = this.$loading({
+        lock: true,
+        text: "寤虹瓚瀹炴櫙妯″瀷鍔犺浇涓紝璇风◢鍚�",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)",
+      });
+      setTimeout(() => {
+        loading.close();
+      }, 2000);
       Bus.$emit("ShowFCFH", true);
     },
     // 鏈哄櫒浜哄ぇ浼氳棰戣瀺鍚�
     async jiqirendahui(item) {
+      Bus.$emit("switch3D");
       var that = this;
+      this.isShowSPRH = false;
       if (that.robotvideoarrList.length > 0) {
         for (var i = 0; i < that.robotvideoarrList.length; i++) {
           that.robotvideoarrList[i].destroy();
           that.robotvideoarrList[i] = undefined;
         }
         that.robotvideoarrList = [];
+        this.isShowSPRH = true;
       } else {
         const loading = this.$loading({
           lock: true,
-          text: "Loading",
+          text: "瑙嗛鏁版嵁鍔犺浇涓紝璇风◢鍚�",
           spinner: "el-icon-loading",
           background: "rgba(0, 0, 0, 0.7)",
         });
@@ -807,7 +879,6 @@
               item[i].cameraIndexCode,
             // url: "http://10.10.4.116:8086/getCamerasInfoHls?cameraIndexCode=49ee9fed701444738112e80a4835122c",
             success: function (result) {
-              loading.close();
               video = sgworld.Creator.Video3D({
                 cameraPosition: position, //鐩告満瀹夎浣嶇疆
                 heading: item[i].heading, //64
@@ -823,6 +894,7 @@
                 useLine: false, //鏄惁璇曠敤杈呭姪绾�
                 success() {
                   sgworld.Navigate.flyToObj(video);
+                  loading.close();
                 },
               });
               that.robotvideoarrList.push(video);
diff --git a/src/components/menu/index.vue b/src/components/menu/index.vue
index 495761e..e95829a 100644
--- a/src/components/menu/index.vue
+++ b/src/components/menu/index.vue
@@ -8,7 +8,7 @@
 .menupanel {
   position: absolute;
   left: 12px;
-  bottom: 85px;
+  bottom: 50px;
   z-index: 9999999;
   pointer-events: all;
 }
diff --git a/src/components/menu/tools/analysis.vue b/src/components/menu/tools/analysis.vue
index 67e28cd..352e406 100644
--- a/src/components/menu/tools/analysis.vue
+++ b/src/components/menu/tools/analysis.vue
@@ -140,12 +140,12 @@
   /* border-radius: 30px; */
   box-shadow: 0px 0px 10px rgba(101, 180, 253, 0.8) inset;
   background-color: rgba(5, 39, 126, 0.7);
-  border-image-source: radial-gradient(
+  /* border-image-source: radial-gradient(
     52% 120%,
     transparent 0px,
     transparent 100%,
     cyan 100%
-  );
+  ); */
   border-image-slice: 1;
   border-width: 1px;
   border-style: solid;
diff --git a/src/components/menu/tools/setting.vue b/src/components/menu/tools/setting.vue
index b2d69f0..09f79f2 100644
--- a/src/components/menu/tools/setting.vue
+++ b/src/components/menu/tools/setting.vue
@@ -182,7 +182,7 @@
   position: absolute;
   z-index: 9999999;
   pointer-events: all;
-  background: rgba(0, 0, 0, 0.7);
+  background: rgba(14, 50, 143, 0.6);
   border: 3px rgba(255, 255, 255, 0.5) solid;
   border-radius: 7px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
diff --git a/src/components/menu/tools/special.vue b/src/components/menu/tools/special.vue
index 5425e75..7ecf400 100644
--- a/src/components/menu/tools/special.vue
+++ b/src/components/menu/tools/special.vue
@@ -807,20 +807,7 @@
         });
       });
     },
-    spjkHandle() {
-      if (window.sxtkGeojson) {
-        window.sxtkGeojson.deleteObject();
-        window.sxtkGeojson = null;
-        window.sxthandler.destroy();
-        //鍏抽棴寮圭獥
-        Bus.$emit("closeRightPop", true);
-        layuiLayer.close(SmartEarthPopupData.layerProp);
-        return;
-      } else {
-        Bus.$emit("showSPJK");
-        // this.spjkLoad();
-      }
-    },
+   
     handleCommand(command) {
       switch (command) {
         case "qytj":
diff --git a/src/components/right/right-bottom.vue b/src/components/right/right-bottom.vue
index 4712ad3..ce9f49a 100644
--- a/src/components/right/right-bottom.vue
+++ b/src/components/right/right-bottom.vue
@@ -14,47 +14,6 @@
           </div>
         </el-tooltip>
       </div>
-      <!-- <div class="mapTool">
-        <el-tooltip
-          class="item"
-          effect="dark"
-          content="鍦烘櫙蹇収"
-          placement="left"
-          popper-class="item_tooltip"
-        >
-          <div class="legend-bg" @click="screenShot">
-            <img class="legendImg" src="@/assets/img/new/mengban.png" />
-          </div>
-        </el-tooltip>
-      </div> -->
-      <!-- <div class="mapTool">
-        <el-tooltip
-          class="item"
-          effect="dark"
-          content="鐩告満鍙傛暟"
-          placement="left"
-          popper-class="item_tooltip"
-        >
-          <div class="legend-bg" @click="getcamera">
-            <img class="legendImg" src="@/assets/img/new/mengban.png" />
-          </div>
-        </el-tooltip>
-      </div> -->
-
-      <!-- <div class="mapTool">
-        <el-tooltip
-          class="item"
-          effect="dark"
-          content="瓒呭浘"
-          placement="left"
-          popper-class="item_tooltip"
-        >
-          <div class="legend-bg" @click="S3M()">
-            <img class="legendImg" src="@/assets/img/new/mengban.png" />
-          </div>
-        </el-tooltip>
-      </div> -->
-
       <div class="mapTool">
         <el-tooltip
           class="item"
@@ -68,7 +27,7 @@
           </div>
         </el-tooltip>
       </div>
-      <div class="mapTool">
+      <!-- <div class="mapTool">
         <el-tooltip
           class="item"
           effect="dark"
@@ -80,7 +39,7 @@
             <img class="dwImg" src="@/assets/img/new/location.png" />
           </div>
         </el-tooltip>
-      </div>
+      </div> -->
       <div class="mapTool">
         <el-tooltip
           class="item"
@@ -107,7 +66,7 @@
           </div>
         </el-tooltip>
       </div>
-      <div class="mapTool" v-if="isActive">
+      <!-- <div class="mapTool" v-if="isActive">
         <el-tooltip
           class="item"
           effect="dark"
@@ -132,7 +91,7 @@
             <img class="qpImg" src="@/assets/img/new/tuichuquanping.png" />
           </div>
         </el-tooltip>
-      </div>
+      </div> -->
       <div class="mapTool">
         <el-tooltip
           class="item"
@@ -159,6 +118,32 @@
           </div>
         </el-tooltip>
       </div>
+      <!-- <div class="mapTool">
+        <el-tooltip
+          class="item"
+          effect="dark"
+          content="鍦烘櫙蹇収"
+          placement="left"
+          popper-class="item_tooltip"
+        >
+          <div class="legend-bg" @click="screenShot">
+            <img class="legendImg" src="@/assets/img/new/mengban.png" />
+          </div>
+        </el-tooltip>
+      </div> -->
+      <!-- <div class="mapTool">
+        <el-tooltip
+          class="item"
+          effect="dark"
+          content="鐩告満鍙傛暟"
+          placement="left"
+          popper-class="item_tooltip"
+        >
+          <div class="legend-bg" @click="getcamera">
+            <img class="legendImg" src="@/assets/img/new/mengban.png" />
+          </div>
+        </el-tooltip>
+      </div> -->
       <!-- <div class="mapTool">
         <el-tooltip class="item" effect="dark" content="浜屼笁缁村垏鎹�" placement="left">
           <el-button class="tool-23mode" @click="_23mode">
@@ -211,9 +196,7 @@
 .trigger {
   pointer-events: all;
 }
-.mapTools {
-  /* margin-bottom: 58px; */
-}
+
 .mapTool {
   margin: 2px 0;
 }
@@ -221,8 +204,8 @@
   background-image: url("~@/assets/img/new/leftCircle.png");
   background-size: 100%;
   background-color: transparent;
-  width: 54.5px;
-  height: 54.5px;
+  width:  35px;
+  height:  35px;
   position: relative;
 }
 .legend-bg:hover {
@@ -238,8 +221,8 @@
 /* 
 .mapTool .el-button {
   padding: 0 !important;
-  width: 54.5px;
-  height: 54.5px;
+  width:  30px;
+  height:  30px;
   border: unset;
   float: unset;
   display: block;
@@ -253,7 +236,7 @@
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
-  width: 28px;
+  width: 20px;
 }
 
 .button-group-vertical {
diff --git a/src/components/right/right-legend.vue b/src/components/right/right-legend.vue
index 5cd8c7e..4927589 100644
--- a/src/components/right/right-legend.vue
+++ b/src/components/right/right-legend.vue
@@ -6,7 +6,12 @@
     </div>
     <div class="legend-box">
       <div class="legend" v-for="(item, index) in state.list" :key="index">
-        <img class="img" :src="item.icon" alt="" :style="`width:${item.width}px;height:${item.height}px;`" />
+        <img
+          class="img"
+          :src="item.icon"
+          alt=""
+          :style="`width:${item.width}px;height:${item.height}px;`"
+        />
         <span>{{ item.name }}</span>
       </div>
     </div>
@@ -115,7 +120,7 @@
           name: "寰呯爺绌�",
           icon: require("../../../static/SmartEarthSDK/Workers/image/tuli/Level1/寰呯爺绌�.png"),
         },
-     
+
         // {
         //   name:'璺伅鏉�',
         //   icon:require("../../../static/SmartEarthSDK/Workers/image/tuli/Level1/寰呯爺绌�.png"),
@@ -369,7 +374,7 @@
         //   icon:require("../../../static/SmartEarthSDK/Workers/image/point-16px.png"),
         // }
       ],
-      state:store.Poplayer,
+      state: store.Poplayer,
     };
   },
   methods: {
@@ -377,11 +382,10 @@
       this.$parent.showLegend = false;
     },
   },
-  mounted(){
-  },
+  mounted() {},
   watch: {
     "state.list": function (val) {
-      this.state = val
+      this.state = val;
     },
   },
 };
@@ -394,11 +398,12 @@
   border-radius: 5px; */
   background-color: #2153f87e;
   background-image: url("~@/assets/img/new/listbg.png");
-  background-size: 100% 100%;  color: #fff;
+  background-size: 100% 100%;
+  color: #fff;
   padding: 0px 10px 10px;
   width: 400px;
-  right: 60px;
-  top: -240px;
+  right: 6px;
+  top: -427px;
   z-index: 9999999;
   pointer-events: all;
 }
@@ -421,8 +426,8 @@
   transition: 1s;
 }
 .legend-box {
-   max-height: 340px; 
-   overflow-y: auto; 
+  max-height: 340px;
+  overflow-y: auto;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
diff --git a/src/components/right/right-top.vue b/src/components/right/right-top.vue
index a89411d..0be5280 100644
--- a/src/components/right/right-top.vue
+++ b/src/components/right/right-top.vue
@@ -1,13 +1,57 @@
 <template>
   <div class="trigger" style="margin-top: 140px; margin-right: 10px">
-    <div class="user" @click="showLayer()">
+    <div class="user">
       <el-avatar
         class="user_btn"
         :size="70.6"
         icon="el-icon-user-solid"
         alt="涓汉涓績"
       ></el-avatar>
+      <div class="transition-box">
+        <ul>
+          <li @click="showLayer()">鏍囩粯鏁版嵁</li>
+          <li @click="dialogFormVisible = true">淇敼瀵嗙爜</li>
+        </ul>
+      </div>
     </div>
+    <el-dialog
+      append-to-body
+      title="淇敼瀵嗙爜"
+      :visible.sync="dialogFormVisible"
+      width="30%"
+      :close-on-click-modal="false"
+      custom-class="psdDialog"
+    >
+      <el-form :model="form" ref="pwdForm" :rules="rules">
+        <el-form-item label="鍘熷瘑鐮�">
+          <el-input
+            show-password
+            v-model="form.oldPassword"
+            autocomplete="off"
+          ></el-input>
+        </el-form-item>
+
+        <el-form-item label="鏂板瘑鐮�" prop="newPassword">
+          <el-input
+            show-password
+            v-model="form.newPassword"
+            autocomplete="off"
+          ></el-input>
+        </el-form-item>
+
+        <el-form-item label="纭瀵嗙爜" prop="checkPassword">
+          <el-input
+            show-password
+            v-model="form.checkPassword"
+            autocomplete="off"
+          ></el-input>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button @click="closeDig('pwdForm')">鍙� 娑�</el-button>
+        <el-button type="primary" @click="onSubmit('pwdForm')">纭� 瀹�</el-button>
+      </div>
+    </el-dialog>
     <div class="rightTool">
       <el-button @click="showInput">
         <img class="searchBg" src="@/assets/img/new/leftCircle.png" />
@@ -339,6 +383,7 @@
   pointer-events: all;
   margin: 0 auto;
 }
+
 .user_menu {
   right: 10px;
   top: 100px;
@@ -349,7 +394,54 @@
   margin-top: 0px !important;
   /* border-radius: 3px !important; */
 }
-
+.user:hover .transition-box {
+  display: block;
+}
+.transition-box {
+  display: none;
+  width: 130px;
+  height: 90px;
+  position: relative;
+  left: -50px;
+  border-radius: 4px;
+  background: rgba(14, 50, 143, 0.6);
+  text-align: center;
+  color: #fff;
+  padding: 10px;
+  box-sizing: border-box;
+}
+.transition-box ul li {
+  /* min-width: 154px; */
+  height: 35px;
+  text-align: center;
+  line-height: 35px;
+}
+.transition-box ul li:hover {
+  background: rgba(18, 80, 172, 0.6);
+  box-shadow: 0px 0px 10px 5px rgba(0, 132, 255, 0.7) inset;
+}
+.psdDialog .el-form-item {
+  margin-bottom: 0px;
+}
+/* .psdDialog,
+.psdDialog /deep/ .el-pager li {
+	background-color: rgba(255, 0, 0, 0.0);
+	color: #FFFFFF;
+}
+.psdDialog /deep/ .el-dialog__header {
+	padding-top: 10px !important;
+	background-color:rgb(255,255,255,0);
+	border-radius: 14px 14px  0  0 ;
+}
+.psdDialog /deep/ .el-dialog__body {
+	border-top: 0 !important;
+	background-color: rgba(19, 31, 59, 0);
+	color: #FFFFFF;
+}
+.psdDialog /deep/ .el-dialog__footer{
+	text-align: center;
+	background-color: rgba(255,255,255,0);
+} */
 .pointInfoBoxContext {
   position: relative;
   /*right: 12px;*/
@@ -668,6 +760,8 @@
 </style>
 
 <script>
+import { getUserInfo, updateUserPwd } from "@/api/api";
+import qs from "qs";
 import axios from "axios";
 import location from "@/components/right/tools/location";
 import plotting from "@/components/right/tools/plotting";
@@ -704,7 +798,30 @@
   },
   name: "right-top",
   data() {
+    let checkpass = (rule, value, callback) => {
+      if (value == this.form.newPassword) {
+        callback();
+      } else {
+        callback(new Error("瀵嗙爜涓嶄竴鑷�"));
+      }
+    };
     return {
+      rules: {
+        newPassword: [
+          { required: true, message: "璇疯緭鍏ユ柊瀵嗙爜", trigger: "blur" },
+        ],
+        checkPassword: [
+          { required: true, message: "涓嶈兘涓虹┖", trigger: "blur" },
+          { validator: checkpass, trigger: "blur" },
+        ],
+      },
+      dialogFormVisible: false,
+      nickName: "鐢ㄦ埛",
+      form: {
+        oldPassword: "",
+        newPassword: "",
+        checkPassword: "",
+      },
       resBypoi: [],
       expands: [],
       showRangeBox: false,
@@ -811,6 +928,55 @@
   },
   methods: {
     ...mapMutations(["setViewer1Show", "setYqfk"]),
+    onSubmit(formName) {
+      this.$refs[formName].validate((valid) => {
+        if (valid) {
+          let pwdItem = {
+            newPassword: this.form.newPassword,
+            oldPassword: this.form.oldPassword,
+          };
+
+          const options = {
+            method: "PUT",
+            headers: {
+              "content-type": "application/x-www-form-urlencoded",
+              Authorization: window.localStorage.getItem("TokenKey"),
+            },
+            data: qs.stringify(pwdItem),
+            url: "http://10.10.4.116:8089/system/user/profile/updatePwd",
+          };
+          axios(options).then((res) => {
+            if (res.data.code != 200) {
+              this.$message.error(res.data.msg);
+            } else {
+              this.$message({
+                message: res.data.msg,
+                type: "success",
+              });
+              this.form.newPassword = "";
+              this.form.oldPassword = "";
+              this.form.checkPassword = "";
+              this.dialogFormVisible = false;
+              setTimeout(() => {
+                localStorage.removeItem("TokenKey");
+                localStorage.removeItem("TokenTime");
+                this.$router.push("/login");
+              }, 3000);
+            }
+          });
+        } else {
+          alert("楠岃瘉涓嶉�氳繃");
+          return false;
+        }
+      });
+    },
+    closeDig(formName) {
+      this.form.newPassword = "";
+      this.form.oldPassword = "";
+      this.form.checkPassword = "";
+      this.dialogFormVisible = false;
+      this.$refs[formName].resetFields();
+    },
     /*鍒嗗眰鍒嗘埛*/
     fcfhpick(open) {
       if (open) {
diff --git a/static/layers.json b/static/layers.json
index eefed06..9e84d25 100644
--- a/static/layers.json
+++ b/static/layers.json
@@ -1,4886 +1 @@
-{
-    "name": "ALL",
-    "id": 1,
-    "open": true,
-    "children": [
-        {
-            "id": "482040AD",
-            "name": "瀹d紶鏂囧寲閮�",
-            "children": [
-                {
-                    "id": "xjfd",
-                    "name": "鏄熺骇楗簵",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4452-鏄熺骇楗簵",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jyxyccs",
-                    "name": "缁忚惀鎬ф紨鍑哄満鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4701-缁忚惀鎬ф紨鍑哄満鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gyxtsg",
-                    "name": "鍏泭鎬у浘涔﹂",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L417-鍏泭鎬у浘涔﹂",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sdgy",
-                    "name": "婀垮湴鍏洯",
-                    "sourceType": "cluster",
-                    "alpha": 0.46,
-                    "class": "polygon",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4038-婀垮湴鍏洯",
-                    "color": "#92d94b",
-                    "outlineColor": "#FFFFFF",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "height": 0,
-                    "extrudedHeight": 100,
-                    "outline": true,
-                    "water": false,
-                    "labelNear": 0,
-                    "labelFar": 999999999
-                },
-                {
-                    "id": "gyxwhg",
-                    "name": "鍏泭鎬ф枃鍖栭",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4418-鍏泭鎬ф枃鍖栭",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "lyzxfwz",
-                    "name": "鏃呮父鍜ㄨ鏈嶅姟绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4429-鏃呮父鍜ㄨ鏈嶅姟绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ysg",
-                    "name": "鑹烘湳棣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4456-鑹烘湳棣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "whg",
-                    "name": "鏂囧寲棣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4448-鏂囧寲棣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "msg",
-                    "name": "缇庢湳棣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4430-缇庢湳棣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "Ajjq",
-                    "name": "A绾ф櫙鍖�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4680-A绾ф櫙鍖�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "yrylxs",
-                    "name": "涓�鏃ユ父鏃呰绀�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4681-涓�鏃ユ父鏃呰绀�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "wzlxs",
-                    "name": "澶栬祫鏃呰绀�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4446-澶栬祫鏃呰绀�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ycjqlxs",
-                    "name": "鏈夊嚭澧冩潈鏃呰绀�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4459-鏈夊嚭澧冩潈鏃呰绀�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jyxhlwwhdw",
-                    "name": "缁忚惀鎬т簰鑱旂綉鏂囧寲鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L3782-缁忚惀鎬т簰鑱旂綉鏂囧寲鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "hualang",
-                    "name": "鐢诲粖",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4420-鐢诲粖",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ycjjjg",
-                    "name": "婕斿嚭缁忕邯鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju",
-                    "layer": "L4252-婕斿嚭缁忕邯鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjdqbwg",
-                    "name": "鍖椾含鍦板尯鍗氱墿棣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4381-鍖椾含鍦板尯鍗氱墿棣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "lxs",
-                    "name": "鏃呰绀�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L3832-鏃呰绀�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjssjwwbhdw",
-                    "name": "鍖椾含甯傚競绾ф枃鐗╀繚鎶ゅ崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4391-鍖椾含甯傚競绾ф枃鐗╀繚鎶ゅ崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjsdxwwmcq",
-                    "name": "鍖椾含甯傚湴涓嬫枃鐗╁煁钘忓尯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4385-鍖椾含甯傚湴涓嬫枃鐗╁煁钘忓尯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjsqgzdwwbhdw",
-                    "name": "鍖椾含甯傚叏鍥介噸鐐规枃鐗╀繚鎶ゅ崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4389-鍖椾含甯傚叏鍥介噸鐐规枃鐗╀繚鎶ゅ崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjswwpmqy",
-                    "name": "鍖椾含甯傛枃鐗╂媿鍗栦紒涓�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4393-鍖椾含甯傛枃鐗╂媿鍗栦紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjswwsd",
-                    "name": "鍖椾含甯傛枃鐗╁晢搴�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju",
-                    "layer": "L4394-鍖椾含甯傛枃鐗╁晢搴�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "AA408D09",
-            "name": "缁忔祹鍙戝睍灞�",
-            "children": [
-                {
-                    "id": "bjsnyncxxhltqymd",
-                    "name": "鍐滀笟鍐滄潙淇℃伅鍖栭緳澶翠紒涓氬悕鍗�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju",
-                    "layer": "L4670-鍐滀笟鍐滄潙淇℃伅鍖栭緳澶翠紒涓氬悕鍗�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjssyjyqyml",
-                    "name": "鍖椾含甯傚吔鑽粡钀ヤ紒涓氬悕褰�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju",
-                    "layer": "L4746-鍖椾含甯傚吔鑽粡钀ヤ紒涓氬悕褰�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjsxxcdy",
-                    "name": "浼戦棽鍨傞挀鍥�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju",
-                    "layer": "L4745-浼戦棽鍨傞挀鍥�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "F8213DC2",
-            "name": "寮�鍙戝缓璁惧眬",
-            "children": [
-                {
-                    "id": "闆寒宸ョ▼",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "闆寒宸ョ▼",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "闆寒宸ョ▼",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "sf",
-                    "name": "灞卞嘲",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju",
-                    "layer": "L4765-灞卞嘲",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "hl",
-                    "name": "娌虫祦",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "class": "polygon",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju",
-                    "layer": "L4763-娌虫祦",
-                    "color": "#6fc5f7",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "minimumLevel": 12,
-                    "maximumLevel": 22,
-                    "height": 0,
-                    "outlineWidth": 1,
-                    "extrudedHeight": 10,
-                    "outline": false,
-                    "water": true,
-                    "labelNear": 0,
-                    "labelFar": 999999999,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sdzrbhq",
-                    "name": "婀垮湴鑷劧淇濇姢鍖�",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "class": "polygon",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyuanlinlvhuaju",
-                    "layer": "L4039-婀垮湴鑷劧淇濇姢鍖�",
-                    "color": "#6fc5f7",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "minimumLevel": 12,
-                    "maximumLevel": 22,
-                    "height": 0,
-                    "outlineWidth": 1,
-                    "extrudedHeight": 100,
-                    "outline": false,
-                    "water": true,
-                    "labelNear": 0,
-                    "labelFar": 999999999,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "CSGXYQ",
-                    "name": "鍩庡競鏇存柊鍥尯",
-                    "checked": false,
-                    "sourceType": "wmse",
-                    "urls": "http://10.10.4.121:8070/gisserver/wmsserver/CSGXYQ",
-                    "layer": "",
-                    "srs": "EPSG:4490",
-                    "lon": "116.523",
-                    "lat": "39.782",
-                    "Level": 1,
-                    "zIndex": 7,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "E31DCD9B",
-            "name": "鍩庡競杩愯灞�",
-            "children": [
-                {
-                    "id": "wxfwjyxkzdw",
-                    "name": "鍗遍櫓搴熺墿缁忚惀璁稿彲璇佸崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4186-鍗遍櫓搴熺墿缁忚惀璁稿彲璇佸崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "xssxzzddw",
-                    "name": "閿�鍞皠绾胯缃殑鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4668-閿�鍞皠绾胯缃殑鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sysxzzddw",
-                    "name": "浣跨敤灏勭嚎瑁呯疆鐨勫崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4660-浣跨敤灏勭嚎瑁呯疆鐨勫崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "xsfsydw",
-                    "name": "閿�鍞斁灏勬簮鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4669-閿�鍞斁灏勬簮鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "syfsydw",
-                    "name": "浣跨敤鏀惧皠婧愬崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4661-浣跨敤鏀惧皠婧愬崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sxzzscxsdw",
-                    "name": "灏勭嚎瑁呯疆鐢熶骇銆侀攢鍞崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4021-灏勭嚎瑁呯疆鐢熶骇銆侀攢鍞崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "fsxtwsscdw",
-                    "name": "鏀惧皠鎬у悓浣嶇礌鐢熶骇鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L3613-鏀惧皠鎬у悓浣嶇礌鐢熶骇鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "scfsydw",
-                    "name": "鐢熶骇鏀惧皠婧愬崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4667-鐢熶骇鏀惧皠婧愬崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "fsxtwsxsdw",
-                    "name": "鏀惧皠鎬у悓浣嶇礌閿�鍞崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L3615-鏀惧皠鎬у悓浣嶇礌閿�鍞崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "scsxzzdw",
-                    "name": "鐢熶骇灏勭嚎瑁呯疆鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4666-鐢熶骇灏勭嚎瑁呯疆鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "fsxysyxkqy",
-                    "name": "鏀惧皠鎬ц嵂浣跨敤璁稿彲浼佷笟",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4723-鏀惧皠鎬ц嵂浣跨敤璁稿彲浼佷笟",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjsjdcpfjydw",
-                    "name": "鍖椾含甯傛満鍔ㄨ溅鎺掓斁妫�楠屽崟浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju",
-                    "layer": "L4662-鍖椾含甯傛満鍔ㄨ溅鎺掓斁妫�楠屽崟浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "zcgy",
-                    "name": "娉ㄥ唽鍏洯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyuanlinlvhuaju",
-                    "layer": "L4356-娉ㄥ唽鍏洯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ljl",
-                    "name": "鍨冨溇妤�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3804-鍨冨溇妤�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ljc",
-                    "name": "鍨冨溇鍦�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3803-鍨冨溇鍦�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sjyljcz",
-                    "name": "甯傜骇闆ㄩ噺鐩戞祴绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4072-甯傜骇闆ㄩ噺鐩戞祴绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "hcz",
-                    "name": "鐏溅绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3714-鐏溅绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ljq",
-                    "name": "绔嬩氦妗�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4618-绔嬩氦妗�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jjjcz",
-                    "name": "杩涗含妫�鏌ョ珯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3781-杩涗含妫�鏌ョ珯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tl",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "閾佽矾",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4160-閾佽矾",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffff00",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 4,
-                    "outlineWidth": 2,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gdjtxl",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "杞ㄩ亾浜ら�氱嚎璺�",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3674-杞ㄩ亾浜ら�氱嚎璺�",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gdjtzd",
-                    "name": "杞ㄩ亾浜ら�氱珯鐐�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3675-杞ㄩ亾浜ら�氱珯鐐�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gsgl",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "楂橀�熷叕璺�",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3634-楂橀�熷叕璺�",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sjkyz",
-                    "name": "鐪侀檯瀹㈣繍绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4036-鐪侀檯瀹㈣繍绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gd",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "鍥介亾",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3679-鍥介亾",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sd",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "鐪侀亾",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4035-鐪侀亾",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "zgl",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "涓诲共璺�",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4355-涓诲共璺�",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ksl",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "蹇�熻矾",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L3798-蹇�熻矾",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "nslg",
-                    "name": "娉ョ煶娴佹矡",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei",
-                    "layer": "L4762-娉ョ煶娴佹矡",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ditiexianlu_tms",
-                    "name": "鍦伴搧",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/ditiexianlu_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 10,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "璺伅鏉�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "璺伅鏉�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "璺伅鏉�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺伅鏉�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "璺悕鐗屾潌",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "璺悕鐗屾潌",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "璺悕鐗屾潌",
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺悕鐗屾潌.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "浜ら�氫俊鍙风伅鏉�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "浜ら�氫俊鍙风伅鏉�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "浜ら�氫俊鍙风伅鏉�",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氫俊鍙风伅鏉�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "澶氬姛鑳界患鍚堟潌浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "澶氬姛鑳界患鍚堟潌浣�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "澶氬姛鑳界患鍚堟潌浣�",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/澶氬姛鑳界患鍚堟潌浣�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐩戞帶鏉�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐩戞帶鏉�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "鐩戞帶鏉�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶鏉�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐩戞帶鏍囧織鐗�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐩戞帶鏍囧織鐗�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "鐩戞帶鏍囧織鐗�",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶鏍囧織鐗�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鍏朵粬鏉嗕綋",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鍏朵粬鏉嗕綋",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "鍏朵粬鏉嗕綋",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鍏朵粬鏉嗕綋.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "浜ら�氭爣蹇楃墝",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "浜ら�氭爣蹇楃墝",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "浜ら�氭爣蹇楃墝",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氭爣蹇楃墝.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "浜ら�氭爣蹇楁潌",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "浜ら�氭爣蹇楁潌",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529",
-                    "layer": "浜ら�氭爣蹇楁潌",
-                    "color": "#fff",
-                    "outlineColor": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氭爣蹇楁潌.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.4,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false,
-            "checked": false
-        },
-        {
-            "id": "7D042DAF",
-            "name": "绀句細浜嬩笟灞�",
-            "children": [
-                {
-                    "id": "gjzx",
-                    "name": "楂樼骇涓",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4609-楂樼骇涓",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gdxx",
-                    "name": "宸ヨ瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4603-宸ヨ瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jnygzxx",
-                    "name": "涔濆勾涓�璐埗瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4555-涔濆勾涓�璐埗瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "mbgdjyptgx",
-                    "name": "姘戝姙楂樼瓑鏁欒偛鏅�氶珮鏍�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4607-姘戝姙楂樼瓑鏁欒偛鏅�氶珮鏍�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "mbgdjyqtjg",
-                    "name": "姘戝姙楂樼瓑鏁欒偛鍏朵粬鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4606-姘戝姙楂樼瓑鏁欒偛鍏朵粬鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ptgx",
-                    "name": "鏅�氶珮鏍�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4605-鏅�氶珮鏍�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "senygzxx",
-                    "name": "鍗佷簩骞翠竴璐埗瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4601-鍗佷簩骞翠竴璐埗瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tsjyxx",
-                    "name": "鐗规畩鏁欒偛瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4608-鐗规畩鏁欒偛瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "wqzx",
-                    "name": "瀹屽叏涓",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4602-瀹屽叏涓",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "xx",
-                    "name": "灏忓",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4230-灏忓",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "yey",
-                    "name": "骞煎効鍥�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4472-骞煎効鍥�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "zdzyxx",
-                    "name": "涓瓑鑱屼笟瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4554-涓瓑鑱屼笟瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "cz",
-                    "name": "鍒濈骇涓",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4555-鍒濈骇涓",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "qsdmzxx",
-                    "name": "灏戞暟姘戞棌瀛︽牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju",
-                    "layer": "L4002-灏戞暟姘戞棌瀛︽牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sqcjwhzd",
-                    "name": "绀惧尯灞呭浼�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4014-绀惧尯灞呭浼�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jzzd",
-                    "name": "鎹愯禒绔欑偣",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4646-鎹愯禒绔欑偣",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "hysydjjg",
-                    "name": "濠氬Щ鏀跺吇鐧昏鏈哄叧",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L3713-濠氬Щ鏀跺吇鐧昏鏈哄叧",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sqzyzzz",
-                    "name": "绀惧尯蹇楁効鑰呯粍缁�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4652-绀惧尯蹇楁効鑰呯粍缁�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "gmly",
-                    "name": "鍏闄靛洯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L3650-鍏闄靛洯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "swgdxazcsm",
-                    "name": "瀹ゅ杩囨浮鎬у畨缃満鎵�闈�",
-                    "sourceType": "wfs",
-                    "alpha": 0.46,
-                    "class": "polygon",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4642-瀹ゅ杩囨浮鎬у畨缃満鎵�闈�",
-                    "color": "#92d94b",
-                    "outlineColor": "#FFFFFF",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "height": 0,
-                    "extrudedHeight": 100,
-                    "outline": true,
-                    "water": false,
-                    "labelNear": 0,
-                    "labelFar": 999999999
-                },
-                {
-                    "id": "swgdxazcs",
-                    "name": "瀹ゅ杩囨浮鎬у畨缃満鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4641-瀹ゅ杩囨浮鎬у畨缃満鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sngdxazcs",
-                    "name": "瀹ゅ唴杩囨浮鎬у畨缃満鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4640-瀹ゅ唴杩囨浮鎬у畨缃満鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ylfwjg",
-                    "name": "鍏昏�佹湇鍔℃満鏋�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4254-鍏昏�佹湇鍔℃満鏋�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "4B4FEFDD",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "閬块櫓璺嚎",
-                    "class": "polyline",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4655-閬块櫓璺嚎",
-                    "color": "#fb0d0d",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "minimumLevel": 9,
-                    "maximumLevel": 22,
-                    "width": 2,
-                    "outlineWidth": 0,
-                    "height": 0,
-                    "dash": false,
-                    "dashLength": 20,
-                    "gapColor": "rgba(0,0,0,0)",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "byfwjg",
-                    "name": "娈′华鏈嶅姟鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju",
-                    "layer": "L4398-娈′华鏈嶅姟鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jjjg",
-                    "name": "鎬ユ晳鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4712-鎬ユ晳鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "wsjdzx",
-                    "name": "鍗敓鐩戠潱涓績",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4708-鍗敓鐩戠潱涓績",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jtcxd",
-                    "name": "琛楀ご閲嗚鐐�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4713-琛楀ご閲嗚鐐�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "qtylwsjg",
-                    "name": "鍏朵粬鍖荤枟鍗敓鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4704-鍏朵粬鍖荤枟鍗敓鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sjyy",
-                    "name": "涓夌骇鍖婚櫌",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L3995-涓夌骇鍖婚櫌",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ejyy",
-                    "name": "浜岀骇鍖婚櫌",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L3595-浜岀骇鍖婚櫌",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sqwsfwzx",
-                    "name": "绀惧尯鍗敓鏈嶅姟涓績",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4018-绀惧尯鍗敓鏈嶅姟涓績",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tjyljg",
-                    "name": "浣撴鍖荤枟鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei",
-                    "layer": "L4147-浣撴鍖荤枟鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sqtyjsjlb",
-                    "name": "绀惧尯浣撹偛鍋ヨ韩淇变箰閮�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju",
-                    "layer": "L4015-绀惧尯浣撹偛鍋ヨ韩淇变箰閮�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "qsntyjlb",
-                    "name": "闈掑皯骞翠綋鑲蹭勘涔愰儴",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju",
-                    "layer": "L3956-闈掑皯骞翠綋鑲蹭勘涔愰儴",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tyydxmjydw",
-                    "name": "浣撹偛杩愬姩椤圭洰缁忚惀鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju",
-                    "layer": "L4154-浣撹偛杩愬姩椤圭洰缁忚惀鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tycpzmd",
-                    "name": "浣撹偛褰╃エ涓撳崠搴�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju",
-                    "layer": "L4149-浣撹偛褰╃エ涓撳崠搴�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tyssdwkfxx",
-                    "name": "浣撹偛璁炬柦瀵瑰寮�鏀惧鏍�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju",
-                    "layer": "L4152-浣撹偛璁炬柦瀵瑰寮�鏀惧鏍�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ykzsqfwq",
-                    "name": "涓�鍒婚挓绀惧尯鏈嶅姟鍦�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju",
-                    "layer": "L4264-涓�鍒婚挓绀惧尯鏈嶅姟鍦�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "mramzdzx",
-                    "name": "鐩蹭汉鎸夋懇鎸囧涓績",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju",
-                    "layer": "L3840-鐩蹭汉鎸夋懇鎸囧涓績",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjscjrshzz",
-                    "name": "鍖椾含甯傛畫鐤句汉绀句細缁勭粐",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "class": "polygon",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju",
-                    "layer": "L4740-鍖椾含甯傛畫鐤句汉绀句細缁勭粐",
-                    "color": "#6fc5f7",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "minimumLevel": 12,
-                    "maximumLevel": 22,
-                    "height": 0,
-                    "outlineWidth": 1,
-                    "extrudedHeight": 100,
-                    "outline": false,
-                    "water": true,
-                    "labelNear": 0,
-                    "labelFar": 999999999,
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "checked": false,
-            "expanded": false
-        },
-        {
-            "id": "B5F8764D",
-            "name": "鍟嗗姟閲戣瀺灞�",
-            "children": [
-                {
-                    "id": "qylqy",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "浼佷笟鍒嗗竷",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/qiyelianqiye",
-                    "layer": "浼佷笟閾句紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/qiye.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "szddtzqy",
-                    "name": "鐢熺尓瀹氱偣灞犲浼佷笟",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju",
-                    "layer": "L4678-鐢熺尓瀹氱偣灞犲浼佷笟",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bldmdps",
-                    "name": "渚垮埄搴楁湯绔厤閫�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju",
-                    "layer": "L4673-渚垮埄搴楁湯绔厤閫�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "zrxs121jcs",
-                    "name": "鐚倝閿�鍞�121瀹惰秴甯�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju",
-                    "layer": "L4679-鐚倝閿�鍞�121瀹惰秴甯�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "fsxypscjyqy",
-                    "name": "鏀惧皠鎬ц嵂鍝佺敓浜э紙缁忚惀锛変紒涓�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4724-鏀惧皠鎬ц嵂鍝佺敓浜э紙缁忚惀锛変紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sf",
-                    "name": "鍖荤枟鏈烘瀯鍒跺墏璁稿彲鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4721-鍖荤枟鏈烘瀯鍒跺墏璁稿彲鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "hzpscqy",
-                    "name": "鍖栧鍝佺敓浜т紒涓�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L3703-鍖栧鍝佺敓浜т紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "tgzcypsfwjyqy",
-                    "name": "鎻愪緵璐瓨涓庨厤閫佹湇鍔$粡钀ヤ紒涓�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4722-鎻愪緵璐瓨涓庨厤閫佹湇鍔$粡钀ヤ紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "spscqy",
-                    "name": "椋熷搧鐢熶骇浼佷笟",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4727-椋熷搧鐢熶骇浼佷笟",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ypscqy",
-                    "name": "鑽搧鐢熶骇浼佷笟",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4259-鑽搧鐢熶骇浼佷笟",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "deslylqxscqy",
-                    "name": "绗簩銆佷笁绫诲尰鐤楀櫒姊扮敓浜т紒涓�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L3572-绗簩銆佷笁绫诲尰鐤楀櫒姊扮敓浜т紒涓�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "bjspscdw",
-                    "name": "淇濆仴椋熷搧鐢熶骇鍗曚綅",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4379-淇濆仴椋熷搧鐢熶骇鍗曚綅",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "yplsqy",
-                    "name": "鑽搧闆跺敭浼佷笟",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju",
-                    "layer": "L4257-鑽搧闆跺敭浼佷笟",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false,
-            "checked": false
-        },
-        {
-            "id": "BAB84B0D",
-            "name": "琛屾斂瀹℃壒灞�",
-            "children": [
-                {
-                    "id": "zhianjiankong",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "娌诲畨鐩戞帶",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "娌诲畨鐩戞帶",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "zhianjiankongwuxian",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "娌诲畨鐩戞帶锛堟棤绾匡級",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "娌诲畨鐩戞帶锛堟棤绾匡級",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "daxinggongan133lu",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "澶у叴鍏畨133璺�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "澶у叴鍏畨133璺�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "gaodianjiankong",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "楂樼偣鐩戞帶",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "楂樼偣鐩戞帶",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "cigaodianjiankong",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "娆¢珮鐐圭洃鎺�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "娆¢珮鐐圭洃鎺�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "鍩庡競澶ц剳",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "鍩庡競澶ц剳",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "鍩庡競澶ц剳",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "骞冲畨灏忓尯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "骞冲畨灏忓尯",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "骞冲畨灏忓尯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "杩濈珷鍋滆溅瑙嗛",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "杩濈珷鍋滆溅瑙嗛",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "杩濈珷鍋滆溅瑙嗛",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "闃叉睕鐐逛綅鐩戞帶",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "闃叉睕鐐逛綅鐩戞帶",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "闃叉睕鐐逛綅鐩戞帶",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "淇濋殰",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "淇濋殰",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "淇濋殰",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "闆ㄦ按浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "闆ㄦ按浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_闆ㄦ按浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/闆ㄦ按浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐢靛姏浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐢靛姏浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_鐢靛姏浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐢靛姏浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐩戞帶浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐩戞帶浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_鐩戞帶浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "浜ら�氫簳",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "浜ら�氫簳",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_浜ら�氫簳",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氫簳鐩�.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "璺伅浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "璺伅浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_璺伅浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺伅浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐕冩皵浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐕冩皵浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_鐕冩皵浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐕冩皵浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "鐑姏浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "鐑姏浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_鐑姏浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐑姏浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "閫氫俊浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "閫氫俊浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_閫氫俊浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/閫氫俊浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "姹℃按浜�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "name": "姹℃按浜�",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529",
-                    "layer": "绐ㄤ簳_姹℃按浜�",
-                    "color": "#fff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/姹℃按浜曠洊.png",
-                    "minimumLevel": 16,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1.5,
-                    "outlineWidth": 0,
-                    "offsetX": 40,
-                    "offsetY": -15,
-                    "imageScale": 0.5,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false,
-            "checked": false
-        },
-        {
-            "id": "77F381A7",
-            "name": "绀句細淇濋櫓淇濋殰涓績",
-            "children": [
-                {
-                    "id": "ylbxddyljg",
-                    "name": "鍖荤枟淇濋櫓瀹氱偣鍖荤枟鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shirenlishebaoju",
-                    "layer": "L4750-鍖荤枟淇濋櫓瀹氱偣鍖荤枟鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "527A0989",
-            "name": "鑽e崕琛楅亾",
-            "children": [
-                {
-                    "id": "鑽e崕琛楅亾杞﹁浇瑙嗛",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "鑽e崕琛楅亾杞﹁浇瑙嗛",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "鑽e崕琛楅亾杞﹁浇瑙嗛",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "21F7FA4A",
-            "name": "瑙勮嚜鍒嗗眬",
-            "children": [
-                {
-                    "id": "18B25A94",
-                    "sourceType": "wmse",
-                    "name": "60骞虫柟鍏噷鏍稿績鍖虹晫",
-                    "urls": "http://10.10.4.121:8070/gisserver/wmsserver/YZ_BJ60",
-                    "maximumLevel": 26,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "Level": "11,20",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.51352",
-                        "39.76102",
-                        "30523.31",
-                        "360.0",
-                        "-89.8"
-                    ]
-                },
-                {
-                    "id": "47EC9636",
-                    "sourceType": "wmse",
-                    "name": "225骞虫柟鍏噷鍖虹晫",
-                    "urls": "http://10.10.4.121:8070/gisserver/wmsserver/YZ_BJ",
-                    "maximumLevel": 26,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "Level": "10,20",
-                    "flyTo": [
-                        "116.50281",
-                        "39.75291",
-                        "35307.96",
-                        "0.0",
-                        "-89.8"
-                    ],
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "xingzhengquhuamian_tms",
-                    "name": "涓よ鍏晣鐣�",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/xingzhengquhuamian_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 0.75,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "xingzhengquhuabianjie_tm",
-                    "name": "涓よ鍏晣鐣岀嚎",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/xingzhengquhuabianjie_tm",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "5EFDB2AF",
-                    "sourceType": "wfs",
-                    "alpha": 1,
-                    "name": "鏀垮簻鎵�鍦ㄥ湴 ",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/zhengfusuozaidi_wfs",
-                    "layer": "鏀垮簻椹诲湴",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "./static/SmartEarthSDK/Workers/image/csyxj/鏀垮簻鏈哄叧.png",
-                    "minimumLevel": 0,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 0.3,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "chengshiguihua_xiangmumingcheng_tms",
-                    "name": "浜﹀簞鏂板煄瑙勫垝鍥�",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/chengshiguihua_xiangmumingcheng_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "GuiHuaFanWeiShiYiTu",
-                    "name": "瑙勫垝鑼冨洿涓撻鍥�",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/GuiHuaFanWeiShiYiTu_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "XingZhengQuHuaTu",
-                    "name": "琛屾斂鍖哄垝涓撻鍥�",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/XingZhengQuHuaTu_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "GuiHuaDanYuanHuaFenTu",
-                    "name": "瑙勫垝鍗曞厓鍒掑垎涓撻鍥�",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/GuiHuaDanYuanHuaFenTu_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "ZhuYaoGongNengQuGuiHuaShiYiTu",
-                    "name": "涓昏鍔熻兘鍖鸿鍒掍笓棰樺浘",
-                    "sourceType": "local-map",
-                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/ZhuYaoGongNengQuGuiHuaShiYiTu_tms",
-                    "tile": "{z}/{x}/{y}",
-                    "tileType": "Mercator",
-                    "img": "jpeg",
-                    "tms": true,
-                    "Level": 1,
-                    "alpha": 1,
-                    "zIndex": 7,
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        },
-        {
-            "id": "471847FA",
-            "name": "骞冲畨鍔�",
-            "children": [
-                {
-                    "id": "bgld",
-                    "name": "瀹鹃鏃呭簵",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4397-瀹鹃鏃呭簵",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "crjzjjg",
-                    "name": "鍑哄叆澧冧腑浠嬫満鏋�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3539-鍑哄叆澧冧腑浠嬫満鏋�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jtzfjg",
-                    "name": "浜ら�氭墽娉曟満鏋�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3764-浜ら�氭墽娉曟満鏋�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "lctcc",
-                    "name": "璺晶鍋滆溅浣�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3831-璺晶鍋滆溅浣�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jx",
-                    "name": "椹炬牎",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3750-椹炬牎",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "sqmjjjwgzs",
-                    "name": "绀惧尯姘戣鍙婅鍔″伐浣滃",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4628-绀惧尯姘戣鍙婅鍔″伐浣滃",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jtzdd",
-                    "name": "浜ら�氭敮澶ч槦",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3763-浜ら�氭敮澶ч槦",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "fjdcdjz",
-                    "name": "闈炴満鍔ㄨ溅鐧昏绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4634-闈炴満鍔ㄨ溅鐧昏绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jdcjcc",
-                    "name": "鏈哄姩杞︽娴嬪満",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3721-鏈哄姩杞︽娴嬪満",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "pcs",
-                    "name": "娲惧嚭鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4627-娲惧嚭鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "cgz",
-                    "name": "杞︾绔�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4404-杞︾绔�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "cgs",
-                    "name": "杞︾鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L4403-杞︾鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "jtsgcljg",
-                    "name": "浜ら�氫簨鏁呭鐞嗘満鏋�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju",
-                    "layer": "L3761-浜ら�氫簨鏁呭鐞嗘満鏋�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "lssws",
-                    "name": "寰嬪笀浜嬪姟鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shisifaju",
-                    "layer": "L3836-娈′华鏈嶅緥甯堜簨鍔℃墍鍔℃満鏋�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "o_ql_sfj_sfjdjg_kongjian",
-                    "name": "鍙告硶閴村畾鏈烘瀯",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shisifaju",
-                    "layer": "L4125-鍙告硶閴村畾鏈烘瀯",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "o_ql_sfj_qs17jflyzzxjbxx_kongjian",
-                    "name": "娉曞緥鎻村姪涓績",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shisifaju",
-                    "layer": "L3600-娉曞緥鎻村姪涓績",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                },
-                {
-                    "id": "o_ql_sfj_jcsfszzxx_kongjian",
-                    "name": "鍙告硶鎵�",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shisifaju",
-                    "layer": "L4126-鍙告硶鎵�",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": true,
-                    "classificationType": 2,
-                    "image": "../static/SmartEarthSDK/Workers/image/point-16px.png",
-                    "minimumLevel": 13,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 2,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": 0,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false
-                }
-            ],
-            "rename": false,
-            "expanded": false,
-            "checked": false
-        },
-        {
-            "id": "2E2BE254",
-            "name": "甯傝嚜鍔ㄩ┚椹跺姙鍏",
-            "children": [
-                {
-                    "id": "鑷姩椹鹃┒",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "鑷姩椹鹃┒",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "鑷姩椹鹃┒",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                },
-                {
-                    "id": "鑷姩椹鹃┒楸肩溂",
-                    "sourceType": "cluster",
-                    "alpha": 1,
-                    "height": 30,
-                    "name": "鑷姩椹鹃┒楸肩溂",
-                    "class": "point",
-                    "urls": "http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614",
-                    "layer": "鑷姩椹鹃┒楸肩溂",
-                    "color": "#ffffff",
-                    "outlineColor": "#ffffff",
-                    "clampToGround": false,
-                    "classificationType": 2,
-                    "text": "",
-                    "image": "./static/SmartEarthSDK/Workers/image/xzspj/spjk.png",
-                    "minimumLevel": 1,
-                    "maximumLevel": 22,
-                    "font": "Arial",
-                    "scale": 1,
-                    "outlineWidth": 1,
-                    "offsetX": 0,
-                    "offsetY": -10,
-                    "imageScale": 1,
-                    "disableDepthTestDistance": "Infinity",
-                    "checked": false,
-                    "rename": false,
-                    "flyTo": [
-                        "116.49140",
-                        "39.78077",
-                        "1985.39",
-                        "360.0",
-                        "-49.3"
-                    ]
-                }
-            ],
-            "rename": false,
-            "expanded": false,
-            "checked": false
-        },
-        {
-            "id": "33213273",
-            "name": "鍦板浘鏁版嵁",
-            "disabled": false,
-            "children": [
-                {
-                    "id": "AC1CE1F9",
-                    "name": "鍩虹鍦板浘",
-                    "children": [
-                        {
-                            "id": "shiliangtuceng",
-                            "name": "浜岀淮鍦板浘",
-                            "children": [
-                                {
-                                    "id": "baise2D",
-                                    "name": "鐧借壊浜岀淮",
-                                    "sourceType": "local-map",
-                                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/shiliangditu_baisexi",
-                                    "tile": "{z}/{x}/{y}",
-                                    "tileType": "Mercator",
-                                    "img": "jpeg",
-                                    "tms": true,
-                                    "Level": 1,
-                                    "checked": false,
-                                    "alpha": 1,
-                                    "zIndex": 7,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "shenlan2D",
-                                    "name": "娣辫摑浜岀淮",
-                                    "sourceType": "local-map",
-                                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/shiliangditu_kejilan",
-                                    "tile": "{z}/{x}/{y}",
-                                    "tileType": "Mercator",
-                                    "img": "jpeg",
-                                    "tms": true,
-                                    "Level": 1,
-                                    "checked": false,
-                                    "alpha": 1,
-                                    "zIndex": 7,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "heijin2D",
-                                    "name": "榛戦噾浜岀淮",
-                                    "sourceType": "local-map",
-                                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/shiliangtu_anyehei",
-                                    "tile": "{z}/{x}/{y}",
-                                    "tileType": "Mercator",
-                                    "img": "jpeg",
-                                    "tms": true,
-                                    "Level": 1,
-                                    "checked": false,
-                                    "alpha": 1,
-                                    "zIndex": 7,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "鍖椾含2000褰卞儚",
-                                    "name": "鍖椾含2000褰卞儚",
-                                    "sourceType": "BJ2000",
-                                    "urls": "http://172.26.64.84/service/map/img?year=&type=Sate&z={z}&x={x}&y={y}&ak=945feed57ba34d23a999be2ae4d9259a",
-                                    "checked": false,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "鍖椾含2000鐭㈤噺",
-                                    "name": "鍖椾含2000鐭㈤噺",
-                                    "sourceType": "BJ2000",
-                                    "urls": "http://172.26.64.84/service/map/img?year=&type=Shiliang&z={z}&x={x}&y={y}&ak=945feed57ba34d23a999be2ae4d9259a",
-                                    "checked": false,
-                                    "rename": false
-                                }
-                            ],
-                            "rename": false,
-                            "expanded": false,
-                            "checked": false
-                        },
-                        {
-                            "id": "yingxiangtuceng",
-                            "name": "褰卞儚鍦板浘",
-                            "children": [
-                                {
-                                    "id": "jiaotongluwang_tms",
-                                    "name": "閬撹矾",
-                                    "sourceType": "local-map",
-                                    "urls": "http://10.10.4.121:8070/gisserver/tmsserver/jiaotongluwang_tms",
-                                    "tile": "{z}/{x}/{y}",
-                                    "tileType": "Mercator",
-                                    "img": "jpeg",
-                                    "tms": true,
-                                    "Level": 1,
-                                    "alpha": 1,
-                                    "zIndex": 10,
-                                    "checked": false,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "C0698021",
-                                    "sourceType": "wmts",
-                                    "name": "鑸媿褰卞儚",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=&type=Sate_CGCS2000&level={TileMatrix}&x={TileRow}&y={TileCol}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "A6D6DE13",
-                                    "sourceType": "gdmap",
-                                    "name": "楂樺痉褰卞儚",
-                                    "urls": "https://webst02.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}",
-                                    "layer": "",
-                                    "alpha": 1,
-                                    "zIndex": 2,
-                                    "maximumLevel": 18,
-                                    "Level": [
-                                        0,
-                                        26
-                                    ],
-                                    "checked": false,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "26B6815E",
-                                    "sourceType": "gdmap",
-                                    "name": "楂樺痉娉ㄨ",
-                                    "zIndex": 3,
-                                    "urls": "https://webst02.is.autonavi.com/appmaptile?style=8&x={x}&y={y}&z={z}",
-                                    "layer": "",
-                                    "alpha": 1,
-                                    "maximumLevel": 18,
-                                    "Level": [
-                                        0,
-                                        26
-                                    ],
-                                    "checked": false,
-                                    "rename": false
-                                }
-                            ],
-                            "rename": false,
-                            "expanded": false,
-                            "checked": false
-                        },
-                        {
-                            "id": "historyImage",
-                            "name": "鍘嗗彶褰卞儚",
-                            "children": [
-                                {
-                                    "id": "2002",
-                                    "sourceType": "BJ54",
-                                    "name": "2002骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2002&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2003",
-                                    "sourceType": "BJ54",
-                                    "name": "2003骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2003&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2004",
-                                    "sourceType": "BJ54",
-                                    "name": "2004骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2004&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2005",
-                                    "sourceType": "BJ54",
-                                    "name": "2005骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2005&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2006",
-                                    "sourceType": "BJ54",
-                                    "name": "2006骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2006&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2007",
-                                    "sourceType": "BJ54",
-                                    "name": "2007骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2007&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2008",
-                                    "sourceType": "BJ54",
-                                    "name": "2008骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2008&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2009",
-                                    "sourceType": "BJ54",
-                                    "name": "2009骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2009&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2010",
-                                    "sourceType": "BJ54",
-                                    "name": "2010骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2010&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2011",
-                                    "sourceType": "BJ54",
-                                    "name": "2011骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2011&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2012",
-                                    "sourceType": "BJ54",
-                                    "name": "2012骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2012&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2013",
-                                    "sourceType": "BJ54",
-                                    "name": "2013骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2013&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2014",
-                                    "sourceType": "BJ54",
-                                    "name": "2014骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2014&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2015",
-                                    "sourceType": "BJ54",
-                                    "name": "2015骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2015&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2016",
-                                    "sourceType": "BJ54",
-                                    "name": "2016骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2016&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2017",
-                                    "sourceType": "BJ54",
-                                    "name": "2017骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2017&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2018",
-                                    "sourceType": "BJ54",
-                                    "name": "2018骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2018&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2019",
-                                    "sourceType": "BJ54",
-                                    "name": "2019骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2019&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                },
-                                {
-                                    "id": "2020",
-                                    "sourceType": "BJ54",
-                                    "name": "2020骞村奖鍍�",
-                                    "urls": "http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2020&type=Sate&level={z}&x={x}&y={y}",
-                                    "checked": false,
-                                    "zIndex": 2,
-                                    "rename": false
-                                }
-                            ],
-                            "rename": false,
-                            "expanded": false,
-                            "checked": false
-                        },
-                        {
-                            "id": "8A969952",
-                            "sourceType": "b3dm",
-                            "name": "寤虹瓚浣撳潡",
-                            "urls": "http://10.10.4.121:8070/gisserver/c3dserver/YZ_BM/tileset.json",
-                            "checked": false,
-                            "rename": false
-                        },
-                        {
-                            "id": "shijingsanwei",
-                            "name": "涓夌淮妯″瀷",
-                            "children": [
-                                {
-                                    "id": "hexinqu0609",
-                                    "name": "鏍稿績鍖哄缓绛戠墿",
-                                    "sourceType": "b3dm",
-                                    "checked": true,
-                                    "urls": "http://10.10.4.121:8070/gisserver/c3dserver/hxq0609/tileset.json",
-                                    "rename": false,
-                                    "zIndex": 1
-                                },
-                                {
-                                    "id": "2253dhexin01",
-                                    "name": "225瀹炴櫙涓夌淮鏍稿績鍖哄湴闈�",
-                                    "sourceType": "b3dm",
-                                    "checked": true,
-                                    "urls": "http://10.10.4.121:8070/gisserver/c3dserver/hexinqudimian/tileset.json",
-                                    "rename": false,
-                                    "zIndex": 1
-                                },
-                                {
-                                    "id": "2253dfeihexin",
-                                    "name": "225瀹炴櫙涓夌淮闈炴牳蹇冨尯",
-                                    "checked": true,
-                                    "sourceType": "b3dm",
-                                    "urls": "http://10.10.4.121:8070/gisserver/c3dserver/fhx/tileset.json",
-                                    "rename": false,
-                                    "zIndex": 1
-                                }
-                            ],
-                            "rename": false,
-                            "expanded": false,
-                            "checked": true
-                        }
-                    ],
-                    "rename": false,
-                    "expanded": false
-                },
-                {
-                    "id": "B10B7BDD",
-                    "name": "鍒嗗眰鍒嗘埛",
-                    "children": [
-                        {
-                            "id": "姘告櫀1鍙锋ゼF1",
-                            "name": "姘告櫀1鍙锋ゼF1",
-                            "sourceType": "b3dm",
-                            "checked": false,
-                            "urls": "http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F1/tileset.json",
-                            "rename": false,
-                            "zIndex": 1
-                        },
-                        {
-                            "id": "姘告櫀1鍙锋ゼF2",
-                            "name": "姘告櫀1鍙锋ゼF2",
-                            "sourceType": "b3dm",
-                            "checked": false,
-                            "urls": "http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F2/tileset.json",
-                            "rename": false,
-                            "zIndex": 1
-                        },
-                        {
-                            "id": "姘告櫀1鍙锋ゼF3",
-                            "name": "姘告櫀1鍙锋ゼF3",
-                            "sourceType": "b3dm",
-                            "checked": false,
-                            "urls": "http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F3/tileset.json",
-                            "rename": false,
-                            "zIndex": 1
-                        },
-                        {
-                            "id": "姘告櫀1鍙锋ゼF4",
-                            "name": "姘告櫀1鍙锋ゼF4",
-                            "sourceType": "b3dm",
-                            "checked": false,
-                            "urls": "http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F4/tileset.json",
-                            "rename": false,
-                            "zIndex": 1
-                        }
-                    ],
-                    "rename": false,
-                    "expanded": false
-                }
-            ],
-            "rename": false,
-            "expanded": false
-        }
-    ],
-    "flyTo": [],
-    "mapStatus": {
-        "rotateFlyTime": 30,
-        "sunLight": false,
-        "lightIntensity": 2,
-        "lightColor": "#ffffff",
-        "brightness": 1,
-        "contrast": 1,
-        "saturation": 1
-    }
-}
\ No newline at end of file
+{"name":"ALL","id":1,"open":true,"children":[{"id":"482040AD","name":"瀹d紶鏂囧寲閮�","children":[{"id":"xjfd","name":"鏄熺骇楗簵","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4452-鏄熺骇楗簵","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jyxyccs","name":"缁忚惀鎬ф紨鍑哄満鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4701-缁忚惀鎬ф紨鍑哄満鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"gyxtsg","name":"鍏泭鎬у浘涔﹂","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L417-鍏泭鎬у浘涔﹂","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sdgy","name":"婀垮湴鍏洯","sourceType":"cluster","alpha":0.46,"class":"polygon","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4038-婀垮湴鍏洯","color":"#92d94b","outlineColor":"#FFFFFF","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":9,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"height":0,"extrudedHeight":100,"outline":true,"water":false,"labelNear":0,"labelFar":999999999},{"id":"gyxwhg","name":"鍏泭鎬ф枃鍖栭","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4418-鍏泭鎬ф枃鍖栭","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"lyzxfwz","name":"鏃呮父鍜ㄨ鏈嶅姟绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4429-鏃呮父鍜ㄨ鏈嶅姟绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ysg","name":"鑹烘湳棣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4456-鑹烘湳棣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"whg","name":"鏂囧寲棣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4448-鏂囧寲棣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"msg","name":"缇庢湳棣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4430-缇庢湳棣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"Ajjq","name":"A绾ф櫙鍖�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4680-A绾ф櫙鍖�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"yrylxs","name":"涓�鏃ユ父鏃呰绀�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4681-涓�鏃ユ父鏃呰绀�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"wzlxs","name":"澶栬祫鏃呰绀�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4446-澶栬祫鏃呰绀�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ycjqlxs","name":"鏈夊嚭澧冩潈鏃呰绀�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4459-鏈夊嚭澧冩潈鏃呰绀�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jyxhlwwhdw","name":"缁忚惀鎬т簰鑱旂綉鏂囧寲鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L3782-缁忚惀鎬т簰鑱旂綉鏂囧寲鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"hualang","name":"鐢诲粖","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4420-鐢诲粖","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ycjjjg","name":"婕斿嚭缁忕邯鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenhuahelvyouju","layer":"L4252-婕斿嚭缁忕邯鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjdqbwg","name":"鍖椾含鍦板尯鍗氱墿棣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4381-鍖椾含鍦板尯鍗氱墿棣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"lxs","name":"鏃呰绀�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L3832-鏃呰绀�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjssjwwbhdw","name":"鍖椾含甯傚競绾ф枃鐗╀繚鎶ゅ崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4391-鍖椾含甯傚競绾ф枃鐗╀繚鎶ゅ崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjsdxwwmcq","name":"鍖椾含甯傚湴涓嬫枃鐗╁煁钘忓尯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4385-鍖椾含甯傚湴涓嬫枃鐗╁煁钘忓尯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjsqgzdwwbhdw","name":"鍖椾含甯傚叏鍥介噸鐐规枃鐗╀繚鎶ゅ崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4389-鍖椾含甯傚叏鍥介噸鐐规枃鐗╀繚鎶ゅ崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjswwpmqy","name":"鍖椾含甯傛枃鐗╂媿鍗栦紒涓�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4393-鍖椾含甯傛枃鐗╂媿鍗栦紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjswwsd","name":"鍖椾含甯傛枃鐗╁晢搴�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiwenwuju","layer":"L4394-鍖椾含甯傛枃鐗╁晢搴�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false},{"id":"AA408D09","name":"缁忔祹鍙戝睍灞�","children":[{"id":"bjsnyncxxhltqymd","name":"鍐滀笟鍐滄潙淇℃伅鍖栭緳澶翠紒涓氬悕鍗�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju","layer":"L4670-鍐滀笟鍐滄潙淇℃伅鍖栭緳澶翠紒涓氬悕鍗�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjssyjyqyml","name":"鍖椾含甯傚吔鑽粡钀ヤ紒涓氬悕褰�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju","layer":"L4746-鍖椾含甯傚吔鑽粡钀ヤ紒涓氬悕褰�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjsxxcdy","name":"浼戦棽鍨傞挀鍥�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shinongyenongcunju","layer":"L4745-浼戦棽鍨傞挀鍥�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false},{"id":"F8213DC2","name":"寮�鍙戝缓璁惧眬","children":[{"id":"闆寒宸ョ▼","sourceType":"cluster","alpha":1,"height":30,"name":"闆寒宸ョ▼","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"闆寒宸ョ▼","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"sf","name":"灞卞嘲","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju","layer":"L4765-灞卞嘲","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"hl","name":"娌虫祦","sourceType":"wfs","alpha":1,"class":"polygon","urls":"http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju","layer":"L4763-娌虫祦","color":"#6fc5f7","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"minimumLevel":12,"maximumLevel":22,"height":0,"outlineWidth":1,"extrudedHeight":10,"outline":false,"water":true,"labelNear":0,"labelFar":999999999,"checked":false,"rename":false},{"id":"sdzrbhq","name":"婀垮湴鑷劧淇濇姢鍖�","sourceType":"wfs","alpha":1,"class":"polygon","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyuanlinlvhuaju","layer":"L4039-婀垮湴鑷劧淇濇姢鍖�","color":"#6fc5f7","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"minimumLevel":12,"maximumLevel":22,"height":0,"outlineWidth":1,"extrudedHeight":100,"outline":false,"water":true,"labelNear":0,"labelFar":999999999,"checked":false,"rename":false},{"id":"CSGXYQ","name":"鍩庡競鏇存柊鍥尯","checked":false,"sourceType":"wmse","urls":"http://10.10.4.121:8070/gisserver/wmsserver/CSGXYQ","layer":"","srs":"EPSG:4490","lon":"116.523","lat":"39.782","Level":1,"zIndex":7,"rename":false}],"rename":false,"expanded":false},{"id":"E31DCD9B","name":"鍩庡競杩愯灞�","children":[{"id":"wxfwjyxkzdw","name":"鍗遍櫓搴熺墿缁忚惀璁稿彲璇佸崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4186-鍗遍櫓搴熺墿缁忚惀璁稿彲璇佸崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"xssxzzddw","name":"閿�鍞皠绾胯缃殑鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4668-閿�鍞皠绾胯缃殑鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sysxzzddw","name":"浣跨敤灏勭嚎瑁呯疆鐨勫崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4660-浣跨敤灏勭嚎瑁呯疆鐨勫崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"xsfsydw","name":"閿�鍞斁灏勬簮鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4669-閿�鍞斁灏勬簮鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"syfsydw","name":"浣跨敤鏀惧皠婧愬崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4661-浣跨敤鏀惧皠婧愬崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sxzzscxsdw","name":"灏勭嚎瑁呯疆鐢熶骇銆侀攢鍞崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4021-灏勭嚎瑁呯疆鐢熶骇銆侀攢鍞崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"fsxtwsscdw","name":"鏀惧皠鎬у悓浣嶇礌鐢熶骇鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L3613-鏀惧皠鎬у悓浣嶇礌鐢熶骇鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"scfsydw","name":"鐢熶骇鏀惧皠婧愬崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4667-鐢熶骇鏀惧皠婧愬崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"fsxtwsxsdw","name":"鏀惧皠鎬у悓浣嶇礌閿�鍞崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L3615-鏀惧皠鎬у悓浣嶇礌閿�鍞崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"scsxzzdw","name":"鐢熶骇灏勭嚎瑁呯疆鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4666-鐢熶骇灏勭嚎瑁呯疆鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"fsxysyxkqy","name":"鏀惧皠鎬ц嵂浣跨敤璁稿彲浼佷笟","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4723-鏀惧皠鎬ц嵂浣跨敤璁稿彲浼佷笟","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjsjdcpfjydw","name":"鍖椾含甯傛満鍔ㄨ溅鎺掓斁妫�楠屽崟浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishengtaihuanjingju","layer":"L4662-鍖椾含甯傛満鍔ㄨ溅鎺掓斁妫�楠屽崟浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"zcgy","name":"娉ㄥ唽鍏洯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyuanlinlvhuaju","layer":"L4356-娉ㄥ唽鍏洯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ljl","name":"鍨冨溇妤�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3804-鍨冨溇妤�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ljc","name":"鍨冨溇鍦�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3803-鍨冨溇鍦�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sjyljcz","name":"甯傜骇闆ㄩ噺鐩戞祴绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4072-甯傜骇闆ㄩ噺鐩戞祴绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"hcz","name":"鐏溅绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3714-鐏溅绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ljq","name":"绔嬩氦妗�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4618-绔嬩氦妗�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jjjcz","name":"杩涗含妫�鏌ョ珯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3781-杩涗含妫�鏌ョ珯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tl","sourceType":"wfs","alpha":1,"name":"閾佽矾","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4160-閾佽矾","color":"#ffffff","outlineColor":"#ffff00","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":4,"outlineWidth":2,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"gdjtxl","sourceType":"wfs","alpha":1,"name":"杞ㄩ亾浜ら�氱嚎璺�","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3674-杞ㄩ亾浜ら�氱嚎璺�","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"gdjtzd","name":"杞ㄩ亾浜ら�氱珯鐐�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3675-杞ㄩ亾浜ら�氱珯鐐�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"gsgl","sourceType":"wfs","alpha":1,"name":"楂橀�熷叕璺�","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3634-楂橀�熷叕璺�","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"sjkyz","name":"鐪侀檯瀹㈣繍绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4036-鐪侀檯瀹㈣繍绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"gd","sourceType":"wfs","alpha":1,"name":"鍥介亾","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3679-鍥介亾","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"sd","sourceType":"wfs","alpha":1,"name":"鐪侀亾","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4035-鐪侀亾","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"zgl","sourceType":"wfs","alpha":1,"name":"涓诲共璺�","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4355-涓诲共璺�","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"ksl","sourceType":"wfs","alpha":1,"name":"蹇�熻矾","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L3798-蹇�熻矾","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"nslg","name":"娉ョ煶娴佹矡","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiguihuaheziranziyuanwei","layer":"L4762-娉ョ煶娴佹矡","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ditiexianlu_tms","name":"鍦伴搧","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/ditiexianlu_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":10,"checked":false,"rename":false},{"id":"璺伅鏉�","sourceType":"cluster","alpha":1,"name":"璺伅鏉�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"璺伅鏉�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺伅鏉�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"璺悕鐗屾潌","sourceType":"cluster","alpha":1,"name":"璺悕鐗屾潌","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"璺悕鐗屾潌","classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺悕鐗屾潌.png","minimumLevel":16,"maximumLevel":22,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"浜ら�氫俊鍙风伅鏉�","sourceType":"cluster","alpha":1,"name":"浜ら�氫俊鍙风伅鏉�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"浜ら�氫俊鍙风伅鏉�","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氫俊鍙风伅鏉�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"澶氬姛鑳界患鍚堟潌浣�","sourceType":"cluster","alpha":1,"name":"澶氬姛鑳界患鍚堟潌浣�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"澶氬姛鑳界患鍚堟潌浣�","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/澶氬姛鑳界患鍚堟潌浣�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐩戞帶鏉�","sourceType":"cluster","alpha":1,"name":"鐩戞帶鏉�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"鐩戞帶鏉�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶鏉�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐩戞帶鏍囧織鐗�","sourceType":"cluster","alpha":1,"name":"鐩戞帶鏍囧織鐗�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"鐩戞帶鏍囧織鐗�","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶鏍囧織鐗�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鍏朵粬鏉嗕綋","sourceType":"cluster","alpha":1,"name":"鍏朵粬鏉嗕綋","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"鍏朵粬鏉嗕綋","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鍏朵粬鏉嗕綋.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"浜ら�氭爣蹇楃墝","sourceType":"cluster","alpha":1,"name":"浜ら�氭爣蹇楃墝","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"浜ら�氭爣蹇楃墝","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氭爣蹇楃墝.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"浜ら�氭爣蹇楁潌","sourceType":"cluster","alpha":1,"name":"浜ら�氭爣蹇楁潌","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/chengshibujian0529","layer":"浜ら�氭爣蹇楁潌","color":"#fff","outlineColor":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氭爣蹇楁潌.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.4,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"7D042DAF","name":"绀句細浜嬩笟灞�","children":[{"id":"gjzx","name":"楂樼骇涓","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4609-楂樼骇涓","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"gdxx","name":"宸ヨ瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4603-宸ヨ瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jnygzxx","name":"涔濆勾涓�璐埗瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4555-涔濆勾涓�璐埗瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"mbgdjyptgx","name":"姘戝姙楂樼瓑鏁欒偛鏅�氶珮鏍�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4607-姘戝姙楂樼瓑鏁欒偛鏅�氶珮鏍�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"mbgdjyqtjg","name":"姘戝姙楂樼瓑鏁欒偛鍏朵粬鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4606-姘戝姙楂樼瓑鏁欒偛鍏朵粬鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ptgx","name":"鏅�氶珮鏍�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4605-鏅�氶珮鏍�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"senygzxx","name":"鍗佷簩骞翠竴璐埗瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4601-鍗佷簩骞翠竴璐埗瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tsjyxx","name":"鐗规畩鏁欒偛瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4608-鐗规畩鏁欒偛瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"wqzx","name":"瀹屽叏涓","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4602-瀹屽叏涓","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"xx","name":"灏忓","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4230-灏忓","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"yey","name":"骞煎効鍥�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4472-骞煎効鍥�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"zdzyxx","name":"涓瓑鑱屼笟瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4554-涓瓑鑱屼笟瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"cz","name":"鍒濈骇涓","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4555-鍒濈骇涓","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"qsdmzxx","name":"灏戞暟姘戞棌瀛︽牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/jiaoweiyewushuju","layer":"L4002-灏戞暟姘戞棌瀛︽牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sqcjwhzd","name":"绀惧尯灞呭浼�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4014-绀惧尯灞呭浼�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jzzd","name":"鎹愯禒绔欑偣","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4646-鎹愯禒绔欑偣","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"hysydjjg","name":"濠氬Щ鏀跺吇鐧昏鏈哄叧","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L3713-濠氬Щ鏀跺吇鐧昏鏈哄叧","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sqzyzzz","name":"绀惧尯蹇楁効鑰呯粍缁�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4652-绀惧尯蹇楁効鑰呯粍缁�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"gmly","name":"鍏闄靛洯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L3650-鍏闄靛洯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"swgdxazcsm","name":"瀹ゅ杩囨浮鎬у畨缃満鎵�闈�","sourceType":"wfs","alpha":0.46,"class":"polygon","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4642-瀹ゅ杩囨浮鎬у畨缃満鎵�闈�","color":"#92d94b","outlineColor":"#FFFFFF","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":9,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"height":0,"extrudedHeight":100,"outline":true,"water":false,"labelNear":0,"labelFar":999999999},{"id":"swgdxazcs","name":"瀹ゅ杩囨浮鎬у畨缃満鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4641-瀹ゅ杩囨浮鎬у畨缃満鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sngdxazcs","name":"瀹ゅ唴杩囨浮鎬у畨缃満鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4640-瀹ゅ唴杩囨浮鎬у畨缃満鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ylfwjg","name":"鍏昏�佹湇鍔℃満鏋�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4254-鍏昏�佹湇鍔℃満鏋�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"4B4FEFDD","sourceType":"wfs","alpha":1,"name":"閬块櫓璺嚎","class":"polyline","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4655-閬块櫓璺嚎","color":"#fb0d0d","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"minimumLevel":9,"maximumLevel":22,"width":2,"outlineWidth":0,"height":0,"dash":false,"dashLength":20,"gapColor":"rgba(0,0,0,0)","checked":false,"rename":false},{"id":"byfwjg","name":"娈′华鏈嶅姟鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiminzhengju","layer":"L4398-娈′华鏈嶅姟鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jjjg","name":"鎬ユ晳鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4712-鎬ユ晳鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"wsjdzx","name":"鍗敓鐩戠潱涓績","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4708-鍗敓鐩戠潱涓績","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jtcxd","name":"琛楀ご閲嗚鐐�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4713-琛楀ご閲嗚鐐�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"qtylwsjg","name":"鍏朵粬鍖荤枟鍗敓鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4704-鍏朵粬鍖荤枟鍗敓鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sjyy","name":"涓夌骇鍖婚櫌","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L3995-涓夌骇鍖婚櫌","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ejyy","name":"浜岀骇鍖婚櫌","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L3595-浜岀骇鍖婚櫌","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sqwsfwzx","name":"绀惧尯鍗敓鏈嶅姟涓績","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4018-绀惧尯鍗敓鏈嶅姟涓績","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tjyljg","name":"浣撴鍖荤枟鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiweishengjiankangwei","layer":"L4147-浣撴鍖荤枟鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sqtyjsjlb","name":"绀惧尯浣撹偛鍋ヨ韩淇变箰閮�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju","layer":"L4015-绀惧尯浣撹偛鍋ヨ韩淇变箰閮�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"qsntyjlb","name":"闈掑皯骞翠綋鑲蹭勘涔愰儴","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju","layer":"L3956-闈掑皯骞翠綋鑲蹭勘涔愰儴","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tyydxmjydw","name":"浣撹偛杩愬姩椤圭洰缁忚惀鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju","layer":"L4154-浣撹偛杩愬姩椤圭洰缁忚惀鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tycpzmd","name":"浣撹偛褰╃エ涓撳崠搴�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju","layer":"L4149-浣撹偛褰╃エ涓撳崠搴�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tyssdwkfxx","name":"浣撹偛璁炬柦瀵瑰寮�鏀惧鏍�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shitiyuju","layer":"L4152-浣撹偛璁炬柦瀵瑰寮�鏀惧鏍�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ykzsqfwq","name":"涓�鍒婚挓绀惧尯鏈嶅姟鍦�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju","layer":"L4264-涓�鍒婚挓绀惧尯鏈嶅姟鍦�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"mramzdzx","name":"鐩蹭汉鎸夋懇鎸囧涓績","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju","layer":"L3840-鐩蹭汉鎸夋懇鎸囧涓績","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjscjrshzz","name":"鍖椾含甯傛畫鐤句汉绀句細缁勭粐","sourceType":"wfs","alpha":1,"class":"polygon","urls":"http://10.10.4.121:8070/gisserver/wfsserver/xinxihuajuyewushuju","layer":"L4740-鍖椾含甯傛畫鐤句汉绀句細缁勭粐","color":"#6fc5f7","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"minimumLevel":12,"maximumLevel":22,"height":0,"outlineWidth":1,"extrudedHeight":100,"outline":false,"water":true,"labelNear":0,"labelFar":999999999,"checked":false,"rename":false}],"rename":false,"checked":false,"expanded":false},{"id":"B5F8764D","name":"鍟嗗姟閲戣瀺灞�","children":[{"id":"qylqy","sourceType":"cluster","alpha":1,"name":"浼佷笟鍒嗗竷","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/qiyelianqiye","layer":"浼佷笟閾句紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/xzspj/qiye.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"szddtzqy","name":"鐢熺尓瀹氱偣灞犲浼佷笟","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju","layer":"L4678-鐢熺尓瀹氱偣灞犲浼佷笟","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bldmdps","name":"渚垮埄搴楁湯绔厤閫�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju","layer":"L4673-渚垮埄搴楁湯绔厤閫�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"zrxs121jcs","name":"鐚倝閿�鍞�121瀹惰秴甯�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shishangwuju","layer":"L4679-鐚倝閿�鍞�121瀹惰秴甯�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"fsxypscjyqy","name":"鏀惧皠鎬ц嵂鍝佺敓浜э紙缁忚惀锛変紒涓�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4724-鏀惧皠鎬ц嵂鍝佺敓浜э紙缁忚惀锛変紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sf","name":"鍖荤枟鏈烘瀯鍒跺墏璁稿彲鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4721-鍖荤枟鏈烘瀯鍒跺墏璁稿彲鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"hzpscqy","name":"鍖栧鍝佺敓浜т紒涓�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L3703-鍖栧鍝佺敓浜т紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"tgzcypsfwjyqy","name":"鎻愪緵璐瓨涓庨厤閫佹湇鍔$粡钀ヤ紒涓�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4722-鎻愪緵璐瓨涓庨厤閫佹湇鍔$粡钀ヤ紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"spscqy","name":"椋熷搧鐢熶骇浼佷笟","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4727-椋熷搧鐢熶骇浼佷笟","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"ypscqy","name":"鑽搧鐢熶骇浼佷笟","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4259-鑽搧鐢熶骇浼佷笟","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"deslylqxscqy","name":"绗簩銆佷笁绫诲尰鐤楀櫒姊扮敓浜т紒涓�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L3572-绗簩銆佷笁绫诲尰鐤楀櫒姊扮敓浜т紒涓�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"bjspscdw","name":"淇濆仴椋熷搧鐢熶骇鍗曚綅","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4379-淇濆仴椋熷搧鐢熶骇鍗曚綅","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"yplsqy","name":"鑽搧闆跺敭浼佷笟","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shiyaopinjianduguanliju","layer":"L4257-鑽搧闆跺敭浼佷笟","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"BAB84B0D","name":"琛屾斂瀹℃壒灞�","children":[{"id":"B5610EB3","name":"瑙嗛鐩戞帶","children":[{"id":"zhianjiankong","sourceType":"cluster","alpha":1,"height":30,"name":"娌诲畨鐩戞帶","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"娌诲畨鐩戞帶","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"zhianjiankongwuxian","sourceType":"cluster","alpha":1,"height":30,"name":"娌诲畨鐩戞帶锛堟棤绾匡級","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"娌诲畨鐩戞帶锛堟棤绾匡級","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"daxinggongan133lu","sourceType":"cluster","alpha":1,"height":30,"name":"澶у叴鍏畨133璺�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"澶у叴鍏畨133璺�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"gaodianjiankong","sourceType":"cluster","alpha":1,"height":30,"name":"楂樼偣鐩戞帶","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"楂樼偣鐩戞帶","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"cigaodianjiankong","sourceType":"cluster","alpha":1,"height":30,"name":"娆¢珮鐐圭洃鎺�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"娆¢珮鐐圭洃鎺�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"鍩庡競澶ц剳","sourceType":"cluster","alpha":1,"height":30,"name":"鍩庡競澶ц剳","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"鍩庡競澶ц剳","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"骞冲畨灏忓尯","sourceType":"cluster","alpha":1,"height":30,"name":"骞冲畨灏忓尯","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"骞冲畨灏忓尯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"杩濈珷鍋滆溅瑙嗛","sourceType":"cluster","alpha":1,"height":30,"name":"杩濈珷鍋滆溅瑙嗛","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"杩濈珷鍋滆溅瑙嗛","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"闃叉睕鐐逛綅鐩戞帶","sourceType":"cluster","alpha":1,"height":30,"name":"闃叉睕鐐逛綅鐩戞帶","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"闃叉睕鐐逛綅鐩戞帶","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"淇濋殰","sourceType":"cluster","alpha":1,"height":30,"name":"淇濋殰","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"淇濋殰","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]}],"rename":false,"expanded":false},{"id":"2BA3A978","name":"鍩庡競绐ㄤ簳","children":[{"id":"闆ㄦ按浜�","sourceType":"cluster","alpha":1,"name":"闆ㄦ按浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_闆ㄦ按浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/闆ㄦ按浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐢靛姏浜�","sourceType":"cluster","alpha":1,"name":"鐢靛姏浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_鐢靛姏浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐢靛姏浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐩戞帶浜�","sourceType":"cluster","alpha":1,"name":"鐩戞帶浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_鐩戞帶浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐩戞帶浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"浜ら�氫簳","sourceType":"cluster","alpha":1,"name":"浜ら�氫簳","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_浜ら�氫簳","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/浜ら�氫簳鐩�.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"璺伅浜�","sourceType":"cluster","alpha":1,"name":"璺伅浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_璺伅浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/璺伅浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐕冩皵浜�","sourceType":"cluster","alpha":1,"name":"鐕冩皵浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_鐕冩皵浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐕冩皵浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"鐑姏浜�","sourceType":"cluster","alpha":1,"name":"鐑姏浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_鐑姏浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/鐑姏浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"閫氫俊浜�","sourceType":"cluster","alpha":1,"name":"閫氫俊浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_閫氫俊浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/閫氫俊浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"姹℃按浜�","sourceType":"cluster","alpha":1,"name":"姹℃按浜�","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/yinjing0529","layer":"绐ㄤ簳_姹℃按浜�","color":"#fff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鍒囩墖/姹℃按浜曠洊.png","minimumLevel":16,"maximumLevel":22,"font":"Arial","scale":1.5,"outlineWidth":0,"offsetX":40,"offsetY":-15,"imageScale":0.5,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false}],"rename":false,"expanded":true,"checked":false},{"id":"77F381A7","name":"绀句細淇濋櫓淇濋殰涓績","children":[{"id":"ylbxddyljg","name":"鍖荤枟淇濋櫓瀹氱偣鍖荤枟鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shirenlishebaoju","layer":"L4750-鍖荤枟淇濋櫓瀹氱偣鍖荤枟鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false},{"id":"527A0989","name":"鑽e崕琛楅亾","children":[{"id":"鑽e崕琛楅亾杞﹁浇瑙嗛","sourceType":"cluster","alpha":1,"height":30,"name":"鑽e崕琛楅亾杞﹁浇瑙嗛","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"鑽e崕琛楅亾杞﹁浇瑙嗛","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]}],"rename":false,"expanded":false},{"id":"21F7FA4A","name":"瑙勮嚜鍒嗗眬","children":[{"id":"18B25A94","sourceType":"wmse","name":"60骞虫柟鍏噷鏍稿績鍖虹晫","urls":"http://10.10.4.121:8070/gisserver/wmsserver/YZ_BJ60","maximumLevel":26,"alpha":1,"zIndex":7,"Level":"11,20","checked":false,"rename":false,"flyTo":["116.51352","39.76102","30523.31","360.0","-89.8"]},{"id":"47EC9636","sourceType":"wmse","name":"225骞虫柟鍏噷鍖虹晫","urls":"http://10.10.4.121:8070/gisserver/wmsserver/YZ_BJ","maximumLevel":26,"alpha":1,"zIndex":7,"Level":"10,20","flyTo":["116.50281","39.75291","35307.96","0.0","-89.8"],"checked":false,"rename":false},{"id":"xingzhengquhuamian_tms","name":"涓よ鍏晣鐣�","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/xingzhengquhuamian_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":0.75,"zIndex":7,"checked":false,"rename":false},{"id":"xingzhengquhuabianjie_tm","name":"涓よ鍏晣鐣岀嚎","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/xingzhengquhuabianjie_tm","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false},{"id":"5EFDB2AF","sourceType":"wfs","alpha":1,"name":"鏀垮簻鎵�鍦ㄥ湴 ","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/zhengfusuozaidi_wfs","layer":"鏀垮簻椹诲湴","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"./static/SmartEarthSDK/Workers/image/csyxj/鏀垮簻鏈哄叧.png","minimumLevel":0,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":0.3,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"chengshiguihua_xiangmumingcheng_tms","name":"浜﹀簞鏂板煄瑙勫垝鍥�","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/chengshiguihua_xiangmumingcheng_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false},{"id":"GuiHuaFanWeiShiYiTu","name":"瑙勫垝鑼冨洿涓撻鍥�","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/GuiHuaFanWeiShiYiTu_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false},{"id":"XingZhengQuHuaTu","name":"琛屾斂鍖哄垝涓撻鍥�","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/XingZhengQuHuaTu_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false},{"id":"GuiHuaDanYuanHuaFenTu","name":"瑙勫垝鍗曞厓鍒掑垎涓撻鍥�","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/GuiHuaDanYuanHuaFenTu_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false},{"id":"ZhuYaoGongNengQuGuiHuaShiYiTu","name":"涓昏鍔熻兘鍖鸿鍒掍笓棰樺浘","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/ZhuYaoGongNengQuGuiHuaShiYiTu_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":7,"checked":false,"rename":false}],"rename":false,"expanded":false},{"id":"471847FA","name":"骞冲畨鍔�","children":[{"id":"bgld","name":"瀹鹃鏃呭簵","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4397-瀹鹃鏃呭簵","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"crjzjjg","name":"鍑哄叆澧冧腑浠嬫満鏋�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3539-鍑哄叆澧冧腑浠嬫満鏋�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jtzfjg","name":"浜ら�氭墽娉曟満鏋�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3764-浜ら�氭墽娉曟満鏋�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"lctcc","name":"璺晶鍋滆溅浣�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3831-璺晶鍋滆溅浣�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jx","name":"椹炬牎","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3750-椹炬牎","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"sqmjjjwgzs","name":"绀惧尯姘戣鍙婅鍔″伐浣滃","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4628-绀惧尯姘戣鍙婅鍔″伐浣滃","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jtzdd","name":"浜ら�氭敮澶ч槦","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3763-浜ら�氭敮澶ч槦","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"fjdcdjz","name":"闈炴満鍔ㄨ溅鐧昏绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4634-闈炴満鍔ㄨ溅鐧昏绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jdcjcc","name":"鏈哄姩杞︽娴嬪満","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3721-鏈哄姩杞︽娴嬪満","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"pcs","name":"娲惧嚭鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4627-娲惧嚭鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"cgz","name":"杞︾绔�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4404-杞︾绔�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"cgs","name":"杞︾鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L4403-杞︾鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"jtsgcljg","name":"浜ら�氫簨鏁呭鐞嗘満鏋�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/gonganjuyewushuju","layer":"L3761-浜ら�氫簨鏁呭鐞嗘満鏋�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"lssws","name":"寰嬪笀浜嬪姟鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shisifaju","layer":"L3836-娈′华鏈嶅緥甯堜簨鍔℃墍鍔℃満鏋�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"o_ql_sfj_sfjdjg_kongjian","name":"鍙告硶閴村畾鏈烘瀯","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shisifaju","layer":"L4125-鍙告硶閴村畾鏈烘瀯","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"o_ql_sfj_qs17jflyzzxjbxx_kongjian","name":"娉曞緥鎻村姪涓績","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shisifaju","layer":"L3600-娉曞緥鎻村姪涓績","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false},{"id":"o_ql_sfj_jcsfszzxx_kongjian","name":"鍙告硶鎵�","sourceType":"cluster","alpha":1,"class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shisifaju","layer":"L4126-鍙告硶鎵�","color":"#ffffff","outlineColor":"#ffffff","clampToGround":true,"classificationType":2,"image":"../static/SmartEarthSDK/Workers/image/point-16px.png","minimumLevel":13,"maximumLevel":22,"font":"Arial","scale":2,"outlineWidth":1,"offsetX":0,"offsetY":0,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"2E2BE254","name":"甯傝嚜鍔ㄩ┚椹跺姙鍏","children":[{"id":"鑷姩椹鹃┒","sourceType":"cluster","alpha":1,"height":30,"name":"鑷姩椹鹃┒","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"鑷姩椹鹃┒","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]},{"id":"鑷姩椹鹃┒楸肩溂","sourceType":"cluster","alpha":1,"height":30,"name":"鑷姩椹鹃┒楸肩溂","class":"point","urls":"http://10.10.4.121:8070/gisserver/wfsserver/shipingjiankong0614","layer":"鑷姩椹鹃┒楸肩溂","color":"#ffffff","outlineColor":"#ffffff","clampToGround":false,"classificationType":2,"text":"","image":"./static/SmartEarthSDK/Workers/image/xzspj/spjk.png","minimumLevel":1,"maximumLevel":22,"font":"Arial","scale":1,"outlineWidth":1,"offsetX":0,"offsetY":-10,"imageScale":1,"disableDepthTestDistance":"Infinity","checked":false,"rename":false,"flyTo":["116.49140","39.78077","1985.39","360.0","-49.3"]}],"rename":false,"expanded":false,"checked":false},{"id":"33213273","name":"鍦板浘鏁版嵁","disabled":false,"children":[{"id":"AC1CE1F9","name":"鍩虹鍦板浘","children":[{"id":"shiliangtuceng","name":"浜岀淮鍦板浘","children":[{"id":"baise2D","name":"鐧借壊浜岀淮","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/shiliangditu_baisexi","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"checked":false,"alpha":1,"zIndex":7,"rename":false},{"id":"shenlan2D","name":"娣辫摑浜岀淮","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/shiliangditu_kejilan","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"checked":false,"alpha":1,"zIndex":7,"rename":false},{"id":"heijin2D","name":"榛戦噾浜岀淮","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/shiliangtu_anyehei","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"checked":false,"alpha":1,"zIndex":7,"rename":false},{"id":"鍖椾含2000褰卞儚","name":"鍖椾含2000褰卞儚","sourceType":"BJ2000","urls":"http://172.26.64.84/service/map/img?year=&type=Sate&z={z}&x={x}&y={y}&ak=945feed57ba34d23a999be2ae4d9259a","checked":false,"rename":false},{"id":"鍖椾含2000鐭㈤噺","name":"鍖椾含2000鐭㈤噺","sourceType":"BJ2000","urls":"http://172.26.64.84/service/map/img?year=&type=Shiliang&z={z}&x={x}&y={y}&ak=945feed57ba34d23a999be2ae4d9259a","checked":false,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"yingxiangtuceng","name":"褰卞儚鍦板浘","children":[{"id":"jiaotongluwang_tms","name":"閬撹矾","sourceType":"local-map","urls":"http://10.10.4.121:8070/gisserver/tmsserver/jiaotongluwang_tms","tile":"{z}/{x}/{y}","tileType":"Mercator","img":"jpeg","tms":true,"Level":1,"alpha":1,"zIndex":10,"checked":false,"rename":false},{"id":"C0698021","sourceType":"wmts","name":"鑸媿褰卞儚","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=&type=Sate_CGCS2000&level={TileMatrix}&x={TileRow}&y={TileCol}","checked":false,"zIndex":2,"rename":false},{"id":"A6D6DE13","sourceType":"gdmap","name":"楂樺痉褰卞儚","urls":"https://webst02.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}","layer":"","alpha":1,"zIndex":2,"maximumLevel":18,"Level":[0,26],"checked":false,"rename":false},{"id":"26B6815E","sourceType":"gdmap","name":"楂樺痉娉ㄨ","zIndex":3,"urls":"https://webst02.is.autonavi.com/appmaptile?style=8&x={x}&y={y}&z={z}","layer":"","alpha":1,"maximumLevel":18,"Level":[0,26],"checked":false,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"historyImage","name":"鍘嗗彶褰卞儚","children":[{"id":"2002","sourceType":"BJ54","name":"2002骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2002&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2003","sourceType":"BJ54","name":"2003骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2003&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2004","sourceType":"BJ54","name":"2004骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2004&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2005","sourceType":"BJ54","name":"2005骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2005&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2006","sourceType":"BJ54","name":"2006骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2006&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2007","sourceType":"BJ54","name":"2007骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2007&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2008","sourceType":"BJ54","name":"2008骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2008&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2009","sourceType":"BJ54","name":"2009骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2009&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2010","sourceType":"BJ54","name":"2010骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2010&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2011","sourceType":"BJ54","name":"2011骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2011&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2012","sourceType":"BJ54","name":"2012骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2012&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2013","sourceType":"BJ54","name":"2013骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2013&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2014","sourceType":"BJ54","name":"2014骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2014&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2015","sourceType":"BJ54","name":"2015骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2015&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2016","sourceType":"BJ54","name":"2016骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2016&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2017","sourceType":"BJ54","name":"2017骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2017&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2018","sourceType":"BJ54","name":"2018骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2018&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2019","sourceType":"BJ54","name":"2019骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2019&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false},{"id":"2020","sourceType":"BJ54","name":"2020骞村奖鍍�","urls":"http://10.10.4.116:8085/yzAdapter/Vector/?request=1&year=2020&type=Sate&level={z}&x={x}&y={y}","checked":false,"zIndex":2,"rename":false}],"rename":false,"expanded":false,"checked":false},{"id":"8A969952","sourceType":"b3dm","name":"寤虹瓚浣撳潡","urls":"http://10.10.4.121:8070/gisserver/c3dserver/YZ_BM/tileset.json","checked":false,"rename":false},{"id":"shijingsanwei","name":"涓夌淮妯″瀷","children":[{"id":"hexinqu0609","name":"鏍稿績鍖哄缓绛戠墿","sourceType":"b3dm","checked":true,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/hxq0609/tileset.json","rename":false,"zIndex":1},{"id":"2253dhexin01","name":"225瀹炴櫙涓夌淮鏍稿績鍖哄湴闈�","sourceType":"b3dm","checked":true,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/hexinqudimian/tileset.json","rename":false,"zIndex":1},{"id":"2253dfeihexin","name":"225瀹炴櫙涓夌淮闈炴牳蹇冨尯","checked":true,"sourceType":"b3dm","urls":"http://10.10.4.121:8070/gisserver/c3dserver/fhx/tileset.json","rename":false,"zIndex":1}],"rename":false,"expanded":false,"checked":true}],"rename":false,"expanded":false},{"id":"B10B7BDD","name":"鍒嗗眰鍒嗘埛","children":[{"id":"姘告櫀1鍙锋ゼF1","name":"姘告櫀1鍙锋ゼF1","sourceType":"b3dm","checked":false,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F1/tileset.json","rename":false,"zIndex":1},{"id":"姘告櫀1鍙锋ゼF2","name":"姘告櫀1鍙锋ゼF2","sourceType":"b3dm","checked":false,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F2/tileset.json","rename":false,"zIndex":1},{"id":"姘告櫀1鍙锋ゼF3","name":"姘告櫀1鍙锋ゼF3","sourceType":"b3dm","checked":false,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F3/tileset.json","rename":false,"zIndex":1},{"id":"姘告櫀1鍙锋ゼF4","name":"姘告櫀1鍙锋ゼF4","sourceType":"b3dm","checked":false,"urls":"http://10.10.4.121:8070/gisserver/c3dserver/YHYQ1_F4/tileset.json","rename":false,"zIndex":1}],"rename":false,"expanded":false}],"rename":false,"expanded":false}],"flyTo":[],"mapStatus":{"rotateFlyTime":30,"sunLight":false,"lightIntensity":2,"lightColor":"#ffffff","brightness":1,"contrast":1,"saturation":1}}
\ No newline at end of file

--
Gitblit v1.9.3