rui.jiang 4 месяцев назад
Родитель
Сommit
211b7fdf71
5 измененных файлов с 4625 добавлено и 122 удалено
  1. 14 0
      src/api/ledger.js
  2. 589 0
      src/components/map/index copy.vue
  3. 112 120
      src/components/map/index.vue
  4. 3908 0
      src/components/map/shanxi.json
  5. 2 2
      vue.config.js

+ 14 - 0
src/api/ledger.js

@@ -584,3 +584,17 @@ export function queryFloatingWindowInfo(data) {
 }
 
 
+
+// 陈风场
+
+
+export function upload(data) {
+  return request({
+    url: "/energy-manage-service/api/check/upload",
+    method: "post",
+    data,
+  });
+}
+
+
+

+ 589 - 0
src/components/map/index copy.vue

@@ -0,0 +1,589 @@
+<template>
+  <div class="map-container">
+    <div id="map" class="map"></div>
+    <div v-if="hoverInfo" :style="hoverStyle" class="hover-info">
+      <h3>{{ hoverInfo.fieldName }}</h3>
+      <div>
+        <p>
+          <span>状态:</span
+          ><span>{{
+            hoverInfo.analysisState === 30 ? "已完成分析" : "未完成分析"
+          }}</span>
+        </p>
+        <p>
+          <span>风场编号</span><span>{{ hoverInfo.codeNumber }}</span>
+        </p>
+        <p>
+          <span>风机数量</span><span>{{ newWind.engineTotalCount }} 台</span>
+        </p>
+        <p>
+          <span>总容量</span
+          ><span
+            >{{
+              newWind?.ratedCapacityNumber ? newWind.ratedCapacityNumber : 0
+            }}/KW</span
+          >
+        </p>
+        <p>
+          <span>经度</span><span>{{ hoverInfo.longitude }}°</span>
+        </p>
+        <p>
+          <span>纬度</span><span>{{ hoverInfo.latitude }}°</span>
+        </p>
+        <p>
+          <span>分析模型数</span
+          ><span
+            >{{
+              hoverInfo.analysisTypeCount ? hoverInfo.analysisTypeCount : 0
+            }}
+            个</span
+          >
+        </p>
+        <p>
+          <span>分析开始时间</span>
+          <span>{{
+            newWind.analysisStartTime
+              ? $formatDateTWO(newWind.analysisStartTime)
+              : "暂无数据"
+          }}</span>
+        </p>
+        <p>
+          <span>分析结束时间</span>
+          <span>{{
+            newWind.analysisEndTime
+              ? $formatDateTWO(newWind.analysisEndTime)
+              : "暂无数据"
+          }}</span>
+        </p>
+        <p>
+          <span>数据开始时间</span>
+          <span>{{
+            newWind.dataStartTime
+              ? $formatDateTWO(newWind.dataStartTime)
+              : "暂无数据"
+          }}</span>
+        </p>
+        <p>
+          <span>数据结束时间</span>
+          <span>{{
+            newWind.dataEndTime
+              ? $formatDateTWO(newWind.dataEndTime)
+              : "暂无数据"
+          }}</span>
+        </p>
+      </div>
+    </div>
+
+    <div v-if="hoverfengji" :style="hoverfengjiStyle" class="hover-fengji">
+      <h3>{{ hoverfengji.engineName }}</h3>
+      <div>
+        <p>
+          <span>风机编号</span><span>{{ hoverfengji.engineCode }}</span>
+        </p>
+        <p>
+          <span>额定容量</span
+          ><span
+            >{{
+              hoverfengji?.ratedCapacity ? hoverfengji?.ratedCapacity : 0
+            }}
+            /KW</span
+          >
+        </p>
+        <p>
+          <span>海拔高度</span
+          ><span>{{ hoverfengji.elevationHeight }} /米</span>
+        </p>
+        <p>
+          <span>轮毂高度</span><span>{{ hoverfengji.hubHeight }} /米</span>
+        </p>
+        <p>
+          <span>经度</span><span>{{ hoverfengji.longitude }}</span>
+        </p>
+        <p>
+          <span>维度</span><span>{{ hoverfengji.latitude }}</span>
+        </p>
+        <p>
+          是否标杆风机
+          <span>{{ hoverfengji.sightcing == 1 ? "是" : "否" }}</span>
+        </p>
+        <p>
+          <span>额定风速</span><span>{{ hoverfengji.ratedWindSpeed }} m/s</span>
+        </p>
+        <p>
+          <span>切入风速</span
+          ><span>{{ hoverfengji.ratedCutInWindspeed }} m/s</span>
+        </p>
+        <p>
+          <span>切出风速</span
+          ><span>{{ hoverfengji.ratedCutOutWindspeed }} m/s</span>
+        </p>
+      </div>
+    </div>
+    <div v-if="hoverta" :style="hovertaStyle" class="hover-ta">
+      <h3>{{ hoverta.anemometerName }}</h3>
+      <div>
+        <p>
+          <span>测风塔编号</span><span>{{ hoverta.anemometerCode }}</span>
+        </p>
+
+        <p>
+          <span>经度</span><span>{{ hoverta.longitude }}</span>
+        </p>
+        <p>
+          <span>维度</span><span>{{ hoverta.latitude }}</span>
+        </p>
+        <!-- <p>
+          <span>状态</span><span>{{  }}</span>
+        </p> -->
+        <p>
+          <span>测风塔高度</span
+          ><span>{{ hoverta.anemometerHeightStrings }}/米</span>
+        </p>
+      </div>
+    </div>
+    <!-- 这是测试 -->
+    <el-dialog title="异常描述" :visible.sync="dialogVisible" width="50%">
+      <el-table :data="tableData" max-height="500" style="width: 100%">
+        <el-table-column prop="analysisTypeName" label="类型" width="300">
+        </el-table-column>
+        <el-table-column prop="errDesc" label="描述"> </el-table-column>
+      </el-table>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import "ol/ol.css";
+import { Map, View, Feature } from "ol";
+import TileLayer from "ol/layer/Tile.js";
+import { XYZ } from "ol/source";
+import { fromLonLat } from "ol/proj";
+import { Vector } from "ol/source";
+import { Vector as VectorLayer } from "ol/layer";
+import { Point } from "ol/geom";
+import { Icon, Style } from "ol/style";
+import ZoomSlider from "ol/control/ZoomSlider.js";
+import { defaults as defaultControls } from "ol/control.js";
+
+import icon01 from "../../assets/img/iconFC.png";
+import icon02 from "../../assets/img/iconFC.png";
+import icon03 from "../../assets/img/iconFC.png";
+import icon04 from "../../assets/img/iconFJ.png";
+import icon05 from "../../assets/img/icon05.png";
+import icon06 from "../../assets/img/iconFJ.png";
+import defaultIcon from "../../assets/img/iconFJ.png";
+import { queryErrDescByEngine, queryFloatingWindowInfo } from "@/api/ledger.js";
+import { login } from "@/api/login";
+
+export default {
+  props: {
+    windEngineGroupByFieldCodeDetail: {
+      type: Object,
+      default: () => {
+        return {};
+      },
+    },
+  },
+  name: "T-map",
+  data() {
+    return {
+      dialogVisible: false,
+      tableData: [],
+      hoverInfo: null,
+      hoverStyle: {
+        position: "absolute",
+        left: "0px",
+        top: "0px",
+      },
+      hoverfengji: null,
+      hoverfengjiStyle: {
+        position: "absolute",
+        left: "0px",
+        top: "0px",
+      },
+      hoverta: null,
+      hovertaStyle: {
+        position: "absolute",
+        left: "0px",
+        top: "0px",
+      },
+      newWind: {},
+    };
+  },
+  watch: {
+    windEngineGroupByFieldCodeDetail: {
+      handler(data) {
+        if (data) {
+        }
+      },
+      deep: true, // 深度监听
+    },
+  },
+  mounted() {
+    this.map = new Map({
+      target: "map",
+      view: new View({
+        projection: "EPSG:4326",
+        center: fromLonLat([116.389, 39.903]), //地图中心
+        zoom: 3, //默认缩放级别
+        minZoom: 3, //最小缩放级别
+        maxZoom: 15, //最大缩放级别
+        // extent: [ 104.5, 33.5, 121.0, 41.5], //山西
+        extent: [69, 18, 136, 54], //全国
+      }),
+      layers: [
+        new TileLayer({
+          source: new XYZ({
+            // url: "http://127.0.0.1:8010/tiles/{z}/{x}/{y}.png", //本地
+            // url: "http://192.168.50.235/tiles/{z}/{x}/{y}.png", //内网
+            url: "http://106.120.102.238:18000/tiles/{z}/{x}/{y}.png", //外网
+            // url: "http://10.96.137.5:9080/tiles/{z}/{x}/{y}.png", //大~#@唐
+          }),
+        }),
+        new VectorLayer({
+          id: "marker",
+          source: new Vector(),
+        }),
+      ],
+      controls: defaultControls().extend([new ZoomSlider()]),
+    });
+    // console.log(this.map.getView().calculateExtent());
+    // 不需要定位到某个城市的时候就把这个注释掉
+    if (this.$route.path === "/home/cockpitManage") {
+      const targetExtent = [106.8, 34.3, 118.6, 41.2]; // 乌海、乌兰察布、山海关、西安的范围
+
+      this.map.getView().fit(targetExtent, { duration: 2000 }); // 将地图视图缩放到指定范围,持续时间为 1000ms
+    }
+
+    this.initEvent();
+  },
+  methods: {
+    /**
+     * 地图上打点
+     * @param data
+     */
+    addMarker(data = { point: [120.2, 30.35], val: "1" }) {
+      const layer = this.map
+        .getLayers()
+        .getArray()
+        .find((element) => {
+          return element.get("id") === "marker";
+        });
+      const source = layer.getSource();
+
+      const iconSrc = this.getIconForValue(data.val);
+      const scale = data.val === "4" ? [0.5, 0.5] : [0.3, 0.3]; // 如果是 icon04,设置 scale 为 [0.5, 0.5],其他保持 [0.3, 0.3]
+
+      const feature = new Feature({
+        geometry: new Point(fromLonLat(data.point, "EPSG:4326")),
+        name: "marker",
+        data,
+      });
+
+      feature.setStyle(
+        new Style({
+          image: new Icon({
+            src: iconSrc,
+            scale: scale, // 根据条件动态设置 scale
+            anchor: [0.5, 1],
+            opacity: 1,
+          }),
+        })
+      );
+
+      source.addFeature(feature);
+    },
+    /**
+     * 地图上打点
+     * @param data
+     */
+    clearMarkers() {
+      const layer = this.map
+        .getLayers()
+        .getArray()
+        .find((element) => {
+          return element.get("id") === "marker";
+        });
+      if (layer) {
+        const source = layer.getSource();
+        source.clear(); // 清空所有特征
+      }
+    },
+    getIconForValue(val) {
+      switch (val) {
+        case "-1":
+        case -1:
+          return icon01;
+        case "10":
+        case 10:
+          return icon01;
+        case 0:
+        case "0":
+          return icon02;
+        case 20:
+        case "20":
+          return icon02;
+        case 1:
+        case "1":
+          return icon03;
+        case 30:
+        case "30":
+          return icon03;
+        case "4":
+          return icon04;
+        case "5":
+          return icon05;
+        case "6":
+          return icon06;
+        default:
+          return defaultIcon;
+      }
+    },
+
+    /**
+     * 初始化地图事件
+     */
+    initEvent() {
+      let lastHoveredFeature = null; // 用来记录上一次悬停的 feature
+
+      // 计算悬浮框位置
+      function calculateHoverTop(mouseY, hoverHeight) {
+        const windowHeight = window.innerHeight; // 获取窗口高度
+        const offset = 10; // 适当的偏移量
+
+        // 如果鼠标接近底部,向上展示
+        if (mouseY + hoverHeight + offset > windowHeight) {
+          return mouseY - hoverHeight - offset; // 向上调整
+        }
+        // 否则,默认居中
+        return mouseY - hoverHeight / 2; // 使其居中于鼠标位置
+      }
+
+      function calculateHoverLeft(mouseX, hoverWidth) {
+        const windowWidth = window.innerWidth; // 获取窗口宽度
+        const offset = 10; // 适当的偏移量
+
+        // 如果鼠标接近右边缘,向左显示
+        if (mouseX + hoverWidth + offset > windowWidth) {
+          return mouseX - hoverWidth - offset; // 向左调整
+        }
+
+        // 如果鼠标接近左边缘,保持适当的右偏移
+        if (mouseX - hoverWidth - offset < 0) {
+          return offset; // 距离左边一定的距离
+        }
+
+        return mouseX + offset; // 否则,鼠标右侧
+      }
+      this.map.on("pointermove", (evt) => {
+        const features = this.map.getFeaturesAtPixel(evt.pixel, {
+          hitTolerance: 1,
+        });
+
+        if (features && features.length > 0) {
+          const feature = features.at(0);
+          const val = feature.get("data").val;
+
+          // 只有当当前悬停的 feature 和上次的不同,才触发操作
+          if (lastHoveredFeature !== feature) {
+            // 计算悬浮框的位置
+            const hoverHeight = 250; // 假设悬浮框的高度
+            const hoverWidth = 200; // 假设悬浮框的宽度
+            const topPosition = calculateHoverTop(evt.pixel[1], hoverHeight); // 动态计算top值
+            const leftPosition = calculateHoverLeft(evt.pixel[0], hoverWidth); // 动态计算left值
+
+            if (val == "1" || val == "30" || val == "-1" || val == "10") {
+              this.hoverInfo = feature.get("data");
+              this.hoverStyle.left = `${leftPosition}px`;
+              this.hoverStyle.top = `${topPosition}px`;
+              this.getwind();
+            } else if (val == "4") {
+              this.hoverfengji = feature.get("data");
+              this.hoverfengjiStyle.left = `${leftPosition}px`;
+              this.hoverfengjiStyle.top = `${topPosition}px`;
+              this.currentFeatureData = feature.get("data");
+            } else if (val == "5") {
+              this.hoverta = feature.get("data");
+              this.hovertaStyle.left = `${leftPosition}px`;
+              this.hovertaStyle.top = `${topPosition}px`;
+              this.currentFeatureData = feature.get("data");
+            } else if (val == "6") {
+              this.currentFeatureData = feature.get("data");
+            } else {
+              this.hoverInfo = null;
+              this.hoverfengji = false;
+              this.hoverta = false;
+              this.currentFeatureData = null;
+            }
+
+            // 更新 lastHoveredFeature
+            lastHoveredFeature = feature;
+          }
+        } else {
+          this.hoverInfo = null;
+          this.hoverfengji = false;
+          this.hoverta = false;
+          this.currentFeatureData = null;
+          lastHoveredFeature = null; // 没有特征时清空记录
+        }
+      });
+
+      this.map.on("click", (evt) => {
+        const features = this.map.getFeaturesAtPixel(evt.pixel, {
+          hitTolerance: 1,
+        });
+        if (features && features.length > 0) {
+          const feature = features.at(0);
+          const val = feature.get("data").val;
+          if (val === "6") {
+            this.handleFeatureClick(feature.get("data"));
+          } else {
+            this.$emit("feature-click", feature.get("data"));
+          }
+        } else if (
+          this.currentFeatureData &&
+          this.currentFeatureData.val === "6"
+        ) {
+          this.handleFeatureClick(this.currentFeatureData);
+        }
+      });
+    },
+
+    handleFeatureClick(featureData) {
+      let dateArr = {
+        batchCode: this.$route.query.batchCode,
+        engineCode: featureData.engineCode,
+      };
+      queryErrDescByEngine(dateArr).then((res) => {
+        this.dialogVisible = true;
+        this.tableData = res.data;
+      });
+    },
+
+    getwind() {
+      console.log(this.hoverInfo, "hoverInfo");
+
+      if (this.hoverInfo && this.hoverInfo.batchCode) {
+        const param = {
+          batchcode: this.hoverInfo.batchCode,
+          fieldCode: this.hoverInfo.codeNumber,
+        }; // 确保传递一个对象
+        queryFloatingWindowInfo(param)
+          .then((res) => {
+            // 处理响应数据
+            this.newWind = res.data;
+          })
+          .catch((err) => {
+            console.error("获取风信息失败", err);
+          });
+      } else {
+        console.warn("hoverInfo 或 batchCode 未定义");
+      }
+    },
+
+    /**
+     * 平移缩放
+     * @param data
+     */
+    moveAndZoom(data = { point: [120.2, 30.35], zoom: 15 }) {
+      this.map.getView().animate({
+        center: fromLonLat(data.point, "EPSG:4326"),
+        zoom: data.zoom,
+        duration: 2000,
+      });
+    },
+  },
+};
+</script>
+
+<style scoped lang="scss">
+.map-container {
+  position: relative;
+  width: 100%;
+  height: 100%;
+  overflow: hidden; /* 禁止滚动条 */
+}
+
+.map {
+  width: 100%;
+  height: 100%;
+}
+
+.hover-info {
+  position: absolute;
+  color: white;
+  padding: 0px;
+  z-index: 100;
+
+  h3 {
+    background-color: #008080cc;
+    width: 240px;
+    padding: 5px 10px;
+    font-size: 16px;
+  }
+
+  div {
+    background-color: #00808097;
+    width: 240px;
+    font-size: 12px;
+
+    p {
+      padding: 5px 10px;
+      display: flex;
+      justify-content: space-between;
+    }
+  }
+}
+
+.hover-fengji {
+  position: absolute;
+  color: white;
+  padding: 0px;
+  z-index: 100;
+
+  h3 {
+    background-color: #027cb4cc;
+    width: 240px;
+    padding: 5px 10px;
+    font-size: 16px;
+  }
+
+  div {
+    background-color: #027cb49e;
+    width: 240px;
+    font-size: 12px;
+
+    p {
+      padding: 5px 10px;
+      display: flex;
+      justify-content: space-between;
+    }
+  }
+}
+
+.hover-ta {
+  position: absolute;
+  color: white;
+  padding: 0px;
+  z-index: 100;
+
+  h3 {
+    background-color: #d90019b2;
+    width: 240px;
+    padding: 5px 10px;
+    font-size: 16px;
+  }
+
+  div {
+    background-color: #d9001994;
+    width: 240px;
+    font-size: 12px;
+
+    p {
+      padding: 5px 10px;
+      display: flex;
+      justify-content: space-between;
+    }
+  }
+}
+</style>

+ 112 - 120
src/components/map/index.vue

@@ -1,6 +1,7 @@
 <template>
   <div class="map-container">
     <div id="map" class="map"></div>
+    <!-- 以下为悬浮信息等 -->
     <div v-if="hoverInfo" :style="hoverStyle" class="hover-info">
       <h3>{{ hoverInfo.fieldName }}</h3>
       <div>
@@ -35,8 +36,7 @@
           ><span
             >{{
               hoverInfo.analysisTypeCount ? hoverInfo.analysisTypeCount : 0
-            }}
-            个</span
+            }}个</span
           >
         </p>
         <p>
@@ -85,8 +85,7 @@
           ><span
             >{{
               hoverfengji?.ratedCapacity ? hoverfengji?.ratedCapacity : 0
-            }}
-            /KW</span
+            }}/KW</span
           >
         </p>
         <p>
@@ -119,29 +118,27 @@
         </p>
       </div>
     </div>
+
     <div v-if="hoverta" :style="hovertaStyle" class="hover-ta">
       <h3>{{ hoverta.anemometerName }}</h3>
       <div>
         <p>
           <span>测风塔编号</span><span>{{ hoverta.anemometerCode }}</span>
         </p>
-
         <p>
           <span>经度</span><span>{{ hoverta.longitude }}</span>
         </p>
         <p>
-          <span>度</span><span>{{ hoverta.latitude }}</span>
+          <span>度</span><span>{{ hoverta.latitude }}</span>
         </p>
-        <!-- <p>
-          <span>状态</span><span>{{  }}</span>
-        </p> -->
         <p>
           <span>测风塔高度</span
           ><span>{{ hoverta.anemometerHeightStrings }}/米</span>
         </p>
       </div>
     </div>
-    <!-- 这是测试 -->
+
+    <!-- 异常描述弹窗 -->
     <el-dialog title="异常描述" :visible.sync="dialogVisible" width="50%">
       <el-table :data="tableData" max-height="500" style="width: 100%">
         <el-table-column prop="analysisTypeName" label="类型" width="300">
@@ -161,9 +158,13 @@ import { fromLonLat } from "ol/proj";
 import { Vector } from "ol/source";
 import { Vector as VectorLayer } from "ol/layer";
 import { Point } from "ol/geom";
-import { Icon, Style } from "ol/style";
+import { Icon, Style, Stroke, Fill } from "ol/style";
 import ZoomSlider from "ol/control/ZoomSlider.js";
 import { defaults as defaultControls } from "ol/control.js";
+import GeoJSON from "ol/format/GeoJSON";
+
+// 假设你已经有正确的山西省边界数据文件(GeoJSON 格式)
+import shanxiBoundary from "./shanxi.json";
 
 import icon01 from "../../assets/img/iconFC.png";
 import icon02 from "../../assets/img/iconFC.png";
@@ -179,9 +180,7 @@ export default {
   props: {
     windEngineGroupByFieldCodeDetail: {
       type: Object,
-      default: () => {
-        return {};
-      },
+      default: () => ({}),
     },
   },
   name: "T-map",
@@ -210,33 +209,23 @@ export default {
       newWind: {},
     };
   },
-  watch: {
-    windEngineGroupByFieldCodeDetail: {
-      handler(data) {
-        if (data) {
-        }
-      },
-      deep: true, // 深度监听
-    },
-  },
   mounted() {
     this.map = new Map({
       target: "map",
       view: new View({
         projection: "EPSG:4326",
-        center: fromLonLat([116.389, 39.903]), //地图中心
-        zoom: 3, //默认缩放级别
-        minZoom: 3, //最小缩放级别
-        maxZoom: 15, //最大缩放级别
-        // extent: [ 104.5, 33.5, 121.0, 41.5], //山西
-        extent: [69, 18, 136, 54], //全国
+        center: fromLonLat([116.389, 39.903]),
+        zoom: 3,
+        minZoom: 3,
+        maxZoom: 15,
+        extent: [69, 18, 136, 54],
       }),
       layers: [
         new TileLayer({
           source: new XYZ({
+            url: "http://106.120.102.238:18000/tiles/{z}/{x}/{y}.png", //外网
             // url: "http://127.0.0.1:8010/tiles/{z}/{x}/{y}.png", //本地
-            url: "http://192.168.50.235/tiles/{z}/{x}/{y}.png", //内网
-            // url: "http://106.120.102.238:18000/tiles/{z}/{x}/{y}.png", //外网
+            // url: "http://192.168.50.235/tiles/{z}/{x}/{y}.png", //内网
             // url: "http://10.96.137.5:9080/tiles/{z}/{x}/{y}.png", //大~#@唐
           }),
         }),
@@ -247,21 +236,53 @@ export default {
       ],
       controls: defaultControls().extend([new ZoomSlider()]),
     });
-    // console.log(this.map.getView().calculateExtent());
-    // 不需要定位到某个城市的时候就把这个注释掉
+
+    // -------------【添加山西省真实边界线】-------------
     if (this.$route.path === "/home/cockpitManage") {
-      const targetExtent = [106.8, 34.3, 118.6, 41.2]; // 乌海、乌兰察布、山海关、西安的范围
+      // 通过导入的 JSON 文件加载边界数据(GeoJSON 格式),并解析成矢量要素
+      const shanxiSource = new Vector({
+        features: new GeoJSON().readFeatures(shanxiBoundary, {
+          featureProjection: "EPSG:4326",
+        }),
+      });
+      // 创建矢量图层,仅显示边界线(填充颜色设为透明)
+      const shanxiLayer = new VectorLayer({
+        source: shanxiSource,
+        style: new Style({
+          stroke: new Stroke({
+            color: "rgba(59, 130, 246, 0.5)",
+            width: 3,
+          }),
+          fill: new Fill({
+            color: "rgba(59, 130, 246, 0.05)", // 透明填充
+          }),
+        }),
+      });
+      this.map.addLayer(shanxiLayer);
 
-      this.map.getView().fit(targetExtent, { duration: 2000 }); // 将地图视图缩放到指定范围,持续时间为 1000ms
-    }
+      const markerLayer = this.map
+        .getLayers()
+        .getArray()
+        .find((layer) => {
+          return layer.get("id") === "marker";
+        });
+      if (markerLayer) {
+        markerLayer.setZIndex(10);
+      }
+
+      // 同时设置高亮图层 zIndex 较低
+      shanxiLayer.setZIndex(1);
+      // -------------【结束】-------------
+
+      // if (this.$route.path === "/home/cockpitManage") {
+        const targetExtent = [106.8, 34.3, 118.6, 41.2];
+        this.map.getView().fit(targetExtent, { duration: 2000 });
+      // }
 
-    this.initEvent();
+      this.initEvent();
+    }
   },
   methods: {
-    /**
-     * 地图上打点
-     * @param data
-     */
     addMarker(data = { point: [120.2, 30.35], val: "1" }) {
       const layer = this.map
         .getLayers()
@@ -272,7 +293,7 @@ export default {
       const source = layer.getSource();
 
       const iconSrc = this.getIconForValue(data.val);
-      const scale = data.val === "4" ? [0.5, 0.5] : [0.3, 0.3]; // 如果是 icon04,设置 scale 为 [0.5, 0.5],其他保持 [0.3, 0.3]
+      const scale = data.val === "4" ? [0.5, 0.5] : [0.3, 0.3];
 
       const feature = new Feature({
         geometry: new Point(fromLonLat(data.point, "EPSG:4326")),
@@ -284,7 +305,7 @@ export default {
         new Style({
           image: new Icon({
             src: iconSrc,
-            scale: scale, // 根据条件动态设置 scale
+            scale: scale,
             anchor: [0.5, 1],
             opacity: 1,
           }),
@@ -293,10 +314,6 @@ export default {
 
       source.addFeature(feature);
     },
-    /**
-     * 地图上打点
-     * @param data
-     */
     clearMarkers() {
       const layer = this.map
         .getLayers()
@@ -306,7 +323,7 @@ export default {
         });
       if (layer) {
         const source = layer.getSource();
-        source.clear(); // 清空所有特征
+        source.clear();
       }
     },
     getIconForValue(val) {
@@ -339,106 +356,100 @@ export default {
           return defaultIcon;
       }
     },
-
-    /**
-     * 初始化地图事件
-     */
     initEvent() {
-      let lastHoveredFeature = null; // 用来记录上一次悬停的 feature
+      let lastHoveredFeature = null;
 
-      // 计算悬浮框位置
       function calculateHoverTop(mouseY, hoverHeight) {
-        const windowHeight = window.innerHeight; // 获取窗口高度
-        const offset = 10; // 适当的偏移量
-
-        // 如果鼠标接近底部,向上展示
+        const windowHeight = window.innerHeight;
+        const offset = 10;
         if (mouseY + hoverHeight + offset > windowHeight) {
-          return mouseY - hoverHeight - offset; // 向上调整
+          return mouseY - hoverHeight - offset;
         }
-        // 否则,默认居中
-        return mouseY - hoverHeight / 2; // 使其居中于鼠标位置
+        return mouseY - hoverHeight / 2;
       }
 
       function calculateHoverLeft(mouseX, hoverWidth) {
-        const windowWidth = window.innerWidth; // 获取窗口宽度
-        const offset = 10; // 适当的偏移量
-
-        // 如果鼠标接近右边缘,向左显示
+        const windowWidth = window.innerWidth;
+        const offset = 10;
         if (mouseX + hoverWidth + offset > windowWidth) {
-          return mouseX - hoverWidth - offset; // 向左调整
+          return mouseX - hoverWidth - offset;
         }
-
-        // 如果鼠标接近左边缘,保持适当的右偏移
         if (mouseX - hoverWidth - offset < 0) {
-          return offset; // 距离左边一定的距离
+          return offset;
         }
-
-        return mouseX + offset; // 否则,鼠标右侧
+        return mouseX + offset;
       }
       this.map.on("pointermove", (evt) => {
         const features = this.map.getFeaturesAtPixel(evt.pixel, {
           hitTolerance: 1,
         });
-
         if (features && features.length > 0) {
           const feature = features.at(0);
-          const val = feature.get("data").val;
-
-          // 只有当当前悬停的 feature 和上次的不同,才触发操作
+          const data = feature.get("data");
+          // 如果没有 data 属性,则不处理,但允许事件冒泡
+          if (!data) {
+            return;
+          }
+          const val = data.val;
+          // 如果当前悬停的 feature 与上一次不同,则处理
           if (lastHoveredFeature !== feature) {
-            // 计算悬浮框的位置
-            const hoverHeight = 250; // 假设悬浮框的高度
-            const hoverWidth = 200; // 假设悬浮框的宽度
-            const topPosition = calculateHoverTop(evt.pixel[1], hoverHeight); // 动态计算top值
-            const leftPosition = calculateHoverLeft(evt.pixel[0], hoverWidth); // 动态计算left值
+            const hoverHeight = 250;
+            const hoverWidth = 200;
+            const topPosition = calculateHoverTop(evt.pixel[1], hoverHeight);
+            const leftPosition = calculateHoverLeft(evt.pixel[0], hoverWidth);
 
             if (val == "1" || val == "30" || val == "-1" || val == "10") {
-              this.hoverInfo = feature.get("data");
+              this.hoverInfo = data;
               this.hoverStyle.left = `${leftPosition}px`;
               this.hoverStyle.top = `${topPosition}px`;
               this.getwind();
             } else if (val == "4") {
-              this.hoverfengji = feature.get("data");
+              this.hoverfengji = data;
               this.hoverfengjiStyle.left = `${leftPosition}px`;
               this.hoverfengjiStyle.top = `${topPosition}px`;
-              this.currentFeatureData = feature.get("data");
+              this.currentFeatureData = data;
             } else if (val == "5") {
-              this.hoverta = feature.get("data");
+              this.hoverta = data;
               this.hovertaStyle.left = `${leftPosition}px`;
               this.hovertaStyle.top = `${topPosition}px`;
-              this.currentFeatureData = feature.get("data");
+              this.currentFeatureData = data;
             } else if (val == "6") {
-              this.currentFeatureData = feature.get("data");
+              this.currentFeatureData = data;
             } else {
               this.hoverInfo = null;
-              this.hoverfengji = false;
-              this.hoverta = false;
+              this.hoverfengji = null;
+              this.hoverta = null;
               this.currentFeatureData = null;
             }
-
-            // 更新 lastHoveredFeature
             lastHoveredFeature = feature;
           }
         } else {
+          // 没有特征时,清空所有悬浮信息
           this.hoverInfo = null;
-          this.hoverfengji = false;
-          this.hoverta = false;
+          this.hoverfengji = null;
+          this.hoverta = null;
           this.currentFeatureData = null;
-          lastHoveredFeature = null; // 没有特征时清空记录
+          lastHoveredFeature = null;
         }
       });
 
+      // click 事件处理
       this.map.on("click", (evt) => {
         const features = this.map.getFeaturesAtPixel(evt.pixel, {
           hitTolerance: 1,
         });
         if (features && features.length > 0) {
           const feature = features.at(0);
-          const val = feature.get("data").val;
+          const data = feature.get("data");
+          // 如果没有 data,直接返回,让事件继续冒泡
+          if (!data) {
+            return;
+          }
+          const val = data.val;
           if (val === "6") {
-            this.handleFeatureClick(feature.get("data"));
+            this.handleFeatureClick(data);
           } else {
-            this.$emit("feature-click", feature.get("data"));
+            this.$emit("feature-click", data);
           }
         } else if (
           this.currentFeatureData &&
@@ -448,7 +459,6 @@ export default {
         }
       });
     },
-
     handleFeatureClick(featureData) {
       let dateArr = {
         batchCode: this.$route.query.batchCode,
@@ -459,18 +469,14 @@ export default {
         this.tableData = res.data;
       });
     },
-
     getwind() {
-      console.log(this.hoverInfo, "hoverInfo");
-
       if (this.hoverInfo && this.hoverInfo.batchCode) {
         const param = {
           batchcode: this.hoverInfo.batchCode,
           fieldCode: this.hoverInfo.codeNumber,
-        }; // 确保传递一个对象
+        };
         queryFloatingWindowInfo(param)
           .then((res) => {
-            // 处理响应数据
             this.newWind = res.data;
           })
           .catch((err) => {
@@ -480,11 +486,6 @@ export default {
         console.warn("hoverInfo 或 batchCode 未定义");
       }
     },
-
-    /**
-     * 平移缩放
-     * @param data
-     */
     moveAndZoom(data = { point: [120.2, 30.35], zoom: 15 }) {
       this.map.getView().animate({
         center: fromLonLat(data.point, "EPSG:4326"),
@@ -501,7 +502,7 @@ export default {
   position: relative;
   width: 100%;
   height: 100%;
-  overflow: hidden; /* 禁止滚动条 */
+  overflow: hidden;
 }
 
 .map {
@@ -512,21 +513,18 @@ export default {
 .hover-info {
   position: absolute;
   color: white;
-  padding: 0px;
+  padding: 0;
   z-index: 100;
-
   h3 {
     background-color: #008080cc;
     width: 240px;
     padding: 5px 10px;
     font-size: 16px;
   }
-
   div {
     background-color: #00808097;
     width: 240px;
     font-size: 12px;
-
     p {
       padding: 5px 10px;
       display: flex;
@@ -538,21 +536,18 @@ export default {
 .hover-fengji {
   position: absolute;
   color: white;
-  padding: 0px;
+  padding: 0;
   z-index: 100;
-
   h3 {
     background-color: #027cb4cc;
     width: 240px;
     padding: 5px 10px;
     font-size: 16px;
   }
-
   div {
     background-color: #027cb49e;
     width: 240px;
     font-size: 12px;
-
     p {
       padding: 5px 10px;
       display: flex;
@@ -564,21 +559,18 @@ export default {
 .hover-ta {
   position: absolute;
   color: white;
-  padding: 0px;
+  padding: 0;
   z-index: 100;
-
   h3 {
     background-color: #d90019b2;
     width: 240px;
     padding: 5px 10px;
     font-size: 16px;
   }
-
   div {
     background-color: #d9001994;
     width: 240px;
     font-size: 12px;
-
     p {
       padding: 5px 10px;
       display: flex;

+ 3908 - 0
src/components/map/shanxi.json

@@ -0,0 +1,3908 @@
+{
+    "type": "FeatureCollection",
+    "features": [
+        {
+            "type": "Feature",
+            "properties": {
+                "name": "山西省"
+            },
+            "geometry": {
+                "type": "Polygon",
+                "coordinates": [
+                    
+                        [
+                            [
+                                113.93503,
+                                39.08936
+                            ],
+                            [
+                                113.91418,
+                                39.06201
+                            ],
+                            [
+                                113.89129,
+                                39.06639
+                            ],
+                            [
+                                113.87588,
+                                39.06320
+                            ],
+                            [
+                                113.86564,
+                                39.04384
+                            ],
+                            [
+                                113.81344,
+                                39.01194
+                            ],
+                            [
+                                113.80307,
+                                38.99081
+                            ],
+                            [
+                                113.76834,
+                                38.99186
+                            ],
+                            [
+                                113.76399,
+                                38.97977
+                            ],
+                            [
+                                113.76090,
+                                38.95922
+                            ],
+                            [
+                                113.76810,
+                                38.93366
+                            ],
+                            [
+                                113.76600,
+                                38.91130
+                            ],
+                            [
+                                113.77027,
+                                38.88508
+                            ],
+                            [
+                                113.78528,
+                                38.87028
+                            ],
+                            [
+                                113.79518,
+                                38.85216
+                            ],
+                            [
+                                113.83072,
+                                38.83993
+                            ],
+                            [
+                                113.84506,
+                                38.81627
+                            ],
+                            [
+                                113.81992,
+                                38.79225
+                            ],
+                            [
+                                113.82387,
+                                38.77967
+                            ],
+                            [
+                                113.82059,
+                                38.75949
+                            ],
+                            [
+                                113.78969,
+                                38.76187
+                            ],
+                            [
+                                113.77569,
+                                38.74049
+                            ],
+                            [
+                                113.76519,
+                                38.72835
+                            ],
+                            [
+                                113.76258,
+                                38.70554
+                            ],
+                            [
+                                113.72067,
+                                38.71498
+                            ],
+                            [
+                                113.70476,
+                                38.71496
+                            ],
+                            [
+                                113.70659,
+                                38.67924
+                            ],
+                            [
+                                113.69381,
+                                38.65241
+                            ],
+                            [
+                                113.66924,
+                                38.64573
+                            ],
+                            [
+                                113.64742,
+                                38.64750
+                            ],
+                            [
+                                113.62545,
+                                38.65382
+                            ],
+                            [
+                                113.60719,
+                                38.63970
+                            ],
+                            [
+                                113.59450,
+                                38.60899
+                            ],
+                            [
+                                113.59832,
+                                38.59286
+                            ],
+                            [
+                                113.58356,
+                                38.57996
+                            ],
+                            [
+                                113.57032,
+                                38.57495
+                            ],
+                            [
+                                113.54969,
+                                38.55957
+                            ],
+                            [
+                                113.54762,
+                                38.50302
+                            ],
+                            [
+                                113.55266,
+                                38.48089
+                            ],
+                            [
+                                113.56608,
+                                38.47565
+                            ],
+                            [
+                                113.58403,
+                                38.46153
+                            ],
+                            [
+                                113.57036,
+                                38.45622
+                            ],
+                            [
+                                113.55812,
+                                38.43459
+                            ],
+                            [
+                                113.53682,
+                                38.42501
+                            ],
+                            [
+                                113.52589,
+                                38.41786
+                            ],
+                            [
+                                113.53127,
+                                38.37778
+                            ],
+                            [
+                                113.54584,
+                                38.34712
+                            ],
+                            [
+                                113.54498,
+                                38.32951
+                            ],
+                            [
+                                113.53468,
+                                38.31158
+                            ],
+                            [
+                                113.53420,
+                                38.29069
+                            ],
+                            [
+                                113.53625,
+                                38.27240
+                            ],
+                            [
+                                113.55505,
+                                38.25004
+                            ],
+                            [
+                                113.57089,
+                                38.24090
+                            ],
+                            [
+                                113.63706,
+                                38.24225
+                            ],
+                            [
+                                113.66887,
+                                38.21346
+                            ],
+                            [
+                                113.68658,
+                                38.21062
+                            ],
+                            [
+                                113.70180,
+                                38.21530
+                            ],
+                            [
+                                113.71524,
+                                38.21094
+                            ],
+                            [
+                                113.73310,
+                                38.19666
+                            ],
+                            [
+                                113.75000,
+                                38.17028
+                            ],
+                            [
+                                113.78455,
+                                38.15563
+                            ],
+                            [
+                                113.80591,
+                                38.16634
+                            ],
+                            [
+                                113.82113,
+                                38.16836
+                            ],
+                            [
+                                113.81962,
+                                38.15497
+                            ],
+                            [
+                                113.80589,
+                                38.11952
+                            ],
+                            [
+                                113.81647,
+                                38.10609
+                            ],
+                            [
+                                113.83296,
+                                38.09107
+                            ],
+                            [
+                                113.84541,
+                                38.08334
+                            ],
+                            [
+                                113.85073,
+                                38.06316
+                            ],
+                            [
+                                113.87310,
+                                38.05305
+                            ],
+                            [
+                                113.86509,
+                                38.00405
+                            ],
+                            [
+                                113.87031,
+                                37.98947
+                            ],
+                            [
+                                113.89233,
+                                37.98117
+                            ],
+                            [
+                                113.89827,
+                                37.96792
+                            ],
+                            [
+                                113.90973,
+                                37.95811
+                            ],
+                            [
+                                113.91924,
+                                37.92971
+                            ],
+                            [
+                                113.94060,
+                                37.91683
+                            ],
+                            [
+                                113.96652,
+                                37.87629
+                            ],
+                            [
+                                113.95668,
+                                37.83043
+                            ],
+                            [
+                                113.97279,
+                                37.81516
+                            ],
+                            [
+                                113.99609,
+                                37.81523
+                            ],
+                            [
+                                114.00387,
+                                37.80349
+                            ],
+                            [
+                                114.03645,
+                                37.78240
+                            ],
+                            [
+                                114.03200,
+                                37.75030
+                            ],
+                            [
+                                114.01999,
+                                37.74636
+                            ],
+                            [
+                                113.99267,
+                                37.74191
+                            ],
+                            [
+                                113.99082,
+                                37.72886
+                            ],
+                            [
+                                113.99929,
+                                37.71367
+                            ],
+                            [
+                                114.01836,
+                                37.71509
+                            ],
+                            [
+                                114.03174,
+                                37.72644
+                            ],
+                            [
+                                114.05649,
+                                37.72298
+                            ],
+                            [
+                                114.09043,
+                                37.71424
+                            ],
+                            [
+                                114.12789,
+                                37.69294
+                            ],
+                            [
+                                114.12738,
+                                37.66066
+                            ],
+                            [
+                                114.13344,
+                                37.64598
+                            ],
+                            [
+                                114.12097,
+                                37.64082
+                            ],
+                            [
+                                114.10879,
+                                37.63014
+                            ],
+                            [
+                                114.10447,
+                                37.61718
+                            ],
+                            [
+                                114.12091,
+                                37.60398
+                            ],
+                            [
+                                114.11409,
+                                37.59062
+                            ],
+                            [
+                                114.10400,
+                                37.58095
+                            ],
+                            [
+                                114.09675,
+                                37.57062
+                            ],
+                            [
+                                114.08561,
+                                37.54871
+                            ],
+                            [
+                                114.07537,
+                                37.54099
+                            ],
+                            [
+                                114.06776,
+                                37.52098
+                            ],
+                            [
+                                114.05109,
+                                37.50940
+                            ],
+                            [
+                                114.02802,
+                                37.48136
+                            ],
+                            [
+                                114.02723,
+                                37.46276
+                            ],
+                            [
+                                114.02366,
+                                37.44599
+                            ],
+                            [
+                                114.01188,
+                                37.43344
+                            ],
+                            [
+                                113.96887,
+                                37.40826
+                            ],
+                            [
+                                113.94680,
+                                37.37637
+                            ],
+                            [
+                                113.94857,
+                                37.35335
+                            ],
+                            [
+                                113.92177,
+                                37.33641
+                            ],
+                            [
+                                113.89149,
+                                37.31350
+                            ],
+                            [
+                                113.89129,
+                                37.30001
+                            ],
+                            [
+                                113.88872,
+                                37.28741
+                            ],
+                            [
+                                113.87886,
+                                37.27200
+                            ],
+                            [
+                                113.87416,
+                                37.25844
+                            ],
+                            [
+                                113.87058,
+                                37.23714
+                            ],
+                            [
+                                113.86153,
+                                37.22505
+                            ],
+                            [
+                                113.83121,
+                                37.19401
+                            ],
+                            [
+                                113.81927,
+                                37.17190
+                            ],
+                            [
+                                113.80018,
+                                37.16385
+                            ],
+                            [
+                                113.77445,
+                                37.15609
+                            ],
+                            [
+                                113.75553,
+                                37.09540
+                            ],
+                            [
+                                113.75275,
+                                37.07331
+                            ],
+                            [
+                                113.76110,
+                                37.06294
+                            ],
+                            [
+                                113.78270,
+                                37.05346
+                            ],
+                            [
+                                113.77390,
+                                37.03192
+                            ],
+                            [
+                                113.76077,
+                                37.01305
+                            ],
+                            [
+                                113.77817,
+                                37.00022
+                            ],
+                            [
+                                113.79146,
+                                36.99628
+                            ],
+                            [
+                                113.76945,
+                                36.98360
+                            ],
+                            [
+                                113.76207,
+                                36.96462
+                            ],
+                            [
+                                113.75278,
+                                36.95600
+                            ],
+                            [
+                                113.75605,
+                                36.94122
+                            ],
+                            [
+                                113.78256,
+                                36.89750
+                            ],
+                            [
+                                113.78135,
+                                36.87522
+                            ],
+                            [
+                                113.75086,
+                                36.85141
+                            ],
+                            [
+                                113.73437,
+                                36.85075
+                            ],
+                            [
+                                113.71846,
+                                36.88324
+                            ],
+                            [
+                                113.70560,
+                                36.88615
+                            ],
+                            [
+                                113.68459,
+                                36.88049
+                            ],
+                            [
+                                113.66769,
+                                36.84679
+                            ],
+                            [
+                                113.66428,
+                                36.83003
+                            ],
+                            [
+                                113.66226,
+                                36.81629
+                            ],
+                            [
+                                113.66933,
+                                36.79974
+                            ],
+                            [
+                                113.63748,
+                                36.79159
+                            ],
+                            [
+                                113.61819,
+                                36.77432
+                            ],
+                            [
+                                113.60765,
+                                36.75948
+                            ],
+                            [
+                                113.58094,
+                                36.75426
+                            ],
+                            [
+                                113.56101,
+                                36.76117
+                            ],
+                            [
+                                113.54796,
+                                36.75412
+                            ],
+                            [
+                                113.52862,
+                                36.73465
+                            ],
+                            [
+                                113.49251,
+                                36.73933
+                            ],
+                            [
+                                113.47018,
+                                36.73010
+                            ],
+                            [
+                                113.45910,
+                                36.71456
+                            ],
+                            [
+                                113.47551,
+                                36.70524
+                            ],
+                            [
+                                113.50606,
+                                36.70112
+                            ],
+                            [
+                                113.47141,
+                                36.66008
+                            ],
+                            [
+                                113.47165,
+                                36.63891
+                            ],
+                            [
+                                113.52978,
+                                36.62367
+                            ],
+                            [
+                                113.54344,
+                                36.61814
+                            ],
+                            [
+                                113.53544,
+                                36.59256
+                            ],
+                            [
+                                113.55748,
+                                36.57734
+                            ],
+                            [
+                                113.58214,
+                                36.55054
+                            ],
+                            [
+                                113.57086,
+                                36.54108
+                            ],
+                            [
+                                113.55654,
+                                36.54308
+                            ],
+                            [
+                                113.55208,
+                                36.51663
+                            ],
+                            [
+                                113.53687,
+                                36.48712
+                            ],
+                            [
+                                113.55100,
+                                36.49290
+                            ],
+                            [
+                                113.57203,
+                                36.48437
+                            ],
+                            [
+                                113.57623,
+                                36.46291
+                            ],
+                            [
+                                113.58750,
+                                36.45697
+                            ],
+                            [
+                                113.60223,
+                                36.45959
+                            ],
+                            [
+                                113.62122,
+                                36.45806
+                            ],
+                            [
+                                113.63821,
+                                36.44400
+                            ],
+                            [
+                                113.64376,
+                                36.43034
+                            ],
+                            [
+                                113.65758,
+                                36.42937
+                            ],
+                            [
+                                113.67507,
+                                36.42218
+                            ],
+                            [
+                                113.69419,
+                                36.42726
+                            ],
+                            [
+                                113.70386,
+                                36.40670
+                            ],
+                            [
+                                113.72117,
+                                36.37925
+                            ],
+                            [
+                                113.73125,
+                                36.37012
+                            ],
+                            [
+                                113.72997,
+                                36.35583
+                            ],
+                            [
+                                113.72529,
+                                36.34163
+                            ],
+                            [
+                                113.72883,
+                                36.32694
+                            ],
+                            [
+                                113.72245,
+                                36.31202
+                            ],
+                            [
+                                113.70203,
+                                36.30047
+                            ],
+                            [
+                                113.70607,
+                                36.27618
+                            ],
+                            [
+                                113.69629,
+                                36.26662
+                            ],
+                            [
+                                113.69313,
+                                36.23599
+                            ],
+                            [
+                                113.67477,
+                                36.21783
+                            ],
+                            [
+                                113.69518,
+                                36.20898
+                            ],
+                            [
+                                113.68998,
+                                36.18645
+                            ],
+                            [
+                                113.66692,
+                                36.17630
+                            ],
+                            [
+                                113.65394,
+                                36.17349
+                            ],
+                            [
+                                113.66927,
+                                36.16145
+                            ],
+                            [
+                                113.67788,
+                                36.15125
+                            ],
+                            [
+                                113.69151,
+                                36.14959
+                            ],
+                            [
+                                113.70133,
+                                36.13060
+                            ],
+                            [
+                                113.68218,
+                                36.12495
+                            ],
+                            [
+                                113.65547,
+                                36.13000
+                            ],
+                            [
+                                113.66741,
+                                36.10883
+                            ],
+                            [
+                                113.66976,
+                                36.08626
+                            ],
+                            [
+                                113.67811,
+                                36.07189
+                            ],
+                            [
+                                113.67265,
+                                36.05427
+                            ],
+                            [
+                                113.65909,
+                                36.04906
+                            ],
+                            [
+                                113.65605,
+                                36.02729
+                            ],
+                            [
+                                113.68096,
+                                36.02505
+                            ],
+                            [
+                                113.68360,
+                                36.01136
+                            ],
+                            [
+                                113.69704,
+                                35.99089
+                            ],
+                            [
+                                113.67615,
+                                35.98713
+                            ],
+                            [
+                                113.65641,
+                                35.98825
+                            ],
+                            [
+                                113.63172,
+                                35.98645
+                            ],
+                            [
+                                113.64047,
+                                35.96876
+                            ],
+                            [
+                                113.64953,
+                                35.94345
+                            ],
+                            [
+                                113.64394,
+                                35.92912
+                            ],
+                            [
+                                113.64088,
+                                35.88622
+                            ],
+                            [
+                                113.62665,
+                                35.86975
+                            ],
+                            [
+                                113.63555,
+                                35.85617
+                            ],
+                            [
+                                113.65015,
+                                35.85408
+                            ],
+                            [
+                                113.64730,
+                                35.82791
+                            ],
+                            [
+                                113.61497,
+                                35.83415
+                            ],
+                            [
+                                113.60338,
+                                35.82669
+                            ],
+                            [
+                                113.56912,
+                                35.81975
+                            ],
+                            [
+                                113.59135,
+                                35.80265
+                            ],
+                            [
+                                113.57913,
+                                35.79342
+                            ],
+                            [
+                                113.59523,
+                                35.77330
+                            ],
+                            [
+                                113.57920,
+                                35.74500
+                            ],
+                            [
+                                113.60268,
+                                35.69301
+                            ],
+                            [
+                                113.60442,
+                                35.67865
+                            ],
+                            [
+                                113.61573,
+                                35.65832
+                            ],
+                            [
+                                113.61683,
+                                35.63182
+                            ],
+                            [
+                                113.58016,
+                                35.63252
+                            ],
+                            [
+                                113.55281,
+                                35.66000
+                            ],
+                            [
+                                113.54050,
+                                35.65329
+                            ],
+                            [
+                                113.54967,
+                                35.62427
+                            ],
+                            [
+                                113.54000,
+                                35.61553
+                            ],
+                            [
+                                113.52826,
+                                35.59423
+                            ],
+                            [
+                                113.51147,
+                                35.58417
+                            ],
+                            [
+                                113.49776,
+                                35.56873
+                            ],
+                            [
+                                113.49731,
+                                35.55350
+                            ],
+                            [
+                                113.48701,
+                                35.53612
+                            ],
+                            [
+                                113.46157,
+                                35.51604
+                            ],
+                            [
+                                113.44299,
+                                35.51210
+                            ],
+                            [
+                                113.40961,
+                                35.51541
+                            ],
+                            [
+                                113.39598,
+                                35.50778
+                            ],
+                            [
+                                113.38209,
+                                35.50586
+                            ],
+                            [
+                                113.36508,
+                                35.48215
+                            ],
+                            [
+                                113.35167,
+                                35.47963
+                            ],
+                            [
+                                113.33016,
+                                35.47232
+                            ],
+                            [
+                                113.31354,
+                                35.47103
+                            ],
+                            [
+                                113.29255,
+                                35.45074
+                            ],
+                            [
+                                113.29364,
+                                35.43531
+                            ],
+                            [
+                                113.27874,
+                                35.43295
+                            ],
+                            [
+                                113.25666,
+                                35.43622
+                            ],
+                            [
+                                113.23937,
+                                35.44645
+                            ],
+                            [
+                                113.22505,
+                                35.46918
+                            ],
+                            [
+                                113.20886,
+                                35.47092
+                            ],
+                            [
+                                113.18545,
+                                35.44543
+                            ],
+                            [
+                                113.17803,
+                                35.42475
+                            ],
+                            [
+                                113.16121,
+                                35.41379
+                            ],
+                            [
+                                113.13838,
+                                35.36784
+                            ],
+                            [
+                                113.13231,
+                                35.34876
+                            ],
+                            [
+                                113.11540,
+                                35.33222
+                            ],
+                            [
+                                113.10270,
+                                35.33960
+                            ],
+                            [
+                                113.08746,
+                                35.33778
+                            ],
+                            [
+                                113.07486,
+                                35.34132
+                            ],
+                            [
+                                113.05880,
+                                35.35374
+                            ],
+                            [
+                                113.03080,
+                                35.36057
+                            ],
+                            [
+                                113.00931,
+                                35.35510
+                            ],
+                            [
+                                112.99259,
+                                35.35698
+                            ],
+                            [
+                                112.97873,
+                                35.32967
+                            ],
+                            [
+                                112.98477,
+                                35.31137
+                            ],
+                            [
+                                112.98131,
+                                35.29048
+                            ],
+                            [
+                                112.95364,
+                                35.29226
+                            ],
+                            [
+                                112.92738,
+                                35.27761
+                            ],
+                            [
+                                112.91664,
+                                35.25254
+                            ],
+                            [
+                                112.86976,
+                                35.24422
+                            ],
+                            [
+                                112.83403,
+                                35.25599
+                            ],
+                            [
+                                112.80842,
+                                35.25784
+                            ],
+                            [
+                                112.77698,
+                                35.23336
+                            ],
+                            [
+                                112.77342,
+                                35.21980
+                            ],
+                            [
+                                112.75978,
+                                35.20446
+                            ],
+                            [
+                                112.73966,
+                                35.20481
+                            ],
+                            [
+                                112.70253,
+                                35.21228
+                            ],
+                            [
+                                112.68687,
+                                35.21772
+                            ],
+                            [
+                                112.65348,
+                                35.24384
+                            ],
+                            [
+                                112.64605,
+                                35.25754
+                            ],
+                            [
+                                112.62943,
+                                35.25196
+                            ],
+                            [
+                                112.61640,
+                                35.25817
+                            ],
+                            [
+                                112.61030,
+                                35.24641
+                            ],
+                            [
+                                112.62831,
+                                35.23780
+                            ],
+                            [
+                                112.61210,
+                                35.22076
+                            ],
+                            [
+                                112.58663,
+                                35.22313
+                            ],
+                            [
+                                112.56129,
+                                35.21510
+                            ],
+                            [
+                                112.53209,
+                                35.22353
+                            ],
+                            [
+                                112.50899,
+                                35.21899
+                            ],
+                            [
+                                112.48773,
+                                35.22720
+                            ],
+                            [
+                                112.47429,
+                                35.22535
+                            ],
+                            [
+                                112.45066,
+                                35.22804
+                            ],
+                            [
+                                112.40038,
+                                35.24164
+                            ],
+                            [
+                                112.38755,
+                                35.24108
+                            ],
+                            [
+                                112.37447,
+                                35.22786
+                            ],
+                            [
+                                112.36173,
+                                35.22080
+                            ],
+                            [
+                                112.32509,
+                                35.22063
+                            ],
+                            [
+                                112.28557,
+                                35.21757
+                            ],
+                            [
+                                112.28799,
+                                35.23256
+                            ],
+                            [
+                                112.29464,
+                                35.24420
+                            ],
+                            [
+                                112.27685,
+                                35.24409
+                            ],
+                            [
+                                112.25921,
+                                35.24153
+                            ],
+                            [
+                                112.24508,
+                                35.24317
+                            ],
+                            [
+                                112.23143,
+                                35.23580
+                            ],
+                            [
+                                112.21122,
+                                35.23889
+                            ],
+                            [
+                                112.16799,
+                                35.26369
+                            ],
+                            [
+                                112.13172,
+                                35.27092
+                            ],
+                            [
+                                112.10896,
+                                35.26602
+                            ],
+                            [
+                                112.08508,
+                                35.27940
+                            ],
+                            [
+                                112.06138,
+                                35.27750
+                            ],
+                            [
+                                112.07106,
+                                35.24278
+                            ],
+                            [
+                                112.07190,
+                                35.22905
+                            ],
+                            [
+                                112.05718,
+                                35.21255
+                            ],
+                            [
+                                112.04537,
+                                35.20288
+                            ],
+                            [
+                                112.03698,
+                                35.18976
+                            ],
+                            [
+                                112.05414,
+                                35.16241
+                            ],
+                            [
+                                112.05447,
+                                35.11797
+                            ],
+                            [
+                                112.04785,
+                                35.09498
+                            ],
+                            [
+                                112.05531,
+                                35.07641
+                            ],
+                            [
+                                112.05445,
+                                35.05819
+                            ],
+                            [
+                                112.03549,
+                                35.04674
+                            ],
+                            [
+                                112.02572,
+                                35.05481
+                            ],
+                            [
+                                112.01407,
+                                35.06842
+                            ],
+                            [
+                                111.97560,
+                                35.06891
+                            ],
+                            [
+                                111.95754,
+                                35.07521
+                            ],
+                            [
+                                111.94008,
+                                35.08406
+                            ],
+                            [
+                                111.92554,
+                                35.08407
+                            ],
+                            [
+                                111.90558,
+                                35.07194
+                            ],
+                            [
+                                111.89414,
+                                35.07725
+                            ],
+                            [
+                                111.88080,
+                                35.07161
+                            ],
+                            [
+                                111.85797,
+                                35.07532
+                            ],
+                            [
+                                111.81634,
+                                35.06849
+                            ],
+                            [
+                                111.80486,
+                                35.06211
+                            ],
+                            [
+                                111.80247,
+                                35.03902
+                            ],
+                            [
+                                111.79129,
+                                35.02855
+                            ],
+                            [
+                                111.77760,
+                                35.02972
+                            ],
+                            [
+                                111.75729,
+                                35.01601
+                            ],
+                            [
+                                111.65759,
+                                34.98618
+                            ],
+                            [
+                                111.66832,
+                                34.96891
+                            ],
+                            [
+                                111.67274,
+                                34.95341
+                            ],
+                            [
+                                111.66299,
+                                34.94344
+                            ],
+                            [
+                                111.63883,
+                                34.93904
+                            ],
+                            [
+                                111.62500,
+                                34.92667
+                            ],
+                            [
+                                111.60311,
+                                34.89301
+                            ],
+                            [
+                                111.58435,
+                                34.87906
+                            ],
+                            [
+                                111.58190,
+                                34.86192
+                            ],
+                            [
+                                111.56953,
+                                34.84755
+                            ],
+                            [
+                                111.53074,
+                                34.85065
+                            ],
+                            [
+                                111.51814,
+                                34.84789
+                            ],
+                            [
+                                111.49026,
+                                34.82887
+                            ],
+                            [
+                                111.47247,
+                                34.82618
+                            ],
+                            [
+                                111.45926,
+                                34.82683
+                            ],
+                            [
+                                111.43171,
+                                34.83848
+                            ],
+                            [
+                                111.40431,
+                                34.82639
+                            ],
+                            [
+                                111.39401,
+                                34.81796
+                            ],
+                            [
+                                111.38080,
+                                34.81636
+                            ],
+                            [
+                                111.35351,
+                                34.82159
+                            ],
+                            [
+                                111.33230,
+                                34.83166
+                            ],
+                            [
+                                111.31969,
+                                34.82258
+                            ],
+                            [
+                                111.29944,
+                                34.81658
+                            ],
+                            [
+                                111.28324,
+                                34.80647
+                            ],
+                            [
+                                111.25826,
+                                34.81946
+                            ],
+                            [
+                                111.23373,
+                                34.79568
+                            ],
+                            [
+                                111.21850,
+                                34.79103
+                            ],
+                            [
+                                111.19726,
+                                34.80322
+                            ],
+                            [
+                                111.17338,
+                                34.80372
+                            ],
+                            [
+                                111.16236,
+                                34.81256
+                            ],
+                            [
+                                111.14921,
+                                34.81238
+                            ],
+                            [
+                                111.13466,
+                                34.79623
+                            ],
+                            [
+                                111.11477,
+                                34.75919
+                            ],
+                            [
+                                111.08284,
+                                34.75107
+                            ],
+                            [
+                                111.04686,
+                                34.74605
+                            ],
+                            [
+                                111.02901,
+                                34.74035
+                            ],
+                            [
+                                111.00306,
+                                34.72796
+                            ],
+                            [
+                                110.98665,
+                                34.71671
+                            ],
+                            [
+                                110.96202,
+                                34.70397
+                            ],
+                            [
+                                110.94655,
+                                34.72108
+                            ],
+                            [
+                                110.92994,
+                                34.73101
+                            ],
+                            [
+                                110.90746,
+                                34.68759
+                            ],
+                            [
+                                110.87867,
+                                34.64694
+                            ],
+                            [
+                                110.85605,
+                                34.63804
+                            ],
+                            [
+                                110.84094,
+                                34.63656
+                            ],
+                            [
+                                110.81475,
+                                34.63794
+                            ],
+                            [
+                                110.78524,
+                                34.64992
+                            ],
+                            [
+                                110.76333,
+                                34.65363
+                            ],
+                            [
+                                110.75000,
+                                34.65091
+                            ],
+                            [
+                                110.73712,
+                                34.64426
+                            ],
+                            [
+                                110.72839,
+                                34.63377
+                            ],
+                            [
+                                110.71546,
+                                34.62334
+                            ],
+                            [
+                                110.70331,
+                                34.60698
+                            ],
+                            [
+                                110.65201,
+                                34.60980
+                            ],
+                            [
+                                110.59852,
+                                34.60778
+                            ],
+                            [
+                                110.54006,
+                                34.58407
+                            ],
+                            [
+                                110.52719,
+                                34.58430
+                            ],
+                            [
+                                110.50994,
+                                34.59216
+                            ],
+                            [
+                                110.50001,
+                                34.60185
+                            ],
+                            [
+                                110.48772,
+                                34.60905
+                            ],
+                            [
+                                110.46136,
+                                34.61987
+                            ],
+                            [
+                                110.44798,
+                                34.61826
+                            ],
+                            [
+                                110.42646,
+                                34.59311
+                            ],
+                            [
+                                110.40637,
+                                34.58828
+                            ],
+                            [
+                                110.36697,
+                                34.60359
+                            ],
+                            [
+                                110.29332,
+                                34.61133
+                            ],
+                            [
+                                110.27961,
+                                34.61524
+                            ],
+                            [
+                                110.26489,
+                                34.62645
+                            ],
+                            [
+                                110.25270,
+                                34.64726
+                            ],
+                            [
+                                110.25101,
+                                34.67607
+                            ],
+                            [
+                                110.24139,
+                                34.69235
+                            ],
+                            [
+                                110.23987,
+                                34.70837
+                            ],
+                            [
+                                110.24688,
+                                34.72882
+                            ],
+                            [
+                                110.25934,
+                                34.73949
+                            ],
+                            [
+                                110.26041,
+                                34.75447
+                            ],
+                            [
+                                110.25310,
+                                34.77034
+                            ],
+                            [
+                                110.24246,
+                                34.78155
+                            ],
+                            [
+                                110.23096,
+                                34.78725
+                            ],
+                            [
+                                110.22374,
+                                34.79847
+                            ],
+                            [
+                                110.23338,
+                                34.82343
+                            ],
+                            [
+                                110.23694,
+                                34.83946
+                            ],
+                            [
+                                110.24221,
+                                34.85107
+                            ],
+                            [
+                                110.25744,
+                                34.86848
+                            ],
+                            [
+                                110.30800,
+                                34.95164
+                            ],
+                            [
+                                110.31224,
+                                34.96542
+                            ],
+                            [
+                                110.30741,
+                                34.97984
+                            ],
+                            [
+                                110.30967,
+                                34.99673
+                            ],
+                            [
+                                110.32378,
+                                35.03542
+                            ],
+                            [
+                                110.33513,
+                                35.08209
+                            ],
+                            [
+                                110.34470,
+                                35.09733
+                            ],
+                            [
+                                110.35645,
+                                35.12340
+                            ],
+                            [
+                                110.35990,
+                                35.14260
+                            ],
+                            [
+                                110.36989,
+                                35.15193
+                            ],
+                            [
+                                110.38350,
+                                35.20096
+                            ],
+                            [
+                                110.38702,
+                                35.22859
+                            ],
+                            [
+                                110.40368,
+                                35.26184
+                            ],
+                            [
+                                110.41828,
+                                35.27328
+                            ],
+                            [
+                                110.44367,
+                                35.30632
+                            ],
+                            [
+                                110.45602,
+                                35.31795
+                            ],
+                            [
+                                110.47017,
+                                35.35990
+                            ],
+                            [
+                                110.48763,
+                                35.39050
+                            ],
+                            [
+                                110.49669,
+                                35.40115
+                            ],
+                            [
+                                110.53109,
+                                35.42686
+                            ],
+                            [
+                                110.54038,
+                                35.43713
+                            ],
+                            [
+                                110.55223,
+                                35.47328
+                            ],
+                            [
+                                110.55519,
+                                35.48966
+                            ],
+                            [
+                                110.57113,
+                                35.53590
+                            ],
+                            [
+                                110.58341,
+                                35.55280
+                            ],
+                            [
+                                110.59120,
+                                35.56792
+                            ],
+                            [
+                                110.59531,
+                                35.59861
+                            ],
+                            [
+                                110.60969,
+                                35.61630
+                            ],
+                            [
+                                110.62187,
+                                35.62720
+                            ],
+                            [
+                                110.59178,
+                                35.66132
+                            ],
+                            [
+                                110.58339,
+                                35.68847
+                            ],
+                            [
+                                110.57300,
+                                35.70830
+                            ],
+                            [
+                                110.57530,
+                                35.72303
+                            ],
+                            [
+                                110.57023,
+                                35.76356
+                            ],
+                            [
+                                110.55813,
+                                35.78490
+                            ],
+                            [
+                                110.56531,
+                                35.80242
+                            ],
+                            [
+                                110.55557,
+                                35.82850
+                            ],
+                            [
+                                110.54484,
+                                35.84994
+                            ],
+                            [
+                                110.54695,
+                                35.87038
+                            ],
+                            [
+                                110.53651,
+                                35.87887
+                            ],
+                            [
+                                110.50910,
+                                35.88671
+                            ],
+                            [
+                                110.50920,
+                                35.90724
+                            ],
+                            [
+                                110.51163,
+                                35.92310
+                            ],
+                            [
+                                110.50328,
+                                35.93289
+                            ],
+                            [
+                                110.49777,
+                                35.94458
+                            ],
+                            [
+                                110.51082,
+                                35.96145
+                            ],
+                            [
+                                110.50362,
+                                35.97758
+                            ],
+                            [
+                                110.49084,
+                                35.98594
+                            ],
+                            [
+                                110.49252,
+                                36.00772
+                            ],
+                            [
+                                110.48690,
+                                36.02010
+                            ],
+                            [
+                                110.48514,
+                                36.03556
+                            ],
+                            [
+                                110.47148,
+                                36.05998
+                            ],
+                            [
+                                110.46303,
+                                36.07134
+                            ],
+                            [
+                                110.46323,
+                                36.09638
+                            ],
+                            [
+                                110.44651,
+                                36.12604
+                            ],
+                            [
+                                110.44112,
+                                36.16545
+                            ],
+                            [
+                                110.45360,
+                                36.19834
+                            ],
+                            [
+                                110.44737,
+                                36.21850
+                            ],
+                            [
+                                110.46748,
+                                36.24553
+                            ],
+                            [
+                                110.46873,
+                                36.26830
+                            ],
+                            [
+                                110.46273,
+                                36.28826
+                            ],
+                            [
+                                110.46743,
+                                36.31041
+                            ],
+                            [
+                                110.45599,
+                                36.32220
+                            ],
+                            [
+                                110.45754,
+                                36.34231
+                            ],
+                            [
+                                110.46328,
+                                36.36657
+                            ],
+                            [
+                                110.47687,
+                                36.38475
+                            ],
+                            [
+                                110.48654,
+                                36.42087
+                            ],
+                            [
+                                110.46763,
+                                36.44700
+                            ],
+                            [
+                                110.47152,
+                                36.45971
+                            ],
+                            [
+                                110.49087,
+                                36.47291
+                            ],
+                            [
+                                110.49882,
+                                36.49590
+                            ],
+                            [
+                                110.49581,
+                                36.53197
+                            ],
+                            [
+                                110.48466,
+                                36.54729
+                            ],
+                            [
+                                110.49027,
+                                36.58239
+                            ],
+                            [
+                                110.46494,
+                                36.59615
+                            ],
+                            [
+                                110.44961,
+                                36.61022
+                            ],
+                            [
+                                110.44033,
+                                36.62007
+                            ],
+                            [
+                                110.42808,
+                                36.64547
+                            ],
+                            [
+                                110.41848,
+                                36.65802
+                            ],
+                            [
+                                110.40829,
+                                36.66568
+                            ],
+                            [
+                                110.38686,
+                                36.67713
+                            ],
+                            [
+                                110.39290,
+                                36.69613
+                            ],
+                            [
+                                110.41067,
+                                36.68914
+                            ],
+                            [
+                                110.42692,
+                                36.67954
+                            ],
+                            [
+                                110.42713,
+                                36.70003
+                            ],
+                            [
+                                110.44538,
+                                36.72586
+                            ],
+                            [
+                                110.42806,
+                                36.73258
+                            ],
+                            [
+                                110.42416,
+                                36.75202
+                            ],
+                            [
+                                110.41363,
+                                36.75940
+                            ],
+                            [
+                                110.38527,
+                                36.76352
+                            ],
+                            [
+                                110.40832,
+                                36.78700
+                            ],
+                            [
+                                110.41611,
+                                36.80625
+                            ],
+                            [
+                                110.41115,
+                                36.82077
+                            ],
+                            [
+                                110.41808,
+                                36.84612
+                            ],
+                            [
+                                110.40625,
+                                36.86421
+                            ],
+                            [
+                                110.39042,
+                                36.86773
+                            ],
+                            [
+                                110.36834,
+                                36.87621
+                            ],
+                            [
+                                110.40372,
+                                36.89735
+                            ],
+                            [
+                                110.40500,
+                                36.92034
+                            ],
+                            [
+                                110.41794,
+                                36.95798
+                            ],
+                            [
+                                110.40486,
+                                36.98360
+                            ],
+                            [
+                                110.39288,
+                                36.99205
+                            ],
+                            [
+                                110.38094,
+                                36.99627
+                            ],
+                            [
+                                110.37160,
+                                37.00820
+                            ],
+                            [
+                                110.38681,
+                                37.02200
+                            ],
+                            [
+                                110.40036,
+                                37.02049
+                            ],
+                            [
+                                110.41288,
+                                37.01206
+                            ],
+                            [
+                                110.42641,
+                                37.00579
+                            ],
+                            [
+                                110.44475,
+                                37.01259
+                            ],
+                            [
+                                110.41081,
+                                37.02911
+                            ],
+                            [
+                                110.43048,
+                                37.04091
+                            ],
+                            [
+                                110.44568,
+                                37.04060
+                            ],
+                            [
+                                110.49725,
+                                37.09122
+                            ],
+                            [
+                                110.52598,
+                                37.10465
+                            ],
+                            [
+                                110.53173,
+                                37.13257
+                            ],
+                            [
+                                110.56161,
+                                37.16139
+                            ],
+                            [
+                                110.60607,
+                                37.21191
+                            ],
+                            [
+                                110.62607,
+                                37.22905
+                            ],
+                            [
+                                110.64783,
+                                37.25758
+                            ],
+                            [
+                                110.64870,
+                                37.27096
+                            ],
+                            [
+                                110.66023,
+                                37.28149
+                            ],
+                            [
+                                110.67284,
+                                37.28054
+                            ],
+                            [
+                                110.68197,
+                                37.29697
+                            ],
+                            [
+                                110.67743,
+                                37.31894
+                            ],
+                            [
+                                110.69399,
+                                37.33243
+                            ],
+                            [
+                                110.67432,
+                                37.35266
+                            ],
+                            [
+                                110.65840,
+                                37.35282
+                            ],
+                            [
+                                110.63843,
+                                37.35800
+                            ],
+                            [
+                                110.62367,
+                                37.37547
+                            ],
+                            [
+                                110.62384,
+                                37.39521
+                            ],
+                            [
+                                110.63766,
+                                37.42083
+                            ],
+                            [
+                                110.64965,
+                                37.43842
+                            ],
+                            [
+                                110.68269,
+                                37.44035
+                            ],
+                            [
+                                110.74094,
+                                37.45041
+                            ],
+                            [
+                                110.75374,
+                                37.47664
+                            ],
+                            [
+                                110.75258,
+                                37.49338
+                            ],
+                            [
+                                110.76427,
+                                37.51718
+                            ],
+                            [
+                                110.77094,
+                                37.53971
+                            ],
+                            [
+                                110.78979,
+                                37.55855
+                            ],
+                            [
+                                110.78365,
+                                37.57271
+                            ],
+                            [
+                                110.76975,
+                                37.58867
+                            ],
+                            [
+                                110.76669,
+                                37.61817
+                            ],
+                            [
+                                110.75852,
+                                37.63704
+                            ],
+                            [
+                                110.78686,
+                                37.64792
+                            ],
+                            [
+                                110.79233,
+                                37.66081
+                            ],
+                            [
+                                110.77219,
+                                37.67791
+                            ],
+                            [
+                                110.75786,
+                                37.68517
+                            ],
+                            [
+                                110.73501,
+                                37.68806
+                            ],
+                            [
+                                110.71244,
+                                37.69735
+                            ],
+                            [
+                                110.70065,
+                                37.71963
+                            ],
+                            [
+                                110.74783,
+                                37.73638
+                            ],
+                            [
+                                110.75322,
+                                37.75001
+                            ],
+                            [
+                                110.74474,
+                                37.76236
+                            ],
+                            [
+                                110.72159,
+                                37.77518
+                            ],
+                            [
+                                110.69149,
+                                37.78608
+                            ],
+                            [
+                                110.66136,
+                                37.80434
+                            ],
+                            [
+                                110.65673,
+                                37.82302
+                            ],
+                            [
+                                110.62066,
+                                37.86903
+                            ],
+                            [
+                                110.59368,
+                                37.91669
+                            ],
+                            [
+                                110.58223,
+                                37.92596
+                            ],
+                            [
+                                110.55944,
+                                37.93721
+                            ],
+                            [
+                                110.51958,
+                                37.95208
+                            ],
+                            [
+                                110.51296,
+                                37.96420
+                            ],
+                            [
+                                110.51413,
+                                37.97713
+                            ],
+                            [
+                                110.52235,
+                                37.98774
+                            ],
+                            [
+                                110.51571,
+                                38.00513
+                            ],
+                            [
+                                110.50041,
+                                38.01667
+                            ],
+                            [
+                                110.49733,
+                                38.03560
+                            ],
+                            [
+                                110.50290,
+                                38.06104
+                            ],
+                            [
+                                110.49634,
+                                38.08167
+                            ],
+                            [
+                                110.50003,
+                                38.10167
+                            ],
+                            [
+                                110.51051,
+                                38.11270
+                            ],
+                            [
+                                110.51230,
+                                38.13168
+                            ],
+                            [
+                                110.50175,
+                                38.15306
+                            ],
+                            [
+                                110.50070,
+                                38.16808
+                            ],
+                            [
+                                110.50571,
+                                38.19685
+                            ],
+                            [
+                                110.51540,
+                                38.20690
+                            ],
+                            [
+                                110.52934,
+                                38.21160
+                            ],
+                            [
+                                110.54249,
+                                38.20962
+                            ],
+                            [
+                                110.56088,
+                                38.22430
+                            ],
+                            [
+                                110.55989,
+                                38.23706
+                            ],
+                            [
+                                110.56602,
+                                38.26355
+                            ],
+                            [
+                                110.56764,
+                                38.29158
+                            ],
+                            [
+                                110.57650,
+                                38.30375
+                            ],
+                            [
+                                110.59486,
+                                38.30819
+                            ],
+                            [
+                                110.62294,
+                                38.30386
+                            ],
+                            [
+                                110.64784,
+                                38.30704
+                            ],
+                            [
+                                110.66844,
+                                38.32000
+                            ],
+                            [
+                                110.68849,
+                                38.34759
+                            ],
+                            [
+                                110.70086,
+                                38.35709
+                            ],
+                            [
+                                110.71911,
+                                38.35816
+                            ],
+                            [
+                                110.73364,
+                                38.36191
+                            ],
+                            [
+                                110.76161,
+                                38.41315
+                            ],
+                            [
+                                110.77188,
+                                38.44194
+                            ],
+                            [
+                                110.79642,
+                                38.45281
+                            ],
+                            [
+                                110.80923,
+                                38.45206
+                            ],
+                            [
+                                110.83176,
+                                38.44041
+                            ],
+                            [
+                                110.86315,
+                                38.45090
+                            ],
+                            [
+                                110.86714,
+                                38.49010
+                            ],
+                            [
+                                110.87502,
+                                38.51612
+                            ],
+                            [
+                                110.88810,
+                                38.51456
+                            ],
+                            [
+                                110.90375,
+                                38.54323
+                            ],
+                            [
+                                110.90074,
+                                38.55929
+                            ],
+                            [
+                                110.91105,
+                                38.58139
+                            ],
+                            [
+                                110.88776,
+                                38.59054
+                            ],
+                            [
+                                110.88201,
+                                38.60428
+                            ],
+                            [
+                                110.88539,
+                                38.65069
+                            ],
+                            [
+                                110.89407,
+                                38.66107
+                            ],
+                            [
+                                110.90647,
+                                38.66969
+                            ],
+                            [
+                                110.90442,
+                                38.68566
+                            ],
+                            [
+                                110.91292,
+                                38.70483
+                            ],
+                            [
+                                110.92915,
+                                38.71723
+                            ],
+                            [
+                                110.95329,
+                                38.74323
+                            ],
+                            [
+                                110.95723,
+                                38.75929
+                            ],
+                            [
+                                110.95202,
+                                38.77793
+                            ],
+                            [
+                                110.96654,
+                                38.78322
+                            ],
+                            [
+                                110.97795,
+                                38.79587
+                            ],
+                            [
+                                110.98788,
+                                38.81930
+                            ],
+                            [
+                                111.00181,
+                                38.83856
+                            ],
+                            [
+                                110.99853,
+                                38.85308
+                            ],
+                            [
+                                110.98828,
+                                38.86156
+                            ],
+                            [
+                                111.00700,
+                                38.88245
+                            ],
+                            [
+                                111.00401,
+                                38.92380
+                            ],
+                            [
+                                110.99191,
+                                38.94744
+                            ],
+                            [
+                                110.97314,
+                                38.97529
+                            ],
+                            [
+                                110.99248,
+                                38.99507
+                            ],
+                            [
+                                111.01934,
+                                39.01437
+                            ],
+                            [
+                                111.03116,
+                                39.01992
+                            ],
+                            [
+                                111.07182,
+                                39.02436
+                            ],
+                            [
+                                111.08812,
+                                39.03072
+                            ],
+                            [
+                                111.11185,
+                                39.04773
+                            ],
+                            [
+                                111.13065,
+                                39.06730
+                            ],
+                            [
+                                111.14320,
+                                39.10183
+                            ],
+                            [
+                                111.15505,
+                                39.10926
+                            ],
+                            [
+                                111.16542,
+                                39.13046
+                            ],
+                            [
+                                111.15623,
+                                39.15661
+                            ],
+                            [
+                                111.16532,
+                                39.17192
+                            ],
+                            [
+                                111.17867,
+                                39.18832
+                            ],
+                            [
+                                111.18875,
+                                39.21284
+                            ],
+                            [
+                                111.21053,
+                                39.23795
+                            ],
+                            [
+                                111.20681,
+                                39.25002
+                            ],
+                            [
+                                111.20672,
+                                39.26372
+                            ],
+                            [
+                                111.21780,
+                                39.28155
+                            ],
+                            [
+                                111.23709,
+                                39.29619
+                            ],
+                            [
+                                111.19322,
+                                39.30487
+                            ],
+                            [
+                                111.18179,
+                                39.31162
+                            ],
+                            [
+                                111.17129,
+                                39.32881
+                            ],
+                            [
+                                111.18471,
+                                39.33915
+                            ],
+                            [
+                                111.17153,
+                                39.35042
+                            ],
+                            [
+                                111.15776,
+                                39.33591
+                            ],
+                            [
+                                111.14658,
+                                39.36841
+                            ],
+                            [
+                                111.12615,
+                                39.36562
+                            ],
+                            [
+                                111.11381,
+                                39.37113
+                            ],
+                            [
+                                111.12657,
+                                39.39367
+                            ],
+                            [
+                                111.13488,
+                                39.40465
+                            ],
+                            [
+                                111.17900,
+                                39.42565
+                            ],
+                            [
+                                111.26096,
+                                39.42329
+                            ],
+                            [
+                                111.32166,
+                                39.41912
+                            ],
+                            [
+                                111.33428,
+                                39.42087
+                            ],
+                            [
+                                111.35540,
+                                39.44239
+                            ],
+                            [
+                                111.35549,
+                                39.46787
+                            ],
+                            [
+                                111.38523,
+                                39.49390
+                            ],
+                            [
+                                111.41873,
+                                39.50168
+                            ],
+                            [
+                                111.42523,
+                                39.51349
+                            ],
+                            [
+                                111.41950,
+                                39.53204
+                            ],
+                            [
+                                111.41832,
+                                39.54658
+                            ],
+                            [
+                                111.42786,
+                                39.56605
+                            ],
+                            [
+                                111.42818,
+                                39.58119
+                            ],
+                            [
+                                111.42088,
+                                39.61100
+                            ],
+                            [
+                                111.43876,
+                                39.61422
+                            ],
+                            [
+                                111.45490,
+                                39.61007
+                            ],
+                            [
+                                111.43190,
+                                39.63142
+                            ],
+                            [
+                                111.47613,
+                                39.65469
+                            ],
+                            [
+                                111.48961,
+                                39.65742
+                            ],
+                            [
+                                111.54974,
+                                39.65320
+                            ],
+                            [
+                                111.58474,
+                                39.64321
+                            ],
+                            [
+                                111.61550,
+                                39.62749
+                            ],
+                            [
+                                111.63008,
+                                39.64076
+                            ],
+                            [
+                                111.64332,
+                                39.64090
+                            ],
+                            [
+                                111.65753,
+                                39.63837
+                            ],
+                            [
+                                111.69375,
+                                39.62405
+                            ],
+                            [
+                                111.70815,
+                                39.60952
+                            ],
+                            [
+                                111.75418,
+                                39.59261
+                            ],
+                            [
+                                111.76873,
+                                39.59179
+                            ],
+                            [
+                                111.82597,
+                                39.61831
+                            ],
+                            [
+                                111.83904,
+                                39.61748
+                            ],
+                            [
+                                111.86546,
+                                39.60897
+                            ],
+                            [
+                                111.89870,
+                                39.61488
+                            ],
+                            [
+                                111.92411,
+                                39.61120
+                            ],
+                            [
+                                111.92406,
+                                39.62973
+                            ],
+                            [
+                                111.92929,
+                                39.64155
+                            ],
+                            [
+                                111.91760,
+                                39.65783
+                            ],
+                            [
+                                111.93228,
+                                39.67842
+                            ],
+                            [
+                                111.95127,
+                                39.69238
+                            ],
+                            [
+                                111.96001,
+                                39.70941
+                            ],
+                            [
+                                111.95657,
+                                39.72420
+                            ],
+                            [
+                                111.96024,
+                                39.78996
+                            ],
+                            [
+                                112.00339,
+                                39.82552
+                            ],
+                            [
+                                112.01102,
+                                39.83692
+                            ],
+                            [
+                                112.02490,
+                                39.85053
+                            ],
+                            [
+                                112.03251,
+                                39.86965
+                            ],
+                            [
+                                112.03431,
+                                39.88484
+                            ],
+                            [
+                                112.05061,
+                                39.90318
+                            ],
+                            [
+                                112.06659,
+                                39.91460
+                            ],
+                            [
+                                112.08166,
+                                39.94544
+                            ],
+                            [
+                                112.09672,
+                                39.96366
+                            ],
+                            [
+                                112.10662,
+                                39.98719
+                            ],
+                            [
+                                112.11893,
+                                39.99208
+                            ],
+                            [
+                                112.12603,
+                                40.01112
+                            ],
+                            [
+                                112.17203,
+                                40.07306
+                            ],
+                            [
+                                112.17756,
+                                40.08565
+                            ],
+                            [
+                                112.18792,
+                                40.09361
+                            ],
+                            [
+                                112.21785,
+                                40.13097
+                            ],
+                            [
+                                112.21947,
+                                40.15159
+                            ],
+                            [
+                                112.25001,
+                                40.18442
+                            ],
+                            [
+                                112.28676,
+                                40.20729
+                            ],
+                            [
+                                112.28816,
+                                40.22772
+                            ],
+                            [
+                                112.30005,
+                                40.25001
+                            ],
+                            [
+                                112.32007,
+                                40.25632
+                            ],
+                            [
+                                112.34140,
+                                40.25310
+                            ],
+                            [
+                                112.36293,
+                                40.26732
+                            ],
+                            [
+                                112.37915,
+                                40.27106
+                            ],
+                            [
+                                112.39929,
+                                40.29010
+                            ],
+                            [
+                                112.42097,
+                                40.29530
+                            ],
+                            [
+                                112.45238,
+                                40.29782
+                            ],
+                            [
+                                112.47317,
+                                40.28319
+                            ],
+                            [
+                                112.52589,
+                                40.26065
+                            ],
+                            [
+                                112.57746,
+                                40.24617
+                            ],
+                            [
+                                112.61136,
+                                40.24151
+                            ],
+                            [
+                                112.62384,
+                                40.23527
+                            ],
+                            [
+                                112.63404,
+                                40.22355
+                            ],
+                            [
+                                112.64673,
+                                40.21893
+                            ],
+                            [
+                                112.66558,
+                                40.20394
+                            ],
+                            [
+                                112.67522,
+                                40.19345
+                            ],
+                            [
+                                112.69433,
+                                40.18878
+                            ],
+                            [
+                                112.71442,
+                                40.17576
+                            ],
+                            [
+                                112.72437,
+                                40.16669
+                            ],
+                            [
+                                112.74165,
+                                40.16271
+                            ],
+                            [
+                                112.81253,
+                                40.19407
+                            ],
+                            [
+                                112.84538,
+                                40.20419
+                            ],
+                            [
+                                112.88862,
+                                40.30626
+                            ],
+                            [
+                                112.88972,
+                                40.32418
+                            ],
+                            [
+                                113.00642,
+                                40.36174
+                            ],
+                            [
+                                113.04765,
+                                40.36890
+                            ],
+                            [
+                                113.12046,
+                                40.37812
+                            ],
+                            [
+                                113.13245,
+                                40.38433
+                            ],
+                            [
+                                113.15612,
+                                40.39133
+                            ],
+                            [
+                                113.21946,
+                                40.40102
+                            ],
+                            [
+                                113.24281,
+                                40.41211
+                            ],
+                            [
+                                113.28515,
+                                40.36491
+                            ],
+                            [
+                                113.30275,
+                                40.32497
+                            ],
+                            [
+                                113.32460,
+                                40.31655
+                            ],
+                            [
+                                113.33702,
+                                40.31902
+                            ],
+                            [
+                                113.36374,
+                                40.31457
+                            ],
+                            [
+                                113.43130,
+                                40.32202
+                            ],
+                            [
+                                113.49869,
+                                40.33600
+                            ],
+                            [
+                                113.52972,
+                                40.33526
+                            ],
+                            [
+                                113.55074,
+                                40.34447
+                            ],
+                            [
+                                113.57779,
+                                40.36963
+                            ],
+                            [
+                                113.58906,
+                                40.37767
+                            ],
+                            [
+                                113.61211,
+                                40.38982
+                            ],
+                            [
+                                113.62889,
+                                40.40516
+                            ],
+                            [
+                                113.69430,
+                                40.44854
+                            ],
+                            [
+                                113.72356,
+                                40.46586
+                            ],
+                            [
+                                113.73682,
+                                40.46708
+                            ],
+                            [
+                                113.75271,
+                                40.47647
+                            ],
+                            [
+                                113.78492,
+                                40.51799
+                            ],
+                            [
+                                113.81433,
+                                40.49941
+                            ],
+                            [
+                                113.83688,
+                                40.47439
+                            ],
+                            [
+                                113.86224,
+                                40.45570
+                            ],
+                            [
+                                113.88279,
+                                40.46005
+                            ],
+                            [
+                                113.89333,
+                                40.47368
+                            ],
+                            [
+                                113.90734,
+                                40.48748
+                            ],
+                            [
+                                113.92751,
+                                40.49644
+                            ],
+                            [
+                                113.94520,
+                                40.51876
+                            ],
+                            [
+                                113.96482,
+                                40.52468
+                            ],
+                            [
+                                114.00609,
+                                40.51951
+                            ],
+                            [
+                                114.03772,
+                                40.52707
+                            ],
+                            [
+                                114.05923,
+                                40.53588
+                            ],
+                            [
+                                114.07529,
+                                40.55039
+                            ],
+                            [
+                                114.06947,
+                                40.58124
+                            ],
+                            [
+                                114.05666,
+                                40.58625
+                            ],
+                            [
+                                114.03663,
+                                40.60555
+                            ],
+                            [
+                                114.05974,
+                                40.65628
+                            ],
+                            [
+                                114.06742,
+                                40.68193
+                            ],
+                            [
+                                114.05201,
+                                40.71386
+                            ],
+                            [
+                                114.05953,
+                                40.72448
+                            ],
+                            [
+                                114.08462,
+                                40.73934
+                            ],
+                            [
+                                114.09723,
+                                40.73814
+                            ],
+                            [
+                                114.12074,
+                                40.74171
+                            ],
+                            [
+                                114.13346,
+                                40.73510
+                            ],
+                            [
+                                114.15259,
+                                40.71538
+                            ],
+                            [
+                                114.15675,
+                                40.70278
+                            ],
+                            [
+                                114.17758,
+                                40.66668
+                            ],
+                            [
+                                114.20710,
+                                40.63897
+                            ],
+                            [
+                                114.22875,
+                                40.60470
+                            ],
+                            [
+                                114.25248,
+                                40.60967
+                            ],
+                            [
+                                114.27319,
+                                40.59459
+                            ],
+                            [
+                                114.27021,
+                                40.56249
+                            ],
+                            [
+                                114.27798,
+                                40.55004
+                            ],
+                            [
+                                114.27294,
+                                40.49212
+                            ],
+                            [
+                                114.26133,
+                                40.47406
+                            ],
+                            [
+                                114.27288,
+                                40.46767
+                            ],
+                            [
+                                114.28822,
+                                40.44268
+                            ],
+                            [
+                                114.28001,
+                                40.42689
+                            ],
+                            [
+                                114.29518,
+                                40.39194
+                            ],
+                            [
+                                114.29651,
+                                40.37238
+                            ],
+                            [
+                                114.34403,
+                                40.36595
+                            ],
+                            [
+                                114.35914,
+                                40.36118
+                            ],
+                            [
+                                114.37763,
+                                40.35095
+                            ],
+                            [
+                                114.39271,
+                                40.34937
+                            ],
+                            [
+                                114.41265,
+                                40.36428
+                            ],
+                            [
+                                114.42811,
+                                40.36372
+                            ],
+                            [
+                                114.45607,
+                                40.37182
+                            ],
+                            [
+                                114.46370,
+                                40.34771
+                            ],
+                            [
+                                114.48938,
+                                40.34650
+                            ],
+                            [
+                                114.51160,
+                                40.35069
+                            ],
+                            [
+                                114.51769,
+                                40.32304
+                            ],
+                            [
+                                114.51044,
+                                40.30332
+                            ],
+                            [
+                                114.49173,
+                                40.29247
+                            ],
+                            [
+                                114.48247,
+                                40.27230
+                            ],
+                            [
+                                114.45904,
+                                40.25920
+                            ],
+                            [
+                                114.43354,
+                                40.25161
+                            ],
+                            [
+                                114.42077,
+                                40.24980
+                            ],
+                            [
+                                114.40965,
+                                40.24267
+                            ],
+                            [
+                                114.37943,
+                                40.23926
+                            ],
+                            [
+                                114.35758,
+                                40.24704
+                            ],
+                            [
+                                114.34430,
+                                40.24644
+                            ],
+                            [
+                                114.31528,
+                                40.23575
+                            ],
+                            [
+                                114.30028,
+                                40.22645
+                            ],
+                            [
+                                114.26672,
+                                40.22378
+                            ],
+                            [
+                                114.25000,
+                                40.23104
+                            ],
+                            [
+                                114.23957,
+                                40.22043
+                            ],
+                            [
+                                114.22775,
+                                40.21396
+                            ],
+                            [
+                                114.21939,
+                                40.19469
+                            ],
+                            [
+                                114.15735,
+                                40.18553
+                            ],
+                            [
+                                114.14575,
+                                40.17673
+                            ],
+                            [
+                                114.10494,
+                                40.18945
+                            ],
+                            [
+                                114.07504,
+                                40.18431
+                            ],
+                            [
+                                114.06448,
+                                40.17385
+                            ],
+                            [
+                                114.07142,
+                                40.15580
+                            ],
+                            [
+                                114.07556,
+                                40.13066
+                            ],
+                            [
+                                114.09173,
+                                40.11013
+                            ],
+                            [
+                                114.08433,
+                                40.07678
+                            ],
+                            [
+                                114.07341,
+                                40.06192
+                            ],
+                            [
+                                114.06088,
+                                40.06512
+                            ],
+                            [
+                                114.03529,
+                                40.05660
+                            ],
+                            [
+                                114.02862,
+                                40.07577
+                            ],
+                            [
+                                114.01067,
+                                40.10119
+                            ],
+                            [
+                                113.98848,
+                                40.11130
+                            ],
+                            [
+                                113.97512,
+                                40.10855
+                            ],
+                            [
+                                113.96718,
+                                40.09695
+                            ],
+                            [
+                                113.97224,
+                                40.07319
+                            ],
+                            [
+                                113.96795,
+                                40.05701
+                            ],
+                            [
+                                113.94979,
+                                40.02993
+                            ],
+                            [
+                                113.91065,
+                                40.02173
+                            ],
+                            [
+                                113.91152,
+                                40.00066
+                            ],
+                            [
+                                113.92549,
+                                40.00594
+                            ],
+                            [
+                                113.95923,
+                                40.00030
+                            ],
+                            [
+                                113.98946,
+                                39.99209
+                            ],
+                            [
+                                114.01262,
+                                39.98991
+                            ],
+                            [
+                                114.02255,
+                                39.98138
+                            ],
+                            [
+                                114.02018,
+                                39.96160
+                            ],
+                            [
+                                114.03879,
+                                39.91795
+                            ],
+                            [
+                                114.05180,
+                                39.92100
+                            ],
+                            [
+                                114.07930,
+                                39.90967
+                            ],
+                            [
+                                114.11085,
+                                39.90807
+                            ],
+                            [
+                                114.13272,
+                                39.90092
+                            ],
+                            [
+                                114.14405,
+                                39.89414
+                            ],
+                            [
+                                114.17294,
+                                39.89767
+                            ],
+                            [
+                                114.18303,
+                                39.90625
+                            ],
+                            [
+                                114.21346,
+                                39.90878
+                            ],
+                            [
+                                114.21949,
+                                39.89591
+                            ],
+                            [
+                                114.20809,
+                                39.86769
+                            ],
+                            [
+                                114.25326,
+                                39.86522
+                            ],
+                            [
+                                114.27245,
+                                39.87282
+                            ],
+                            [
+                                114.29257,
+                                39.86309
+                            ],
+                            [
+                                114.33021,
+                                39.86147
+                            ],
+                            [
+                                114.37501,
+                                39.86722
+                            ],
+                            [
+                                114.39148,
+                                39.84705
+                            ],
+                            [
+                                114.40586,
+                                39.82389
+                            ],
+                            [
+                                114.39836,
+                                39.79877
+                            ],
+                            [
+                                114.40557,
+                                39.78586
+                            ],
+                            [
+                                114.40893,
+                                39.76636
+                            ],
+                            [
+                                114.40381,
+                                39.75448
+                            ],
+                            [
+                                114.39222,
+                                39.65499
+                            ],
+                            [
+                                114.40587,
+                                39.63957
+                            ],
+                            [
+                                114.43024,
+                                39.60531
+                            ],
+                            [
+                                114.44401,
+                                39.60713
+                            ],
+                            [
+                                114.49395,
+                                39.60156
+                            ],
+                            [
+                                114.50386,
+                                39.59363
+                            ],
+                            [
+                                114.53084,
+                                39.58413
+                            ],
+                            [
+                                114.54017,
+                                39.57481
+                            ],
+                            [
+                                114.55122,
+                                39.55859
+                            ],
+                            [
+                                114.55077,
+                                39.54052
+                            ],
+                            [
+                                114.54510,
+                                39.52804
+                            ],
+                            [
+                                114.53004,
+                                39.51285
+                            ],
+                            [
+                                114.52687,
+                                39.48942
+                            ],
+                            [
+                                114.50707,
+                                39.47838
+                            ],
+                            [
+                                114.49390,
+                                39.47536
+                            ],
+                            [
+                                114.48784,
+                                39.43000
+                            ],
+                            [
+                                114.47205,
+                                39.41172
+                            ],
+                            [
+                                114.46507,
+                                39.38917
+                            ],
+                            [
+                                114.46208,
+                                39.35540
+                            ],
+                            [
+                                114.46274,
+                                39.33842
+                            ],
+                            [
+                                114.45169,
+                                39.32783
+                            ],
+                            [
+                                114.42921,
+                                39.31639
+                            ],
+                            [
+                                114.42391,
+                                39.28914
+                            ],
+                            [
+                                114.42306,
+                                39.26531
+                            ],
+                            [
+                                114.41859,
+                                39.24788
+                            ],
+                            [
+                                114.41874,
+                                39.23387
+                            ],
+                            [
+                                114.45897,
+                                39.22506
+                            ],
+                            [
+                                114.46467,
+                                39.19854
+                            ],
+                            [
+                                114.44528,
+                                39.19217
+                            ],
+                            [
+                                114.43154,
+                                39.17383
+                            ],
+                            [
+                                114.41447,
+                                39.17128
+                            ],
+                            [
+                                114.40224,
+                                39.17683
+                            ],
+                            [
+                                114.37619,
+                                39.17180
+                            ],
+                            [
+                                114.36958,
+                                39.15130
+                            ],
+                            [
+                                114.35333,
+                                39.13869
+                            ],
+                            [
+                                114.36009,
+                                39.12767
+                            ],
+                            [
+                                114.36213,
+                                39.11481
+                            ],
+                            [
+                                114.34382,
+                                39.07902
+                            ],
+                            [
+                                114.31295,
+                                39.07012
+                            ],
+                            [
+                                114.29172,
+                                39.07797
+                            ],
+                            [
+                                114.23200,
+                                39.06504
+                            ],
+                            [
+                                114.21490,
+                                39.06556
+                            ],
+                            [
+                                114.19993,
+                                39.05004
+                            ],
+                            [
+                                114.18459,
+                                39.05003
+                            ],
+                            [
+                                114.16734,
+                                39.06208
+                            ],
+                            [
+                                114.15397,
+                                39.05537
+                            ],
+                            [
+                                114.12034,
+                                39.04867
+                            ],
+                            [
+                                114.10605,
+                                39.05515
+                            ],
+                            [
+                                114.10383,
+                                39.06911
+                            ],
+                            [
+                                114.08746,
+                                39.08749
+                            ],
+                            [
+                                114.05548,
+                                39.09475
+                            ],
+                            [
+                                114.04417,
+                                39.12141
+                            ],
+                            [
+                                114.02795,
+                                39.12613
+                            ],
+                            [
+                                114.00504,
+                                39.12262
+                            ],
+                            [
+                                113.99294,
+                                39.11423
+                            ],
+                            [
+                                113.98238,
+                                39.09457
+                            ]
+                        
+                    ]
+                ]
+            }
+        }
+    ]
+}

+ 2 - 2
vue.config.js

@@ -66,8 +66,8 @@ module.exports = {
         // target: "http://192.168.5.4:16200", // 石月
         // target: "http://192.168.50.235:16200", // 内网
         // target: "http://192.168.5.15:16200",
-        target: "http://192.168.50.235:16500", //演示环境
-        // target: "http://106.120.102.238:26500", //外网演示环境
+        // target: "http://192.168.50.235:16500", //演示环境
+        target: "http://106.120.102.238:26500", //外网演示环境
         // target: "http://106.120.102.238:16700", // 外网16700  生产16600
         // target: "http://10.96.137.5",
         changeOrigin: true,