长沙大屏——百度地图

bug

  • edge浏览器显示不正常

  • 谷歌自定义点图标显示不出来

  • 360急速浏览器正常显示

  • 标记点自定义图表本地路径需要require()
    在这里插入图片描述

  • 隐藏百度logo,样式需要放在app.vue中

.BMap_cpyCtrl {
  display: none;
}
.anchorBL {
  display: none;
}

优势:可自由放大缩小显示所有的细节地图、道路、河流、大楼等

map组件

<template>
  <div class="w100 h100" id="container" />
</template>

<script>
import resize from "./mixins/resize";

import { style } from './js/mapStyle.js'
export default {
  mixins: [resize],
  data() {
    return {
      // 散点数据
      scatterData: [
        {
          name: "开福区人民政府",
          value: [112.991735, 28.26299],
        },
      ],
      scatterData1: [
        {
          name: "马栏山文创园",
          value: [113.037663, 28.227175],
        },
        {
          name: "开福区社会福利中心", //开福区老年福利服务中心
          value: [113.004666, 28.332623],
        },
        {
          name: "开福区金霞经济开发区",
          value: [112.97531, 28.344948],
        },
      ],
    };
  },
  mounted() {
    this.$nextTick(() => {
      this.initChart();
    });
  },
  beforeDestroy() {
    if (!this.chart) {
      return;
    }
    this.chart.dispose();
    this.chart = null;
  },
  methods: {
    initChart() {
      // 创建地图、设置 缩放比例
      var map = new BMapGL.Map('container', {
        minZoom: 12, // 13.3
        maxZoom: 20
      });
      // 设置地图中心店
      var testPt = new BMapGL.Point(112.994456, 28.295856);
      map.centerAndZoom(testPt, 13.5);
      map.enableScrollWheelZoom(); // 开启滚轮缩放
      // 设置地图大地、河流等样式设置
      map.setMapStyleV2({
        styleJson: style
      });
      // 地图样式/区域掩膜/展示部分区域API 只展示开福区的区域
      var bdary = new BMapGL.Boundary();
      bdary.get('开福区', function (rs) {
        // 绘制行政区
        for (var i = 0; i < rs.boundaries.length; i++) {
          var path = [];
          var xyArr = rs.boundaries[i].split(';');
          var ptArr = [];
          for (var j = 0; j < xyArr.length; j++) {
            var tmp = xyArr[j].split(',');
            var pt = new BMapGL.Point(tmp[0], tmp[1]);
            ptArr.push(pt);
          }
          var mapmask = new BMapGL.MapMask(ptArr, {
            isBuildingMask: true,
            isPoiMask: true,
            isMapMask: false, // 是否显示地图遮罩 true只显示开福区,周围空白背景(无法透明,根据大地颜色而变化),false周围地图也会显示出来
            showRegion: 'inside', // inside显示开福区,outside 显示开福区以外
            topFillColor: '#5679ea',
            topFillOpacity: 0.5,
            sideFillColor: '#5679ea',
            sideFillOpacity: 0.9
          });
          map.addOverlay(mapmask);
          var border = new BMapGL.Polyline(ptArr, {
            strokeColor: '#4ca7a2', // 开福区边界颜色
            strokeWeight: 3, // 边界粗细
            strokeOpacity: 0 // 边界透明度,为了隐藏边界线,使用我们自己画的轮廓线
          });
          map.addOverlay(border);
        }
      });
      // 图层服务/GeoJSON图层/GeoJSONLayer图层API 
      //将开福区详细街道轮廓线覆盖在地图上
      var kaifu = require('./js/kaifu.json')
      var bjLayer = new BMapGL.GeoJSONLayer('kf-all', {
        reference: 'WGS84',
        dataSource: kaifu,
        level: -9,
        polygonStyle: {
          strokeColor: '#4ca7a2',//轮廓线颜色
          strokeWeight: 2,//轮廓线宽度
          fillOpacity: 0 // 内部透明度
        },
      });
      map.addGeoJSONLayer(bjLayer);

      //  地图上覆盖点
      // 创建自定义图标:bug本地路径需要require()包裹才可以显示
      var myIcon = new BMapGL.Icon(require("./img/star.png"), new BMapGL.Size(this.fontSize(0.5), this.fontSize(0.5)));
      var myPoint = new BMapGL.Point(112.991735, 28.26299);
      var marker = new BMapGL.Marker(myPoint, {
        icon: myIcon
      });
      map.addOverlay(marker);
      var opts = {
        position: myPoint, // 指定文本标注所在的地理位置
        offset: new BMapGL.Size(this.fontSize(-0.5), this.fontSize(0.2)) // 设置文本偏移量
      };
      // 自定义文本区政府:创建文本标注对象
      var label = new BMapGL.Label('开福区人民政府', opts);
      // 自定义文本标注样式
      label.setStyle({
        color: '#4FF08E',
        borderRadius: this.fontSize(0.05) + 'px',
        borderColor: '#4FF08E',
        backgroundColor: "rgba(0,0,0,0.6)",
        fontSize: this.fontSize(0.13) + 'px',
        height: this.fontSize(0.25) + 'px',
        lineHeight: this.fontSize(0.22) + 'px',
        fontFamily: '微软雅黑'
      });
      map.addOverlay(label);
      // 添加其他的点标注
      this.scatterData1.forEach(item => {
        var marker2 = new BMapGL.Marker(new BMapGL.Point(...item.value));
        map.addOverlay(marker2);
        var opts = {
          position: new BMapGL.Point(...item.value), // 指定文本标注所在的地理位置
          offset: new BMapGL.Size(this.fontSize(-0.35), this.fontSize(0)) // 设置文本偏移量
        };
        // 自定义文本:创建文本标注对象
        var label = new BMapGL.Label(item.name, opts);
        // 自定义文本标注样式
        label.setStyle({
          color: '#57FFFD',
          borderRadius: this.fontSize(0.05) + 'px',
          borderColor: '#57FFFD',
          backgroundColor: "rgba(0,0,0,0.6)",
          fontSize: this.fontSize(0.13) + 'px',
          height: this.fontSize(0.18) + 'px',
          lineHeight: this.fontSize(0.15) + 'px',
          fontFamily: '微软雅黑'
        });
        map.addOverlay(label);
      })
    },
  },
};
</script>
<style lang="scss" scoped>
@import "./css/rem.scss";
</style>

标题地图样式mapStyle.js,可以在百度API自行编辑,然后复制JSON数据

https://lbsyun.baidu.com/customv2/editor/479e69aefb90666daefdbd552e88b3ab/yanmou

export let style = [{
  "featureType": "land",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#091220ff"
  }
}, {
  "featureType": "water",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#113549ff"
  }
}, {
  "featureType": "green",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#0e1b30ff"
  }
}, {
  "featureType": "building",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "building",
  "elementType": "geometry.topfill",
  "stylers": {
    "color": "#113549ff"
  }
}, {
  "featureType": "building",
  "elementType": "geometry.sidefill",
  "stylers": {
    "color": "#143e56ff"
  }
}, {
  "featureType": "building",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#dadada00"
  }
}, {
  "featureType": "subwaystation",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#113549B2"
  }
}, {
  "featureType": "education",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#12223dff"
  }
}, {
  "featureType": "medical",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#12223dff"
  }
}, {
  "featureType": "scenicspots",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "color": "#12223dff"
  }
}, {
  "featureType": "highway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "weight": 4
  }
}, {
  "featureType": "highway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "highway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#fed66900"
  }
}, {
  "featureType": "highway",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "highway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "highway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "highway",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "arterial",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "weight": 2
  }
}, {
  "featureType": "arterial",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "arterial",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffeebb00"
  }
}, {
  "featureType": "arterial",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "arterial",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "arterial",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "local",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on",
    "weight": 1
  }
}, {
  "featureType": "local",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "local",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "local",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "local",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#979c9aff"
  }
}, {
  "featureType": "local",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffffff"
  }
}, {
  "featureType": "railway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "subway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "weight": 1
  }
}, {
  "featureType": "subway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#d8d8d8ff"
  }
}, {
  "featureType": "subway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "subway",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "subway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#979c9aff"
  }
}, {
  "featureType": "subway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffffff"
  }
}, {
  "featureType": "continent",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "continent",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "continent",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "continent",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "city",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "city",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "city",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "city",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "town",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "town",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "town",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#454d50ff"
  }
}, {
  "featureType": "town",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffffff"
  }
}, {
  "featureType": "road",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "poilabel",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "districtlabel",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "road",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "road",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "road",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "district",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "poilabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "poilabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "poilabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "manmade",
  "elementType": "geometry",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "districtlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffffff"
  }
}, {
  "featureType": "entertainment",
  "elementType": "geometry",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "shopping",
  "elementType": "geometry",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "nationalway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "6"
  }
}, {
  "featureType": "nationalway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "7"
  }
}, {
  "featureType": "nationalway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "8"
  }
}, {
  "featureType": "nationalway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "9"
  }
}, {
  "featureType": "nationalway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "10"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "6"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "7"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "8"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "9"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "10"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "6"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "7"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "8"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "9"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,10",
    "level": "10"
  }
}, {
  "featureType": "cityhighway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "6"
  }
}, {
  "featureType": "cityhighway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "7"
  }
}, {
  "featureType": "cityhighway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "8"
  }
}, {
  "featureType": "cityhighway",
  "stylers": {
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "9"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "6"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "7"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "8"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "9"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "6"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "7"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "8"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels",
  "stylers": {
    "visibility": "off",
    "curZoomRegionId": "0",
    "curZoomRegion": "6,9",
    "level": "9"
  }
}, {
  "featureType": "subwaylabel",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "subwaylabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "tertiarywaysign",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "tertiarywaysign",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "provincialwaysign",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "provincialwaysign",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "nationalwaysign",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "nationalwaysign",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "highwaysign",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "highwaysign",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "village",
  "elementType": "labels",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "district",
  "elementType": "labels.text",
  "stylers": {
    "fontsize": 20
  }
}, {
  "featureType": "district",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "district",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "country",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "country",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "water",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "water",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "tertiaryway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "tertiaryway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff10"
  }
}, {
  "featureType": "provincialway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "provincialway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "nationalway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "highway",
  "elementType": "labels.text",
  "stylers": {
    "fontsize": 20
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "nationalway",
  "elementType": "labels.text",
  "stylers": {
    "fontsize": 20
  }
}, {
  "featureType": "provincialway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "provincialway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "provincialway",
  "elementType": "labels.text",
  "stylers": {
    "fontsize": 20
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels.text",
  "stylers": {
    "fontsize": 20
  }
}, {
  "featureType": "cityhighway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "estate",
  "elementType": "geometry",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "tertiaryway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "tertiaryway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "fourlevelway",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "fourlevelway",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "scenicspotsway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "scenicspotsway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "universityway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "universityway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "vacationway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "vacationway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "fourlevelway",
  "elementType": "geometry",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "fourlevelway",
  "elementType": "geometry.fill",
  "stylers": {
    "color": "#12223dff"
  }
}, {
  "featureType": "fourlevelway",
  "elementType": "geometry.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "transportationlabel",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "transportationlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "transportationlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "transportationlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "educationlabel",
  "elementType": "labels",
  "stylers": {
    "visibility": "on"
  }
}, {
  "featureType": "educationlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "educationlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "educationlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "transportation",
  "elementType": "geometry",
  "stylers": {
    "color": "#113549ff"
  }
}, {
  "featureType": "airportlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "airportlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "scenicspotslabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "scenicspotslabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "medicallabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "medicallabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "medicallabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "scenicspotslabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "airportlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "entertainmentlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "entertainmentlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "entertainmentlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "estatelabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "estatelabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "estatelabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "businesstowerlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "businesstowerlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "businesstowerlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "companylabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "companylabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "companylabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "governmentlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "governmentlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "governmentlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "restaurantlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "restaurantlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "restaurantlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "hotellabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "hotellabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "hotellabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "shoppinglabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "shoppinglabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "shoppinglabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "lifeservicelabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "lifeservicelabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "lifeservicelabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "carservicelabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "carservicelabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "carservicelabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "financelabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "financelabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "financelabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "otherlabel",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "otherlabel",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "otherlabel",
  "elementType": "labels.icon",
  "stylers": {
    "visibility": "off"
  }
}, {
  "featureType": "manmade",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "manmade",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "transportation",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "transportation",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "education",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "education",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "medical",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "medical",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}, {
  "featureType": "scenicspots",
  "elementType": "labels.text.fill",
  "stylers": {
    "color": "#2dc4bbff"
  }
}, {
  "featureType": "scenicspots",
  "elementType": "labels.text.stroke",
  "stylers": {
    "color": "#ffffff00"
  }
}]

kaifu.json

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.99062098716904,
              28.216549539917715
            ],
            [
              112.9888959873634,
              28.216523540037002
            ],
            [
              112.98831298703226,
              28.216556538957143
            ],
            [
              112.98768498649525,
              28.216580538524173
            ],
            [
              112.98700398715313,
              28.216670535871458
            ],
            [
              112.98660198657193,
              28.21672653453453
            ],
            [
              112.9854889865114,
              28.2168215320841
            ],
            [
              112.98475998659038,
              28.216887530523802
            ],
            [
              112.98453398663462,
              28.21687353088025
            ],
            [
              112.98375598720811,
              28.21697752761072
            ],
            [
              112.9834939872673,
              28.217010526392183
            ],
            [
              112.98295698696688,
              28.217055525288913
            ],
            [
              112.98206898703722,
              28.217130523671834
            ],
            [
              112.98118898660518,
              28.21720452146533
            ],
            [
              112.98132398722204,
              28.218682480649424
            ],
            [
              112.98145198726793,
              28.220090441496378
            ],
            [
              112.98161298692506,
              28.223218354162363
            ],
            [
              112.98168798726769,
              28.22418232778305
            ],
            [
              112.98188698656095,
              28.224224326205295
            ],
            [
              112.98313198686597,
              28.224197326945724
            ],
            [
              112.98361498673968,
              28.22418632730394
            ],
            [
              112.98396898674203,
              28.223997333025473
            ],
            [
              112.98744298664114,
              28.22770823011233
            ],
            [
              112.98747998734889,
              28.228840198776812
            ],
            [
              112.98750698711267,
              28.229816170973262
            ],
            [
              112.98776298720452,
              28.232452098254807
            ],
            [
              112.98778598677062,
              28.232690091228154
            ],
            [
              112.99219098715685,
              28.233015082716616
            ],
            [
              112.99460298705057,
              28.23319307736262
            ],
            [
              112.99523298723737,
              28.23323907616194
            ],
            [
              112.9954749870867,
              28.233261075958946
            ],
            [
              112.99851498661901,
              28.233533068325844
            ],
            [
              112.99910998664569,
              28.233586066495935
            ],
            [
              113.00029798704922,
              28.2336920635486
            ],
            [
              113.00127898686513,
              28.233959056073385
            ],
            [
              113.00122698698699,
              28.233060081246997
            ],
            [
              113.00110998681201,
              28.231038137412206
            ],
            [
              113.00109898694143,
              28.2308481429832
            ],
            [
              113.00113998694975,
              28.229914168492137
            ],
            [
              113.00114798734573,
              28.22972517406465
            ],
            [
              113.00122798681416,
              28.227899224305574
            ],
            [
              113.00128898691375,
              28.22728224203307
            ],
            [
              113.00130398698246,
              28.227125246072212
            ],
            [
              113.00130998683026,
              28.227064247473432
            ],
            [
              113.00148498673323,
              28.225290296758416
            ],
            [
              113.001719986911,
              28.222544373401558
            ],
            [
              113.0017649871171,
              28.222013388256077
            ],
            [
              113.00172298728431,
              28.222002388386592
            ],
            [
              113.0002949866814,
              28.221612399261804
            ],
            [
              112.99989398682362,
              28.221192410360295
            ],
            [
              112.99896198651355,
              28.220156439590934
            ],
            [
              112.99820298735409,
              28.219062469820265
            ],
            [
              112.99768098712264,
              28.21844448660445
            ],
            [
              112.9969049873462,
              28.21784550356541
            ],
            [
              112.99632998651289,
              28.217346517728977
            ],
            [
              112.99586798655578,
              28.216898530184636
            ],
            [
              112.99568498715614,
              28.216639537320226
            ],
            [
              112.99567598693537,
              28.216556538994396
            ],
            [
              112.99347598675362,
              28.216457542183385
            ],
            [
              112.99265798714427,
              28.21634754483569
            ],
            [
              112.99238498733283,
              28.216314545846636
            ],
            [
              112.99198198692669,
              28.2163755442532
            ],
            [
              112.99171898716102,
              28.21636154454234
            ],
            [
              112.9914079868164,
              28.216390543710876
            ],
            [
              112.99110498686765,
              28.216556538971293
            ],
            [
              112.99062098716904,
              28.216549539917715
            ]
          ]
        ]
      },
      "properties": {
        "name": "东风路街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.98351298661866,
              28.2558784474939
            ],
            [
              112.9835279866873,
              28.25583744825584
            ],
            [
              112.98549698689278,
              28.250362600374764
            ],
            [
              112.98569098706167,
              28.2499946107528
            ],
            [
              112.9865509865046,
              28.248363656168518
            ],
            [
              112.98689198698669,
              28.247715674468104
            ],
            [
              112.98717098664656,
              28.246279713786585
            ],
            [
              112.987225986899,
              28.244252770583152
            ],
            [
              112.98725498721176,
              28.243208799738856
            ],
            [
              112.98419698723755,
              28.243373794928907
            ],
            [
              112.98365198654118,
              28.24357278944204
            ],
            [
              112.98055198673374,
              28.244704757558427
            ],
            [
              112.97707098715944,
              28.246763700470492
            ],
            [
              112.97454398673894,
              28.24825765939471
            ],
            [
              112.97141098731912,
              28.250450597995112
            ],
            [
              112.96600698667545,
              28.249507624426982
            ],
            [
              112.96596498684193,
              28.251187577762238
            ],
            [
              112.96589698706873,
              28.253879502941636
            ],
            [
              112.96587898662675,
              28.25458348295962
            ],
            [
              112.96450398662375,
              28.258402376944257
            ],
            [
              112.96341998687429,
              28.261412293819568
            ],
            [
              112.96250998720227,
              28.263940223275018
            ],
            [
              112.9615599873472,
              28.266577149924746
            ],
            [
              112.96138398672164,
              28.267066136640693
            ],
            [
              112.96127898713951,
              28.267358127974788
            ],
            [
              112.95847898690488,
              28.27513191191401
            ],
            [
              112.9578809865046,
              28.276292879875164
            ],
            [
              112.97006798709373,
              28.27612288433639
            ],
            [
              112.97285798727928,
              28.27608388574967
            ],
            [
              112.9751549866469,
              28.276584872116896
            ],
            [
              112.97663398730326,
              28.27725785329881
            ],
            [
              112.97939298662784,
              28.27851281828801
            ],
            [
              112.98008598656385,
              28.278367822151353
            ],
            [
              112.9806589868493,
              28.278247825717624
            ],
            [
              112.98104498663938,
              28.27660387097176
            ],
            [
              112.98051998693467,
              28.272483985649174
            ],
            [
              112.98070198651101,
              28.269053080936096
            ],
            [
              112.98196798673338,
              28.266700146378724
            ],
            [
              112.98023998655503,
              28.265954167081635
            ],
            [
              112.98121698707278,
              28.262879252754768
            ],
            [
              112.98230998704327,
              28.25944034862487
            ],
            [
              112.98236798676966,
              28.259258353702908
            ],
            [
              112.98290098687282,
              28.257581399830933
            ],
            [
              112.98351298661866,
              28.2558784474939
            ]
          ]
        ]
      },
      "properties": {
        "name": "芙蓉北路街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              113.04699598720485,
              28.256805421710183
            ],
            [
              113.0481669869921,
              28.255793450386566
            ],
            [
              113.04761798699703,
              28.25375450685549
            ],
            [
              113.04743498669936,
              28.252794533758674
            ],
            [
              113.04744398692043,
              28.252287547459417
            ],
            [
              113.04764398693716,
              28.251781561337022
            ],
            [
              113.0478439869539,
              28.25122057745979
            ],
            [
              113.04907198664228,
              28.25089558607053
            ],
            [
              113.05102398712734,
              28.249940612925034
            ],
            [
              113.05140498689362,
              28.25035660093492
            ],
            [
              113.05162998702451,
              28.25039460002228
            ],
            [
              113.05196298711047,
              28.25026160395434
            ],
            [
              113.05252598735035,
              28.24974261866003
            ],
            [
              113.05273998671237,
              28.24943062660439
            ],
            [
              113.05272598646881,
              28.249039637780996
            ],
            [
              113.05272398681905,
              28.248971639750454
            ],
            [
              113.05276398700217,
              28.248564650899688
            ],
            [
              113.05268298681158,
              28.248003666715082
            ],
            [
              113.05315298716536,
              28.246769700830892
            ],
            [
              113.05330898680138,
              28.245843726211184
            ],
            [
              113.05336198650491,
              28.24553073513843
            ],
            [
              113.05350898681881,
              28.243727785513343
            ],
            [
              113.05350498662095,
              28.24343179397006
            ],
            [
              113.05348298688043,
              28.241696841648874
            ],
            [
              113.05336898707793,
              28.240931862649163
            ],
            [
              113.05318698660528,
              28.23971489645853
            ],
            [
              113.0529429871067,
              28.238470931018
            ],
            [
              113.05245598703567,
              28.23699797217051
            ],
            [
              113.05272798702251,
              28.236276992653018
            ],
            [
              113.05261298649654,
              28.236146995885072
            ],
            [
              113.05203998710971,
              28.23550101350513
            ],
            [
              113.0512479865416,
              28.23476403453212
            ],
            [
              113.05071098713965,
              28.23444304355961
            ],
            [
              113.05038098652854,
              28.23427904757938
            ],
            [
              113.04260698672063,
              28.23687897536036
            ],
            [
              113.03786398712343,
              28.23778595002124
            ],
            [
              113.03520798683218,
              28.2377669505945
            ],
            [
              113.0325419864952,
              28.23774795116433
            ],
            [
              113.02512498706385,
              28.23751695761466
            ],
            [
              113.02024698684957,
              28.23736496180549
            ],
            [
              113.02030598729904,
              28.23754195675124
            ],
            [
              113.02063698683635,
              28.2385409291308
            ],
            [
              113.02099098683748,
              28.241290852881775
            ],
            [
              113.02057298726048,
              28.24260481665747
            ],
            [
              113.02053298707754,
              28.242628815910216
            ],
            [
              113.01915698725095,
              28.24345479257241
            ],
            [
              113.01896198725731,
              28.243490791953306
            ],
            [
              113.01490798649984,
              28.244239770996753
            ],
            [
              113.01468098671911,
              28.244312768708667
            ],
            [
              113.01481398678793,
              28.245683730441637
            ],
            [
              113.01481898681034,
              28.246785700042306
            ],
            [
              113.01472198672558,
              28.2476606758366
            ],
            [
              113.01427198646311,
              28.249225632699353
            ],
            [
              113.01363398677789,
              28.251146579335384
            ],
            [
              113.01305098734422,
              28.253108524903503
            ],
            [
              113.01292198657418,
              28.253823505019085
            ],
            [
              113.0128359872581,
              28.255402460978228
            ],
            [
              113.01263798688959,
              28.259541345543763
            ],
            [
              113.01260498727734,
              28.260227326917587
            ],
            [
              113.01254098680431,
              28.261694286247295
            ],
            [
              113.01521798701195,
              28.26175528404726
            ],
            [
              113.01960198658546,
              28.257417404798055
            ],
            [
              113.02097598676092,
              28.259629343614158
            ],
            [
              113.02164498730544,
              28.260303324415908
            ],
            [
              113.02207198710232,
              28.26114330123207
            ],
            [
              113.02245398669291,
              28.26299925009512
            ],
            [
              113.02469498688217,
              28.263846226150427
            ],
            [
              113.02477398652415,
              28.26546118147996
            ],
            [
              113.02439598713032,
              28.26636815597006
            ],
            [
              113.02470898712485,
              28.26622016047604
            ],
            [
              113.02815598726207,
              28.264592205179426
            ],
            [
              113.03000098671896,
              28.263004249878993
            ],
            [
              113.03012998659132,
              28.260850309398172
            ],
            [
              113.0306019865945,
              28.260585317200743
            ],
            [
              113.0315889871563,
              28.261379294871006
            ],
            [
              113.03223298668873,
              28.26077431155497
            ],
            [
              113.03248998660771,
              28.258279380856216
            ],
            [
              113.03304798682474,
              28.257674398144076
            ],
            [
              113.03313398703872,
              28.257107413437403
            ],
            [
              113.03223298669053,
              28.256654425811615
            ],
            [
              113.03197498694797,
              28.255973445256974
            ],
            [
              113.0330479868259,
              28.255028471141717
            ],
            [
              113.0344639868353,
              28.254574484002834
            ],
            [
              113.03497898649586,
              28.25502847115149
            ],
            [
              113.03467898692004,
              28.25548245873665
            ],
            [
              113.03660998658927,
              28.257145412508994
            ],
            [
              113.03785498689413,
              28.25737240639472
            ],
            [
              113.03836998655471,
              28.257788394686077
            ],
            [
              113.03944298733057,
              28.257712397028314
            ],
            [
              113.04025798656735,
              28.256843420837747
            ],
            [
              113.04085898734016,
              28.256767423295194
            ],
            [
              113.04154598652985,
              28.25718341157446
            ],
            [
              113.04227498734852,
              28.25869536961135
            ],
            [
              113.04317698662328,
              28.259262353789303
            ],
            [
              113.04413898707108,
              28.259219354780527
            ],
            [
              113.04489298710645,
              28.259186355603163
            ],
            [
              113.04682398677669,
              28.25843037682466
            ],
            [
              113.04605198719844,
              28.257410405395714
            ],
            [
              113.04626698728367,
              28.257221410625252
            ],
            [
              113.04682398677713,
              28.25741040539964
            ],
            [
              113.04712498707575,
              28.257939390530527
            ],
            [
              113.04746798720748,
              28.25771239706893
            ],
            [
              113.04699598720485,
              28.256805421710183
            ]
          ]
        ]
      },
      "properties": {
        "name": "洪山街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              113.02918498673644,
              28.31580678047774
            ],
            [
              113.02996298706132,
              28.31561178568992
            ],
            [
              113.0332249872501,
              28.315233796779346
            ],
            [
              113.03498398649316,
              28.31402483008759
            ],
            [
              113.03429798712901,
              28.31209788379339
            ],
            [
              113.03867498702769,
              28.31270186696708
            ],
            [
              113.04455398714987,
              28.31194688811463
            ],
            [
              113.05270798689905,
              28.309981943007582
            ],
            [
              113.05576898724632,
              28.309792948213335
            ],
            [
              113.05584698706429,
              28.30948695684648
            ],
            [
              113.05586498660776,
              28.309111967318824
            ],
            [
              113.05586398678314,
              28.308510984175605
            ],
            [
              113.05583798684397,
              28.308190992768296
            ],
            [
              113.0557599870263,
              28.307861001955693
            ],
            [
              113.05559498717005,
              28.30748801240157
            ],
            [
              113.05536798649116,
              28.307223019977652
            ],
            [
              113.05513298721297,
              28.30697502644577
            ],
            [
              113.0549679864583,
              28.306875029272653
            ],
            [
              113.05479398727938,
              28.30682003098469
            ],
            [
              113.054584987042,
              28.306800031527555
            ],
            [
              113.05428898676601,
              28.306865029942255
            ],
            [
              113.05402798665004,
              28.307010025230557
            ],
            [
              113.05377598675494,
              28.307191020326545
            ],
            [
              113.05352198721006,
              28.307171020938966
            ],
            [
              113.05314698729147,
              28.306954027314156
            ],
            [
              113.05293198720643,
              28.306812031035122
            ],
            [
              113.05267498728855,
              28.306633036268813
            ],
            [
              113.05253498664821,
              28.306538038848995
            ],
            [
              113.05234198720275,
              28.306406042176757
            ],
            [
              113.05214898685897,
              28.30625504627411
            ],
            [
              113.05208498728493,
              28.30616004930803
            ],
            [
              113.0524619868536,
              28.305798059253746
            ],
            [
              113.05313198722358,
              28.30527807350922
            ],
            [
              113.05407998652969,
              28.304514095099993
            ],
            [
              113.05454998688312,
              28.304087107281045
            ],
            [
              113.05503698695495,
              28.303710117461932
            ],
            [
              113.05542898659216,
              28.303427125277803
            ],
            [
              113.05571598664739,
              28.30324513037627
            ],
            [
              113.05615998706146,
              28.30307413537055
            ],
            [
              113.0564559864392,
              28.302893140388978
            ],
            [
              113.05667298707255,
              28.3027111453646
            ],
            [
              113.05698598706712,
              28.30240315392722
            ],
            [
              113.05732598682587,
              28.302015164944347
            ],
            [
              113.05766498675973,
              28.30156917668387
            ],
            [
              113.05778698695856,
              28.30132218395901
            ],
            [
              113.05779498645632,
              28.30101119241192
            ],
            [
              113.0577339872554,
              28.30062920320346
            ],
            [
              113.05762098727769,
              28.300308212060084
            ],
            [
              113.05741198704045,
              28.30000822044452
            ],
            [
              113.05716898646806,
              28.299727228218774
            ],
            [
              113.056924986969,
              28.299553233009274
            ],
            [
              113.05663798691391,
              28.299390238102216
            ],
            [
              113.05608998674307,
              28.2988962514512
            ],
            [
              113.0556549865501,
              28.298475263457984
            ],
            [
              113.05536798649521,
              28.29801027642886
            ],
            [
              113.0551499869354,
              28.297716284142574
            ],
            [
              113.05486298688038,
              28.297479290592243
            ],
            [
              113.05454998688604,
              28.297313295525722
            ],
            [
              113.05422798667081,
              28.297222298419815
            ],
            [
              113.05375798721595,
              28.29717529896987
            ],
            [
              113.05324398648173,
              28.29722829792207
            ],
            [
              113.05277398702678,
              28.297338294890167
            ],
            [
              113.0520779867177,
              28.297445291600493
            ],
            [
              113.0512689873291,
              28.29744429181242
            ],
            [
              113.05057298702015,
              28.29728229662251
            ],
            [
              113.05007598690285,
              28.296996304584493
            ],
            [
              113.04954598717372,
              28.29648131828808
            ],
            [
              113.04907498699585,
              28.29588733515592
            ],
            [
              113.04890998713962,
              28.29532735074828
            ],
            [
              113.04874498728337,
              28.29498436051422
            ],
            [
              113.04765898698733,
              28.2943003795174
            ],
            [
              113.04741298694015,
              28.294145383786354
            ],
            [
              113.04498398732818,
              28.293302406685182
            ],
            [
              113.04249398671836,
              28.293119412030947
            ],
            [
              113.04065698675986,
              28.29281342095297
            ],
            [
              113.03940398695752,
              28.29229143536203
            ],
            [
              113.03743598657988,
              28.291095468515444
            ],
            [
              113.03564198717791,
              28.28959751027888
            ],
            [
              113.03441398659206,
              28.288034553521047
            ],
            [
              113.03271598655171,
              28.285468624628376
            ],
            [
              113.03158298729905,
              28.283167689256523
            ],
            [
              113.03024198673593,
              28.28012777385978
            ],
            [
              113.02933398671546,
              28.278719812803004
            ],
            [
              113.02862198651337,
              28.27761684346868
            ],
            [
              113.02693198686913,
              28.274634926184156
            ],
            [
              113.02552898727969,
              28.27243698737585
            ],
            [
              113.02448398699265,
              28.269196077219537
            ],
            [
              113.02439598713032,
              28.26636815597006
            ],
            [
              113.02477398652415,
              28.26546118147996
            ],
            [
              113.02469498688217,
              28.263846226150427
            ],
            [
              113.02245398669291,
              28.26299925009512
            ],
            [
              113.02207198710232,
              28.26114330123207
            ],
            [
              113.02164498730544,
              28.260303324415908
            ],
            [
              113.02097598676092,
              28.259629343614158
            ],
            [
              113.01960198658546,
              28.257417404798055
            ],
            [
              113.01521798701195,
              28.26175528404726
            ],
            [
              113.01254098680431,
              28.261694286247295
            ],
            [
              113.01193198653404,
              28.26142229370506
            ],
            [
              113.008616986642,
              28.26129929678477
            ],
            [
              113.00608498709731,
              28.26195127867582
            ],
            [
              113.00465498684422,
              28.26245126490452
            ],
            [
              113.00278998729623,
              28.263104246979413
            ],
            [
              112.996631986616,
              28.26501319326612
            ],
            [
              112.99482898699252,
              28.265088191165237
            ],
            [
              112.99110498684662,
              28.26505119263853
            ],
            [
              112.98866998648838,
              28.264720201704172
            ],
            [
              112.9860089870726,
              28.264701202328748
            ],
            [
              112.98348798650022,
              28.265362183956135
            ],
            [
              112.98196798673338,
              28.266700146378724
            ],
            [
              112.98070198651101,
              28.269053080936096
            ],
            [
              112.98051998693467,
              28.272483985649174
            ],
            [
              112.98104498663938,
              28.27660387097176
            ],
            [
              112.9806589868493,
              28.278247825717624
            ],
            [
              112.98008598656385,
              28.278367822151353
            ],
            [
              112.97939298662784,
              28.27851281828801
            ],
            [
              112.97663398730326,
              28.27725785329881
            ],
            [
              112.97592498657467,
              28.27901480423392
            ],
            [
              112.97618298721491,
              28.281130745389994
            ],
            [
              112.97762098696515,
              28.281697729644115
            ],
            [
              112.97813598662518,
              28.283399682385355
            ],
            [
              112.97792098653821,
              28.2876705634712
            ],
            [
              112.97854198650303,
              28.290225492337104
            ],
            [
              112.97863198691455,
              28.29059848228449
            ],
            [
              112.97865098718107,
              28.29067448022016
            ],
            [
              112.97985198710474,
              28.29167645172393
            ],
            [
              112.98418698717008,
              28.293528400125602
            ],
            [
              112.98377898674055,
              28.29479436502772
            ],
            [
              112.98637498675599,
              28.2979492776988
            ],
            [
              112.98588198683424,
              28.303238130334442
            ],
            [
              112.9877059872711,
              28.30624104696663
            ],
            [
              112.98781798652571,
              28.3063500436204
            ],
            [
              112.99094698664364,
              28.309394959081008
            ],
            [
              112.98792098645598,
              28.31071792221389
            ],
            [
              112.98806098709588,
              28.31185389049822
            ],
            [
              112.989084986566,
              28.320153659105493
            ],
            [
              112.98983598712582,
              28.32202360748996
            ],
            [
              112.99066598732863,
              28.32314857549441
            ],
            [
              112.99094198661463,
              28.32352356534693
            ],
            [
              112.99648898647588,
              28.32264559020197
            ],
            [
              112.99772998658247,
              28.323620562519643
            ],
            [
              112.99871698714436,
              28.32411154883398
            ],
            [
              112.99953198727914,
              28.324035551063684
            ],
            [
              112.99978998702215,
              28.32358256347417
            ],
            [
              113.00030398685834,
              28.32286458413102
            ],
            [
              112.99991798706911,
              28.32252459354607
            ],
            [
              112.99957498693749,
              28.322486594096667
            ],
            [
              112.99850198705995,
              28.32248659409122
            ],
            [
              112.99794398684323,
              28.322335598875103
            ],
            [
              112.9977299865835,
              28.321239629295007
            ],
            [
              112.9977299865838,
              28.32055964771953
            ],
            [
              112.99777298714002,
              28.320095661107608
            ],
            [
              112.99781498697303,
              28.319653673409395
            ],
            [
              112.9981369871885,
              28.319085689345005
            ],
            [
              112.99832998663416,
              28.31874669812429
            ],
            [
              112.99893098650834,
              28.319388680462254
            ],
            [
              112.99978998702366,
              28.320068661623157
            ],
            [
              113.00038998707294,
              28.320824640930454
            ],
            [
              113.00111998681852,
              28.32150462160558
            ],
            [
              113.00172098669259,
              28.322486594107513
            ],
            [
              113.00476998644562,
              28.323053578664922
            ],
            [
              113.00540198718053,
              28.323129576353782
            ],
            [
              113.01446798714747,
              28.324224545941114
            ],
            [
              113.01850198691578,
              28.321882611261646
            ],
            [
              113.02369498677528,
              28.319691672418948
            ],
            [
              113.02845898718842,
              28.315988775237763
            ],
            [
              113.02918498673644,
              28.31580678047774
            ]
          ]
        ]
      },
      "properties": {
        "name": "捞刀河街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.987225986899,
              28.244252770583152
            ],
            [
              112.98717098664656,
              28.246279713786585
            ],
            [
              112.98689198698669,
              28.247715674468104
            ],
            [
              112.9865509865046,
              28.248363656168518
            ],
            [
              112.98569098706167,
              28.2499946107528
            ],
            [
              112.98549698689278,
              28.250362600374764
            ],
            [
              112.9835279866873,
              28.25583744825584
            ],
            [
              112.98351298661866,
              28.2558784474939
            ],
            [
              112.98290098687282,
              28.257581399830933
            ],
            [
              112.98236798676966,
              28.259258353702908
            ],
            [
              112.98230998704327,
              28.25944034862487
            ],
            [
              112.98121698707278,
              28.262879252754768
            ],
            [
              112.98023998655503,
              28.265954167081635
            ],
            [
              112.98196798673338,
              28.266700146378724
            ],
            [
              112.98348798650022,
              28.265362183956135
            ],
            [
              112.9860089870726,
              28.264701202328748
            ],
            [
              112.98866998648838,
              28.264720201704172
            ],
            [
              112.99110498684662,
              28.26505119263853
            ],
            [
              112.99482898699252,
              28.265088191165237
            ],
            [
              112.996631986616,
              28.26501319326612
            ],
            [
              113.00278998729623,
              28.263104246979413
            ],
            [
              113.00465498684422,
              28.26245126490452
            ],
            [
              113.00608498709731,
              28.26195127867582
            ],
            [
              113.008616986642,
              28.26129929678477
            ],
            [
              113.01193198653404,
              28.26142229370506
            ],
            [
              113.01254098680431,
              28.261694286247295
            ],
            [
              113.01260498727734,
              28.260227326917587
            ],
            [
              113.01263798688959,
              28.259541345543763
            ],
            [
              113.0128359872581,
              28.255402460978228
            ],
            [
              113.01292198657418,
              28.253823505019085
            ],
            [
              113.01305098734422,
              28.253108524903503
            ],
            [
              113.01363398677789,
              28.251146579335384
            ],
            [
              113.01427198646311,
              28.249225632699353
            ],
            [
              113.01472198672558,
              28.2476606758366
            ],
            [
              113.01481898681034,
              28.246785700042306
            ],
            [
              113.01481398678793,
              28.245683730441637
            ],
            [
              113.01468098671911,
              28.244312768708667
            ],
            [
              113.00931698715563,
              28.246025721652252
            ],
            [
              113.00806998720076,
              28.24617071747761
            ],
            [
              113.00589498713327,
              28.246422710424543
            ],
            [
              113.00186098646793,
              28.24579872731863
            ],
            [
              112.99861198669836,
              28.245142746017613
            ],
            [
              112.99270598681287,
              28.24395077880804
            ],
            [
              112.99010398694843,
              28.243552790010817
            ],
            [
              112.98769498652948,
              28.243184799827258
            ],
            [
              112.98725498721176,
              28.243208799738856
            ],
            [
              112.987225986899,
              28.244252770583152
            ]
          ]
        ]
      },
      "properties": {
        "name": "浏阳河街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.9879769865772,
              28.207601787456483
            ],
            [
              112.98814898700486,
              28.20703480342198
            ],
            [
              112.98797498692763,
              28.206999804249342
            ],
            [
              112.98749398670381,
              28.20690280697991
            ],
            [
              112.98711098728765,
              28.20654881730661
            ],
            [
              112.98711098728774,
              28.206351822325058
            ],
            [
              112.9870759871277,
              28.20618282748989
            ],
            [
              112.98698898708919,
              28.20592383397274
            ],
            [
              112.9866749872701,
              28.205338850742304
            ],
            [
              112.98651898673637,
              28.204967860647375
            ],
            [
              112.9863879872153,
              28.20457687199685
            ],
            [
              112.98630098717686,
              28.20420988189056
            ],
            [
              112.9861869873743,
              28.20355589964323
            ],
            [
              112.9861529870393,
              28.203128911842583
            ],
            [
              112.98612598727534,
              28.202657925186866
            ],
            [
              112.98611798687966,
              28.202119940124767
            ],
            [
              112.98612598727571,
              28.201800948950666
            ],
            [
              112.98616098653771,
              28.20123896447866
            ],
            [
              112.98478698725964,
              28.201306962040082
            ],
            [
              112.98394798683549,
              28.201348961536876
            ],
            [
              112.98371198683394,
              28.201358961263676
            ],
            [
              112.98271198675133,
              28.201399960054328
            ],
            [
              112.98177898661581,
              28.20143795835942
            ],
            [
              112.98021998649143,
              28.201611953814766
            ],
            [
              112.97998498721316,
              28.201646953167092
            ],
            [
              112.97997098696943,
              28.201647953057886
            ],
            [
              112.9799559869008,
              28.20165195262125
            ],
            [
              112.97990698649701,
              28.201658952648337
            ],
            [
              112.98001498734992,
              28.202615926169415
            ],
            [
              112.98012898715228,
              28.203655897159717
            ],
            [
              112.98021198699264,
              28.20441487575287
            ],
            [
              112.98036198677985,
              28.205780838545735
            ],
            [
              112.98043198709976,
              28.20642382074035
            ],
            [
              112.98047598658222,
              28.206823809129677
            ],
            [
              112.9804839869781,
              28.20692380678461
            ],
            [
              112.98055298657466,
              28.20781878150964
            ],
            [
              112.98058998728268,
              28.208291768819848
            ],
            [
              112.98085198722202,
              28.211644675380814
            ],
            [
              112.98092098681818,
              28.21350662372183
            ],
            [
              112.98107098660516,
              28.21546956938857
            ],
            [
              112.98112598685638,
              28.21627254742314
            ],
            [
              112.98118898660518,
              28.21720452146533
            ],
            [
              112.98206898703722,
              28.217130523671834
            ],
            [
              112.98295698696688,
              28.217055525288913
            ],
            [
              112.9834939872673,
              28.217010526392183
            ],
            [
              112.98375598720811,
              28.21697752761072
            ],
            [
              112.98453398663462,
              28.21687353088025
            ],
            [
              112.98475998659038,
              28.216887530523802
            ],
            [
              112.9854889865114,
              28.2168215320841
            ],
            [
              112.98660198657193,
              28.21672653453453
            ],
            [
              112.98700398715313,
              28.216670535871458
            ],
            [
              112.98768498649525,
              28.216580538524173
            ],
            [
              112.98831298703226,
              28.216556538957143
            ],
            [
              112.9888959873634,
              28.216523540037002
            ],
            [
              112.99062098716904,
              28.216549539917715
            ],
            [
              112.99110498686765,
              28.216556538971293
            ],
            [
              112.9914079868164,
              28.216390543710876
            ],
            [
              112.99171898716102,
              28.21636154454234
            ],
            [
              112.99198198692669,
              28.2163755442532
            ],
            [
              112.99238498733283,
              28.216314545846636
            ],
            [
              112.99265798714427,
              28.21634754483569
            ],
            [
              112.99347598675362,
              28.216457542183385
            ],
            [
              112.99567598693537,
              28.216556538994396
            ],
            [
              112.995658987217,
              28.21639254402971
            ],
            [
              112.99567698676043,
              28.21619254973315
            ],
            [
              112.99576398679912,
              28.21598455542603
            ],
            [
              112.99618798712191,
              28.21533557363392
            ],
            [
              112.99670298678288,
              28.214786588482525
            ],
            [
              112.99758198649188,
              28.21438959915122
            ],
            [
              112.99798998692091,
              28.214191604610377
            ],
            [
              112.99834298709837,
              28.2140606088764
            ],
            [
              112.99848298684054,
              28.21386261451581
            ],
            [
              112.99860098684151,
              28.213303629514094
            ],
            [
              112.99872998671316,
              28.21275564478446
            ],
            [
              112.9988149871021,
              28.21250065211331
            ],
            [
              112.99884698688916,
              28.21236865530466
            ],
            [
              112.99896498689006,
              28.212113662501356
            ],
            [
              112.99902998718746,
              28.211942667694093
            ],
            [
              112.99906198697462,
              28.21172567327355
            ],
            [
              112.99913698731777,
              28.211498679634452
            ],
            [
              112.99923298667902,
              28.21126168592129
            ],
            [
              112.99955498689437,
              28.211082691330986
            ],
            [
              112.99992898698812,
              28.2110546921075
            ],
            [
              113.00027298694471,
              28.21100769344947
            ],
            [
              113.00046598728858,
              28.210922695889185
            ],
            [
              113.00071298716082,
              28.21081869880092
            ],
            [
              113.00093798729176,
              28.210638703660983
            ],
            [
              113.00100198686593,
              28.210439709480507
            ],
            [
              113.00108798707977,
              28.210146716872917
            ],
            [
              113.00106698716348,
              28.20992972355307
            ],
            [
              113.00100298669119,
              28.20961773224639
            ],
            [
              113.00130398699017,
              28.20938673802132
            ],
            [
              113.00124998656348,
              28.20936173939038
            ],
            [
              113.00051998681774,
              28.20902674814708
            ],
            [
              112.9990999866108,
              28.20861375997525
            ],
            [
              112.99796698735722,
              28.208382765946656
            ],
            [
              112.99684298652782,
              28.208233770113896
            ],
            [
              112.99594598727569,
              28.208231770450876
            ],
            [
              112.99510098700371,
              28.20830876835468
            ],
            [
              112.99368398716935,
              28.20890175210462
            ],
            [
              112.99328198658809,
              28.209140745152702
            ],
            [
              112.99285798716382,
              28.209392738472367
            ],
            [
              112.99228898707617,
              28.209818725960073
            ],
            [
              112.98969298705944,
              28.20961973182172
            ],
            [
              112.98888798697052,
              28.2095257347979
            ],
            [
              112.98889898684155,
              28.208664758146007
            ],
            [
              112.9890379867589,
              28.208195771015088
            ],
            [
              112.9886309870533,
              28.207989776627088
            ],
            [
              112.9879769865772,
              28.207601787456483
            ]
          ]
        ]
      },
      "properties": {
        "name": "清水塘街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.96691698720726,
              28.335813222748083
            ],
            [
              112.96566398650677,
              28.33492224736121
            ],
            [
              112.96379398693772,
              28.331453344414516
            ],
            [
              112.95580898724444,
              28.329834389627106
            ],
            [
              112.95569698709137,
              28.330061382731994
            ],
            [
              112.95503598694187,
              28.331401345328857
            ],
            [
              112.95448898659502,
              28.332977301442977
            ],
            [
              112.95270798671135,
              28.33665019923613
            ],
            [
              112.95194598717788,
              28.337839166441913
            ],
            [
              112.95085198648509,
              28.339057131989502
            ],
            [
              112.94954298660565,
              28.339953107561733
            ],
            [
              112.94581898645865,
              28.342408039189824
            ],
            [
              112.9421929871191,
              28.34512596343993
            ],
            [
              112.93770698654042,
              28.348513868478886
            ],
            [
              112.93874498715591,
              28.34918384977214
            ],
            [
              112.94011798660932,
              28.3485788667016
            ],
            [
              112.94183498691677,
              28.349938829022996
            ],
            [
              112.94380898714235,
              28.350769805325427
            ],
            [
              112.94337998679634,
              28.352280763602476
            ],
            [
              112.94183498691544,
              28.353034742894444
            ],
            [
              112.9432079872662,
              28.354545700571386
            ],
            [
              112.94389498645505,
              28.357037630619796
            ],
            [
              112.94655498694337,
              28.35915257223435
            ],
            [
              112.94784298690487,
              28.361871496341028
            ],
            [
              112.94603998728076,
              28.36345745204236
            ],
            [
              112.94895898643817,
              28.366252374205033
            ],
            [
              112.94998898665641,
              28.369953270641034
            ],
            [
              112.95110498708954,
              28.3709352434612
            ],
            [
              112.95076098713143,
              28.374561142026963
            ],
            [
              112.95221998679719,
              28.377128070339523
            ],
            [
              112.95204798726733,
              28.378790023803894
            ],
            [
              112.95110398726047,
              28.38052697522341
            ],
            [
              112.9517909864495,
              28.38241492281551
            ],
            [
              112.95573898690084,
              28.383848882862758
            ],
            [
              112.95642598698923,
              28.38332089765386
            ],
            [
              112.95762698691324,
              28.3834718931051
            ],
            [
              112.95728398678119,
              28.384377867581442
            ],
            [
              112.96003098641071,
              28.384453865655573
            ],
            [
              112.95891498687516,
              28.385132846994434
            ],
            [
              112.95908698730214,
              28.386189817033944
            ],
            [
              112.95968698645308,
              28.38686979806239
            ],
            [
              112.96020198701278,
              28.38551083614097
            ],
            [
              112.96226198655383,
              28.386189817050028
            ],
            [
              112.96440798720684,
              28.387095792025445
            ],
            [
              112.96552398674231,
              28.3864918090547
            ],
            [
              112.96672498666612,
              28.38702079402149
            ],
            [
              112.96826998654625,
              28.388153762783848
            ],
            [
              112.96964398672266,
              28.388077765011605
            ],
            [
              112.97015898728112,
              28.389512724823824
            ],
            [
              112.97170398716138,
              28.390267703234965
            ],
            [
              112.97273398648258,
              28.391022682588893
            ],
            [
              112.97393498640608,
              28.39223064880036
            ],
            [
              112.97483498692935,
              28.392835631954053
            ],
            [
              112.9763349866045,
              28.391956656452393
            ],
            [
              112.97753598652808,
              28.39305162592628
            ],
            [
              112.97779398716929,
              28.392862631139124
            ],
            [
              112.97672098729213,
              28.391956656454326
            ],
            [
              112.9787369864527,
              28.39165366454986
            ],
            [
              112.97879598690224,
              28.391542668320394
            ],
            [
              112.97989598654492,
              28.389463725733037
            ],
            [
              112.98041098710407,
              28.389237732102263
            ],
            [
              112.98126898689732,
              28.387311785909915
            ],
            [
              112.98234198677507,
              28.386783800559623
            ],
            [
              112.98435898665815,
              28.388104763887377
            ],
            [
              112.98525998700681,
              28.38753878023446
            ],
            [
              112.98384398699856,
              28.385386840051094
            ],
            [
              112.98444498687316,
              28.385121847509385
            ],
            [
              112.98564698662183,
              28.385839827198915
            ],
            [
              112.98603298641122,
              28.38568883117611
            ],
            [
              112.98586098688249,
              28.384857854851763
            ],
            [
              112.98435898666015,
              28.383498892424154
            ],
            [
              112.98470298661724,
              28.3823279251371
            ],
            [
              112.98345798721066,
              28.382101931303914
            ],
            [
              112.98384498682522,
              28.38146194979715
            ],
            [
              112.9854319865387,
              28.38112195869991
            ],
            [
              112.98701998697487,
              28.382216928639597
            ],
            [
              112.9877499867213,
              28.380970963081865
            ],
            [
              112.98835098659573,
              28.381083960473283
            ],
            [
              112.99028198716297,
              28.383424894820987
            ],
            [
              112.99195598691493,
              28.383575890916845
            ],
            [
              112.99367198650049,
              28.38183893885622
            ],
            [
              112.99517398672292,
              28.3828209115075
            ],
            [
              112.99489698671432,
              28.380960963651056
            ],
            [
              113.0024509864134,
              28.38031798144342
            ],
            [
              113.00200998727692,
              28.36611637794951
            ],
            [
              112.99840498695899,
              28.36077252701797
            ],
            [
              112.99582998685982,
              28.35788460784254
            ],
            [
              112.99677398686727,
              28.354787693853414
            ],
            [
              112.99119398649773,
              28.35114479518049
            ],
            [
              112.97969298707264,
              28.345705946756254
            ],
            [
              112.98551398657268,
              28.339195128927688
            ],
            [
              112.99063698701184,
              28.333464288047693
            ],
            [
              112.98556398680492,
              28.331037356225934
            ],
            [
              112.98406198658375,
              28.32703246772271
            ],
            [
              112.9818729871724,
              28.32382255669344
            ],
            [
              112.97848198711284,
              28.32266958872882
            ],
            [
              112.97816898711817,
              28.32324857311774
            ],
            [
              112.97801198675924,
              28.323539565019395
            ],
            [
              112.97469398649145,
              28.329678394099513
            ],
            [
              112.97390498719257,
              28.333694281923947
            ],
            [
              112.96935498703961,
              28.337547174838512
            ],
            [
              112.96691698720726,
              28.335813222748083
            ]
          ]
        ]
      },
      "properties": {
        "name": "青竹湖镇"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              113.00947898664718,
              28.227196244360975
            ],
            [
              113.00546598679725,
              28.224885307951634
            ],
            [
              113.00317998730064,
              28.223639342801008
            ],
            [
              113.00267298713808,
              28.222261380910922
            ],
            [
              113.0017649871171,
              28.222013388256077
            ],
            [
              113.001719986911,
              28.222544373401558
            ],
            [
              113.00148498673323,
              28.225290296758416
            ],
            [
              113.00130998683026,
              28.227064247473432
            ],
            [
              113.00130398698246,
              28.227125246072212
            ],
            [
              113.00128898691375,
              28.22728224203307
            ],
            [
              113.00122798681416,
              28.227899224305574
            ],
            [
              113.00114798734573,
              28.22972517406465
            ],
            [
              113.00113998694975,
              28.229914168492137
            ],
            [
              113.00109898694143,
              28.2308481429832
            ],
            [
              113.00110998681201,
              28.231038137412206
            ],
            [
              113.00122698698699,
              28.233060081246997
            ],
            [
              113.00127898686513,
              28.233959056073385
            ],
            [
              113.00129598658346,
              28.234256048159587
            ],
            [
              113.00131298720005,
              28.234554039793334
            ],
            [
              113.00177498715641,
              28.23682197721051
            ],
            [
              113.00183898672923,
              28.239807894012593
            ],
            [
              113.0018489867746,
              28.240615871777496
            ],
            [
              113.00187098651507,
              28.242472819783796
            ],
            [
              113.0018659864915,
              28.244110774654715
            ],
            [
              113.00186098646793,
              28.24579872731863
            ],
            [
              113.00589498713327,
              28.246422710424543
            ],
            [
              113.00806998720076,
              28.24617071747761
            ],
            [
              113.00931698715563,
              28.246025721652252
            ],
            [
              113.01468098671911,
              28.244312768708667
            ],
            [
              113.01490798649984,
              28.244239770996753
            ],
            [
              113.01896198725731,
              28.243490791953306
            ],
            [
              113.01915698725095,
              28.24345479257241
            ],
            [
              113.02053298707754,
              28.242628815910216
            ],
            [
              113.02057298726048,
              28.24260481665747
            ],
            [
              113.02099098683748,
              28.241290852881775
            ],
            [
              113.02063698683635,
              28.2385409291308
            ],
            [
              113.02030598729904,
              28.23754195675124
            ],
            [
              113.02024698684957,
              28.23736496180549
            ],
            [
              113.0194459869596,
              28.23495002905195
            ],
            [
              113.01921298733126,
              28.234676036399268
            ],
            [
              113.01714998651958,
              28.232257103721896
            ],
            [
              113.0141349871025,
              28.22987617009043
            ],
            [
              113.01193798729433,
              28.22861120516873
            ],
            [
              113.00947898664718,
              28.227196244360975
            ]
          ]
        ]
      },
      "properties": {
        "name": "四方坪街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              113.0548029865993,
              28.312755865817916
            ],
            [
              113.05488998663814,
              28.31229987868912
            ],
            [
              113.05504698699711,
              28.311900889336673
            ],
            [
              113.05526398673234,
              28.311297906036632
            ],
            [
              113.05556898722958,
              28.31032893338862
            ],
            [
              113.05576898724632,
              28.309792948213335
            ],
            [
              113.05270798689905,
              28.309981943007582
            ],
            [
              113.04455398714987,
              28.31194688811463
            ],
            [
              113.03867498702769,
              28.31270186696708
            ],
            [
              113.03429798712901,
              28.31209788379339
            ],
            [
              113.03498398649316,
              28.31402483008759
            ],
            [
              113.0332249872501,
              28.315233796779346
            ],
            [
              113.02996298706132,
              28.31561178568992
            ],
            [
              113.02918498673644,
              28.31580678047774
            ],
            [
              113.02845898718842,
              28.315988775237763
            ],
            [
              113.02369498677528,
              28.319691672418948
            ],
            [
              113.01850198691578,
              28.321882611261646
            ],
            [
              113.01446798714747,
              28.324224545941114
            ],
            [
              113.00540198718053,
              28.323129576353782
            ],
            [
              113.00476998644562,
              28.323053578664922
            ],
            [
              113.00172098669259,
              28.322486594107513
            ],
            [
              113.00111998681852,
              28.32150462160558
            ],
            [
              113.00038998707294,
              28.320824640930454
            ],
            [
              112.99978998702366,
              28.320068661623157
            ],
            [
              112.99893098650834,
              28.319388680462254
            ],
            [
              112.99832998663416,
              28.31874669812429
            ],
            [
              112.9981369871885,
              28.319085689345005
            ],
            [
              112.99781498697303,
              28.319653673409395
            ],
            [
              112.99777298714002,
              28.320095661107608
            ],
            [
              112.9977299865838,
              28.32055964771953
            ],
            [
              112.9977299865835,
              28.321239629295007
            ],
            [
              112.99794398684323,
              28.322335598875103
            ],
            [
              112.99850198705995,
              28.32248659409122
            ],
            [
              112.99957498693749,
              28.322486594096667
            ],
            [
              112.99991798706911,
              28.32252459354607
            ],
            [
              113.00030398685834,
              28.32286458413102
            ],
            [
              112.99978998702215,
              28.32358256347417
            ],
            [
              112.99953198727914,
              28.324035551063684
            ],
            [
              112.99871698714436,
              28.32411154883398
            ],
            [
              112.99772998658247,
              28.323620562519643
            ],
            [
              112.99592698695838,
              28.32520651852653
            ],
            [
              112.9899829865388,
              28.326121493306694
            ],
            [
              112.98406198658375,
              28.32703246772271
            ],
            [
              112.98556398680492,
              28.331037356225934
            ],
            [
              112.99063698701184,
              28.333464288047693
            ],
            [
              112.98551398657268,
              28.339195128927688
            ],
            [
              112.97969298707264,
              28.345705946756254
            ],
            [
              112.99119398649773,
              28.35114479518049
            ],
            [
              112.99677398686727,
              28.354787693853414
            ],
            [
              112.99582998685982,
              28.35788460784254
            ],
            [
              112.99840498695899,
              28.36077252701797
            ],
            [
              113.00200998727692,
              28.36611637794951
            ],
            [
              113.0024509864134,
              28.38031798144342
            ],
            [
              113.00482398684686,
              28.38170994266277
            ],
            [
              113.00576798685316,
              28.38133295319963
            ],
            [
              113.0068839872863,
              28.382200929148247
            ],
            [
              113.00804298647968,
              28.381256955285213
            ],
            [
              113.00941598683093,
              28.381709942686008
            ],
            [
              113.01014598657686,
              28.381634944816238
            ],
            [
              113.01143298671425,
              28.382578918488345
            ],
            [
              113.01078898718144,
              28.38405087743829
            ],
            [
              113.01173398701235,
              28.38431486974598
            ],
            [
              113.01357998719315,
              28.381105959875633
            ],
            [
              113.01405198719564,
              28.382426922800445
            ],
            [
              113.01420998648116,
              28.382224928572175
            ],
            [
              113.01602598652438,
              28.379897993389907
            ],
            [
              113.01825698666875,
              28.37876502495571
            ],
            [
              113.01860098662615,
              28.376839079023586
            ],
            [
              113.02130398677238,
              28.3785000324767
            ],
            [
              113.02422298682748,
              28.382804912153777
            ],
            [
              113.02475598692997,
              28.38268491582412
            ],
            [
              113.0301019869499,
              28.381482949443733
            ],
            [
              113.03173298704554,
              28.378349036328167
            ],
            [
              113.03156098661896,
              28.37646108907414
            ],
            [
              113.03387898680236,
              28.374385147537026
            ],
            [
              113.03898498662366,
              28.37128823369562
            ],
            [
              113.03967198671295,
              28.36872030566862
            ],
            [
              113.04010098705952,
              28.365925383706188
            ],
            [
              113.04353698642677,
              28.36663736338691
            ],
            [
              113.04709898709011,
              28.364862412896535
            ],
            [
              113.05018898685161,
              28.36422043105267
            ],
            [
              113.05040298711367,
              28.359953550069402
            ],
            [
              113.05319198657604,
              28.359839553125187
            ],
            [
              113.05503798675514,
              28.36067053019469
            ],
            [
              113.05696898642536,
              28.35999054881176
            ],
            [
              113.05563898663218,
              28.354816693590326
            ],
            [
              113.05773998708048,
              28.353039742949377
            ],
            [
              113.05932698679302,
              28.354965689239084
            ],
            [
              113.0610009865448,
              28.35549467489287
            ],
            [
              113.06241698655457,
              28.354134712597094
            ],
            [
              113.06361898720166,
              28.35451270230657
            ],
            [
              113.06554998687218,
              28.353190738841764
            ],
            [
              113.06516398708196,
              28.355267680815235
            ],
            [
              113.06748098654066,
              28.356589643737124
            ],
            [
              113.06821198700776,
              28.36119651522124
            ],
            [
              113.07074398655196,
              28.36172550065922
            ],
            [
              113.0718509867649,
              28.361205515013726
            ],
            [
              113.07451998657722,
              28.35995055023145
            ],
            [
              113.07535298715416,
              28.358558588900625
            ],
            [
              113.07621998716805,
              28.357109629910006
            ],
            [
              113.07812698654953,
              28.35477769470199
            ],
            [
              113.07414198718632,
              28.3541257130734
            ],
            [
              113.07419398706494,
              28.3538587198268
            ],
            [
              113.07432398676139,
              28.353609727536572
            ],
            [
              113.07446298667864,
              28.35337773390885
            ],
            [
              113.07480198661246,
              28.35307574173142
            ],
            [
              113.0755149866401,
              28.35266675311187
            ],
            [
              113.07615798724592,
              28.352096769083502
            ],
            [
              113.07651498672328,
              28.35134779057867
            ],
            [
              113.07660998715818,
              28.350598811532834
            ],
            [
              113.07663598709776,
              28.349876830990578
            ],
            [
              113.07650598650342,
              28.349144851769864
            ],
            [
              113.07616698657004,
              28.348395872204836
            ],
            [
              113.07560198668088,
              28.347717891452447
            ],
            [
              113.07494098653214,
              28.34728990310551
            ],
            [
              113.07433198716014,
              28.347076909577652
            ],
            [
              113.07355898685826,
              28.347055909676804
            ],
            [
              113.07250698689704,
              28.347234905158746
            ],
            [
              113.07202898704607,
              28.347483898165063
            ],
            [
              113.07167198667071,
              28.34753589644856
            ],
            [
              113.07131598701865,
              28.34741190012871
            ],
            [
              113.07101098652197,
              28.347106908841745
            ],
            [
              113.07081098650569,
              28.3465539237658
            ],
            [
              113.07074198690904,
              28.3458049449037
            ],
            [
              113.07077598724436,
              28.345465954310722
            ],
            [
              113.07094098710095,
              28.345181962453136
            ],
            [
              113.07118498660022,
              28.344878970556728
            ],
            [
              113.07151498721147,
              28.344602978180625
            ],
            [
              113.07188898730543,
              28.344193989341992
            ],
            [
              113.0720369865453,
              28.343819999831233
            ],
            [
              113.07201898700214,
              28.34335601277634
            ],
            [
              113.07167998706899,
              28.342108047595957
            ],
            [
              113.07147998705285,
              28.34118107405988
            ],
            [
              113.0709499864255,
              28.34044809403298
            ],
            [
              113.07044498681073,
              28.33980511221305
            ],
            [
              113.07028898716952,
              28.339306125797673
            ],
            [
              113.070305986894,
              28.33884413916374
            ],
            [
              113.07036698699349,
              28.338549147298025
            ],
            [
              113.07033198683357,
              28.33822715577734
            ],
            [
              113.07020198713738,
              28.33783716665039
            ],
            [
              113.07000998661863,
              28.33749817672029
            ],
            [
              113.06982798704382,
              28.33738917957843
            ],
            [
              113.06958398664639,
              28.337319181426853
            ],
            [
              113.06902798697774,
              28.337318181224234
            ],
            [
              113.06831498695028,
              28.33731718102078
            ],
            [
              113.06779298671854,
              28.33728018231534
            ],
            [
              113.06721898660832,
              28.337084187964862
            ],
            [
              113.066905986614,
              28.336868193918928
            ],
            [
              113.06660098701566,
              28.33652920326859
            ],
            [
              113.06645398670271,
              28.336173213493435
            ],
            [
              113.06630598656491,
              28.33578722400954
            ],
            [
              113.06613998688374,
              28.335374235144318
            ],
            [
              113.06597498702746,
              28.33504624453414
            ],
            [
              113.0657319864551,
              28.334588257672795
            ],
            [
              113.06560098693403,
              28.334275266483257
            ],
            [
              113.0655749869949,
              28.333889277221548
            ],
            [
              113.06562698687368,
              28.33337729157184
            ],
            [
              113.06555798727688,
              28.332977302004966
            ],
            [
              113.065339986819,
              28.332321320789507
            ],
            [
              113.06526998649903,
              28.331822334809196
            ],
            [
              113.0652359870624,
              28.331229350822568
            ],
            [
              113.06506198698537,
              28.330715365274532
            ],
            [
              113.06480898726561,
              28.3301873798297
            ],
            [
              113.0645049865939,
              28.329759392021028
            ],
            [
              113.06413998672119,
              28.32931640468831
            ],
            [
              113.06374798708416,
              28.32897441362348
            ],
            [
              113.0631479870348,
              28.328559425389663
            ],
            [
              113.06273898678108,
              28.32823043480875
            ],
            [
              113.06205198669305,
              28.327787446636787
            ],
            [
              113.06116398676365,
              28.32731446045419
            ],
            [
              113.05920698715482,
              28.326393485389108
            ],
            [
              113.05829298728612,
              28.325929498929895
            ],
            [
              113.05764998668067,
              28.325624506856673
            ],
            [
              113.05710098668487,
              28.325356514403726
            ],
            [
              113.05669198643103,
              28.325266517086483
            ],
            [
              113.05629198729632,
              28.325229518139732
            ],
            [
              113.05538698674994,
              28.32519251917759
            ],
            [
              113.05500398643537,
              28.325137520872367
            ],
            [
              113.0546039873007,
              28.324987524993663
            ],
            [
              113.0542129865903,
              28.324687533394155
            ],
            [
              113.05395998687052,
              28.324258545258044
            ],
            [
              113.05380398723513,
              28.323802557635595
            ],
            [
              113.05372498669423,
              28.32348856677323
            ],
            [
              113.05372498669429,
              28.323375569754234
            ],
            [
              113.05372498669439,
              28.323101577540527
            ],
            [
              113.05375998684005,
              28.322826585075333
            ],
            [
              113.05385598711422,
              28.322552593028743
            ],
            [
              113.05404698691002,
              28.322212602239716
            ],
            [
              113.05415098666722,
              28.321858611855628
            ],
            [
              113.05419498704836,
              28.321481622551282
            ],
            [
              113.05416898710926,
              28.321014635739676
            ],
            [
              113.05412498672871,
              28.32018165847794
            ],
            [
              113.05413398694962,
              28.319985664228803
            ],
            [
              113.05416898710979,
              28.319838668502708
            ],
            [
              113.05422998720921,
              28.319697672395176
            ],
            [
              113.0543859868449,
              28.3194876784351
            ],
            [
              113.05462098702161,
              28.319287683802226
            ],
            [
              113.0550649865374,
              28.31901369133593
            ],
            [
              113.05531698643256,
              28.318796697360792
            ],
            [
              113.05560398648777,
              28.318577703772252
            ],
            [
              113.0560999867804,
              28.31826871203018
            ],
            [
              113.0568309872497,
              28.317839724094913
            ],
            [
              113.05731798732157,
              28.317456734829634
            ],
            [
              113.05750998694226,
              28.31721174181285
            ],
            [
              113.05852698674387,
              28.315917777769513
            ],
            [
              113.05855398650813,
              28.315757782256664
            ],
            [
              113.0585449871857,
              28.315575787097636
            ],
            [
              113.05847498686556,
              28.3154167914757
            ],
            [
              113.05836198688772,
              28.315325794038177
            ],
            [
              113.05816198687121,
              28.315233796905524
            ],
            [
              113.05783098643519,
              28.315141798901813
            ],
            [
              113.057587986761,
              28.315095800660558
            ],
            [
              113.05736998720114,
              28.315082800878187
            ],
            [
              113.05710098668932,
              28.315036801820412
            ],
            [
              113.05665698717377,
              28.31488780633692
            ],
            [
              113.05611698650038,
              28.314726810440852
            ],
            [
              113.05534298727196,
              28.314566815504605
            ],
            [
              113.05513398703464,
              28.31445181845355
            ],
            [
              113.0549509867367,
              28.31418882602467
            ],
            [
              113.05484698697971,
              28.31390383398543
            ],
            [
              113.0547689871621,
              28.31357184265144
            ],
            [
              113.05476798643906,
              28.31315485433604
            ],
            [
              113.0548029865993,
              28.312755865817916
            ]
          ]
        ]
      },
      "properties": {
        "name": "沙坪街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.96632598653966,
              28.198855030472487
            ],
            [
              112.96630798699627,
              28.19885603038939
            ],
            [
              112.96502998707932,
              28.198904028763412
            ],
            [
              112.96498598669838,
              28.19890602859629
            ],
            [
              112.96482598686484,
              28.198911028969754
            ],
            [
              112.96479598672762,
              28.198912028886078
            ],
            [
              112.9628389871184,
              28.198973026930744
            ],
            [
              112.96183398701291,
              28.199004025897736
            ],
            [
              112.96236098726546,
              28.203812892705354
            ],
            [
              112.96245598680132,
              28.20468186857145
            ],
            [
              112.96267698673333,
              28.206697812985254
            ],
            [
              112.9627009870227,
              28.206919806536884
            ],
            [
              112.96270798669535,
              28.206981804610837
            ],
            [
              112.96291798675678,
              28.208901751948954
            ],
            [
              112.96309198683336,
              28.210489707622777
            ],
            [
              112.9633009870699,
              28.212391655054255
            ],
            [
              112.96338298708531,
              28.213140633908665
            ],
            [
              112.9673949871114,
              28.21301363762536
            ],
            [
              112.96781898653558,
              28.212985638116713
            ],
            [
              112.96853198656302,
              28.213042636918757
            ],
            [
              112.96900998731212,
              28.213065635913892
            ],
            [
              112.97044698723766,
              28.213136634019513
            ],
            [
              112.97191098692745,
              28.213108634548394
            ],
            [
              112.97181398684324,
              28.212743644829832
            ],
            [
              112.97157298681923,
              28.211854669768705
            ],
            [
              112.97106298718212,
              28.209990721498613
            ],
            [
              112.97091898724234,
              28.20946173609926
            ],
            [
              112.97090298734885,
              28.209400737699724
            ],
            [
              112.97067198737057,
              28.2085487616426
            ],
            [
              112.97058598715694,
              28.208364766530433
            ],
            [
              112.97046198730843,
              28.208231770321927
            ],
            [
              112.9704439868668,
              28.20817577195228
            ],
            [
              112.97013498707075,
              28.207238797506317
            ],
            [
              112.97006498675104,
              28.206197826712597
            ],
            [
              112.97007098659881,
              28.206157828023382
            ],
            [
              112.97019998736887,
              28.205308851006407
            ],
            [
              112.97041998657903,
              28.204259880685257
            ],
            [
              112.9704789870287,
              28.2039758881577
            ],
            [
              112.97079998652089,
              28.2036118979816
            ],
            [
              112.970518987212,
              28.203229908794636
            ],
            [
              112.97055898649688,
              28.202699923286428
            ],
            [
              112.97057898658848,
              28.202439930943083
            ],
            [
              112.97066398697777,
              28.201309962442473
            ],
            [
              112.97067198737375,
              28.201163965937603
            ],
            [
              112.97068798726743,
              28.200888973763227
            ],
            [
              112.97079498650004,
              28.198982027005545
            ],
            [
              112.97080298689608,
              28.198684035048807
            ],
            [
              112.9699489873016,
              28.198716034018684
            ],
            [
              112.96982798692783,
              28.198721033609505
            ],
            [
              112.96920398658877,
              28.198745033225464
            ],
            [
              112.96825798693284,
              28.198781032639218
            ],
            [
              112.96780898649598,
              28.198798032028293
            ],
            [
              112.96703098706949,
              28.19882803112992
            ],
            [
              112.96632598653966,
              28.198855030472487
            ]
          ]
        ]
      },
      "properties": {
        "name": "通泰街街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.98747998734889,
              28.228840198776812
            ],
            [
              112.98744298664114,
              28.22770823011233
            ],
            [
              112.98396898674203,
              28.223997333025473
            ],
            [
              112.98361498673968,
              28.22418632730394
            ],
            [
              112.98313198686597,
              28.224197326945724
            ],
            [
              112.98188698656095,
              28.224224326205295
            ],
            [
              112.98168798726769,
              28.22418232778305
            ],
            [
              112.98180798691763,
              28.22568428604235
            ],
            [
              112.98181098729061,
              28.225771283847628
            ],
            [
              112.98183798705479,
              28.225875280621683
            ],
            [
              112.98183798705473,
              28.22602127659148
            ],
            [
              112.98184998675016,
              28.226214271472543
            ],
            [
              112.98185898697095,
              28.226326268259914
            ],
            [
              112.98186698736684,
              28.22642026552943
            ],
            [
              112.98188998693293,
              28.22671525712177
            ],
            [
              112.98193898733611,
              28.22811621821079
            ],
            [
              112.98194798665853,
              28.22836521136197
            ],
            [
              112.98205098658939,
              28.23134512891141
            ],
            [
              112.98229298733689,
              28.231641120749195
            ],
            [
              112.98277198701237,
              28.23222710433453
            ],
            [
              112.9830169872346,
              28.232526095697178
            ],
            [
              112.98332798667997,
              28.234699036090063
            ],
            [
              112.98343598663386,
              28.237271964050034
            ],
            [
              112.9834679873189,
              28.238034943285815
            ],
            [
              112.98394998736616,
              28.241596844555684
            ],
            [
              112.98419698723755,
              28.243373794928907
            ],
            [
              112.98725498721176,
              28.243208799738856
            ],
            [
              112.98769498652948,
              28.243184799827258
            ],
            [
              112.99010398694843,
              28.243552790010817
            ],
            [
              112.99270598681287,
              28.24395077880804
            ],
            [
              112.99861198669836,
              28.245142746017613
            ],
            [
              113.00186098646793,
              28.24579872731863
            ],
            [
              113.0018659864915,
              28.244110774654715
            ],
            [
              113.00187098651507,
              28.242472819783796
            ],
            [
              113.0018489867746,
              28.240615871777496
            ],
            [
              113.00183898672923,
              28.239807894012593
            ],
            [
              113.00177498715641,
              28.23682197721051
            ],
            [
              113.00131298720005,
              28.234554039793334
            ],
            [
              113.00129598658346,
              28.234256048159587
            ],
            [
              113.00127898686513,
              28.233959056073385
            ],
            [
              113.00029798704922,
              28.2336920635486
            ],
            [
              112.99910998664569,
              28.233586066495935
            ],
            [
              112.99851498661901,
              28.233533068325844
            ],
            [
              112.9954749870867,
              28.233261075958946
            ],
            [
              112.99523298723737,
              28.23323907616194
            ],
            [
              112.99460298705057,
              28.23319307736262
            ],
            [
              112.99219098715685,
              28.233015082716616
            ],
            [
              112.98778598677062,
              28.232690091228154
            ],
            [
              112.98776298720452,
              28.232452098254807
            ],
            [
              112.98750698711267,
              28.229816170973262
            ],
            [
              112.98747998734889,
              28.228840198776812
            ]
          ]
        ]
      },
      "properties": {
        "name": "伍家岭街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.9804839869781,
              28.20692380678461
            ],
            [
              112.98047598658222,
              28.206823809129677
            ],
            [
              112.98043198709976,
              28.20642382074035
            ],
            [
              112.98036198677985,
              28.205780838545735
            ],
            [
              112.98021198699264,
              28.20441487575287
            ],
            [
              112.98012898715228,
              28.203655897159717
            ],
            [
              112.98001498734992,
              28.202615926169415
            ],
            [
              112.97990698649701,
              28.201658952648337
            ],
            [
              112.97879998718254,
              28.201824947840954
            ],
            [
              112.97833498685209,
              28.20199094357061
            ],
            [
              112.97791398690264,
              28.202141939166466
            ],
            [
              112.97770798703827,
              28.202215937056067
            ],
            [
              112.97755398705246,
              28.202270935497154
            ],
            [
              112.97731798705092,
              28.202367933009985
            ],
            [
              112.97715698649408,
              28.202433930883757
            ],
            [
              112.97701398727729,
              28.202491929653284
            ],
            [
              112.97694098658401,
              28.202519928747694
            ],
            [
              112.97688598723073,
              28.20254392830496
            ],
            [
              112.97687298681194,
              28.20254892771724
            ],
            [
              112.97686398659108,
              28.20255292803857
            ],
            [
              112.97685498726858,
              28.20256792706527
            ],
            [
              112.97677998692551,
              28.202590926729624
            ],
            [
              112.97668598721418,
              28.20262592576196
            ],
            [
              112.97651198713689,
              28.20269692367338
            ],
            [
              112.97641798652722,
              28.202721923071547
            ],
            [
              112.97632698718895,
              28.202746922463845
            ],
            [
              112.9762249870817,
              28.20277392161096
            ],
            [
              112.97609998650991,
              28.20280792070321
            ],
            [
              112.97596098659272,
              28.202844919423598
            ],
            [
              112.9758529866377,
              28.20285891932093
            ],
            [
              112.97574798705573,
              28.20288091825149
            ],
            [
              112.97566698686487,
              28.202896917902656
            ],
            [
              112.97562198665901,
              28.20290591760642
            ],
            [
              112.97553998664327,
              28.202899918331184
            ],
            [
              112.97501098673877,
              28.202968916301753
            ],
            [
              112.97441598671197,
              28.20317491086616
            ],
            [
              112.9744089870393,
              28.203208909831382
            ],
            [
              112.97418898693128,
              28.203253908211288
            ],
            [
              112.97367798657005,
              28.203431903378213
            ],
            [
              112.97349798664503,
              28.203451902442428
            ],
            [
              112.9724419873842,
              28.203570899251314
            ],
            [
              112.97212998721466,
              28.203605898753207
            ],
            [
              112.97186298725099,
              28.203635897299275
            ],
            [
              112.97173598702938,
              28.203649897092873
            ],
            [
              112.97158398669343,
              28.203686896313332
            ],
            [
              112.97126498685121,
              28.203764894199995
            ],
            [
              112.97079998652089,
              28.2036118979816
            ],
            [
              112.9704789870287,
              28.2039758881577
            ],
            [
              112.97041998657903,
              28.204259880685257
            ],
            [
              112.97019998736887,
              28.205308851006407
            ],
            [
              112.97007098659881,
              28.206157828023382
            ],
            [
              112.97006498675104,
              28.206197826712597
            ],
            [
              112.97013498707075,
              28.207238797506317
            ],
            [
              112.9704439868668,
              28.20817577195228
            ],
            [
              112.97046198730843,
              28.208231770321927
            ],
            [
              112.97058598715694,
              28.208364766530433
            ],
            [
              112.97067198737057,
              28.2085487616426
            ],
            [
              112.97090298734885,
              28.209400737699724
            ],
            [
              112.97091898724234,
              28.20946173609926
            ],
            [
              112.97106298718212,
              28.209990721498613
            ],
            [
              112.97157298681923,
              28.211854669768705
            ],
            [
              112.97181398684324,
              28.212743644829832
            ],
            [
              112.97191098692745,
              28.213108634548394
            ],
            [
              112.97326598683726,
              28.213077635717685
            ],
            [
              112.97405598685775,
              28.212814643153553
            ],
            [
              112.97590498651219,
              28.212197659997596
            ],
            [
              112.9764129865003,
              28.21206066384995
            ],
            [
              112.97665898654758,
              28.212037664642043
            ],
            [
              112.97859498713879,
              28.211848670240368
            ],
            [
              112.98072298735062,
              28.21165467493607
            ],
            [
              112.98085198722202,
              28.211644675380814
            ],
            [
              112.98058998728268,
              28.208291768819848
            ],
            [
              112.98055298657466,
              28.20781878150964
            ],
            [
              112.9804839869781,
              28.20692380678461
            ]
          ]
        ]
      },
      "properties": {
        "name": "望麓园街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.97863198691455,
              28.29059848228449
            ],
            [
              112.97854198650303,
              28.290225492337104
            ],
            [
              112.97792098653821,
              28.2876705634712
            ],
            [
              112.97813598662518,
              28.283399682385355
            ],
            [
              112.97762098696515,
              28.281697729644115
            ],
            [
              112.97618298721491,
              28.281130745389994
            ],
            [
              112.97592498657467,
              28.27901480423392
            ],
            [
              112.97663398730326,
              28.27725785329881
            ],
            [
              112.9751549866469,
              28.276584872116896
            ],
            [
              112.97285798727928,
              28.27608388574967
            ],
            [
              112.97006798709373,
              28.27612288433639
            ],
            [
              112.9578809865046,
              28.276292879875164
            ],
            [
              112.9566509871655,
              28.278682813123435
            ],
            [
              112.95625098713215,
              28.279454792249552
            ],
            [
              112.95450998653318,
              28.282842697590606
            ],
            [
              112.95282098671144,
              28.285510623031957
            ],
            [
              112.95265898722795,
              28.28576661589619
            ],
            [
              112.94362398721645,
              28.300048218957734
            ],
            [
              112.93263798654631,
              28.311890889071954
            ],
            [
              112.93951098690074,
              28.317029746172732
            ],
            [
              112.94028298647913,
              28.317688728018876
            ],
            [
              112.94082798717527,
              28.318153714446154
            ],
            [
              112.9416349869137,
              28.318843695380036
            ],
            [
              112.9430629866179,
              28.320175658121617
            ],
            [
              112.9484769873055,
              28.325205517972634
            ],
            [
              112.94884598647798,
              28.32554750851203
            ],
            [
              112.9493909871741,
              28.32590449860808
            ],
            [
              112.95373798693457,
              28.32874941978223
            ],
            [
              112.95580898724444,
              28.329834389627106
            ],
            [
              112.96379398693772,
              28.331453344414516
            ],
            [
              112.96566398650677,
              28.33492224736121
            ],
            [
              112.96691698720726,
              28.335813222748083
            ],
            [
              112.96935498703961,
              28.337547174838512
            ],
            [
              112.97390498719257,
              28.333694281923947
            ],
            [
              112.97469398649145,
              28.329678394099513
            ],
            [
              112.97801198675924,
              28.323539565019395
            ],
            [
              112.97816898711817,
              28.32324857311774
            ],
            [
              112.97848198711284,
              28.32266958872882
            ],
            [
              112.9818729871724,
              28.32382255669344
            ],
            [
              112.98406198658375,
              28.32703246772271
            ],
            [
              112.9899829865388,
              28.326121493306694
            ],
            [
              112.99592698695838,
              28.32520651852653
            ],
            [
              112.99772998658247,
              28.323620562519643
            ],
            [
              112.99648898647588,
              28.32264559020197
            ],
            [
              112.99094198661463,
              28.32352356534693
            ],
            [
              112.99066598732863,
              28.32314857549441
            ],
            [
              112.98983598712582,
              28.32202360748996
            ],
            [
              112.989084986566,
              28.320153659105493
            ],
            [
              112.98806098709588,
              28.31185389049822
            ],
            [
              112.98792098645598,
              28.31071792221389
            ],
            [
              112.99094698664364,
              28.309394959081008
            ],
            [
              112.98781798652571,
              28.3063500436204
            ],
            [
              112.9877059872711,
              28.30624104696663
            ],
            [
              112.98588198683424,
              28.303238130334442
            ],
            [
              112.98637498675599,
              28.2979492776988
            ],
            [
              112.98377898674055,
              28.29479436502772
            ],
            [
              112.98418698717008,
              28.293528400125602
            ],
            [
              112.97985198710474,
              28.29167645172393
            ],
            [
              112.97865098718107,
              28.29067448022016
            ],
            [
              112.97863198691455,
              28.29059848228449
            ]
          ]
        ]
      },
      "properties": {
        "name": "秀峰街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.94884598647798,
              28.32554750851203
            ],
            [
              112.9484769873055,
              28.325205517972634
            ],
            [
              112.9430629866179,
              28.320175658121617
            ],
            [
              112.9416349869137,
              28.318843695380036
            ],
            [
              112.94082798717527,
              28.318153714446154
            ],
            [
              112.94028298647913,
              28.317688728018876
            ],
            [
              112.93951098690074,
              28.317029746172732
            ],
            [
              112.93263798654631,
              28.311890889071954
            ],
            [
              112.92006698671108,
              28.323342570009803
            ],
            [
              112.91528398692947,
              28.32764145017611
            ],
            [
              112.90951898660815,
              28.332821306252253
            ],
            [
              112.90849398730904,
              28.333834277879546
            ],
            [
              112.90515098692816,
              28.33713418537415
            ],
            [
              112.90329698724997,
              28.339741112708356
            ],
            [
              112.90643598651604,
              28.341122074633677
            ],
            [
              112.9083209870532,
              28.341952051771184
            ],
            [
              112.90981998690275,
              28.342612032639728
            ],
            [
              112.91445498654288,
              28.346463925428615
            ],
            [
              112.91702998664265,
              28.347974883322568
            ],
            [
              112.9203769872192,
              28.35001482634568
            ],
            [
              112.92344098704037,
              28.351740778532022
            ],
            [
              112.9239319873099,
              28.35201677054534
            ],
            [
              112.9246689867283,
              28.35243175964949
            ],
            [
              112.92990398731806,
              28.352204765353108
            ],
            [
              112.93196398686024,
              28.350316818592937
            ],
            [
              112.93488298691739,
              28.34986383079331
            ],
            [
              112.93745698719358,
              28.348352872921197
            ],
            [
              112.93770698654042,
              28.348513868478886
            ],
            [
              112.9421929871191,
              28.34512596343993
            ],
            [
              112.94581898645865,
              28.342408039189824
            ],
            [
              112.94954298660565,
              28.339953107561733
            ],
            [
              112.95085198648509,
              28.339057131989502
            ],
            [
              112.95194598717788,
              28.337839166441913
            ],
            [
              112.95270798671135,
              28.33665019923613
            ],
            [
              112.95448898659502,
              28.332977301442977
            ],
            [
              112.95503598694187,
              28.331401345328857
            ],
            [
              112.95569698709137,
              28.330061382731994
            ],
            [
              112.95580898724444,
              28.329834389627106
            ],
            [
              112.95373798693457,
              28.32874941978223
            ],
            [
              112.9493909871741,
              28.32590449860808
            ],
            [
              112.94884598647798,
              28.32554750851203
            ]
          ]
        ]
      },
      "properties": {
        "name": "新港街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.98188998693293,
              28.22671525712177
            ],
            [
              112.98186698736684,
              28.22642026552943
            ],
            [
              112.98185898697095,
              28.226326268259914
            ],
            [
              112.98184998675016,
              28.226214271472543
            ],
            [
              112.98183798705473,
              28.22602127659148
            ],
            [
              112.98183798705479,
              28.225875280621683
            ],
            [
              112.98181098729061,
              28.225771283847628
            ],
            [
              112.98180798691763,
              28.22568428604235
            ],
            [
              112.98168798726769,
              28.22418232778305
            ],
            [
              112.98161298692506,
              28.223218354162363
            ],
            [
              112.98145198726793,
              28.220090441496378
            ],
            [
              112.98132398722204,
              28.218682480649424
            ],
            [
              112.98079898661703,
              28.219109468804863
            ],
            [
              112.97915798737482,
              28.220253436593953
            ],
            [
              112.9770999865843,
              28.221723395516342
            ],
            [
              112.97620298733186,
              28.222363378410357
            ],
            [
              112.9758619868501,
              28.222340379043917
            ],
            [
              112.97486798661525,
              28.222294380294585
            ],
            [
              112.97391498728669,
              28.222250380921693
            ],
            [
              112.97373798683641,
              28.222165383601336
            ],
            [
              112.97349098696422,
              28.222165383600064
            ],
            [
              112.97348098691828,
              28.22256737257943
            ],
            [
              112.97343198651443,
              28.222770366679104
            ],
            [
              112.97325298731259,
              28.222773366549106
            ],
            [
              112.96888098653818,
              28.222841364633936
            ],
            [
              112.9644469867378,
              28.222854364570573
            ],
            [
              112.96488598712719,
              28.226857253237224
            ],
            [
              112.96491898673901,
              28.227159245143906
            ],
            [
              112.96504098693724,
              28.228267213987248
            ],
            [
              112.9652339872803,
              28.230037165006657
            ],
            [
              112.96626098712304,
              28.23940490535825
            ],
            [
              112.9661129869825,
              28.245252742801032
            ],
            [
              112.96611098733264,
              28.245346740016643
            ],
            [
              112.96600698667545,
              28.249507624426982
            ],
            [
              112.97141098731912,
              28.250450597995112
            ],
            [
              112.97454398673894,
              28.24825765939471
            ],
            [
              112.97707098715944,
              28.246763700470492
            ],
            [
              112.98055198673374,
              28.244704757558427
            ],
            [
              112.98365198654118,
              28.24357278944204
            ],
            [
              112.98419698723755,
              28.243373794928907
            ],
            [
              112.98394998736616,
              28.241596844555684
            ],
            [
              112.9834679873189,
              28.238034943285815
            ],
            [
              112.98343598663386,
              28.237271964050034
            ],
            [
              112.98332798667997,
              28.234699036090063
            ],
            [
              112.9830169872346,
              28.232526095697178
            ],
            [
              112.98277198701237,
              28.23222710433453
            ],
            [
              112.98229298733689,
              28.231641120749195
            ],
            [
              112.98205098658939,
              28.23134512891141
            ],
            [
              112.98194798665853,
              28.22836521136197
            ],
            [
              112.98193898733611,
              28.22811621821079
            ],
            [
              112.98188998693293,
              28.22671525712177
            ]
          ]
        ]
      },
      "properties": {
        "name": "新河街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              112.97349098696422,
              28.222165383600064
            ],
            [
              112.97373798683641,
              28.222165383601336
            ],
            [
              112.97391498728669,
              28.222250380921693
            ],
            [
              112.97486798661525,
              28.222294380294585
            ],
            [
              112.9758619868501,
              28.222340379043917
            ],
            [
              112.97620298733186,
              28.222363378410357
            ],
            [
              112.9770999865843,
              28.221723395516342
            ],
            [
              112.97915798737482,
              28.220253436593953
            ],
            [
              112.98079898661703,
              28.219109468804863
            ],
            [
              112.98132398722204,
              28.218682480649424
            ],
            [
              112.98118898660518,
              28.21720452146533
            ],
            [
              112.98112598685638,
              28.21627254742314
            ],
            [
              112.98107098660516,
              28.21546956938857
            ],
            [
              112.98092098681818,
              28.21350662372183
            ],
            [
              112.98085198722202,
              28.211644675380814
            ],
            [
              112.98072298735062,
              28.21165467493607
            ],
            [
              112.97859498713879,
              28.211848670240368
            ],
            [
              112.97665898654758,
              28.212037664642043
            ],
            [
              112.9764129865003,
              28.21206066384995
            ],
            [
              112.97590498651219,
              28.212197659997596
            ],
            [
              112.97405598685775,
              28.212814643153553
            ],
            [
              112.97326598683726,
              28.213077635717685
            ],
            [
              112.97191098692745,
              28.213108634548394
            ],
            [
              112.97044698723766,
              28.213136634019513
            ],
            [
              112.96900998731212,
              28.213065635913892
            ],
            [
              112.96853198656302,
              28.213042636918757
            ],
            [
              112.96781898653558,
              28.212985638116713
            ],
            [
              112.9673949871114,
              28.21301363762536
            ],
            [
              112.96338298708531,
              28.213140633908665
            ],
            [
              112.96392798688117,
              28.218112495980748
            ],
            [
              112.9644469867378,
              28.222854364570573
            ],
            [
              112.96888098653818,
              28.222841364633936
            ],
            [
              112.97325298731259,
              28.222773366549106
            ],
            [
              112.97343198651443,
              28.222770366679104
            ],
            [
              112.97348098691828,
              28.22256737257943
            ],
            [
              112.97349098696422,
              28.222165383600064
            ]
          ]
        ]
      },
      "properties": {
        "name": "湘雅路街道"
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [
              113.04251698721386,
              28.221701396839443
            ],
            [
              113.04203398734026,
              28.221502402690746
            ],
            [
              113.04188398665404,
              28.221691397429584
            ],
            [
              113.03992898669506,
              28.220779422743224
            ],
            [
              113.03734498727246,
              28.220008443480268
            ],
            [
              113.03557498726113,
              28.21962045443088
            ],
            [
              113.03502798691505,
              28.219535456597924
            ],
            [
              113.03342898660713,
              28.221010416040823
            ],
            [
              113.0330109870309,
              28.220679425361617
            ],
            [
              113.03422298682618,
              28.21930846293223
            ],
            [
              113.03398698682483,
              28.21892047372161
            ],
            [
              113.03313898707826,
              28.218684480374428
            ],
            [
              113.03274198651991,
              28.218826476966044
            ],
            [
              113.03223798672994,
              28.21847648616697
            ],
            [
              113.02731898650684,
              28.220575428246296
            ],
            [
              113.02699998666456,
              28.22066742561166
            ],
            [
              113.02597898666548,
              28.220959417343835
            ],
            [
              113.02589998702273,
              28.220982417005693
            ],
            [
              113.02237998709084,
              28.221990388920286
            ],
            [
              113.02182898654671,
              28.22208238585668
            ],
            [
              113.02171198726914,
              28.22210238538673
            ],
            [
              113.02105798679288,
              28.222213382828876
            ],
            [
              113.01850398660868,
              28.222643370974982
            ],
            [
              113.01423598648988,
              28.222098385759683
            ],
            [
              113.01390398712724,
              28.222056386500356
            ],
            [
              113.00804898729562,
              28.220287435810018
            ],
            [
              113.00670998727945,
              28.220001443708853
            ],
            [
              113.00638498669117,
              28.21993144593504
            ],
            [
              113.0050169872608,
              28.22015043973258
            ],
            [
              113.00392798659105,
              28.22094341791172
            ],
            [
              113.00325698729431,
              28.22192939045651
            ],
            [
              113.00267298713808,
              28.222261380910922
            ],
            [
              113.00317998730064,
              28.223639342801008
            ],
            [
              113.00546598679725,
              28.224885307951634
            ],
            [
              113.00947898664718,
              28.227196244360975
            ],
            [
              113.01193798729433,
              28.22861120516873
            ],
            [
              113.0141349871025,
              28.22987617009043
            ],
            [
              113.01714998651958,
              28.232257103721896
            ],
            [
              113.01921298733126,
              28.234676036399268
            ],
            [
              113.0194459869596,
              28.23495002905195
            ],
            [
              113.02024698684957,
              28.23736496180549
            ],
            [
              113.02512498706385,
              28.23751695761466
            ],
            [
              113.0325419864952,
              28.23774795116433
            ],
            [
              113.03520798683218,
              28.2377669505945
            ],
            [
              113.03786398712343,
              28.23778595002124
            ],
            [
              113.04260698672063,
              28.23687897536036
            ],
            [
              113.05038098652854,
              28.23427904757938
            ],
            [
              113.05035898678726,
              28.23426904776804
            ],
            [
              113.05002498687655,
              28.23410305234637
            ],
            [
              113.04972398657803,
              28.233214077059984
            ],
            [
              113.04980998679203,
              28.23257109551745
            ],
            [
              113.0515039866357,
              28.232268103499656
            ],
            [
              113.05141798732043,
              28.231871114269172
            ],
            [
              113.05300598685871,
              28.231890113948904
            ],
            [
              113.05347598721215,
              28.23145912623134
            ],
            [
              113.0535209865197,
              28.231417127491262
            ],
            [
              113.05440098695254,
              28.22948918113234
            ],
            [
              113.05338098677898,
              28.228316213485808
            ],
            [
              113.0531349867318,
              28.22803322125254
            ],
            [
              113.05216898698468,
              28.22739023935784
            ],
            [
              113.0512469867196,
              28.227957222955155
            ],
            [
              113.05070998731743,
              28.228260214554368
            ],
            [
              113.05028098697225,
              28.227863226242796
            ],
            [
              113.05025998705614,
              28.227182244693704
            ],
            [
              113.051031986635,
              28.226747256754738
            ],
            [
              113.05154998666893,
              28.226473264415457
            ],
            [
              113.04987598691744,
              28.225280297932798
            ],
            [
              113.05009098700285,
              28.224618315910824
            ],
            [
              113.04981198734362,
              28.224609316451964
            ],
            [
              113.04938298699827,
              28.2246473152093
            ],
            [
              113.04912498725541,
              28.22475031261084
            ],
            [
              113.04723698724375,
              28.223408349841005
            ],
            [
              113.04737598716119,
              28.222690369408873
            ],
            [
              113.04589698650462,
              28.222457375564485
            ],
            [
              113.04497398731316,
              28.222590372256985
            ],
            [
              113.0439979866218,
              28.22226838137978
            ],
            [
              113.04251698721386,
              28.221701396839443
            ]
          ]
        ]
      },
      "properties": {
        "name": "月湖街道"
      }
    }
  ]
}
  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小曲曲

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值