echarts 地图绘制自定义标记

最近用到了echarts做地图,需要在地图上绘制自定义的标记,如下图

 此处需要用到symbol属性

这里提到的可以用base64图片格式 ,我从墨客下载了切图,然后用大佬给的地址去转换成了需要的路径

图片转 BASE64 编码 | 菜鸟工具

结果。。。。展示方块,没有达到我要的效果,不知道哪里出了问题,猜测是base64路径出了问题,但是不知道怎么解决,哈哈哈

 于是大佬教我另一种方式实现

 于是,搞定了,在此记录一下,

重点代码:

{
            tooltip: {
              show: false,
            },
            type: "effectScatter",
            coordinateSystem: "geo",
            rippleEffect: {
              color:"#3facef",
              // number:3,
              // period:5,
              // scale:2.5,
              // brushType: "stroke",
            },
            showEffectOn: "render",
            
            label: {
              normal: {
                color: "#fff",
              },
            },
            symbol: 'image://'+require('@/assets/images/home/redMark.png'),
            symbolSize: 28,
            data: convertData(data),
            zlevel: 1,
          },

附上代码:

<template>
  <div class="map" id = "map">
    
  </div>
</template>
<script>
export default {
  data(){
    return {

    }
  },
  mounted(){
    console.log(this.echarts)
    setTimeout(()=>{
      this.initMapChart()
    })
  },
  methods:{
    initMapChart(){
      let mapZoom = 0.6;
      let mapAspectScale = 1.3;
      const mapChart = this.echarts.init(document.getElementById("map"));
      this.echarts.registerMap("吕梁", getData());
      let data = getData().features.map((item) => {
        return {
          name: item.properties.name,
        };
      });
      console.log(data,"===data")
      var gdGeoCoordMap = {
        兴县: [111.124816, 38.464136],
        临县: [110.995963, 37.960806],
        柳林县: [110.89613, 37.431664],
        石楼县: [110.837119, 36.999426]
      };
      var convertData = function (data) {
        var res = [];
        for (var i = 0; i < data.length; i++) {
          var geoCoord = gdGeoCoordMap[data[i].name];
          if (geoCoord) {
            res.push({
              name: data[i].name,
              value: geoCoord.concat(data[i].value),
            });
          }
        }
        console.log(res,"--res")
        return res;
      };
      let regions = [
        {
          name: "孝义市",
          itemStyle: {
            areaColor: {
              type: "radial",
              x: 0.5,
              y: 0.5,
              r: 0.5,
              colorStops: [
                {
                  offset: 0,
                  color: "yellow", // 每个块0% 处的颜色
                },
                {
                  offset: 1,
                  color: "orange", // 每个块100% 处的颜色
                },
              ],
              global: false, // 缺省为 false
            },
            color: "green",
          },
          label: {
            show: true,
            fontSize: 12, //未选中时字体的大小
            color: "#333", //未选中时字体的颜色
          },
        },
        {
          name: "汾阳市",
          itemStyle: {
            areaColor: {
              type: "radial",
              x: 0.5,
              y: 0.5,
              r: 0.5,
              colorStops: [
                {
                  offset: 0,
                  color: "red", // 每个块0% 处的颜色
                },
                {
                  offset: 1,
                  color: "pink", // 每个块100% 处的颜色
                },
              ],
              global: false, // 缺省为 false
            },
            color: "green",
          },
          label: {
            show: true,
            fontSize: 12, //未选中时字体的大小
            color: "#333", //未选中时字体的颜色
          },
        },
        
      ]
     
      
      let option = {
          // visualMap:[ {
          //   min: 0,
          //   max: 1000,
          //   calculable:true,
          //   right : 0,
          //   bottom: 0,
          //   //seriesIndex: 0,
          //   text: ['多', '少'],
          //   calculable: false,
          //   orient: 'vertical',
          //   textGap:10,
          //   align:'right', 
          //   itemWidth:5,
          //   itemHeight:127,
          //   inRange: {
          //       color: ['#EE8036', '#A82E26'],
          //       symbolSize: [10, 10]
          //   },
          //   textStyle:{
          //     color:"#fff"
          //   }
          // },
        // ],
        geo: [
          {
            map: "吕梁",
            aspectScale: mapAspectScale,
            zoom: mapZoom,
            layoutCenter: ["50%", "50%"],
            layoutSize: "180%",
            show: true,
            roam: false,
            label: {
              emphasis: {
                show:true
              },
            },
            itemStyle: {
              normal: {
                borderColor: "#158f72",
                borderWidth: 5,
                shadowColor: "#fff",
                shadowOffsetY: 0,
                shadowBlur: 10,
                areaColor: "#158f72",
              },
            },
            emphasis: {
              itemStyle: {
                areaColor: "#158f72",
                shadowColor: "#158f72", //鼠标悬浮时块的阴影
                shadowBlur: 30,
                borderColor: "#158f72", //鼠标悬浮时块的边框
                borderWidth: 2,
              },
            },
          },
          // {
          //   map: "吕梁",
          //   aspectScale: mapAspectScale,
          //   zoom: mapZoom,
          //   layoutCenter: ["50%", "50%"],
          //   layoutSize: "180%",
          //   show: true,
          //   roam: false,
          //   label: {
          //     emphasis: {
          //       show: true,
          //     },
          //   },
          //   itemStyle: {
          //     normal: {
          //       borderColor: "#158f72",
          //       borderWidth: 3,
          //       shadowColor: "#03413d",
          //       shadowOffsetY: 10,
          //       shadowBlur: 120,
          //       areaColor: "green",
          //     },
          //   },
          //   emphasis: {
          //     areaColor: "green",
          //   },
          // },
          // 重影
          {
            type: "map",
            map: "吕梁",
            zlevel: -1,
            aspectScale: mapAspectScale,
            zoom: mapZoom,
            layoutCenter: ["50%", "50.7%"],
            layoutSize: "180%",
            roam: false,
            silent: true,
            itemStyle: {
              normal: {
                borderWidth: 4,
                borderColor: {
                  type: "linear",
                  x: 0,
                  y: 0,
                  x2: 0,
                  y2: 1,
                  colorStops: [
                    {
                      offset: 0,
                      color: "#57989e", // 0% 处的颜色 地图轮廓颜色
                    },
                    {
                      offset: 0.8,
                      color: "#57989e", // 0% 处的颜色
                    },
                    {
                      offset: 1,
                      color: "#053440", // 50% 处的颜色
                    },
                  ],
                },
                shadowColor: "#053440",
                shadowOffsetY: 5,
                shadowBlur: 15,
                areaColor: "#0a2e2d",
              },
            },
          },
          {
            type: "map",
            map: "吕梁",
            zlevel: -2,
            aspectScale: mapAspectScale,
            zoom: mapZoom,
            layoutCenter: ["50%", "51.4%"],
            layoutSize: "180%",
            roam: false,
            silent: true,
            itemStyle: {
              normal: {
                borderWidth: 5,
                borderColor: "#053440",
                shadowColor: "#2c5f61",//地图轮廓阴影
                shadowOffsetY: 5,
                shadowBlur: 15,
                areaColor: "#2c5f61",
              },
            },
            regions: regions,
          },
          {
            type: "map",
            map: "吕梁",
            zlevel: -3,
            aspectScale: mapAspectScale,
            zoom: mapZoom,
            layoutCenter: ["50%", "52.1%"],
            layoutSize: "180%",
            roam: false,
            silent: true,
            itemStyle: {
              normal: {
                borderWidth: 6,
                borderColor: "rgba(99,151,160)",
                shadowColor: "#2c5f61",
                shadowOffsetY: 15,
                shadowBlur: 8,
                areaColor: "#2c5f61",
              },
            },
            regions: regions,
          },
        ],
        series: [
          {
            name: "吕梁市数据",
            type: "map",
            map: "吕梁", // 自定义扩展图表类型
            aspectScale: mapAspectScale,
            zoom: mapZoom, // 缩放
            showLegendSymbol: true,
            label: {
              normal: {
                show: true,
                textStyle: { color: "rgba(255,255,255,0.7)", fontSize: "150%" },
              },
              emphasis: {
                show: true,
                color: "rgba(255,255,255,0.7)"
              },
            },
            itemStyle: {
              normal: {
                areaColor: {
                  type: "linear",
                  x: 1200,
                  y: 0,
                  x2: 0,
                  y2: 0,
                  colorStops: [
                    {
                      offset: 0,
                      color: "#0a2e2d", // 0% 处的颜色
                    },
                    {
                      offset: 1,
                      color: "#03413d", // 50% 处的颜色
                    },
                  ],
                  global: true, // 缺省为 false
                },
                borderColor: "#1694a7",//地市区域分界线颜色
                borderWidth: 0.5,
              },
              emphasis: {
                label:{
                  show:true,
                  color: "#fff",
                },
                // areaColor: "#03413d",//地市区域移入颜色
                areaColor:{
                  type: "linear",
                  x: 1200,
                  y: 0,
                  x2: 0,
                  y2: 0,
                  colorStops: [
                    {
                      offset: 0,
                      color: "#0a2e2d", // 0% 处的颜色
                    },
                    {
                      offset: 1,
                      color: "#03413d", // 50% 处的颜色
                    },
                  ],
                  global: true, // 缺省为 false
                },
              },
            },
            layoutCenter: ["50%", "50%"],
            layoutSize: "180%",
            markPoint: {
              symbol: "none",
            },
            data: regions,
          },
          {
            tooltip: {
              show: false,
            },
            type: "effectScatter",
            coordinateSystem: "geo",
            rippleEffect: {
              color:"#3facef",
              // number:3,
              // period:5,
              // scale:2.5,
              // brushType: "stroke",
            },
            showEffectOn: "render",
            
            label: {
              normal: {
                color: "#fff",
              },
            },
            symbol: 'image://'+require('@/assets/images/home/redMark.png'),
            symbolSize: 28,
            data: convertData(data),
            zlevel: 1,
          },
          
        ],
      };
      mapChart.setOption(option);
      function getData() {
        let res = {
          "type": "FeatureCollection",
          "features": [{
            "type": "Feature",
            "properties": {
              "adcode": 141102,
              "name": "离石区",
              "center": [111.134462, 37.524037],
              "centroid": [111.30795, 37.543606],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 0,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.059425, 37.71809],
                    [111.051417, 37.713423],
                    [111.038915, 37.714779],
                    [111.034755, 37.72204],
                    [111.024754, 37.728263],
                    [111.021707, 37.736898],
                    [111.014929, 37.732112],
                    [111.007975, 37.734206],
                    [110.988657, 37.736559],
                    [110.985414, 37.730636],
                    [110.987992, 37.723815],
                    [110.985258, 37.715078],
                    [110.983207, 37.713582],
                    [110.975511, 37.715178],
                    [110.976585, 37.709313],
                    [110.975042, 37.706341],
                    [110.96719, 37.704944],
                    [110.962131, 37.699198],
                    [110.964572, 37.69429],
                    [110.96047, 37.683634],
                    [110.962677, 37.68096],
                    [110.975237, 37.678405],
                    [110.992817, 37.667049],
                    [110.992817, 37.664873],
                    [110.981312, 37.664414],
                    [110.981879, 37.660601],
                    [110.987094, 37.653095],
                    [110.978753, 37.650499],
                    [110.979456, 37.646446],
                    [110.976429, 37.64423],
                    [110.964084, 37.641994],
                    [110.950039, 37.643351],
                    [110.946426, 37.640895],
                    [110.944258, 37.63137],
                    [110.945156, 37.627276],
                    [110.950762, 37.614933],
                    [110.960001, 37.604366],
                    [110.974554, 37.592478],
                    [110.980863, 37.586124],
                    [110.988305, 37.568597],
                    [110.99352, 37.564959],
                    [111.002857, 37.553026],
                    [111.017234, 37.53999],
                    [111.025477, 37.534651],
                    [111.03997, 37.527352],
                    [111.050088, 37.516372],
                    [111.061281, 37.508072],
                    [111.063781, 37.508032],
                    [111.065031, 37.50191],
                    [111.071595, 37.494748],
                    [111.075755, 37.493067],
                    [111.083998, 37.494048],
                    [111.094566, 37.489006],
                    [111.091909, 37.483844],
                    [111.098707, 37.481222],
                    [111.103629, 37.483924],
                    [111.113415, 37.483183],
                    [111.116599, 37.481242],
                    [111.138867, 37.478821],
                    [111.166936, 37.469975],
                    [111.17512, 37.468514],
                    [111.200377, 37.458607],
                    [111.209343, 37.457786],
                    [111.215007, 37.46197],
                    [111.218601, 37.471536],
                    [111.22788, 37.468234],
                    [111.248897, 37.466313],
                    [111.256672, 37.474718],
                    [111.264641, 37.47646],
                    [111.271771, 37.473798],
                    [111.277201, 37.466933],
                    [111.280658, 37.459067],
                    [111.289077, 37.426393],
                    [111.297203, 37.406105],
                    [111.307946, 37.393284],
                    [111.317244, 37.388897],
                    [111.32789, 37.389638],
                    [111.347247, 37.394226],
                    [111.357854, 37.391721],
                    [111.367151, 37.387334],
                    [111.397076, 37.393304],
                    [111.407136, 37.393985],
                    [111.414285, 37.39086],
                    [111.418856, 37.383487],
                    [111.429794, 37.371344],
                    [111.438076, 37.368257],
                    [111.462415, 37.357575],
                    [111.493258, 37.3423],
                    [111.49775, 37.345929],
                    [111.496891, 37.35072],
                    [111.503102, 37.357314],
                    [111.512849, 37.359299],
                    [111.51826, 37.356212],
                    [111.533105, 37.359339],
                    [111.534981, 37.366153],
                    [111.541837, 37.365933],
                    [111.549689, 37.369039],
                    [111.556526, 37.365552],
                    [111.56262, 37.364971],
                    [111.574594, 37.37437],
                    [111.582251, 37.383146],
                    [111.588541, 37.383447],
                    [111.59608, 37.389678],
                    [111.593189, 37.395888],
                    [111.601725, 37.405484],
                    [111.605144, 37.421427],
                    [111.600319, 37.433922],
                    [111.593385, 37.44067],
                    [111.594147, 37.449218],
                    [111.585298, 37.458527],
                    [111.562835, 37.466213],
                    [111.551427, 37.482483],
                    [111.548654, 37.489266],
                    [111.54379, 37.505591],
                    [111.531113, 37.526892],
                    [111.520467, 37.535371],
                    [111.515877, 37.54151],
                    [111.511834, 37.551846],
                    [111.512146, 37.561761],
                    [111.516209, 37.569437],
                    [111.521639, 37.572395],
                    [111.524706, 37.582587],
                    [111.52914, 37.585964],
                    [111.532363, 37.583646],
                    [111.541876, 37.571855],
                    [111.552736, 37.569317],
                    [111.564163, 37.575313],
                    [111.566097, 37.582607],
                    [111.56598, 37.586623],
                    [111.55633, 37.605285],
                    [111.549845, 37.611677],
                    [111.548009, 37.634326],
                    [111.54672, 37.640476],
                    [111.539473, 37.645228],
                    [111.529726, 37.648503],
                    [111.520116, 37.653833],
                    [111.516053, 37.658505],
                    [111.514861, 37.667408],
                    [111.519237, 37.679284],
                    [111.515818, 37.687186],
                    [111.50904, 37.689202],
                    [111.49568, 37.690259],
                    [111.487085, 37.693572],
                    [111.469662, 37.694928],
                    [111.463235, 37.698001],
                    [111.451125, 37.691796],
                    [111.446612, 37.684752],
                    [111.447237, 37.659783],
                    [111.436553, 37.651298],
                    [111.424755, 37.646187],
                    [111.412996, 37.648882],
                    [111.406765, 37.654812],
                    [111.398854, 37.660182],
                    [111.39274, 37.668865],
                    [111.374613, 37.674693],
                    [111.363831, 37.679483],
                    [111.353537, 37.685191],
                    [111.337656, 37.687665],
                    [111.317791, 37.685131],
                    [111.308161, 37.681459],
                    [111.270384, 37.657886],
                    [111.267493, 37.648523],
                    [111.262356, 37.644549],
                    [111.256066, 37.64419],
                    [111.243389, 37.639138],
                    [111.243252, 37.633108],
                    [111.237724, 37.622683],
                    [111.229716, 37.619687],
                    [111.215066, 37.620685],
                    [111.205827, 37.618368],
                    [111.199908, 37.618309],
                    [111.197017, 37.625738],
                    [111.189458, 37.624161],
                    [111.160139, 37.633627],
                    [111.153458, 37.634026],
                    [111.137871, 37.637681],
                    [111.123162, 37.636762],
                    [111.08435, 37.64413],
                    [111.076536, 37.647644],
                    [111.059836, 37.653254],
                    [111.060382, 37.662078],
                    [111.058781, 37.674573],
                    [111.059054, 37.691317],
                    [111.067844, 37.697123],
                    [111.068274, 37.705742],
                    [111.064524, 37.707338],
                    [111.059425, 37.71809]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141121,
              "name": "文水县",
              "center": [112.032595, 37.436314],
              "centroid": [111.962285, 37.450431],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 1,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [112.011024, 37.282634],
                    [112.01413, 37.283076],
                    [112.021982, 37.270575],
                    [112.028975, 37.270555],
                    [112.032725, 37.272482],
                    [112.03589, 37.277759],
                    [112.045481, 37.280006],
                    [112.0497, 37.298563],
                    [112.058197, 37.30414],
                    [112.064975, 37.310999],
                    [112.069292, 37.317517],
                    [112.08527, 37.31866],
                    [112.094997, 37.315411],
                    [112.095251, 37.306466],
                    [112.102576, 37.298704],
                    [112.117597, 37.296136],
                    [112.122012, 37.287369],
                    [112.120605, 37.278782],
                    [112.12168, 37.274468],
                    [112.131915, 37.270977],
                    [112.139631, 37.266481],
                    [112.147561, 37.271719],
                    [112.153362, 37.279545],
                    [112.157367, 37.28755],
                    [112.161312, 37.289095],
                    [112.173208, 37.301472],
                    [112.177369, 37.308051],
                    [112.192273, 37.315953],
                    [112.204168, 37.326902],
                    [112.203309, 37.331072],
                    [112.2062, 37.333779],
                    [112.217216, 37.33823],
                    [112.222451, 37.344606],
                    [112.224151, 37.352784],
                    [112.227589, 37.35523],
                    [112.245012, 37.377476],
                    [112.255853, 37.387013],
                    [112.259643, 37.394085],
                    [112.258256, 37.402559],
                    [112.260346, 37.415138],
                    [112.263823, 37.421327],
                    [112.276265, 37.431119],
                    [112.28695, 37.437506],
                    [112.310937, 37.443873],
                    [112.32, 37.443893],
                    [112.327227, 37.448318],
                    [112.330118, 37.458947],
                    [112.329493, 37.461409],
                    [112.321113, 37.465913],
                    [112.317656, 37.469575],
                    [112.317422, 37.476419],
                    [112.30119, 37.479961],
                    [112.290368, 37.487285],
                    [112.290017, 37.490486],
                    [112.299627, 37.494428],
                    [112.314726, 37.496869],
                    [112.314648, 37.503391],
                    [112.311816, 37.506991],
                    [112.298767, 37.508212],
                    [112.296795, 37.513092],
                    [112.298553, 37.518253],
                    [112.29572, 37.521433],
                    [112.283746, 37.521553],
                    [112.281949, 37.524172],
                    [112.273726, 37.524072],
                    [112.26855, 37.523433],
                    [112.266674, 37.526412],
                    [112.26015, 37.525012],
                    [112.247844, 37.528872],
                    [112.244153, 37.528172],
                    [112.238547, 37.519273],
                    [112.231261, 37.518533],
                    [112.226338, 37.523153],
                    [112.2221, 37.522973],
                    [112.219912, 37.519753],
                    [112.221025, 37.513932],
                    [112.224854, 37.505871],
                    [112.223369, 37.49959],
                    [112.214677, 37.496569],
                    [112.199812, 37.495148],
                    [112.18862, 37.498069],
                    [112.184498, 37.497969],
                    [112.178228, 37.492807],
                    [112.176333, 37.489006],
                    [112.180904, 37.480602],
                    [112.181568, 37.474418],
                    [112.171704, 37.472737],
                    [112.156859, 37.488946],
                    [112.151663, 37.489786],
                    [112.13797, 37.483623],
                    [112.134513, 37.479441],
                    [112.136154, 37.472637],
                    [112.130938, 37.467274],
                    [112.121875, 37.466473],
                    [112.108221, 37.476079],
                    [112.105447, 37.482503],
                    [112.112421, 37.493768],
                    [112.112401, 37.496809],
                    [112.106541, 37.50169],
                    [112.095818, 37.506391],
                    [112.091481, 37.50105],
                    [112.088532, 37.50155],
                    [112.086188, 37.508492],
                    [112.076949, 37.516112],
                    [112.070971, 37.524752],
                    [112.069956, 37.532232],
                    [112.059466, 37.533272],
                    [112.059603, 37.528372],
                    [112.055775, 37.525672],
                    [112.043625, 37.523993],
                    [112.03796, 37.527232],
                    [112.024814, 37.531392],
                    [112.010184, 37.530852],
                    [112.006219, 37.527872],
                    [112.003621, 37.522373],
                    [112.002879, 37.513872],
                    [111.99405, 37.505711],
                    [111.988873, 37.504931],
                    [111.98524, 37.506851],
                    [111.985807, 37.519773],
                    [111.980591, 37.525512],
                    [111.969907, 37.528872],
                    [111.951506, 37.528872],
                    [111.937228, 37.524552],
                    [111.933829, 37.519953],
                    [111.930977, 37.512092],
                    [111.922011, 37.512152],
                    [111.91537, 37.513672],
                    [111.905467, 37.512512],
                    [111.907615, 37.505131],
                    [111.911053, 37.49989],
                    [111.906951, 37.497389],
                    [111.888023, 37.503411],
                    [111.87312, 37.506611],
                    [111.867201, 37.511632],
                    [111.866459, 37.519813],
                    [111.873335, 37.523753],
                    [111.877964, 37.532112],
                    [111.880757, 37.54077],
                    [111.87939, 37.544709],
                    [111.867533, 37.560282],
                    [111.860443, 37.56468],
                    [111.830479, 37.556844],
                    [111.811746, 37.553625],
                    [111.788326, 37.546788],
                    [111.780317, 37.550926],
                    [111.772543, 37.552106],
                    [111.729668, 37.552266],
                    [111.722636, 37.554305],
                    [111.71451, 37.560642],
                    [111.705271, 37.570896],
                    [111.685835, 37.580668],
                    [111.676635, 37.581807],
                    [111.65091, 37.580808],
                    [111.633838, 37.575273],
                    [111.624892, 37.573314],
                    [111.615321, 37.573954],
                    [111.610691, 37.575972],
                    [111.592857, 37.580868],
                    [111.566097, 37.582607],
                    [111.564163, 37.575313],
                    [111.552736, 37.569317],
                    [111.541876, 37.571855],
                    [111.532363, 37.583646],
                    [111.52914, 37.585964],
                    [111.524706, 37.582587],
                    [111.521639, 37.572395],
                    [111.516209, 37.569437],
                    [111.512146, 37.561761],
                    [111.511834, 37.551846],
                    [111.515877, 37.54151],
                    [111.520467, 37.535371],
                    [111.531113, 37.526892],
                    [111.54379, 37.505591],
                    [111.548654, 37.489266],
                    [111.551427, 37.482483],
                    [111.562835, 37.466213],
                    [111.585298, 37.458527],
                    [111.590924, 37.463551],
                    [111.598776, 37.465252],
                    [111.599381, 37.468534],
                    [111.605046, 37.474038],
                    [111.614383, 37.47678],
                    [111.625497, 37.483803],
                    [111.632568, 37.483003],
                    [111.638917, 37.484484],
                    [111.655676, 37.479561],
                    [111.658196, 37.472777],
                    [111.663509, 37.472217],
                    [111.681792, 37.4765],
                    [111.692047, 37.472557],
                    [111.700778, 37.474538],
                    [111.706169, 37.470095],
                    [111.710779, 37.471657],
                    [111.715467, 37.470476],
                    [111.724492, 37.464071],
                    [111.730469, 37.463851],
                    [111.73795, 37.458667],
                    [111.743497, 37.460608],
                    [111.747638, 37.458807],
                    [111.756116, 37.461089],
                    [111.76432, 37.459287],
                    [111.775629, 37.458367],
                    [111.784244, 37.458947],
                    [111.807898, 37.458747],
                    [111.816005, 37.458146],
                    [111.827178, 37.459287],
                    [111.843058, 37.459367],
                    [111.845676, 37.453823],
                    [111.844035, 37.441431],
                    [111.850793, 37.431259],
                    [111.849191, 37.422048],
                    [111.845832, 37.413075],
                    [111.848684, 37.411453],
                    [111.859857, 37.414057],
                    [111.883589, 37.413896],
                    [111.88691, 37.412274],
                    [111.891344, 37.406025],
                    [111.894157, 37.393284],
                    [111.898337, 37.39114],
                    [111.916112, 37.392783],
                    [111.924004, 37.391501],
                    [111.929532, 37.385991],
                    [111.938458, 37.372806],
                    [111.949494, 37.360361],
                    [111.949846, 37.362465],
                    [111.959964, 37.363668],
                    [111.970512, 37.35515],
                    [111.975493, 37.354909],
                    [111.972641, 37.350579],
                    [111.975493, 37.344024],
                    [111.975005, 37.339794],
                    [111.986412, 37.338872],
                    [111.987447, 37.340035],
                    [111.993405, 37.332215],
                    [111.996081, 37.325819],
                    [111.995983, 37.319001],
                    [111.993991, 37.3115],
                    [112.002703, 37.295233],
                    [112.010653, 37.288011],
                    [112.011024, 37.282634]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141122,
              "name": "汾阳市县",
              "center": [112.159154, 37.555155],
              "centroid": [111.812233, 37.680185],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 2,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [112.273726, 37.524072],
                    [112.274664, 37.531032],
                    [112.283629, 37.538171],
                    [112.294119, 37.548767],
                    [112.293728, 37.562901],
                    [112.290446, 37.566918],
                    [112.282379, 37.566319],
                    [112.263569, 37.562381],
                    [112.255677, 37.561741],
                    [112.240676, 37.56382],
                    [112.233761, 37.570076],
                    [112.229698, 37.580868],
                    [112.227022, 37.592298],
                    [112.221455, 37.596854],
                    [112.209638, 37.60051],
                    [112.203895, 37.613035],
                    [112.195476, 37.616171],
                    [112.187878, 37.627077],
                    [112.17565, 37.633587],
                    [112.174107, 37.635484],
                    [112.174361, 37.647345],
                    [112.171978, 37.654632],
                    [112.178541, 37.669085],
                    [112.173677, 37.6715],
                    [112.175923, 37.674494],
                    [112.161937, 37.679443],
                    [112.156722, 37.68561],
                    [112.136349, 37.6901],
                    [112.131622, 37.693831],
                    [112.129395, 37.698759],
                    [112.118671, 37.69856],
                    [112.107147, 37.712784],
                    [112.102771, 37.716196],
                    [112.092809, 37.713104],
                    [112.084723, 37.716056],
                    [112.075894, 37.717791],
                    [112.051282, 37.71049],
                    [112.044992, 37.709952],
                    [112.03464, 37.711248],
                    [112.024658, 37.720225],
                    [112.02331, 37.723935],
                    [112.016591, 37.721581],
                    [111.996218, 37.72208],
                    [111.990241, 37.720305],
                    [111.974985, 37.713183],
                    [111.965766, 37.714739],
                    [111.962406, 37.718769],
                    [111.957015, 37.730297],
                    [111.95303, 37.734724],
                    [111.948869, 37.735243],
                    [111.933907, 37.731354],
                    [111.93504, 37.740747],
                    [111.929961, 37.748483],
                    [111.921386, 37.757934],
                    [111.919062, 37.763775],
                    [111.918202, 37.774479],
                    [111.910702, 37.780538],
                    [111.912245, 37.792934],
                    [111.909764, 37.795464],
                    [111.900329, 37.798931],
                    [111.889723, 37.79672],
                    [111.885152, 37.793153],
                    [111.877827, 37.792615],
                    [111.866263, 37.794308],
                    [111.842726, 37.795006],
                    [111.82749, 37.793751],
                    [111.819833, 37.796122],
                    [111.81829, 37.80453],
                    [111.814969, 37.810965],
                    [111.808504, 37.817121],
                    [111.785923, 37.827498],
                    [111.779263, 37.827359],
                    [111.767816, 37.832338],
                    [111.767914, 37.841439],
                    [111.754006, 37.848628],
                    [111.746877, 37.855477],
                    [111.745783, 37.859598],
                    [111.74715, 37.870488],
                    [111.745158, 37.8722],
                    [111.733789, 37.873673],
                    [111.727109, 37.875902],
                    [111.719511, 37.874628],
                    [111.713084, 37.878171],
                    [111.70615, 37.879007],
                    [111.690387, 37.874747],
                    [111.683452, 37.863879],
                    [111.679526, 37.862784],
                    [111.665853, 37.86364],
                    [111.653508, 37.856672],
                    [111.649211, 37.857289],
                    [111.64255, 37.86151],
                    [111.632158, 37.858245],
                    [111.62079, 37.859997],
                    [111.60571, 37.855358],
                    [111.593971, 37.856731],
                    [111.583735, 37.854283],
                    [111.578891, 37.849106],
                    [111.573715, 37.84803],
                    [111.570218, 37.852351],
                    [111.566898, 37.861788],
                    [111.56637, 37.876001],
                    [111.561253, 37.880738],
                    [111.554963, 37.881873],
                    [111.54713, 37.885256],
                    [111.538028, 37.891505],
                    [111.527089, 37.89447],
                    [111.522245, 37.896938],
                    [111.496012, 37.899365],
                    [111.480014, 37.8965],
                    [111.466771, 37.892381],
                    [111.437178, 37.886291],
                    [111.434345, 37.883704],
                    [111.429775, 37.872538],
                    [111.433506, 37.858324],
                    [111.429013, 37.85034],
                    [111.427548, 37.844765],
                    [111.429384, 37.833135],
                    [111.423173, 37.827299],
                    [111.415379, 37.824909],
                    [111.413777, 37.821941],
                    [111.416551, 37.815328],
                    [111.422215, 37.806363],
                    [111.428427, 37.792336],
                    [111.444132, 37.785859],
                    [111.45466, 37.779382],
                    [111.458078, 37.770194],
                    [111.457766, 37.74952],
                    [111.455637, 37.738872],
                    [111.452003, 37.73275],
                    [111.452336, 37.727944],
                    [111.457922, 37.71831],
                    [111.459758, 37.704386],
                    [111.463235, 37.698001],
                    [111.469662, 37.694928],
                    [111.487085, 37.693572],
                    [111.49568, 37.690259],
                    [111.50904, 37.689202],
                    [111.515818, 37.687186],
                    [111.519237, 37.679284],
                    [111.514861, 37.667408],
                    [111.516053, 37.658505],
                    [111.520116, 37.653833],
                    [111.529726, 37.648503],
                    [111.539473, 37.645228],
                    [111.54672, 37.640476],
                    [111.548009, 37.634326],
                    [111.549845, 37.611677],
                    [111.55633, 37.605285],
                    [111.56598, 37.586623],
                    [111.566097, 37.582607],
                    [111.592857, 37.580868],
                    [111.610691, 37.575972],
                    [111.615321, 37.573954],
                    [111.624892, 37.573314],
                    [111.633838, 37.575273],
                    [111.65091, 37.580808],
                    [111.676635, 37.581807],
                    [111.685835, 37.580668],
                    [111.705271, 37.570896],
                    [111.71451, 37.560642],
                    [111.722636, 37.554305],
                    [111.729668, 37.552266],
                    [111.772543, 37.552106],
                    [111.780317, 37.550926],
                    [111.788326, 37.546788],
                    [111.811746, 37.553625],
                    [111.830479, 37.556844],
                    [111.860443, 37.56468],
                    [111.867533, 37.560282],
                    [111.87939, 37.544709],
                    [111.880757, 37.54077],
                    [111.877964, 37.532112],
                    [111.873335, 37.523753],
                    [111.866459, 37.519813],
                    [111.867201, 37.511632],
                    [111.87312, 37.506611],
                    [111.888023, 37.503411],
                    [111.906951, 37.497389],
                    [111.911053, 37.49989],
                    [111.907615, 37.505131],
                    [111.905467, 37.512512],
                    [111.91537, 37.513672],
                    [111.922011, 37.512152],
                    [111.930977, 37.512092],
                    [111.933829, 37.519953],
                    [111.937228, 37.524552],
                    [111.951506, 37.528872],
                    [111.969907, 37.528872],
                    [111.980591, 37.525512],
                    [111.985807, 37.519773],
                    [111.98524, 37.506851],
                    [111.988873, 37.504931],
                    [111.99405, 37.505711],
                    [112.002879, 37.513872],
                    [112.003621, 37.522373],
                    [112.006219, 37.527872],
                    [112.010184, 37.530852],
                    [112.024814, 37.531392],
                    [112.03796, 37.527232],
                    [112.043625, 37.523993],
                    [112.055775, 37.525672],
                    [112.059603, 37.528372],
                    [112.059466, 37.533272],
                    [112.069956, 37.532232],
                    [112.070971, 37.524752],
                    [112.076949, 37.516112],
                    [112.086188, 37.508492],
                    [112.088532, 37.50155],
                    [112.091481, 37.50105],
                    [112.095818, 37.506391],
                    [112.106541, 37.50169],
                    [112.112401, 37.496809],
                    [112.112421, 37.493768],
                    [112.105447, 37.482503],
                    [112.108221, 37.476079],
                    [112.121875, 37.466473],
                    [112.130938, 37.467274],
                    [112.136154, 37.472637],
                    [112.134513, 37.479441],
                    [112.13797, 37.483623],
                    [112.151663, 37.489786],
                    [112.156859, 37.488946],
                    [112.171704, 37.472737],
                    [112.181568, 37.474418],
                    [112.180904, 37.480602],
                    [112.176333, 37.489006],
                    [112.178228, 37.492807],
                    [112.184498, 37.497969],
                    [112.18862, 37.498069],
                    [112.199812, 37.495148],
                    [112.214677, 37.496569],
                    [112.223369, 37.49959],
                    [112.224854, 37.505871],
                    [112.221025, 37.513932],
                    [112.219912, 37.519753],
                    [112.2221, 37.522973],
                    [112.226338, 37.523153],
                    [112.231261, 37.518533],
                    [112.238547, 37.519273],
                    [112.244153, 37.528172],
                    [112.247844, 37.528872],
                    [112.26015, 37.525012],
                    [112.266674, 37.526412],
                    [112.26855, 37.523433],
                    [112.273726, 37.524072]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141123,
              "name": "兴县",
              "center": [111.124816, 38.464136],
              "centroid": [111.062566, 38.385603],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 3,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.422801, 38.570595],
                    [111.399108, 38.571561],
                    [111.384712, 38.571108],
                    [111.373617, 38.57306],
                    [111.36635, 38.579171],
                    [111.348946, 38.586839],
                    [111.346876, 38.591392],
                    [111.348907, 38.600221],
                    [111.346934, 38.603433],
                    [111.339727, 38.602724],
                    [111.32787, 38.599236],
                    [111.307673, 38.59758],
                    [111.295836, 38.593383],
                    [111.286909, 38.592791],
                    [111.276205, 38.594309],
                    [111.269251, 38.599926],
                    [111.259973, 38.617049],
                    [111.254992, 38.624122],
                    [111.25003, 38.63604],
                    [111.251866, 38.650437],
                    [111.248057, 38.657428],
                    [111.2312, 38.663827],
                    [111.227528, 38.667352],
                    [111.224227, 38.680758],
                    [111.22409, 38.691151],
                    [111.219656, 38.711795],
                    [111.211491, 38.723993],
                    [111.202467, 38.729324],
                    [111.187251, 38.730072],
                    [111.17557, 38.728478],
                    [111.151759, 38.723914],
                    [111.138691, 38.718248],
                    [111.12365, 38.706521],
                    [111.114587, 38.70477],
                    [111.104508, 38.699476],
                    [111.092397, 38.694635],
                    [111.080463, 38.688868],
                    [111.071282, 38.686329],
                    [111.055011, 38.674164],
                    [111.043838, 38.667627],
                    [111.034013, 38.664654],
                    [111.025086, 38.659318],
                    [111.015573, 38.658688],
                    [111.006901, 38.660421],
                    [111.003111, 38.663237],
                    [110.993364, 38.675246],
                    [110.989184, 38.681998],
                    [110.985922, 38.684321],
                    [110.975394, 38.685089],
                    [110.959826, 38.683475],
                    [110.949473, 38.685837],
                    [110.945547, 38.689833],
                    [110.945547, 38.697036],
                    [110.947754, 38.701405],
                    [110.955001, 38.709512],
                    [110.954356, 38.719527],
                    [110.945273, 38.729482],
                    [110.937675, 38.71876],
                    [110.930545, 38.714176],
                    [110.926189, 38.71331],
                    [110.915388, 38.704278],
                    [110.910797, 38.695639],
                    [110.910465, 38.689459],
                    [110.916228, 38.673986],
                    [110.913727, 38.66869],
                    [110.90902, 38.664969],
                    [110.896421, 38.657822],
                    [110.893647, 38.65345],
                    [110.888373, 38.638029],
                    [110.880794, 38.626939],
                    [110.880052, 38.618625],
                    [110.881322, 38.615197],
                    [110.894018, 38.600359],
                    [110.896636, 38.588238],
                    [110.910192, 38.582916],
                    [110.9199, 38.582069],
                    [110.920662, 38.578008],
                    [110.918415, 38.572133],
                    [110.90943, 38.563182],
                    [110.909059, 38.552021],
                    [110.91109, 38.546263],
                    [110.911286, 38.534784],
                    [110.907672, 38.521093],
                    [110.902984, 38.516595],
                    [110.894135, 38.514701],
                    [110.880384, 38.516457],
                    [110.870168, 38.5089],
                    [110.87091, 38.501658],
                    [110.8747, 38.491454],
                    [110.872668, 38.475229],
                    [110.877903, 38.459552],
                    [110.87427, 38.453688],
                    [110.850088, 38.441345],
                    [110.840712, 38.439982],
                    [110.829735, 38.44565],
                    [110.825047, 38.449403],
                    [110.813815, 38.452463],
                    [110.796841, 38.453471],
                    [110.786488, 38.449857],
                    [110.777639, 38.440871],
                    [110.773987, 38.426234],
                    [110.768615, 38.411535],
                    [110.758966, 38.40043],
                    [110.755176, 38.393671],
                    [110.752442, 38.383749],
                    [110.753243, 38.376454],
                    [110.750313, 38.369496],
                    [110.742792, 38.36396],
                    [110.731424, 38.360618],
                    [110.712203, 38.358503],
                    [110.701616, 38.353322],
                    [110.684505, 38.336234],
                    [110.675149, 38.324089],
                    [110.668586, 38.313663],
                    [110.661104, 38.308716],
                    [110.65167, 38.305847],
                    [110.638837, 38.304759],
                    [110.601313, 38.308202],
                    [110.591625, 38.307054],
                    [110.584124, 38.30371],
                    [110.577463, 38.297219],
                    [110.573967, 38.289223],
                    [110.572639, 38.279901],
                    [110.573635, 38.266894],
                    [110.56797, 38.245747],
                    [110.567638, 38.238914],
                    [110.569044, 38.227822],
                    [110.567247, 38.21756],
                    [110.562227, 38.212409],
                    [110.556836, 38.210269],
                    [110.558399, 38.206901],
                    [110.555879, 38.197528],
                    [110.562599, 38.197528],
                    [110.570119, 38.203691],
                    [110.5751, 38.19832],
                    [110.587347, 38.194337],
                    [110.581214, 38.185161],
                    [110.58766, 38.181137],
                    [110.592758, 38.169878],
                    [110.596118, 38.168728],
                    [110.607466, 38.173505],
                    [110.612213, 38.170096],
                    [110.626902, 38.165833],
                    [110.63411, 38.165714],
                    [110.651709, 38.161531],
                    [110.68222, 38.167935],
                    [110.694916, 38.169977],
                    [110.718434, 38.172336],
                    [110.728181, 38.171226],
                    [110.739374, 38.166527],
                    [110.753731, 38.155067],
                    [110.757305, 38.150427],
                    [110.762951, 38.138072],
                    [110.775413, 38.135236],
                    [110.790922, 38.141959],
                    [110.81401, 38.144676],
                    [110.822214, 38.144141],
                    [110.832664, 38.140729],
                    [110.851123, 38.128055],
                    [110.8588, 38.126825],
                    [110.866769, 38.129027],
                    [110.88392, 38.137199],
                    [110.90066, 38.139381],
                    [110.908707, 38.141146],
                    [110.92576, 38.150923],
                    [110.943691, 38.157089],
                    [110.957306, 38.158914],
                    [110.964435, 38.165238],
                    [110.965217, 38.170571],
                    [110.96883, 38.176717],
                    [110.979203, 38.175408],
                    [110.988871, 38.179095],
                    [110.996392, 38.184308],
                    [111.014186, 38.193227],
                    [111.03161, 38.19939],
                    [111.035693, 38.203255],
                    [111.040146, 38.214034],
                    [111.039462, 38.223186],
                    [111.040283, 38.231724],
                    [111.046162, 38.23523],
                    [111.051221, 38.234101],
                    [111.058449, 38.227802],
                    [111.062844, 38.220215],
                    [111.07093, 38.213954],
                    [111.078236, 38.21017],
                    [111.089878, 38.207059],
                    [111.104488, 38.207039],
                    [111.112614, 38.20375],
                    [111.125389, 38.196993],
                    [111.131366, 38.194971],
                    [111.141016, 38.198637],
                    [111.156154, 38.197726],
                    [111.162033, 38.194476],
                    [111.168772, 38.200797],
                    [111.18393, 38.203473],
                    [111.18938, 38.203512],
                    [111.197095, 38.198499],
                    [111.205573, 38.201531],
                    [111.218113, 38.212132],
                    [111.229345, 38.211319],
                    [111.24249, 38.207],
                    [111.244268, 38.201749],
                    [111.237334, 38.196755],
                    [111.227391, 38.193386],
                    [111.226239, 38.189204],
                    [111.221707, 38.183635],
                    [111.222723, 38.171582],
                    [111.215007, 38.168609],
                    [111.218914, 38.163514],
                    [111.212527, 38.148384],
                    [111.222821, 38.142395],
                    [111.225907, 38.134561],
                    [111.236377, 38.117641],
                    [111.246885, 38.107482],
                    [111.249835, 38.100557],
                    [111.26136, 38.095199],
                    [111.266243, 38.094921],
                    [111.271458, 38.108752],
                    [111.272415, 38.115676],
                    [111.275599, 38.122739],
                    [111.289253, 38.127381],
                    [111.297594, 38.131606],
                    [111.31029, 38.131963],
                    [111.316697, 38.129979],
                    [111.327284, 38.121688],
                    [111.331796, 38.119763],
                    [111.343008, 38.118097],
                    [111.347501, 38.11899],
                    [111.353576, 38.124068],
                    [111.35967, 38.124663],
                    [111.364417, 38.133788],
                    [111.369515, 38.147214],
                    [111.369554, 38.151101],
                    [111.365511, 38.158557],
                    [111.368538, 38.173386],
                    [111.369534, 38.192256],
                    [111.368753, 38.199113],
                    [111.371097, 38.211379],
                    [111.373968, 38.216094],
                    [111.37975, 38.221186],
                    [111.405124, 38.234259],
                    [111.408913, 38.238558],
                    [111.411121, 38.2444],
                    [111.410515, 38.248955],
                    [111.412214, 38.257985],
                    [111.41991, 38.264736],
                    [111.430361, 38.269785],
                    [111.441143, 38.282415],
                    [111.446437, 38.294112],
                    [111.44753, 38.30832],
                    [111.449933, 38.314929],
                    [111.456496, 38.320924],
                    [111.462688, 38.324405],
                    [111.477514, 38.329153],
                    [111.47724, 38.332812],
                    [111.471146, 38.344957],
                    [111.462102, 38.370286],
                    [111.460071, 38.374339],
                    [111.444776, 38.388058],
                    [111.433916, 38.393769],
                    [111.42368, 38.394046],
                    [111.415222, 38.398374],
                    [111.404284, 38.401773],
                    [111.394908, 38.401003],
                    [111.389497, 38.405212],
                    [111.387349, 38.41357],
                    [111.387759, 38.417699],
                    [111.396002, 38.430264],
                    [111.396334, 38.436407],
                    [111.401959, 38.448178],
                    [111.402428, 38.457696],
                    [111.399264, 38.473413],
                    [111.394791, 38.482612],
                    [111.393306, 38.49104],
                    [111.386567, 38.515529],
                    [111.385884, 38.521014],
                    [111.388442, 38.537308],
                    [111.390357, 38.54076],
                    [111.388931, 38.547564],
                    [111.375824, 38.553303],
                    [111.378715, 38.559672],
                    [111.383891, 38.562453],
                    [111.395982, 38.5661],
                    [111.413699, 38.567756],
                    [111.422801, 38.570595]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141124,
              "name": "临县",
              "center": [110.995963, 37.960806],
              "centroid": [110.895328, 37.955364],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 4,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [110.556836, 38.210269],
                    [110.545917, 38.209873],
                    [110.532635, 38.212052],
                    [110.523942, 38.210527],
                    [110.513355, 38.199628],
                    [110.509449, 38.192098],
                    [110.507867, 38.184923],
                    [110.507613, 38.16274],
                    [110.510601, 38.147254],
                    [110.519684, 38.130713],
                    [110.521188, 38.124445],
                    [110.517594, 38.115716],
                    [110.501889, 38.098116],
                    [110.500366, 38.092798],
                    [110.500835, 38.085256],
                    [110.506128, 38.074955],
                    [110.508785, 38.061932],
                    [110.507847, 38.05663],
                    [110.5031, 38.046384],
                    [110.501401, 38.038997],
                    [110.501557, 38.028927],
                    [110.504722, 38.017624],
                    [110.50812, 38.012876],
                    [110.518532, 38.008862],
                    [110.527048, 37.997258],
                    [110.528376, 37.993264],
                    [110.527048, 37.988137],
                    [110.518141, 37.97641],
                    [110.517008, 37.96502],
                    [110.522497, 37.95494],
                    [110.547617, 37.940304],
                    [110.559669, 37.936108],
                    [110.572736, 37.934497],
                    [110.587972, 37.926621],
                    [110.594047, 37.921887],
                    [110.601255, 37.912397],
                    [110.607271, 37.896221],
                    [110.625144, 37.872996],
                    [110.630086, 37.869035],
                    [110.634813, 37.861589],
                    [110.635594, 37.855875],
                    [110.63952, 37.853884],
                    [110.650596, 37.840006],
                    [110.659346, 37.821423],
                    [110.660772, 37.808036],
                    [110.665421, 37.801581],
                    [110.680384, 37.790044],
                    [110.714274, 37.777568],
                    [110.725134, 37.774738],
                    [110.735741, 37.770393],
                    [110.755684, 37.755043],
                    [110.758868, 37.750338],
                    [110.758673, 37.744296],
                    [110.750703, 37.73612],
                    [110.736053, 37.732511],
                    [110.716657, 37.728702],
                    [110.707125, 37.723935],
                    [110.703511, 37.718609],
                    [110.703413, 37.712026],
                    [110.706558, 37.705323],
                    [110.712496, 37.700675],
                    [110.7391, 37.689421],
                    [110.760392, 37.686388],
                    [110.775393, 37.68088],
                    [110.783636, 37.672617],
                    [110.796157, 37.663036],
                    [110.797681, 37.658345],
                    [110.793325, 37.650759],
                    [110.784964, 37.646027],
                    [110.770725, 37.646227],
                    [110.763693, 37.639598],
                    [110.763693, 37.631051],
                    [110.770354, 37.621924],
                    [110.772698, 37.607302],
                    [110.78475, 37.608641],
                    [110.793012, 37.605065],
                    [110.797368, 37.605704],
                    [110.811471, 37.613215],
                    [110.823367, 37.614813],
                    [110.827488, 37.619167],
                    [110.836024, 37.615792],
                    [110.840947, 37.60916],
                    [110.852549, 37.608561],
                    [110.858175, 37.610698],
                    [110.858683, 37.623242],
                    [110.857257, 37.632269],
                    [110.861027, 37.633966],
                    [110.882709, 37.632249],
                    [110.889057, 37.628874],
                    [110.897065, 37.626517],
                    [110.905152, 37.626897],
                    [110.91947, 37.629213],
                    [110.945156, 37.627276],
                    [110.944258, 37.63137],
                    [110.946426, 37.640895],
                    [110.950039, 37.643351],
                    [110.964084, 37.641994],
                    [110.976429, 37.64423],
                    [110.979456, 37.646446],
                    [110.978753, 37.650499],
                    [110.987094, 37.653095],
                    [110.981879, 37.660601],
                    [110.981312, 37.664414],
                    [110.992817, 37.664873],
                    [110.992817, 37.667049],
                    [110.975237, 37.678405],
                    [110.962677, 37.68096],
                    [110.96047, 37.683634],
                    [110.964572, 37.69429],
                    [110.962131, 37.699198],
                    [110.96719, 37.704944],
                    [110.975042, 37.706341],
                    [110.976585, 37.709313],
                    [110.975511, 37.715178],
                    [110.983207, 37.713582],
                    [110.985258, 37.715078],
                    [110.987992, 37.723815],
                    [110.985414, 37.730636],
                    [110.988657, 37.736559],
                    [111.007975, 37.734206],
                    [111.014929, 37.732112],
                    [111.021707, 37.736898],
                    [111.024754, 37.728263],
                    [111.034755, 37.72204],
                    [111.038915, 37.714779],
                    [111.051417, 37.713423],
                    [111.059425, 37.71809],
                    [111.063898, 37.719068],
                    [111.065266, 37.723336],
                    [111.074857, 37.723157],
                    [111.082045, 37.721282],
                    [111.100972, 37.72202],
                    [111.102828, 37.717692],
                    [111.112009, 37.712944],
                    [111.119373, 37.711208],
                    [111.126639, 37.714999],
                    [111.133612, 37.722439],
                    [111.147833, 37.72216],
                    [111.158439, 37.719646],
                    [111.173695, 37.720803],
                    [111.179379, 37.722199],
                    [111.180512, 37.72918],
                    [111.190102, 37.730217],
                    [111.193657, 37.735622],
                    [111.186879, 37.739092],
                    [111.185512, 37.743419],
                    [111.17973, 37.743499],
                    [111.181957, 37.736818],
                    [111.176605, 37.735143],
                    [111.17219, 37.738553],
                    [111.163186, 37.740827],
                    [111.15127, 37.741425],
                    [111.149825, 37.750039],
                    [111.151993, 37.7561],
                    [111.14418, 37.763775],
                    [111.137519, 37.763695],
                    [111.123748, 37.765589],
                    [111.118494, 37.769934],
                    [111.119509, 37.783547],
                    [111.124256, 37.805785],
                    [111.124334, 37.816364],
                    [111.12242, 37.826383],
                    [111.122869, 37.836043],
                    [111.12535, 37.841897],
                    [111.130546, 37.862047],
                    [111.120896, 37.872797],
                    [111.12994, 37.881535],
                    [111.134042, 37.879087],
                    [111.142656, 37.877992],
                    [111.151251, 37.868577],
                    [111.163889, 37.866128],
                    [111.171311, 37.86784],
                    [111.189731, 37.877395],
                    [111.20319, 37.887465],
                    [111.206588, 37.894271],
                    [111.207467, 37.900042],
                    [111.213894, 37.903584],
                    [111.211569, 37.914387],
                    [111.221141, 37.931474],
                    [111.222938, 37.937619],
                    [111.228036, 37.941995],
                    [111.232353, 37.948358],
                    [111.228622, 37.957067],
                    [111.234013, 37.970148],
                    [111.238467, 37.971878],
                    [111.250147, 37.980604],
                    [111.257336, 38.0062],
                    [111.271263, 38.018995],
                    [111.275755, 38.0241],
                    [111.287886, 38.034826],
                    [111.292886, 38.046702],
                    [111.293531, 38.059648],
                    [111.299645, 38.070905],
                    [111.306774, 38.079639],
                    [111.306012, 38.084919],
                    [111.299508, 38.088253],
                    [111.278705, 38.093473],
                    [111.266243, 38.094921],
                    [111.26136, 38.095199],
                    [111.249835, 38.100557],
                    [111.246885, 38.107482],
                    [111.236377, 38.117641],
                    [111.225907, 38.134561],
                    [111.222821, 38.142395],
                    [111.212527, 38.148384],
                    [111.218914, 38.163514],
                    [111.215007, 38.168609],
                    [111.222723, 38.171582],
                    [111.221707, 38.183635],
                    [111.226239, 38.189204],
                    [111.227391, 38.193386],
                    [111.237334, 38.196755],
                    [111.244268, 38.201749],
                    [111.24249, 38.207],
                    [111.229345, 38.211319],
                    [111.218113, 38.212132],
                    [111.205573, 38.201531],
                    [111.197095, 38.198499],
                    [111.18938, 38.203512],
                    [111.18393, 38.203473],
                    [111.168772, 38.200797],
                    [111.162033, 38.194476],
                    [111.156154, 38.197726],
                    [111.141016, 38.198637],
                    [111.131366, 38.194971],
                    [111.125389, 38.196993],
                    [111.112614, 38.20375],
                    [111.104488, 38.207039],
                    [111.089878, 38.207059],
                    [111.078236, 38.21017],
                    [111.07093, 38.213954],
                    [111.062844, 38.220215],
                    [111.058449, 38.227802],
                    [111.051221, 38.234101],
                    [111.046162, 38.23523],
                    [111.040283, 38.231724],
                    [111.039462, 38.223186],
                    [111.040146, 38.214034],
                    [111.035693, 38.203255],
                    [111.03161, 38.19939],
                    [111.014186, 38.193227],
                    [110.996392, 38.184308],
                    [110.988871, 38.179095],
                    [110.979203, 38.175408],
                    [110.96883, 38.176717],
                    [110.965217, 38.170571],
                    [110.964435, 38.165238],
                    [110.957306, 38.158914],
                    [110.943691, 38.157089],
                    [110.92576, 38.150923],
                    [110.908707, 38.141146],
                    [110.90066, 38.139381],
                    [110.88392, 38.137199],
                    [110.866769, 38.129027],
                    [110.8588, 38.126825],
                    [110.851123, 38.128055],
                    [110.832664, 38.140729],
                    [110.822214, 38.144141],
                    [110.81401, 38.144676],
                    [110.790922, 38.141959],
                    [110.775413, 38.135236],
                    [110.762951, 38.138072],
                    [110.757305, 38.150427],
                    [110.753731, 38.155067],
                    [110.739374, 38.166527],
                    [110.728181, 38.171226],
                    [110.718434, 38.172336],
                    [110.694916, 38.169977],
                    [110.68222, 38.167935],
                    [110.651709, 38.161531],
                    [110.63411, 38.165714],
                    [110.626902, 38.165833],
                    [110.612213, 38.170096],
                    [110.607466, 38.173505],
                    [110.596118, 38.168728],
                    [110.592758, 38.169878],
                    [110.58766, 38.181137],
                    [110.581214, 38.185161],
                    [110.587347, 38.194337],
                    [110.5751, 38.19832],
                    [110.570119, 38.203691],
                    [110.562599, 38.197528],
                    [110.555879, 38.197528],
                    [110.558399, 38.206901],
                    [110.556836, 38.210269]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141125,
              "name": "柳林县",
              "center": [110.89613, 37.431664],
              "centroid": [110.87023, 37.398821],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 5,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.098707, 37.481222],
                    [111.091909, 37.483844],
                    [111.094566, 37.489006],
                    [111.083998, 37.494048],
                    [111.075755, 37.493067],
                    [111.071595, 37.494748],
                    [111.065031, 37.50191],
                    [111.063781, 37.508032],
                    [111.061281, 37.508072],
                    [111.050088, 37.516372],
                    [111.03997, 37.527352],
                    [111.025477, 37.534651],
                    [111.017234, 37.53999],
                    [111.002857, 37.553026],
                    [110.99352, 37.564959],
                    [110.988305, 37.568597],
                    [110.980863, 37.586124],
                    [110.974554, 37.592478],
                    [110.960001, 37.604366],
                    [110.950762, 37.614933],
                    [110.945156, 37.627276],
                    [110.91947, 37.629213],
                    [110.905152, 37.626897],
                    [110.897065, 37.626517],
                    [110.889057, 37.628874],
                    [110.882709, 37.632249],
                    [110.861027, 37.633966],
                    [110.857257, 37.632269],
                    [110.858683, 37.623242],
                    [110.858175, 37.610698],
                    [110.852549, 37.608561],
                    [110.840947, 37.60916],
                    [110.836024, 37.615792],
                    [110.827488, 37.619167],
                    [110.823367, 37.614813],
                    [110.811471, 37.613215],
                    [110.797368, 37.605704],
                    [110.793012, 37.605065],
                    [110.78475, 37.608641],
                    [110.772698, 37.607302],
                    [110.772248, 37.592658],
                    [110.77594, 37.587083],
                    [110.794926, 37.566179],
                    [110.794731, 37.558583],
                    [110.785238, 37.547208],
                    [110.771096, 37.53839],
                    [110.771291, 37.520153],
                    [110.765216, 37.513332],
                    [110.759513, 37.503451],
                    [110.757598, 37.485985],
                    [110.759513, 37.47762],
                    [110.75836, 37.471176],
                    [110.754375, 37.464712],
                    [110.750098, 37.454363],
                    [110.74496, 37.45076],
                    [110.735838, 37.449038],
                    [110.722517, 37.448258],
                    [110.716989, 37.446736],
                    [110.689779, 37.443473],
                    [110.681771, 37.441731],
                    [110.658155, 37.44075],
                    [110.648154, 37.438167],
                    [110.644345, 37.434923],
                    [110.64245, 37.429998],
                    [110.639403, 37.413836],
                    [110.631785, 37.398833],
                    [110.629695, 37.383627],
                    [110.630652, 37.373007],
                    [110.634071, 37.366173],
                    [110.641493, 37.3601],
                    [110.651768, 37.357074],
                    [110.667023, 37.354588],
                    [110.674348, 37.354809],
                    [110.695034, 37.349597],
                    [110.700991, 37.343563],
                    [110.698901, 37.332195],
                    [110.69394, 37.325919],
                    [110.678704, 37.317898],
                    [110.677376, 37.312022],
                    [110.67927, 37.307449],
                    [110.689662, 37.295233],
                    [110.690033, 37.287068],
                    [110.687552, 37.284019],
                    [110.68052, 37.280969],
                    [110.661905, 37.281992],
                    [110.655577, 37.275973],
                    [110.653447, 37.262749],
                    [110.6638, 37.268749],
                    [110.670812, 37.267625],
                    [110.67302, 37.264916],
                    [110.671516, 37.256708],
                    [110.664093, 37.252453],
                    [110.663448, 37.248539],
                    [110.667589, 37.247174],
                    [110.67302, 37.24898],
                    [110.679114, 37.246632],
                    [110.68011, 37.241212],
                    [110.683958, 37.240148],
                    [110.699136, 37.241995],
                    [110.704566, 37.24073],
                    [110.712418, 37.228042],
                    [110.717223, 37.223183],
                    [110.724646, 37.22009],
                    [110.728494, 37.214608],
                    [110.734647, 37.214548],
                    [110.744218, 37.224749],
                    [110.759239, 37.238963],
                    [110.7768, 37.246511],
                    [110.784437, 37.248258],
                    [110.792192, 37.248418],
                    [110.799341, 37.245327],
                    [110.812428, 37.232619],
                    [110.817409, 37.229387],
                    [110.818034, 37.226395],
                    [110.811998, 37.222339],
                    [110.810299, 37.217922],
                    [110.811041, 37.211295],
                    [110.8094, 37.204667],
                    [110.812916, 37.192435],
                    [110.817585, 37.19133],
                    [110.829051, 37.173208],
                    [110.83411, 37.168768],
                    [110.838368, 37.168406],
                    [110.844756, 37.163342],
                    [110.850147, 37.156168],
                    [110.85083, 37.148269],
                    [110.855206, 37.1464],
                    [110.867629, 37.151806],
                    [110.875071, 37.158539],
                    [110.872024, 37.165814],
                    [110.878411, 37.168084],
                    [110.879075, 37.175921],
                    [110.886146, 37.177046],
                    [110.89396, 37.166839],
                    [110.900347, 37.165151],
                    [110.908199, 37.166517],
                    [110.91193, 37.163523],
                    [110.915681, 37.163905],
                    [110.920974, 37.168145],
                    [110.920876, 37.17144],
                    [110.916892, 37.17787],
                    [110.926268, 37.178191],
                    [110.951153, 37.173007],
                    [110.956368, 37.177387],
                    [110.957599, 37.185785],
                    [110.955899, 37.188397],
                    [110.94668, 37.195187],
                    [110.941601, 37.204567],
                    [110.943164, 37.217841],
                    [110.946934, 37.221476],
                    [110.955567, 37.222138],
                    [110.978538, 37.220331],
                    [110.988149, 37.223584],
                    [110.990571, 37.229668],
                    [110.987563, 37.234808],
                    [110.981039, 37.240911],
                    [110.959767, 37.250385],
                    [110.96842, 37.266],
                    [110.968049, 37.274709],
                    [110.963049, 37.29098],
                    [110.960412, 37.306466],
                    [110.969104, 37.3115],
                    [110.970002, 37.317537],
                    [110.976233, 37.319462],
                    [110.985727, 37.319362],
                    [110.988657, 37.309776],
                    [111.000709, 37.308913],
                    [111.006529, 37.300409],
                    [111.011354, 37.302736],
                    [111.008698, 37.311882],
                    [111.010905, 37.322049],
                    [111.016784, 37.327163],
                    [111.02532, 37.330451],
                    [111.031551, 37.331253],
                    [111.037529, 37.337148],
                    [111.04876, 37.337348],
                    [111.053565, 37.341598],
                    [111.063996, 37.347051],
                    [111.069895, 37.354348],
                    [111.064777, 37.372506],
                    [111.068665, 37.378337],
                    [111.084428, 37.389598],
                    [111.086108, 37.398433],
                    [111.080951, 37.412935],
                    [111.074681, 37.420125],
                    [111.071692, 37.427855],
                    [111.059953, 37.4321],
                    [111.051729, 37.439689],
                    [111.05128, 37.444534],
                    [111.064231, 37.447477],
                    [111.087827, 37.455104],
                    [111.103824, 37.465993],
                    [111.104293, 37.468775],
                    [111.098707, 37.481222]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141126,
              "name": "石楼县",
              "center": [110.837119, 36.999426],
              "centroid": [110.745552, 37.029516],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 6,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.080814, 36.931106],
                    [111.079994, 36.937536],
                    [111.082846, 36.945013],
                    [111.095308, 36.956217],
                    [111.097398, 36.962967],
                    [111.093726, 36.973827],
                    [111.094292, 36.985571],
                    [111.096128, 36.995762],
                    [111.101519, 37.012336],
                    [111.102203, 37.018577],
                    [111.101207, 37.02818],
                    [111.104274, 37.052918],
                    [111.102789, 37.06135],
                    [111.091343, 37.076178],
                    [111.0856, 37.093438],
                    [111.088471, 37.096757],
                    [111.088334, 37.102992],
                    [111.083275, 37.107094],
                    [111.077728, 37.109145],
                    [111.063723, 37.110895],
                    [111.05841, 37.112846],
                    [111.051886, 37.118536],
                    [111.046026, 37.120627],
                    [111.040498, 37.119582],
                    [111.039697, 37.113831],
                    [111.032235, 37.108623],
                    [111.025535, 37.11373],
                    [111.018855, 37.116988],
                    [111.010885, 37.114394],
                    [111.012038, 37.110131],
                    [111.00733, 37.106692],
                    [110.983715, 37.107677],
                    [110.978988, 37.103716],
                    [110.966311, 37.104279],
                    [110.960099, 37.105747],
                    [110.952618, 37.103072],
                    [110.941992, 37.106089],
                    [110.937069, 37.108824],
                    [110.921794, 37.108502],
                    [110.908883, 37.114193],
                    [110.903668, 37.11745],
                    [110.897105, 37.1155],
                    [110.89017, 37.116505],
                    [110.88558, 37.115399],
                    [110.881986, 37.118617],
                    [110.878997, 37.126518],
                    [110.87388, 37.12869],
                    [110.873665, 37.122397],
                    [110.867668, 37.123462],
                    [110.862609, 37.128207],
                    [110.856397, 37.127323],
                    [110.852901, 37.120929],
                    [110.842119, 37.119924],
                    [110.838095, 37.115078],
                    [110.834989, 37.11556],
                    [110.830223, 37.132148],
                    [110.831219, 37.13854],
                    [110.837821, 37.141857],
                    [110.844306, 37.148751],
                    [110.844873, 37.157595],
                    [110.841142, 37.159243],
                    [110.844756, 37.163342],
                    [110.838368, 37.168406],
                    [110.83411, 37.168768],
                    [110.829051, 37.173208],
                    [110.817585, 37.19133],
                    [110.812916, 37.192435],
                    [110.8094, 37.204667],
                    [110.811041, 37.211295],
                    [110.810299, 37.217922],
                    [110.811998, 37.222339],
                    [110.818034, 37.226395],
                    [110.817409, 37.229387],
                    [110.812428, 37.232619],
                    [110.799341, 37.245327],
                    [110.792192, 37.248418],
                    [110.784437, 37.248258],
                    [110.7768, 37.246511],
                    [110.759239, 37.238963],
                    [110.744218, 37.224749],
                    [110.734647, 37.214548],
                    [110.728494, 37.214608],
                    [110.724646, 37.22009],
                    [110.717223, 37.223183],
                    [110.712418, 37.228042],
                    [110.704566, 37.24073],
                    [110.699136, 37.241995],
                    [110.683958, 37.240148],
                    [110.68011, 37.241212],
                    [110.679114, 37.246632],
                    [110.67302, 37.24898],
                    [110.667589, 37.247174],
                    [110.663448, 37.248539],
                    [110.664093, 37.252453],
                    [110.671516, 37.256708],
                    [110.67302, 37.264916],
                    [110.670812, 37.267625],
                    [110.6638, 37.268749],
                    [110.653447, 37.262749],
                    [110.650185, 37.254339],
                    [110.641864, 37.248217],
                    [110.636532, 37.241754],
                    [110.631394, 37.231254],
                    [110.614557, 37.216375],
                    [110.584534, 37.180662],
                    [110.57676, 37.173088],
                    [110.563497, 37.162076],
                    [110.551738, 37.153756],
                    [110.536678, 37.140671],
                    [110.534256, 37.134439],
                    [110.534021, 37.127664],
                    [110.535545, 37.115118],
                    [110.529861, 37.106793],
                    [110.526462, 37.104319],
                    [110.507144, 37.095449],
                    [110.498627, 37.089777],
                    [110.485774, 37.072597],
                    [110.476633, 37.065092],
                    [110.46712, 37.050644],
                    [110.460479, 37.044767],
                    [110.449501, 37.041929],
                    [110.435848, 37.042915],
                    [110.425983, 37.040822],
                    [110.417291, 37.034683],
                    [110.417467, 37.027496],
                    [110.424089, 37.023913],
                    [110.443817, 37.022101],
                    [110.450322, 37.016483],
                    [110.4479, 37.009335],
                    [110.441239, 37.006154],
                    [110.432429, 37.006476],
                    [110.426667, 37.00861],
                    [110.412857, 37.019242],
                    [110.408443, 37.021235],
                    [110.396586, 37.022745],
                    [110.383206, 37.021819],
                    [110.377893, 37.018316],
                    [110.377131, 37.010262],
                    [110.381995, 37.002509],
                    [110.388538, 36.997655],
                    [110.402055, 36.992963],
                    [110.408443, 36.989015],
                    [110.412701, 36.984],
                    [110.422643, 36.967178],
                    [110.425749, 36.957225],
                    [110.422643, 36.945759],
                    [110.41565, 36.93421],
                    [110.411158, 36.91633],
                    [110.410025, 36.905644],
                    [110.410533, 36.899473],
                    [110.414869, 36.899191],
                    [110.426101, 36.892778],
                    [110.432761, 36.885396],
                    [110.44077, 36.886647],
                    [110.445087, 36.890418],
                    [110.450126, 36.890418],
                    [110.455049, 36.887615],
                    [110.461807, 36.887171],
                    [110.468058, 36.880596],
                    [110.469757, 36.876743],
                    [110.475109, 36.875735],
                    [110.487962, 36.880152],
                    [110.499741, 36.879588],
                    [110.505991, 36.873738],
                    [110.518161, 36.873536],
                    [110.524978, 36.871136],
                    [110.534979, 36.869986],
                    [110.539256, 36.860423],
                    [110.545097, 36.859596],
                    [110.544901, 36.867404],
                    [110.55416, 36.872084],
                    [110.558204, 36.872326],
                    [110.562599, 36.865366],
                    [110.571955, 36.865467],
                    [110.574318, 36.861472],
                    [110.588207, 36.865285],
                    [110.597329, 36.866899],
                    [110.598364, 36.87047],
                    [110.604849, 36.874968],
                    [110.622058, 36.872306],
                    [110.630359, 36.871922],
                    [110.638036, 36.876199],
                    [110.639833, 36.884126],
                    [110.647158, 36.892576],
                    [110.645966, 36.899594],
                    [110.646142, 36.915967],
                    [110.64872, 36.923385],
                    [110.65335, 36.928344],
                    [110.661749, 36.933726],
                    [110.668683, 36.933908],
                    [110.677708, 36.932094],
                    [110.685482, 36.932215],
                    [110.699585, 36.934412],
                    [110.705308, 36.936528],
                    [110.712145, 36.935782],
                    [110.717809, 36.932598],
                    [110.720466, 36.928244],
                    [110.721814, 36.920079],
                    [110.72531, 36.910805],
                    [110.738475, 36.907761],
                    [110.765783, 36.900139],
                    [110.769143, 36.897114],
                    [110.776507, 36.876703],
                    [110.784418, 36.868251],
                    [110.79143, 36.864478],
                    [110.803755, 36.864458],
                    [110.819128, 36.858627],
                    [110.824734, 36.857498],
                    [110.838954, 36.85891],
                    [110.843818, 36.861291],
                    [110.858546, 36.864519],
                    [110.877278, 36.872487],
                    [110.895229, 36.875937],
                    [110.896714, 36.885961],
                    [110.900152, 36.88824],
                    [110.91486, 36.891023],
                    [110.926893, 36.8954],
                    [110.937421, 36.906369],
                    [110.951817, 36.903889],
                    [110.971077, 36.896206],
                    [110.9793, 36.89669],
                    [110.984867, 36.898888],
                    [110.991294, 36.903768],
                    [110.993677, 36.908023],
                    [110.987758, 36.917761],
                    [110.989555, 36.928224],
                    [110.995689, 36.928586],
                    [111.003111, 36.923527],
                    [111.003326, 36.915624],
                    [111.007135, 36.909858],
                    [111.004518, 36.9052],
                    [111.000826, 36.904252],
                    [110.999205, 36.898929],
                    [111.014108, 36.899816],
                    [111.014772, 36.905785],
                    [111.020711, 36.908426],
                    [111.020359, 36.917479],
                    [111.031376, 36.917217],
                    [111.036122, 36.924111],
                    [111.041826, 36.924051],
                    [111.042178, 36.92909],
                    [111.051925, 36.928647],
                    [111.080814, 36.931106]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141127,
              "name": "岚县",
              "center": [111.671555, 38.278654],
              "centroid": [111.601155, 38.336755],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 7,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.368538, 38.173386],
                    [111.375375, 38.17186],
                    [111.391861, 38.165119],
                    [111.396666, 38.16165],
                    [111.408855, 38.162423],
                    [111.419657, 38.159132],
                    [111.42493, 38.153203],
                    [111.432451, 38.150407],
                    [111.443663, 38.150367],
                    [111.451281, 38.14886],
                    [111.459172, 38.144339],
                    [111.469525, 38.14063],
                    [111.477787, 38.130971],
                    [111.482905, 38.129424],
                    [111.491324, 38.131844],
                    [111.503669, 38.125199],
                    [111.510017, 38.125556],
                    [111.520799, 38.122739],
                    [111.528828, 38.118315],
                    [111.5308, 38.107423],
                    [111.536074, 38.104169],
                    [111.543204, 38.087023],
                    [111.546837, 38.081981],
                    [111.54754, 38.085356],
                    [111.55887, 38.089881],
                    [111.567679, 38.095497],
                    [111.576352, 38.097045],
                    [111.600319, 38.0977],
                    [111.617332, 38.099902],
                    [111.625009, 38.101847],
                    [111.643214, 38.116093],
                    [111.651105, 38.119962],
                    [111.659954, 38.122501],
                    [111.674115, 38.130495],
                    [111.684566, 38.131725],
                    [111.689742, 38.13468],
                    [111.71662, 38.158497],
                    [111.718319, 38.16504],
                    [111.715565, 38.172752],
                    [111.722773, 38.178322],
                    [111.738399, 38.180106],
                    [111.744142, 38.183595],
                    [111.750002, 38.183139],
                    [111.753655, 38.17965],
                    [111.766332, 38.179313],
                    [111.770395, 38.181533],
                    [111.773364, 38.187777],
                    [111.777134, 38.186627],
                    [111.785142, 38.191186],
                    [111.793932, 38.19069],
                    [111.792643, 38.194971],
                    [111.797761, 38.193723],
                    [111.806433, 38.195447],
                    [111.804382, 38.200461],
                    [111.810652, 38.209813],
                    [111.81536, 38.210447],
                    [111.817626, 38.214291],
                    [111.805379, 38.222434],
                    [111.80028, 38.235408],
                    [111.79024, 38.239033],
                    [111.779165, 38.248044],
                    [111.776391, 38.253589],
                    [111.7752, 38.268676],
                    [111.776411, 38.281959],
                    [111.775161, 38.290154],
                    [111.77727, 38.292707],
                    [111.788795, 38.293696],
                    [111.807488, 38.299238],
                    [111.810848, 38.299277],
                    [111.819657, 38.295517],
                    [111.830908, 38.297318],
                    [111.842355, 38.304066],
                    [111.842355, 38.31849],
                    [111.841144, 38.321022],
                    [111.828623, 38.32579],
                    [111.825166, 38.328995],
                    [111.821552, 38.336768],
                    [111.828096, 38.349525],
                    [111.82165, 38.360658],
                    [111.82333, 38.36908],
                    [111.815712, 38.374873],
                    [111.808289, 38.375367],
                    [111.803347, 38.378016],
                    [111.797663, 38.384757],
                    [111.788873, 38.38782],
                    [111.789615, 38.394738],
                    [111.793756, 38.402584],
                    [111.789107, 38.407109],
                    [111.787486, 38.412997],
                    [111.782818, 38.420999],
                    [111.78356, 38.423725],
                    [111.793717, 38.42973],
                    [111.796667, 38.433088],
                    [111.796491, 38.437948],
                    [111.792096, 38.442688],
                    [111.793561, 38.450844],
                    [111.787564, 38.456591],
                    [111.781743, 38.459849],
                    [111.76473, 38.472386],
                    [111.759378, 38.478368],
                    [111.738497, 38.493704],
                    [111.728769, 38.500039],
                    [111.723417, 38.506256],
                    [111.725371, 38.514168],
                    [111.739942, 38.524052],
                    [111.75385, 38.529142],
                    [111.769027, 38.537111],
                    [111.766937, 38.547663],
                    [111.761253, 38.560146],
                    [111.749768, 38.581852],
                    [111.738477, 38.594329],
                    [111.733633, 38.595413],
                    [111.719237, 38.60235],
                    [111.70992, 38.601029],
                    [111.706326, 38.598329],
                    [111.697907, 38.581694],
                    [111.692555, 38.574755],
                    [111.68439, 38.566633],
                    [111.676518, 38.562886],
                    [111.658899, 38.556675],
                    [111.64716, 38.554841],
                    [111.628252, 38.54784],
                    [111.609558, 38.5422],
                    [111.604792, 38.537289],
                    [111.596334, 38.533363],
                    [111.580258, 38.522908],
                    [111.565609, 38.511899],
                    [111.55174, 38.506828],
                    [111.545978, 38.507538],
                    [111.534922, 38.512629],
                    [111.529609, 38.516753],
                    [111.52244, 38.524743],
                    [111.512556, 38.525354],
                    [111.505876, 38.519002],
                    [111.504782, 38.508466],
                    [111.506657, 38.507163],
                    [111.505954, 38.494987],
                    [111.50363, 38.483895],
                    [111.491402, 38.493448],
                    [111.486831, 38.498915],
                    [111.468411, 38.51036],
                    [111.454933, 38.523954],
                    [111.450773, 38.530286],
                    [111.447374, 38.542555],
                    [111.447433, 38.554329],
                    [111.4463, 38.563636],
                    [111.438487, 38.569136],
                    [111.422801, 38.570595],
                    [111.413699, 38.567756],
                    [111.395982, 38.5661],
                    [111.383891, 38.562453],
                    [111.378715, 38.559672],
                    [111.375824, 38.553303],
                    [111.388931, 38.547564],
                    [111.390357, 38.54076],
                    [111.388442, 38.537308],
                    [111.385884, 38.521014],
                    [111.386567, 38.515529],
                    [111.393306, 38.49104],
                    [111.394791, 38.482612],
                    [111.399264, 38.473413],
                    [111.402428, 38.457696],
                    [111.401959, 38.448178],
                    [111.396334, 38.436407],
                    [111.396002, 38.430264],
                    [111.387759, 38.417699],
                    [111.387349, 38.41357],
                    [111.389497, 38.405212],
                    [111.394908, 38.401003],
                    [111.404284, 38.401773],
                    [111.415222, 38.398374],
                    [111.42368, 38.394046],
                    [111.433916, 38.393769],
                    [111.444776, 38.388058],
                    [111.460071, 38.374339],
                    [111.462102, 38.370286],
                    [111.471146, 38.344957],
                    [111.47724, 38.332812],
                    [111.477514, 38.329153],
                    [111.462688, 38.324405],
                    [111.456496, 38.320924],
                    [111.449933, 38.314929],
                    [111.44753, 38.30832],
                    [111.446437, 38.294112],
                    [111.441143, 38.282415],
                    [111.430361, 38.269785],
                    [111.41991, 38.264736],
                    [111.412214, 38.257985],
                    [111.410515, 38.248955],
                    [111.411121, 38.2444],
                    [111.408913, 38.238558],
                    [111.405124, 38.234259],
                    [111.37975, 38.221186],
                    [111.373968, 38.216094],
                    [111.371097, 38.211379],
                    [111.368753, 38.199113],
                    [111.369534, 38.192256],
                    [111.368538, 38.173386]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141128,
              "name": "方山县",
              "center": [111.238885, 37.892632],
              "centroid": [111.331711, 37.877876],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 8,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.368538, 38.173386],
                    [111.365511, 38.158557],
                    [111.369554, 38.151101],
                    [111.369515, 38.147214],
                    [111.364417, 38.133788],
                    [111.35967, 38.124663],
                    [111.353576, 38.124068],
                    [111.347501, 38.11899],
                    [111.343008, 38.118097],
                    [111.331796, 38.119763],
                    [111.327284, 38.121688],
                    [111.316697, 38.129979],
                    [111.31029, 38.131963],
                    [111.297594, 38.131606],
                    [111.289253, 38.127381],
                    [111.275599, 38.122739],
                    [111.272415, 38.115676],
                    [111.271458, 38.108752],
                    [111.266243, 38.094921],
                    [111.278705, 38.093473],
                    [111.299508, 38.088253],
                    [111.306012, 38.084919],
                    [111.306774, 38.079639],
                    [111.299645, 38.070905],
                    [111.293531, 38.059648],
                    [111.292886, 38.046702],
                    [111.287886, 38.034826],
                    [111.275755, 38.0241],
                    [111.271263, 38.018995],
                    [111.257336, 38.0062],
                    [111.250147, 37.980604],
                    [111.238467, 37.971878],
                    [111.234013, 37.970148],
                    [111.228622, 37.957067],
                    [111.232353, 37.948358],
                    [111.228036, 37.941995],
                    [111.222938, 37.937619],
                    [111.221141, 37.931474],
                    [111.211569, 37.914387],
                    [111.213894, 37.903584],
                    [111.207467, 37.900042],
                    [111.206588, 37.894271],
                    [111.20319, 37.887465],
                    [111.189731, 37.877395],
                    [111.171311, 37.86784],
                    [111.163889, 37.866128],
                    [111.151251, 37.868577],
                    [111.142656, 37.877992],
                    [111.134042, 37.879087],
                    [111.12994, 37.881535],
                    [111.120896, 37.872797],
                    [111.130546, 37.862047],
                    [111.12535, 37.841897],
                    [111.122869, 37.836043],
                    [111.12242, 37.826383],
                    [111.124334, 37.816364],
                    [111.124256, 37.805785],
                    [111.119509, 37.783547],
                    [111.118494, 37.769934],
                    [111.123748, 37.765589],
                    [111.137519, 37.763695],
                    [111.14418, 37.763775],
                    [111.151993, 37.7561],
                    [111.149825, 37.750039],
                    [111.15127, 37.741425],
                    [111.163186, 37.740827],
                    [111.17219, 37.738553],
                    [111.176605, 37.735143],
                    [111.181957, 37.736818],
                    [111.17973, 37.743499],
                    [111.185512, 37.743419],
                    [111.186879, 37.739092],
                    [111.193657, 37.735622],
                    [111.190102, 37.730217],
                    [111.180512, 37.72918],
                    [111.179379, 37.722199],
                    [111.173695, 37.720803],
                    [111.158439, 37.719646],
                    [111.147833, 37.72216],
                    [111.133612, 37.722439],
                    [111.126639, 37.714999],
                    [111.119373, 37.711208],
                    [111.112009, 37.712944],
                    [111.102828, 37.717692],
                    [111.100972, 37.72202],
                    [111.082045, 37.721282],
                    [111.074857, 37.723157],
                    [111.065266, 37.723336],
                    [111.063898, 37.719068],
                    [111.059425, 37.71809],
                    [111.064524, 37.707338],
                    [111.068274, 37.705742],
                    [111.067844, 37.697123],
                    [111.059054, 37.691317],
                    [111.058781, 37.674573],
                    [111.060382, 37.662078],
                    [111.059836, 37.653254],
                    [111.076536, 37.647644],
                    [111.08435, 37.64413],
                    [111.123162, 37.636762],
                    [111.137871, 37.637681],
                    [111.153458, 37.634026],
                    [111.160139, 37.633627],
                    [111.189458, 37.624161],
                    [111.197017, 37.625738],
                    [111.199908, 37.618309],
                    [111.205827, 37.618368],
                    [111.215066, 37.620685],
                    [111.229716, 37.619687],
                    [111.237724, 37.622683],
                    [111.243252, 37.633108],
                    [111.243389, 37.639138],
                    [111.256066, 37.64419],
                    [111.262356, 37.644549],
                    [111.267493, 37.648523],
                    [111.270384, 37.657886],
                    [111.308161, 37.681459],
                    [111.317791, 37.685131],
                    [111.337656, 37.687665],
                    [111.353537, 37.685191],
                    [111.363831, 37.679483],
                    [111.374613, 37.674693],
                    [111.39274, 37.668865],
                    [111.398854, 37.660182],
                    [111.406765, 37.654812],
                    [111.412996, 37.648882],
                    [111.424755, 37.646187],
                    [111.436553, 37.651298],
                    [111.447237, 37.659783],
                    [111.446612, 37.684752],
                    [111.451125, 37.691796],
                    [111.463235, 37.698001],
                    [111.459758, 37.704386],
                    [111.457922, 37.71831],
                    [111.452336, 37.727944],
                    [111.452003, 37.73275],
                    [111.455637, 37.738872],
                    [111.457766, 37.74952],
                    [111.458078, 37.770194],
                    [111.45466, 37.779382],
                    [111.444132, 37.785859],
                    [111.428427, 37.792336],
                    [111.422215, 37.806363],
                    [111.416551, 37.815328],
                    [111.413777, 37.821941],
                    [111.415379, 37.824909],
                    [111.423173, 37.827299],
                    [111.429384, 37.833135],
                    [111.427548, 37.844765],
                    [111.429013, 37.85034],
                    [111.433506, 37.858324],
                    [111.429775, 37.872538],
                    [111.434345, 37.883704],
                    [111.437178, 37.886291],
                    [111.466771, 37.892381],
                    [111.480014, 37.8965],
                    [111.496012, 37.899365],
                    [111.522245, 37.896938],
                    [111.527089, 37.89447],
                    [111.538028, 37.891505],
                    [111.54713, 37.885256],
                    [111.555647, 37.887963],
                    [111.567054, 37.894908],
                    [111.574496, 37.897057],
                    [111.580102, 37.902728],
                    [111.574379, 37.913651],
                    [111.574633, 37.917988],
                    [111.577739, 37.923597],
                    [111.572387, 37.931971],
                    [111.562913, 37.935332],
                    [111.557502, 37.938713],
                    [111.552814, 37.946807],
                    [111.545587, 37.955954],
                    [111.543849, 37.961083],
                    [111.542071, 37.973906],
                    [111.538067, 37.979332],
                    [111.538067, 37.992429],
                    [111.534941, 37.99706],
                    [111.525761, 38.002067],
                    [111.520428, 38.009439],
                    [111.516873, 38.01967],
                    [111.521073, 38.030218],
                    [111.528027, 38.037706],
                    [111.516209, 38.049681],
                    [111.517498, 38.054069],
                    [111.523163, 38.058795],
                    [111.52414, 38.066081],
                    [111.539434, 38.069674],
                    [111.546427, 38.074935],
                    [111.546837, 38.081981],
                    [111.543204, 38.087023],
                    [111.536074, 38.104169],
                    [111.5308, 38.107423],
                    [111.528828, 38.118315],
                    [111.520799, 38.122739],
                    [111.510017, 38.125556],
                    [111.503669, 38.125199],
                    [111.491324, 38.131844],
                    [111.482905, 38.129424],
                    [111.477787, 38.130971],
                    [111.469525, 38.14063],
                    [111.459172, 38.144339],
                    [111.451281, 38.14886],
                    [111.443663, 38.150367],
                    [111.432451, 38.150407],
                    [111.42493, 38.153203],
                    [111.419657, 38.159132],
                    [111.408855, 38.162423],
                    [111.396666, 38.16165],
                    [111.391861, 38.165119],
                    [111.375375, 38.17186],
                    [111.368538, 38.173386]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141129,
              "name": "中阳县",
              "center": [111.193319, 37.342054],
              "centroid": [111.177704, 37.258526],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 9,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [110.844756, 37.163342],
                    [110.841142, 37.159243],
                    [110.844873, 37.157595],
                    [110.844306, 37.148751],
                    [110.837821, 37.141857],
                    [110.831219, 37.13854],
                    [110.830223, 37.132148],
                    [110.834989, 37.11556],
                    [110.838095, 37.115078],
                    [110.842119, 37.119924],
                    [110.852901, 37.120929],
                    [110.856397, 37.127323],
                    [110.862609, 37.128207],
                    [110.867668, 37.123462],
                    [110.873665, 37.122397],
                    [110.87388, 37.12869],
                    [110.878997, 37.126518],
                    [110.881986, 37.118617],
                    [110.88558, 37.115399],
                    [110.89017, 37.116505],
                    [110.897105, 37.1155],
                    [110.903668, 37.11745],
                    [110.908883, 37.114193],
                    [110.921794, 37.108502],
                    [110.937069, 37.108824],
                    [110.941992, 37.106089],
                    [110.952618, 37.103072],
                    [110.960099, 37.105747],
                    [110.966311, 37.104279],
                    [110.978988, 37.103716],
                    [110.983715, 37.107677],
                    [111.00733, 37.106692],
                    [111.012038, 37.110131],
                    [111.010885, 37.114394],
                    [111.018855, 37.116988],
                    [111.025535, 37.11373],
                    [111.032235, 37.108623],
                    [111.039697, 37.113831],
                    [111.040498, 37.119582],
                    [111.046026, 37.120627],
                    [111.051886, 37.118536],
                    [111.05841, 37.112846],
                    [111.063723, 37.110895],
                    [111.077728, 37.109145],
                    [111.083275, 37.107094],
                    [111.088334, 37.102992],
                    [111.088471, 37.096757],
                    [111.0856, 37.093438],
                    [111.091343, 37.076178],
                    [111.102789, 37.06135],
                    [111.108141, 37.068231],
                    [111.11824, 37.075675],
                    [111.131698, 37.078351],
                    [111.1492, 37.076923],
                    [111.1542, 37.073603],
                    [111.166995, 37.071209],
                    [111.199889, 37.068553],
                    [111.228739, 37.062497],
                    [111.235927, 37.058472],
                    [111.239619, 37.051046],
                    [111.250011, 37.050382],
                    [111.263977, 37.060223],
                    [111.272552, 37.065213],
                    [111.276732, 37.070927],
                    [111.285796, 37.077084],
                    [111.291128, 37.08332],
                    [111.300055, 37.099372],
                    [111.305329, 37.10627],
                    [111.310876, 37.109528],
                    [111.324256, 37.120024],
                    [111.349747, 37.12676],
                    [111.35465, 37.130881],
                    [111.35717, 37.135826],
                    [111.356994, 37.14248],
                    [111.354806, 37.148812],
                    [111.344786, 37.168105],
                    [111.338418, 37.172626],
                    [111.330585, 37.175961],
                    [111.326972, 37.175439],
                    [111.319061, 37.17797],
                    [111.31742, 37.181124],
                    [111.319842, 37.18695],
                    [111.321365, 37.198862],
                    [111.330409, 37.201875],
                    [111.331503, 37.206816],
                    [111.336582, 37.209748],
                    [111.347325, 37.207599],
                    [111.352052, 37.21011],
                    [111.359182, 37.20772],
                    [111.360647, 37.203924],
                    [111.366292, 37.204828],
                    [111.368187, 37.207298],
                    [111.383755, 37.213102],
                    [111.388989, 37.217701],
                    [111.394674, 37.225492],
                    [111.391333, 37.230712],
                    [111.379164, 37.231836],
                    [111.376859, 37.244042],
                    [111.385649, 37.243922],
                    [111.392681, 37.247113],
                    [111.398619, 37.254119],
                    [111.408952, 37.250004],
                    [111.416551, 37.263933],
                    [111.415848, 37.270134],
                    [111.41909, 37.270455],
                    [111.416043, 37.273966],
                    [111.417488, 37.281712],
                    [111.41448, 37.286206],
                    [111.413347, 37.292465],
                    [111.401002, 37.302054],
                    [111.401647, 37.309455],
                    [111.409148, 37.316494],
                    [111.413484, 37.317417],
                    [111.428271, 37.315171],
                    [111.432177, 37.312985],
                    [111.436494, 37.314328],
                    [111.441319, 37.319362],
                    [111.442335, 37.324857],
                    [111.447062, 37.329188],
                    [111.464075, 37.328486],
                    [111.468216, 37.330511],
                    [111.486948, 37.33009],
                    [111.492398, 37.334942],
                    [111.493258, 37.3423],
                    [111.462415, 37.357575],
                    [111.438076, 37.368257],
                    [111.429794, 37.371344],
                    [111.418856, 37.383487],
                    [111.414285, 37.39086],
                    [111.407136, 37.393985],
                    [111.397076, 37.393304],
                    [111.367151, 37.387334],
                    [111.357854, 37.391721],
                    [111.347247, 37.394226],
                    [111.32789, 37.389638],
                    [111.317244, 37.388897],
                    [111.307946, 37.393284],
                    [111.297203, 37.406105],
                    [111.289077, 37.426393],
                    [111.280658, 37.459067],
                    [111.277201, 37.466933],
                    [111.271771, 37.473798],
                    [111.264641, 37.47646],
                    [111.256672, 37.474718],
                    [111.248897, 37.466313],
                    [111.22788, 37.468234],
                    [111.218601, 37.471536],
                    [111.215007, 37.46197],
                    [111.209343, 37.457786],
                    [111.200377, 37.458607],
                    [111.17512, 37.468514],
                    [111.166936, 37.469975],
                    [111.138867, 37.478821],
                    [111.116599, 37.481242],
                    [111.113415, 37.483183],
                    [111.103629, 37.483924],
                    [111.098707, 37.481222],
                    [111.104293, 37.468775],
                    [111.103824, 37.465993],
                    [111.087827, 37.455104],
                    [111.064231, 37.447477],
                    [111.05128, 37.444534],
                    [111.051729, 37.439689],
                    [111.059953, 37.4321],
                    [111.071692, 37.427855],
                    [111.074681, 37.420125],
                    [111.080951, 37.412935],
                    [111.086108, 37.398433],
                    [111.084428, 37.389598],
                    [111.068665, 37.378337],
                    [111.064777, 37.372506],
                    [111.069895, 37.354348],
                    [111.063996, 37.347051],
                    [111.053565, 37.341598],
                    [111.04876, 37.337348],
                    [111.037529, 37.337148],
                    [111.031551, 37.331253],
                    [111.02532, 37.330451],
                    [111.016784, 37.327163],
                    [111.010905, 37.322049],
                    [111.008698, 37.311882],
                    [111.011354, 37.302736],
                    [111.006529, 37.300409],
                    [111.000709, 37.308913],
                    [110.988657, 37.309776],
                    [110.985727, 37.319362],
                    [110.976233, 37.319462],
                    [110.970002, 37.317537],
                    [110.969104, 37.3115],
                    [110.960412, 37.306466],
                    [110.963049, 37.29098],
                    [110.968049, 37.274709],
                    [110.96842, 37.266],
                    [110.959767, 37.250385],
                    [110.981039, 37.240911],
                    [110.987563, 37.234808],
                    [110.990571, 37.229668],
                    [110.988149, 37.223584],
                    [110.978538, 37.220331],
                    [110.955567, 37.222138],
                    [110.946934, 37.221476],
                    [110.943164, 37.217841],
                    [110.941601, 37.204567],
                    [110.94668, 37.195187],
                    [110.955899, 37.188397],
                    [110.957599, 37.185785],
                    [110.956368, 37.177387],
                    [110.951153, 37.173007],
                    [110.926268, 37.178191],
                    [110.916892, 37.17787],
                    [110.920876, 37.17144],
                    [110.920974, 37.168145],
                    [110.915681, 37.163905],
                    [110.91193, 37.163523],
                    [110.908199, 37.166517],
                    [110.900347, 37.165151],
                    [110.89396, 37.166839],
                    [110.886146, 37.177046],
                    [110.879075, 37.175921],
                    [110.878411, 37.168084],
                    [110.872024, 37.165814],
                    [110.875071, 37.158539],
                    [110.867629, 37.151806],
                    [110.855206, 37.1464],
                    [110.85083, 37.148269],
                    [110.850147, 37.156168],
                    [110.844756, 37.163342]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141130,
              "name": "交口县",
              "center": [111.183188, 36.983068],
              "centroid": [111.309162, 36.951528],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 10,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.498629, 36.991291],
                    [111.487613, 37.003073],
                    [111.476068, 37.021195],
                    [111.471361, 37.027436],
                    [111.465052, 37.031522],
                    [111.451339, 37.035085],
                    [111.444268, 37.037984],
                    [111.441963, 37.042271],
                    [111.445538, 37.044485],
                    [111.467982, 37.048691],
                    [111.478979, 37.05982],
                    [111.485562, 37.063784],
                    [111.483706, 37.068634],
                    [111.483139, 37.077466],
                    [111.476068, 37.082395],
                    [111.476693, 37.089536],
                    [111.473099, 37.098326],
                    [111.470052, 37.100478],
                    [111.459446, 37.103374],
                    [111.456398, 37.107436],
                    [111.456359, 37.116385],
                    [111.460305, 37.134017],
                    [111.461965, 37.160046],
                    [111.459114, 37.167964],
                    [111.455852, 37.169652],
                    [111.439014, 37.168024],
                    [111.420672, 37.158941],
                    [111.410124, 37.157333],
                    [111.397467, 37.157434],
                    [111.375961, 37.17799],
                    [111.37516, 37.180944],
                    [111.381313, 37.183596],
                    [111.381196, 37.186428],
                    [111.375277, 37.191973],
                    [111.375297, 37.194383],
                    [111.380981, 37.198019],
                    [111.375277, 37.204406],
                    [111.366292, 37.204828],
                    [111.360647, 37.203924],
                    [111.359182, 37.20772],
                    [111.352052, 37.21011],
                    [111.347325, 37.207599],
                    [111.336582, 37.209748],
                    [111.331503, 37.206816],
                    [111.330409, 37.201875],
                    [111.321365, 37.198862],
                    [111.319842, 37.18695],
                    [111.31742, 37.181124],
                    [111.319061, 37.17797],
                    [111.326972, 37.175439],
                    [111.330585, 37.175961],
                    [111.338418, 37.172626],
                    [111.344786, 37.168105],
                    [111.354806, 37.148812],
                    [111.356994, 37.14248],
                    [111.35717, 37.135826],
                    [111.35465, 37.130881],
                    [111.349747, 37.12676],
                    [111.324256, 37.120024],
                    [111.310876, 37.109528],
                    [111.305329, 37.10627],
                    [111.300055, 37.099372],
                    [111.291128, 37.08332],
                    [111.285796, 37.077084],
                    [111.276732, 37.070927],
                    [111.272552, 37.065213],
                    [111.263977, 37.060223],
                    [111.250011, 37.050382],
                    [111.239619, 37.051046],
                    [111.235927, 37.058472],
                    [111.228739, 37.062497],
                    [111.199889, 37.068553],
                    [111.166995, 37.071209],
                    [111.1542, 37.073603],
                    [111.1492, 37.076923],
                    [111.131698, 37.078351],
                    [111.11824, 37.075675],
                    [111.108141, 37.068231],
                    [111.102789, 37.06135],
                    [111.104274, 37.052918],
                    [111.101207, 37.02818],
                    [111.102203, 37.018577],
                    [111.101519, 37.012336],
                    [111.096128, 36.995762],
                    [111.094292, 36.985571],
                    [111.093726, 36.973827],
                    [111.097398, 36.962967],
                    [111.095308, 36.956217],
                    [111.082846, 36.945013],
                    [111.079994, 36.937536],
                    [111.080814, 36.931106],
                    [111.085268, 36.924635],
                    [111.085776, 36.920825],
                    [111.091108, 36.918648],
                    [111.094663, 36.912781],
                    [111.092905, 36.910362],
                    [111.084174, 36.908063],
                    [111.082162, 36.900824],
                    [111.081459, 36.891649],
                    [111.082807, 36.888563],
                    [111.075032, 36.884126],
                    [111.071555, 36.875009],
                    [111.071028, 36.865729],
                    [111.068645, 36.863913],
                    [111.067805, 36.855117],
                    [111.072259, 36.854148],
                    [111.086108, 36.843958],
                    [111.088237, 36.840406],
                    [111.096382, 36.836632],
                    [111.102262, 36.839276],
                    [111.10779, 36.839417],
                    [111.114548, 36.835522],
                    [111.120291, 36.839155],
                    [111.135273, 36.846016],
                    [111.145899, 36.843857],
                    [111.153282, 36.844664],
                    [111.159826, 36.841234],
                    [111.168635, 36.842666],
                    [111.17725, 36.848095],
                    [111.180961, 36.847045],
                    [111.180629, 36.843817],
                    [111.185082, 36.840386],
                    [111.182504, 36.836996],
                    [111.183539, 36.830517],
                    [111.181098, 36.827449],
                    [111.182524, 36.823372],
                    [111.187563, 36.817457],
                    [111.200514, 36.806232],
                    [111.20319, 36.793552],
                    [111.206256, 36.785858],
                    [111.207038, 36.774326],
                    [111.211628, 36.748932],
                    [111.220066, 36.742001],
                    [111.229286, 36.741234],
                    [111.234658, 36.748912],
                    [111.243877, 36.758145],
                    [111.248331, 36.759438],
                    [111.265305, 36.758387],
                    [111.2739, 36.760428],
                    [111.27726, 36.758569],
                    [111.27892, 36.749377],
                    [111.276009, 36.746144],
                    [111.274701, 36.738546],
                    [111.287495, 36.738081],
                    [111.290581, 36.740021],
                    [111.300738, 36.737717],
                    [111.30693, 36.738445],
                    [111.312829, 36.7419],
                    [111.320643, 36.73602],
                    [111.325253, 36.73996],
                    [111.323358, 36.753822],
                    [111.329511, 36.756428],
                    [111.338672, 36.750771],
                    [111.356935, 36.754589],
                    [111.357463, 36.758569],
                    [111.352462, 36.761175],
                    [111.356916, 36.767013],
                    [111.364241, 36.765579],
                    [111.366604, 36.76867],
                    [111.36428, 36.771801],
                    [111.365667, 36.778244],
                    [111.380551, 36.784222],
                    [111.395025, 36.796177],
                    [111.414695, 36.804032],
                    [111.412468, 36.814106],
                    [111.414031, 36.819698],
                    [111.412273, 36.82646],
                    [111.414109, 36.832939],
                    [111.420477, 36.833686],
                    [111.419324, 36.839902],
                    [111.421082, 36.845068],
                    [111.429677, 36.846864],
                    [111.434424, 36.843837],
                    [111.449308, 36.845391],
                    [111.455383, 36.848377],
                    [111.459192, 36.859596],
                    [111.464759, 36.865305],
                    [111.487847, 36.870329],
                    [111.492476, 36.878821],
                    [111.505114, 36.886506],
                    [111.513318, 36.887635],
                    [111.525585, 36.886002],
                    [111.534805, 36.8882],
                    [111.543341, 36.892475],
                    [111.556799, 36.902296],
                    [111.563206, 36.908849],
                    [111.572504, 36.911874],
                    [111.581313, 36.916229],
                    [111.585083, 36.92016],
                    [111.570297, 36.928889],
                    [111.56346, 36.928989],
                    [111.558791, 36.925361],
                    [111.553928, 36.926308],
                    [111.548458, 36.9303],
                    [111.541426, 36.931852],
                    [111.540547, 36.93941],
                    [111.541329, 36.94991],
                    [111.540137, 36.954444],
                    [111.534336, 36.957265],
                    [111.518612, 36.97286],
                    [111.512322, 36.973464],
                    [111.506755, 36.982509],
                    [111.498629, 36.991291]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141181,
              "name": "孝义市",
              "center": [111.781568, 37.144474],
              "centroid": [111.630451, 37.111329],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 11,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.934278, 37.148993],
                    [111.914296, 37.147244],
                    [111.906795, 37.147867],
                    [111.896931, 37.15261],
                    [111.896833, 37.162679],
                    [111.890758, 37.163402],
                    [111.884214, 37.161232],
                    [111.873139, 37.160931],
                    [111.869565, 37.163382],
                    [111.870502, 37.167763],
                    [111.868236, 37.170214],
                    [111.850989, 37.178492],
                    [111.825615, 37.178432],
                    [111.816571, 37.177187],
                    [111.804968, 37.179939],
                    [111.798894, 37.178613],
                    [111.796178, 37.169149],
                    [111.791862, 37.167883],
                    [111.766039, 37.170797],
                    [111.747873, 37.173349],
                    [111.728047, 37.170797],
                    [111.726836, 37.168607],
                    [111.717714, 37.168506],
                    [111.71076, 37.172083],
                    [111.70533, 37.173068],
                    [111.69654, 37.169471],
                    [111.68523, 37.162739],
                    [111.680366, 37.162759],
                    [111.673705, 37.165794],
                    [111.665658, 37.164528],
                    [111.650812, 37.167924],
                    [111.649777, 37.174354],
                    [111.646691, 37.177568],
                    [111.634854, 37.179417],
                    [111.629795, 37.181868],
                    [111.623095, 37.181185],
                    [111.617606, 37.182491],
                    [111.611258, 37.189482],
                    [111.603933, 37.195588],
                    [111.598639, 37.20547],
                    [111.591978, 37.210471],
                    [111.581372, 37.214387],
                    [111.569476, 37.216174],
                    [111.550021, 37.223162],
                    [111.541993, 37.227439],
                    [111.525722, 37.238702],
                    [111.513435, 37.250606],
                    [111.503063, 37.263411],
                    [111.494449, 37.26301],
                    [111.492047, 37.260601],
                    [111.480678, 37.260461],
                    [111.471048, 37.261565],
                    [111.469408, 37.265839],
                    [111.473978, 37.273906],
                    [111.472963, 37.276113],
                    [111.456633, 37.278381],
                    [111.448195, 37.282534],
                    [111.443839, 37.290338],
                    [111.440577, 37.300288],
                    [111.440596, 37.303919],
                    [111.444053, 37.312804],
                    [111.441319, 37.319362],
                    [111.436494, 37.314328],
                    [111.432177, 37.312985],
                    [111.428271, 37.315171],
                    [111.413484, 37.317417],
                    [111.409148, 37.316494],
                    [111.401647, 37.309455],
                    [111.401002, 37.302054],
                    [111.413347, 37.292465],
                    [111.41448, 37.286206],
                    [111.417488, 37.281712],
                    [111.416043, 37.273966],
                    [111.41909, 37.270455],
                    [111.415848, 37.270134],
                    [111.416551, 37.263933],
                    [111.408952, 37.250004],
                    [111.398619, 37.254119],
                    [111.392681, 37.247113],
                    [111.385649, 37.243922],
                    [111.376859, 37.244042],
                    [111.379164, 37.231836],
                    [111.391333, 37.230712],
                    [111.394674, 37.225492],
                    [111.388989, 37.217701],
                    [111.383755, 37.213102],
                    [111.368187, 37.207298],
                    [111.366292, 37.204828],
                    [111.375277, 37.204406],
                    [111.380981, 37.198019],
                    [111.375297, 37.194383],
                    [111.375277, 37.191973],
                    [111.381196, 37.186428],
                    [111.381313, 37.183596],
                    [111.37516, 37.180944],
                    [111.375961, 37.17799],
                    [111.397467, 37.157434],
                    [111.410124, 37.157333],
                    [111.420672, 37.158941],
                    [111.439014, 37.168024],
                    [111.455852, 37.169652],
                    [111.459114, 37.167964],
                    [111.461965, 37.160046],
                    [111.460305, 37.134017],
                    [111.456359, 37.116385],
                    [111.456398, 37.107436],
                    [111.459446, 37.103374],
                    [111.470052, 37.100478],
                    [111.473099, 37.098326],
                    [111.476693, 37.089536],
                    [111.476068, 37.082395],
                    [111.483139, 37.077466],
                    [111.483706, 37.068634],
                    [111.485562, 37.063784],
                    [111.478979, 37.05982],
                    [111.467982, 37.048691],
                    [111.445538, 37.044485],
                    [111.441963, 37.042271],
                    [111.444268, 37.037984],
                    [111.451339, 37.035085],
                    [111.465052, 37.031522],
                    [111.471361, 37.027436],
                    [111.476068, 37.021195],
                    [111.487613, 37.003073],
                    [111.498629, 36.991291],
                    [111.508552, 36.994433],
                    [111.527148, 36.999045],
                    [111.533828, 36.997091],
                    [111.531582, 36.986699],
                    [111.534492, 36.982348],
                    [111.541036, 36.977675],
                    [111.545489, 36.97703],
                    [111.552775, 36.982267],
                    [111.558381, 36.980898],
                    [111.567718, 36.975922],
                    [111.580356, 36.967017],
                    [111.586919, 36.964378],
                    [111.598717, 36.962222],
                    [111.61745, 36.954343],
                    [111.619364, 36.952288],
                    [111.619305, 36.94596],
                    [111.625517, 36.94205],
                    [111.631006, 36.941264],
                    [111.637295, 36.943219],
                    [111.638741, 36.955935],
                    [111.647472, 36.964539],
                    [111.65929, 36.964136],
                    [111.664915, 36.972819],
                    [111.667904, 36.973102],
                    [111.674311, 36.969153],
                    [111.67935, 36.970281],
                    [111.681987, 36.976708],
                    [111.680073, 36.98265],
                    [111.680698, 36.988028],
                    [111.689762, 36.993768],
                    [111.701364, 36.987847],
                    [111.710057, 36.995762],
                    [111.719276, 36.997998],
                    [111.735372, 36.997575],
                    [111.74047, 37.006154],
                    [111.759495, 37.015456],
                    [111.791627, 37.022544],
                    [111.801999, 37.02818],
                    [111.8212, 37.035709],
                    [111.826299, 37.039473],
                    [111.826396, 37.044284],
                    [111.83292, 37.042935],
                    [111.845851, 37.0342],
                    [111.85259, 37.034542],
                    [111.861361, 37.03744],
                    [111.860892, 37.047122],
                    [111.868881, 37.052133],
                    [111.875171, 37.053723],
                    [111.880034, 37.057144],
                    [111.890328, 37.073402],
                    [111.893297, 37.074931],
                    [111.894215, 37.084527],
                    [111.906443, 37.098487],
                    [111.913651, 37.10271],
                    [111.923339, 37.10627],
                    [111.927012, 37.111961],
                    [111.931973, 37.129554],
                    [111.934278, 37.148993]
                  ]
                ]
              ]
            }
          }, {
            "type": "Feature",
            "properties": {
              "adcode": 141182,
              "name": "汾阳市",
              "center": [111.785273, 37.267742],
              "centroid": [111.740257, 37.308644],
              "childrenNum": 0,
              "level": "district",
              "parent": {
                "adcode": 141100
              },
              "subFeatureIndex": 12,
              "acroutes": [100000, 140000, 141100]
            },
            "geometry": {
              "type": "MultiPolygon",
              "coordinates": [
                [
                  [
                    [111.441319, 37.319362],
                    [111.444053, 37.312804],
                    [111.440596, 37.303919],
                    [111.440577, 37.300288],
                    [111.443839, 37.290338],
                    [111.448195, 37.282534],
                    [111.456633, 37.278381],
                    [111.472963, 37.276113],
                    [111.473978, 37.273906],
                    [111.469408, 37.265839],
                    [111.471048, 37.261565],
                    [111.480678, 37.260461],
                    [111.492047, 37.260601],
                    [111.494449, 37.26301],
                    [111.503063, 37.263411],
                    [111.513435, 37.250606],
                    [111.525722, 37.238702],
                    [111.541993, 37.227439],
                    [111.550021, 37.223162],
                    [111.569476, 37.216174],
                    [111.581372, 37.214387],
                    [111.591978, 37.210471],
                    [111.598639, 37.20547],
                    [111.603933, 37.195588],
                    [111.611258, 37.189482],
                    [111.617606, 37.182491],
                    [111.623095, 37.181185],
                    [111.629795, 37.181868],
                    [111.634854, 37.179417],
                    [111.646691, 37.177568],
                    [111.649777, 37.174354],
                    [111.650812, 37.167924],
                    [111.665658, 37.164528],
                    [111.673705, 37.165794],
                    [111.680366, 37.162759],
                    [111.68523, 37.162739],
                    [111.69654, 37.169471],
                    [111.70533, 37.173068],
                    [111.71076, 37.172083],
                    [111.717714, 37.168506],
                    [111.726836, 37.168607],
                    [111.728047, 37.170797],
                    [111.747873, 37.173349],
                    [111.766039, 37.170797],
                    [111.791862, 37.167883],
                    [111.796178, 37.169149],
                    [111.798894, 37.178613],
                    [111.804968, 37.179939],
                    [111.816571, 37.177187],
                    [111.825615, 37.178432],
                    [111.850989, 37.178492],
                    [111.868236, 37.170214],
                    [111.870502, 37.167763],
                    [111.869565, 37.163382],
                    [111.873139, 37.160931],
                    [111.884214, 37.161232],
                    [111.890758, 37.163402],
                    [111.896833, 37.162679],
                    [111.896931, 37.15261],
                    [111.906795, 37.147867],
                    [111.914296, 37.147244],
                    [111.934278, 37.148993],
                    [111.939005, 37.156027],
                    [111.940509, 37.161594],
                    [111.947971, 37.170435],
                    [111.951252, 37.179457],
                    [111.948147, 37.190245],
                    [111.946428, 37.209407],
                    [111.95008, 37.21766],
                    [111.95887, 37.222219],
                    [111.960355, 37.227198],
                    [111.956077, 37.233764],
                    [111.956565, 37.240268],
                    [111.951624, 37.244564],
                    [111.940958, 37.246451],
                    [111.942072, 37.255403],
                    [111.956019, 37.256045],
                    [111.958421, 37.253296],
                    [111.972329, 37.254078],
                    [111.977427, 37.259196],
                    [111.980455, 37.271278],
                    [111.984166, 37.270354],
                    [111.985006, 37.264174],
                    [111.987506, 37.264113],
                    [111.990123, 37.271358],
                    [111.997331, 37.271498],
                    [112.000554, 37.267645],
                    [112.013485, 37.267806],
                    [112.013876, 37.271257],
                    [112.009676, 37.2782],
                    [112.011024, 37.282634],
                    [112.010653, 37.288011],
                    [112.002703, 37.295233],
                    [111.993991, 37.3115],
                    [111.995983, 37.319001],
                    [111.996081, 37.325819],
                    [111.993405, 37.332215],
                    [111.987447, 37.340035],
                    [111.986412, 37.338872],
                    [111.975005, 37.339794],
                    [111.975493, 37.344024],
                    [111.972641, 37.350579],
                    [111.975493, 37.354909],
                    [111.970512, 37.35515],
                    [111.959964, 37.363668],
                    [111.949846, 37.362465],
                    [111.949494, 37.360361],
                    [111.938458, 37.372806],
                    [111.929532, 37.385991],
                    [111.924004, 37.391501],
                    [111.916112, 37.392783],
                    [111.898337, 37.39114],
                    [111.894157, 37.393284],
                    [111.891344, 37.406025],
                    [111.88691, 37.412274],
                    [111.883589, 37.413896],
                    [111.859857, 37.414057],
                    [111.848684, 37.411453],
                    [111.845832, 37.413075],
                    [111.849191, 37.422048],
                    [111.850793, 37.431259],
                    [111.844035, 37.441431],
                    [111.845676, 37.453823],
                    [111.843058, 37.459367],
                    [111.827178, 37.459287],
                    [111.816005, 37.458146],
                    [111.807898, 37.458747],
                    [111.784244, 37.458947],
                    [111.775629, 37.458367],
                    [111.76432, 37.459287],
                    [111.756116, 37.461089],
                    [111.747638, 37.458807],
                    [111.743497, 37.460608],
                    [111.73795, 37.458667],
                    [111.730469, 37.463851],
                    [111.724492, 37.464071],
                    [111.715467, 37.470476],
                    [111.710779, 37.471657],
                    [111.706169, 37.470095],
                    [111.700778, 37.474538],
                    [111.692047, 37.472557],
                    [111.681792, 37.4765],
                    [111.663509, 37.472217],
                    [111.658196, 37.472777],
                    [111.655676, 37.479561],
                    [111.638917, 37.484484],
                    [111.632568, 37.483003],
                    [111.625497, 37.483803],
                    [111.614383, 37.47678],
                    [111.605046, 37.474038],
                    [111.599381, 37.468534],
                    [111.598776, 37.465252],
                    [111.590924, 37.463551],
                    [111.585298, 37.458527],
                    [111.594147, 37.449218],
                    [111.593385, 37.44067],
                    [111.600319, 37.433922],
                    [111.605144, 37.421427],
                    [111.601725, 37.405484],
                    [111.593189, 37.395888],
                    [111.59608, 37.389678],
                    [111.588541, 37.383447],
                    [111.582251, 37.383146],
                    [111.574594, 37.37437],
                    [111.56262, 37.364971],
                    [111.556526, 37.365552],
                    [111.549689, 37.369039],
                    [111.541837, 37.365933],
                    [111.534981, 37.366153],
                    [111.533105, 37.359339],
                    [111.51826, 37.356212],
                    [111.512849, 37.359299],
                    [111.503102, 37.357314],
                    [111.496891, 37.35072],
                    [111.49775, 37.345929],
                    [111.493258, 37.3423],
                    [111.492398, 37.334942],
                    [111.486948, 37.33009],
                    [111.468216, 37.330511],
                    [111.464075, 37.328486],
                    [111.447062, 37.329188],
                    [111.442335, 37.324857],
                    [111.441319, 37.319362]
                  ]
                ]
              ]
            }
          }]
        }
        console.log(res,"---data请求")
        return res;
      }
    }
  }
}
</script>
<style>
.map{
  width: 700px;
  height: 480px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 93px;
  transform: rotateX(20deg);
}
.map>div{
  width: 100%;
  height: 100%;;
}
</style>

猜你喜欢

转载自blog.csdn.net/qq_37299479/article/details/129946074