vue+高德API搭建前端Echarts图表页面
利用vue搭建Echarts图表页面,在搭建Echarts图表中,如果搭建地理地形图需要准备一些额外的文件,地理json文件和js文件,js文件目前在网上只能找省一级的,json文件有对应的省市县,js文件和json文件对应的也是不同的JavaScript的方法,这一点也要区分开
<template>
部分
<div :id="id" :class="className" :style="{ height: height, width: width }" />
作用:这是组件的模板部分,定义了一个div
元素,用于容纳ECharts图表。- 绑定:
:id="id"
:绑定了一个动态id
属性,其值来自组件的id
prop。:class="className"
:绑定了一个动态class
属性,其值来自组件的className
prop。:style="{ height: height, width: width }"
:绑定了一个动态style
属性,用于设置div
的高度和宽度,其值分别来自组件的height
和width
props。
<script>
部分
导入依赖
import geoJson from "@/common/map/xinyang.json";
import tdTheme from "@/common/echart/theme.json";
import dataJson from "../../../../data/population.json";
作用:导入了地图数据(geoJson
)、自定义主题(tdTheme
)和人口数据(dataJson
)。
组件定义
export default {
name: "echart",
// ...
};
作用:定义了组件的名称echart
。
Props 定义
props: {
className: { type: String, default: "chart" },
id: { type: String, default: "chart" },
width: { type: String, default: "100%" },
height: { type: String, default: "2.5rem" },
},
作用:定义了组件接受的四个props,分别为className
、id
、width
和height
,并给出了默认值。
Data 定义
data() {
return {
chart: null,
options: { /* ECharts配置 */ },
};
},
作用:定义了组件的本地状态,包括chart
实例和ECharts的配置options
。
Watchers
watch: {
options: {
handler(options) {
this.chart.setOption(options, true);
},
deep: true,
},
},
作用:定义了一个watcher来观察options
的变化,当options
变化时,更新ECharts图表。
生命周期钩子
mounted() {
this.$echarts.registerTheme("tdTheme", tdTheme);
this.initChart();
},
beforeDestroy() {
this.chart.dispose();
this.chart = null;
},
mounted
:组件挂载后,注册自定义主题并初始化图表。beforeDestroy
:组件销毁前,销毁图表实例并清空引用。
Methods
methods: {
initChart() {
this.chart = this.$echarts.init(this.$el, "tdTheme");
this.$echarts.registerMap("CQ", geoJson);
this.chart.setOption(this.options, true);
},
},
initChart
:初始化图表的方法,包括初始化ECharts实例、注册地图数据、设置图表选项。
关键点分析
- 地图数据:通过
this.$echarts.registerMap("CQ", geoJson);
注册地图数据,但注意这里的map
属性在options
中设置为"CQ"
,这可能是一个错误,因为通常应该与导入的地图数据名称匹配(例如"xinyang"
)。 - 主题应用:通过
this.$echarts.registerTheme("tdTheme", tdTheme);
注册自定义主题,并在初始化图表时应用。 - 数据绑定:图表的数据来源于
dataJson.信阳市各地区人口数量数据
,这假设dataJson
是一个对象,包含一个名为信阳市各地区人口数量数据
的属性。 - 响应式更新:通过watcher观察
options
的变化并更新图表,实现响应式。
完整代码:
heatMapEcharts.vue
<template>
<div :id="id" :class="className" :style="{ height: height, width: width }" />
</template>
<script>
import geoJson from "@/common/map/xinyang.json";
import tdTheme from "@/common/echart/theme.json";
import dataJson from "../../../../data/population.json"// 引入默认主题
export default {
name: "echart",
props: {
className: {
type: String,
default: "chart",
},
id: {
type: String,
default: "chart",
},
width: {
type: String,
default: "100%",
},
height: {
type: String,
default: "2.5rem",
},
},
data() {
return {
chart: null,
options: {
title: {
text: "信阳市人口密度图 (2024)",
},
tooltip: {
trigger: "item",
formatter: "{b}<br/>{c} (p / km2)",
},
toolbox: {
show: true,
orient: "vertical",
left: "right",
top: "center",
feature: {
dataView: { readOnly: false },
restore: {},
saveAsImage: {},
},
},
visualMap: {
min: 800,
max: 50000,
text: ["High", "Low"],
realtime: false,
calculable: true,
inRange: {
color: ["lightskyblue", "yellow", "orangered"],
},
},
series: [
{
name: "信阳市人口密度",
type: "map",
map: "CQ",
label: {
show: true,
},
data: dataJson.信阳市各地区人口数量数据,
// 自定义名称映射
nameMap: {},
},
],
},
};
},
watch: {
options: {
handler(options) {
// 设置true清空echart缓存
this.chart.setOption(options, true);
},
deep: true,
},
},
mounted() {
this.$echarts.registerTheme("tdTheme", tdTheme); // 覆盖默认主题
this.initChart();
},
beforeDestroy() {
this.chart.dispose();
this.chart = null;
},
methods: {
initChart() {
// 初始化echart
this.chart = this.$echarts.init(this.$el, "tdTheme");
this.$echarts.registerMap("CQ", geoJson);
this.chart.setOption(this.options, true);
},
},
};
</script>
<template>
<div class="content">
<heat-map-echarts height="580px" width="680px" />
<div>
<dv-border-box-7>
<h2 class="title">人口排名前五的地区</h2>
<Echart :options="options1" height="350px" width="680px" />
</dv-border-box-7>
</div>
</div>
</template>
<script>
import Echart from "@/common/echart/index.vue";
import heatMapEcharts from "./echarts/heatMapEcharts.vue";
import dataJson from "../../../data/population.json"
export default {
data() {
return {
options1: {
xAxis: {
type: "value",
max: "dataMax",
},
yAxis: {
type: "category",
data: dataJson.信阳市城市区域,
inverse: true,
animationDuration: 300,
animationDurationUpdate: 300,
max: 4, // only the largest 3 bars will be displayed
},
series: [
{
realtimeSort: true,
// name: '人口数',
type: "bar",
// data: [156, 48, 111, 58, 92, 219],
data: dataJson.人口数,
label: {
show: true,
position: "right",
valueAnimation: true,
},
},
],
legend: {
show: true,
},
animationDuration: 1000,
animationDurationUpdate: 1000,
animationEasing: "linear",
animationEasingUpdate: "linear",
},
};
},
components: {
Echart,
heatMapEcharts,
},
};
</script>
<style scoped>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title {
margin-top: 20px;
margin-bottom: -30px;
}
</style>
populoar.json
{
"信阳市城市区域": [
"平桥区",
"浉河区",
"光山县",
"罗山县",
"新县",
"固始县"
],
"人口数": [
"196",
"38",
"183",
"180",
"203",
"10"
],
"信阳市各地区人口数量数据": [
{
"name": "平桥区",
"value": 33971.84957916774
},
{
"name": "浉河区",
"value": 45946.341737963085
},
{
"name": "光山县",
"value": 40625.233037201644
},
{
"name": "罗山县",
"value": 19645.725758298242
},
{
"name": "新县",
"value": 21310.475585647266
},
{
"name": "固始县",
"value": 49683.02622361575
},
{
"name": "息县",
"value": 15246.510545737161
},
{
"name": "潢川县",
"value": 39546.969405021926
},
{
"name": "淮滨县",
"value": 34249.9746778492
},
{
"name": "商城县",
"value": 37343.409806690885
}
],
"年份1": [
"2012",
"2013",
"2014",
"2015",
"2016",
"2017",
"2018",
"2019",
"2020",
"2021",
"2022",
"2023",
"2024"
],
"人口": [
3107,
3254,
3295,
3206,
3297,
2909,
3142,
3031,
3103,
3142,
3292,
3125,
2996
],
"人口增长率": [
24,
36,
20,
43,
31,
45,
56,
30,
59,
23,
36,
27,
22
],
"年份2": [
"2017",
"2018",
"2019",
"2020",
"2021",
"2022",
"2023",
"2024"
],
"出生率": [
11.160679345061222,
11.322117448878226,
11.990112587731529,
10.93827756137109,
11.111732124531457,
10.508338192909703,
11.00218340105155,
11.735538834729585
],
"死亡率": [
7.548543301248747,
7.413564416156547,
7.462786713984905,
7.693098012431373,
7.866886172361252,
7.131549080229925,
7.117111048025511,
7.742095586585831
],
"自然生成率": [
0,
3,
1,
-2,
2,
4,
3,
2
],
"全国": [
71,
62,
71,
68,
65,
64,
62,
72
],
"信阳": [
68,
68,
58,
56,
68,
70,
63,
60
]
}
theme.json
{
"color": [
"#2d8cf0",
"#19be6b",
"#ff9900",
"#E46CBB",
"#9A66E4",
"#ed3f14"
],
"backgroundColor": "rgba(0,0,0,0)",
"textStyle": {},
"title": {
"textStyle": {
"color": "#516b91"
},
"subtextStyle": {
"color": "#93b7e3"
}
},
"line": {
"itemStyle": {
"normal": {
"borderWidth": "2"
}
},
"lineStyle": {
"normal": {
"width": "2"
}
},
"symbolSize": "6",
"symbol": "emptyCircle",
"smooth": false
},
"radar": {
"itemStyle": {
"normal": {
"borderWidth": "2"
}
},
"lineStyle": {
"normal": {
"width": "2"
}
},
"symbolSize": "6",
"symbol": "emptyCircle",
"smooth": true
},
"bar": {
"itemStyle": {
"normal": {
"barBorderWidth": 0,
"barBorderColor": "#ccc"
},
"emphasis": {
"barBorderWidth": 0,
"barBorderColor": "#ccc"
}
}
},
"pie": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"scatter": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"boxplot": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"parallel": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"sankey": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"funnel": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"gauge": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
},
"emphasis": {
"borderWidth": 0,
"borderColor": "#ccc"
}
}
},
"candlestick": {
"itemStyle": {
"normal": {
"color": "#edafda",
"color0": "transparent",
"borderColor": "#d680bc",
"borderColor0": "#8fd3e8",
"borderWidth": "2"
}
}
},
"graph": {
"itemStyle": {
"normal": {
"borderWidth": 0,
"borderColor": "#ccc"
}
},
"lineStyle": {
"normal": {
"width": 1,
"color": "#aaa"
}
},
"symbolSize": "6",
"symbol": "emptyCircle",
"smooth": true,
"color": [
"#2d8cf0",
"#19be6b",
"#f5ae4a",
"#9189d5",
"#56cae2",
"#cbb0e3"
],
"label": {
"normal": {
"textStyle": {
"color": "#eee"
}
}
}
},
"map": {
"itemStyle": {
"normal": {
"areaColor": "#f3f3f3",
"borderColor": "#516b91",
"borderWidth": 0.5
},
"emphasis": {
"areaColor": "rgba(165,231,240,1)",
"borderColor": "#516b91",
"borderWidth": 1
}
},
"label": {
"normal": {
"textStyle": {
"color": "#000"
}
},
"emphasis": {
"textStyle": {
"color": "rgb(81,107,145)"
}
}
}
},
"geo": {
"itemStyle": {
"normal": {
"areaColor": "#f3f3f3",
"borderColor": "#516b91",
"borderWidth": 0.5
},
"emphasis": {
"areaColor": "rgba(165,231,240,1)",
"borderColor": "#516b91",
"borderWidth": 1
}
},
"label": {
"normal": {
"textStyle": {
"color": "#000"
}
},
"emphasis": {
"textStyle": {
"color": "rgb(81,107,145)"
}
}
}
},
"categoryAxis": {
"axisLine": {
"show": true,
"lineStyle": {
"color": "#cccccc"
}
},
"axisTick": {
"show": false,
"lineStyle": {
"color": "#333"
}
},
"axisLabel": {
"show": true,
"textStyle": {
"color": "#fff"
}
},
"splitLine": {
"show": false,
"lineStyle": {
"color": [
"#eeeeee"
]
}
},
"splitArea": {
"show": false,
"areaStyle": {
"color": [
"rgba(250,250,250,0.05)",
"rgba(200,200,200,0.02)"
]
}
}
},
"valueAxis": {
"axisLine": {
"show": true,
"lineStyle": {
"color": "#cccccc"
}
},
"axisTick": {
"show": false,
"lineStyle": {
"color": "#333"
}
},
"axisLabel": {
"show": true,
"textStyle": {
"color": "#fff"
}
},
"splitLine": {
"show": false,
"lineStyle": {
"color": [
"#eeeeee"
]
}
},
"splitArea": {
"show": false,
"areaStyle": {
"color": [
"rgba(250,250,250,0.05)",
"rgba(200,200,200,0.02)"
]
}
}
},
"logAxis": {
"axisLine": {
"show": true,
"lineStyle": {
"color": "#cccccc"
}
},
"axisTick": {
"show": false,
"lineStyle": {
"color": "#333"
}
},
"axisLabel": {
"show": true,
"textStyle": {
"color": "#999999"
}
},
"splitLine": {
"show": true,
"lineStyle": {
"color": [
"#eeeeee"
]
}
},
"splitArea": {
"show": false,
"areaStyle": {
"color": [
"rgba(250,250,250,0.05)",
"rgba(200,200,200,0.02)"
]
}
}
},
"timeAxis": {
"axisLine": {
"show": true,
"lineStyle": {
"color": "#cccccc"
}
},
"axisTick": {
"show": false,
"lineStyle": {
"color": "#333"
}
},
"axisLabel": {
"show": true,
"textStyle": {
"color": "#999999"
}
},
"splitLine": {
"show": true,
"lineStyle": {
"color": [
"#eeeeee"
]
}
},
"splitArea": {
"show": false,
"areaStyle": {
"color": [
"rgba(250,250,250,0.05)",
"rgba(200,200,200,0.02)"
]
}
}
},
"toolbox": {
"iconStyle": {
"normal": {
"borderColor": "#999"
},
"emphasis": {
"borderColor": "#666"
}
}
},
"legend": {
"textStyle": {
"color": "#fff"
}
},
"tooltip": {
"axisPointer": {
"lineStyle": {
"color": "#ccc",
"width": 1
},
"crossStyle": {
"color": "#ccc",
"width": 1
}
}
},
"timeline": {
"lineStyle": {
"color": "#8fd3e8",
"width": 1
},
"itemStyle": {
"normal": {
"color": "#8fd3e8",
"borderWidth": 1
},
"emphasis": {
"color": "#8fd3e8"
}
},
"controlStyle": {
"normal": {
"color": "#8fd3e8",
"borderColor": "#8fd3e8",
"borderWidth": 0.5
},
"emphasis": {
"color": "#8fd3e8",
"borderColor": "#8fd3e8",
"borderWidth": 0.5
}
},
"checkpointStyle": {
"color": "#8fd3e8",
"borderColor": "rgba(138,124,168,0.37)"
},
"label": {
"normal": {
"textStyle": {
"color": "#8fd3e8"
}
},
"emphasis": {
"textStyle": {
"color": "#8fd3e8"
}
}
}
},
"visualMap": {
"color": [
"#516b91",
"#59c4e6",
"#a5e7f0"
]
},
"dataZoom": {
"backgroundColor": "rgba(0,0,0,0)",
"dataBackgroundColor": "rgba(255,255,255,0.3)",
"fillerColor": "rgba(167,183,204,0.4)",
"handleColor": "#a7b7cc",
"handleSize": "100%",
"textStyle": {
"color": "#333"
}
},
"markPoint": {
"label": {
"normal": {
"textStyle": {
"color": "#eee"
}
},
"emphasis": {
"textStyle": {
"color": "#eee"
}
}
}
}
}
xinyang.json
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":411502,"name":"浉河区","center":[114.075031,32.123274],"centroid":[113.96164,32.045818],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":0,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.749081,32.272695],[113.7506,32.269981],[113.751314,32.263648],[113.749796,32.260297],[113.739345,32.257583],[113.738719,32.255824],[113.740461,32.242837],[113.74524,32.239167],[113.748367,32.234795],[113.751158,32.22016],[113.752654,32.21617],[113.759443,32.21084],[113.764691,32.20421],[113.768443,32.20421],[113.777041,32.208431],[113.778872,32.205728],[113.778783,32.19962],[113.781485,32.196993],[113.783316,32.18966],[113.783472,32.186383],[113.782289,32.184393],[113.777264,32.179776],[113.763731,32.161689],[113.763418,32.160017],[113.765004,32.150245],[113.766187,32.138379],[113.76516,32.134308],[113.760136,32.127213],[113.750332,32.116327],[113.746826,32.114335],[113.741488,32.112663],[113.739903,32.113059],[113.736955,32.121585],[113.734543,32.123014],[113.723779,32.125796],[113.722417,32.124278],[113.725544,32.113812],[113.727442,32.104545],[113.72704,32.102554],[113.728357,32.099401],[113.728558,32.093886],[113.727643,32.085715],[113.728514,32.083187],[113.737067,32.078782],[113.744883,32.07679],[113.747429,32.06978],[113.750689,32.067149],[113.763753,32.054761],[113.766388,32.053318],[113.774584,32.051326],[113.781351,32.048771],[113.787805,32.043662],[113.791288,32.03601],[113.790976,32.033698],[113.788787,32.030786],[113.783227,32.02657],[113.779274,32.018917],[113.776214,32.017767],[113.772329,32.018393],[113.769895,32.017038],[113.766656,32.011493],[113.760493,32.003609],[113.75893,32.000912],[113.757411,31.993986],[113.757612,31.990036],[113.759443,31.98647],[113.762168,31.986113],[113.766299,31.981486],[113.770118,31.978571],[113.772865,31.978827],[113.776103,31.980425],[113.778716,31.980067],[113.780591,31.978264],[113.788184,31.973995],[113.798524,31.974097],[113.803191,31.972487],[113.81237,31.967565],[113.816255,31.966874],[113.817171,31.964612],[113.815585,31.961058],[113.812213,31.957925],[113.808819,31.95253],[113.807323,31.948898],[113.806474,31.943208],[113.806206,31.936085],[113.805134,31.931507],[113.807948,31.92776],[113.812414,31.927235],[113.816345,31.923245],[113.823379,31.920559],[113.828895,31.919855],[113.832468,31.918691],[113.835863,31.910953],[113.83593,31.906526],[113.833987,31.897878],[113.835327,31.892837],[113.83124,31.878993],[113.8322,31.87445],[113.835684,31.872211],[113.838051,31.869498],[113.837158,31.859988],[113.838676,31.854689],[113.841289,31.851848],[113.846225,31.849736],[113.849842,31.847355],[113.854309,31.843156],[113.858887,31.841095],[113.863331,31.844129],[113.867194,31.845076],[113.872956,31.840647],[113.885149,31.846267],[113.892072,31.846741],[113.896382,31.849365],[113.899419,31.854472],[113.906565,31.868538],[113.91494,31.876984],[113.920612,31.87962],[113.926976,31.880823],[113.931443,31.880989],[113.934726,31.879466],[113.935105,31.87628],[113.932872,31.873017],[113.93352,31.869395],[113.950269,31.858734],[113.954914,31.856353],[113.957705,31.852449],[113.957392,31.843118],[113.956432,31.84025],[113.951541,31.834707],[113.947008,31.826487],[113.946606,31.823299],[113.948683,31.818754],[113.952993,31.813504],[113.953395,31.806806],[113.952345,31.80226],[113.952033,31.797713],[113.952591,31.793845],[113.95478,31.790349],[113.957303,31.788478],[113.965365,31.785635],[113.967687,31.783995],[113.968447,31.781971],[113.968156,31.777949],[113.97231,31.771633],[113.972489,31.763113],[113.975347,31.75722],[113.978943,31.753798],[113.985821,31.750505],[113.988769,31.750198],[113.991404,31.751722],[113.993347,31.754196],[114.000917,31.759398],[114.010676,31.76565],[114.015812,31.770288],[114.017867,31.770775],[114.029145,31.770967],[114.036425,31.768674],[114.038345,31.76884],[114.041941,31.772274],[114.048082,31.773363],[114.055608,31.771787],[114.059114,31.772274],[114.06166,31.773875],[114.063022,31.776271],[114.063736,31.781933],[114.065501,31.783444],[114.07229,31.784892],[114.082495,31.783508],[114.086649,31.782202],[114.089865,31.794844],[114.099177,31.803387],[114.113134,31.806793],[114.119231,31.805756],[114.121509,31.809278],[114.122536,31.818613],[114.127918,31.826347],[114.127159,31.835385],[114.128432,31.837536],[114.134082,31.842785],[114.138057,31.843745],[114.142099,31.8429],[114.150071,31.839226],[114.156972,31.839277],[114.162778,31.841082],[114.163984,31.846216],[114.166999,31.851029],[114.170572,31.853179],[114.174078,31.853883],[114.180286,31.854037],[114.184887,31.853064],[114.196946,31.85867],[114.20273,31.863534],[114.204449,31.872236],[114.211796,31.883663],[114.212935,31.88731],[114.212645,31.891392],[114.206749,31.903392],[114.205767,31.907729],[114.201256,31.908778],[114.196901,31.908919],[114.191608,31.91346],[114.191318,31.92084],[114.1898,31.923066],[114.185847,31.925419],[114.179415,31.931954],[114.176825,31.933911],[114.169366,31.94675],[114.170728,31.950254],[114.170818,31.958756],[114.174279,31.966887],[114.171711,31.971068],[114.169143,31.977152],[114.169589,31.980284],[114.172202,31.981473],[114.172559,31.983134],[114.170349,31.98601],[114.170438,31.98918],[114.173341,31.991596],[114.183547,31.992299],[114.187053,31.994484],[114.193149,32.001998],[114.196253,32.004018],[114.20072,32.005027],[114.203846,32.010202],[114.208112,32.012451],[114.209809,32.01516],[114.208983,32.019402],[114.208782,32.024474],[114.206973,32.025931],[114.204271,32.0309],[114.203913,32.035806],[114.202506,32.040711],[114.19833,32.044914],[114.179103,32.054059],[114.167937,32.057584],[114.16059,32.057252],[114.142769,32.053778],[114.135779,32.053433],[114.127382,32.056945],[114.121442,32.061505],[114.117244,32.065361],[114.115837,32.06886],[114.117065,32.073598],[114.119387,32.079293],[114.115948,32.080787],[114.117266,32.084119],[114.118003,32.089673],[114.119722,32.090452],[114.119075,32.094486],[114.117467,32.09755],[114.115144,32.099299],[114.113492,32.102758],[114.113603,32.105043],[114.110767,32.111017],[114.107619,32.113531],[114.096765,32.118088],[114.084505,32.125439],[114.079592,32.13173],[114.071888,32.136273],[114.069074,32.141173],[114.069074,32.151687],[114.072401,32.164125],[114.077314,32.167289],[114.081178,32.180605],[114.085376,32.186217],[114.085041,32.189367],[114.08187,32.196368],[114.08187,32.199875],[114.083277,32.204427],[114.08714,32.211797],[114.085733,32.218452],[114.078029,32.229658],[114.077672,32.240862],[114.077672,32.257685],[114.074523,32.261877],[114.06885,32.264184],[114.070704,32.268389],[114.084862,32.265929],[114.08379,32.271268],[114.090043,32.280301],[114.084036,32.282709],[114.080195,32.285448],[114.079458,32.295448],[114.077515,32.298544],[114.070548,32.296582],[114.069967,32.29806],[114.063736,32.297767],[114.061258,32.295461],[114.053174,32.292442],[114.040913,32.284123],[114.039596,32.280327],[114.040087,32.277078],[114.036023,32.274594],[114.036871,32.268541],[114.035688,32.264222],[114.035956,32.259367],[114.034593,32.255072],[114.031154,32.251823],[114.024991,32.250382],[114.022356,32.247833],[114.015567,32.244622],[114.01186,32.243717],[114.008019,32.240428],[114.006098,32.240326],[113.998684,32.242493],[113.99261,32.246916],[113.988344,32.24568],[113.985798,32.246368],[113.983029,32.250166],[113.980417,32.250166],[113.974342,32.251772],[113.972064,32.250879],[113.967553,32.246584],[113.962238,32.24299],[113.957593,32.242289],[113.953775,32.247311],[113.954065,32.250867],[113.948571,32.252906],[113.947209,32.256334],[113.947901,32.258309],[113.952033,32.261291],[113.951006,32.264719],[113.946494,32.269905],[113.945668,32.273867],[113.943949,32.275715],[113.939996,32.277282],[113.931153,32.278976],[113.928115,32.279002],[113.92117,32.276021],[113.911121,32.276021],[113.906744,32.277932],[113.905181,32.279371],[113.903193,32.283346],[113.903595,32.289971],[113.905136,32.294595],[113.913756,32.301435],[113.916481,32.30574],[113.916503,32.309026],[113.912863,32.31258],[113.902612,32.312923],[113.901809,32.314694],[113.898861,32.315585],[113.89129,32.315725],[113.888543,32.316846],[113.887806,32.318871],[113.884792,32.32115],[113.878472,32.321316],[113.871772,32.320768],[113.866882,32.324983],[113.86514,32.329886],[113.86514,32.334088],[113.863733,32.335501],[113.860584,32.334444],[113.857793,32.330955],[113.851495,32.330612],[113.842428,32.329224],[113.83124,32.326792],[113.827734,32.324703],[113.827734,32.319788],[113.828449,32.313484],[113.8253,32.312083],[113.819717,32.314897],[113.81237,32.319469],[113.80433,32.320182],[113.787894,32.320552],[113.773557,32.31952],[113.766277,32.317661],[113.768287,32.310606],[113.772664,32.308453],[113.773937,32.306135],[113.772753,32.302543],[113.769068,32.301308],[113.768175,32.28406],[113.769939,32.281741],[113.769962,32.275995],[113.767282,32.274683],[113.762101,32.275243],[113.762815,32.272899],[113.765115,32.271396],[113.764937,32.268389],[113.760269,32.268223],[113.758617,32.272351],[113.758304,32.27676],[113.749081,32.272695]]],[[[113.749081,32.272695],[113.758304,32.27676],[113.757746,32.282111],[113.754039,32.288264],[113.7552,32.291933],[113.758505,32.291933],[113.762078,32.289729],[113.765785,32.285665],[113.768175,32.28406],[113.769068,32.301308],[113.753257,32.294315],[113.748523,32.291907],[113.7439,32.283614],[113.743498,32.281384],[113.744771,32.277562],[113.749081,32.272695]]]]}},{"type":"Feature","properties":{"adcode":411503,"name":"平桥区","center":[114.126027,32.098395],"centroid":[114.057592,32.344694],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":1,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208782,32.024474],[114.210434,32.031118],[114.214052,32.032689],[114.216955,32.032778],[114.218786,32.035231],[114.225798,32.03822],[114.227987,32.040647],[114.228657,32.043036],[114.236518,32.044467],[114.240448,32.046242],[114.241788,32.047698],[114.243128,32.052245],[114.242525,32.057329],[114.244066,32.059615],[114.249403,32.060202],[114.251346,32.061798],[114.251346,32.064851],[114.256974,32.066],[114.260725,32.072998],[114.263539,32.075705],[114.26642,32.077071],[114.272829,32.077135],[114.277943,32.080468],[114.281248,32.078118],[114.284285,32.08011],[114.284352,32.082459],[114.281539,32.084668],[114.281673,32.085715],[114.286005,32.08892],[114.286519,32.09049],[114.284419,32.10078],[114.286385,32.112676],[114.286898,32.113531],[114.292213,32.115688],[114.293643,32.119747],[114.296992,32.119556],[114.299158,32.12198],[114.299538,32.124852],[114.298422,32.129561],[114.30387,32.131348],[114.313853,32.136477],[114.317873,32.137562],[114.325421,32.137817],[114.3279,32.141173],[114.327096,32.147234],[114.325287,32.148944],[114.322004,32.149913],[114.319369,32.15309],[114.315126,32.154289],[114.309565,32.154506],[114.303937,32.15568],[114.301503,32.160068],[114.29898,32.161918],[114.291365,32.163717],[114.286429,32.170784],[114.283459,32.171894],[114.278323,32.171817],[114.275755,32.173947],[114.275531,32.176001],[114.278412,32.181307],[114.278837,32.184253],[114.278569,32.191509],[114.277296,32.194544],[114.280668,32.197273],[114.280802,32.201494],[114.277206,32.210063],[114.276916,32.218439],[114.277966,32.221932],[114.282075,32.222289],[114.284018,32.220377],[114.286854,32.222302],[114.291052,32.219752],[114.301995,32.22141],[114.305925,32.218426],[114.308739,32.217865],[114.31517,32.218796],[114.323723,32.219472],[114.32848,32.220963],[114.333683,32.224342],[114.335872,32.228268],[114.338596,32.229874],[114.343241,32.240326],[114.347083,32.243602],[114.351214,32.243373],[114.353559,32.244622],[114.358963,32.249529],[114.364434,32.251784],[114.364792,32.255085],[114.369571,32.255021],[114.37225,32.260947],[114.372384,32.267267],[114.371335,32.270147],[114.371,32.274326],[114.371536,32.27746],[114.374774,32.285525],[114.376628,32.292009],[114.373322,32.293767],[114.369816,32.298722],[114.369146,32.302531],[114.370643,32.305575],[114.368164,32.313395],[114.366824,32.315203],[114.360258,32.318247],[114.356909,32.318361],[114.353715,32.3218],[114.349316,32.323022],[114.347886,32.326435],[114.348668,32.329415],[114.347752,32.336316],[114.348422,32.347558],[114.346658,32.355667],[114.344269,32.362884],[114.342773,32.365036],[114.336609,32.367823],[114.330602,32.367899],[114.32283,32.369605],[114.315126,32.373258],[114.3122,32.372774],[114.310056,32.370012],[114.302642,32.368179],[114.29391,32.364934],[114.290449,32.365341],[114.289846,32.367047],[114.286921,32.369885],[114.285983,32.374543],[114.287189,32.377776],[114.286027,32.386315],[114.284531,32.39297],[114.280846,32.39638],[114.280779,32.402602],[114.280109,32.405083],[114.283794,32.411597],[114.287635,32.416342],[114.288462,32.418911],[114.28529,32.419929],[114.284375,32.418771],[114.277988,32.418886],[114.27743,32.413429],[114.272628,32.411953],[114.268988,32.40923],[114.263405,32.409408],[114.262043,32.410922],[114.263383,32.415464],[114.260078,32.418568],[114.25972,32.421417],[114.254093,32.424496],[114.252396,32.426264],[114.251793,32.42966],[114.252775,32.431886],[114.249091,32.431364],[114.247393,32.433539],[114.247527,32.436566],[114.250274,32.440979],[114.24918,32.445672],[114.247594,32.447745],[114.249068,32.450644],[114.247594,32.452564],[114.246076,32.456748],[114.243485,32.458591],[114.241297,32.458134],[114.234173,32.45498],[114.226893,32.454116],[114.224369,32.452119],[114.222426,32.44702],[114.221198,32.445964],[114.214834,32.443942],[114.210724,32.44379],[114.204494,32.445227],[114.202015,32.447668],[114.200921,32.450224],[114.201546,32.453531],[114.208022,32.456811],[114.210858,32.459799],[114.211171,32.462342],[114.209608,32.464834],[114.209117,32.468725],[114.205097,32.466347],[114.200005,32.466271],[114.19833,32.46875],[114.198442,32.475603],[114.197415,32.486357],[114.195405,32.490882],[114.192256,32.492585],[114.180979,32.491696],[114.170416,32.488264],[114.167669,32.486993],[114.166195,32.484565],[114.166508,32.478387],[114.164006,32.473759],[114.163381,32.469996],[114.164967,32.461897],[114.163046,32.459113],[114.157396,32.458299],[114.145583,32.460105],[114.139263,32.462152],[114.136739,32.461999],[114.122491,32.452513],[114.112576,32.447808],[114.10936,32.447376],[114.103532,32.448088],[114.097636,32.451623],[114.093728,32.451928],[114.089552,32.45086],[114.085488,32.450771],[114.082585,32.452081],[114.080753,32.45484],[114.079547,32.46917],[114.078319,32.477217],[114.078542,32.479594],[114.080307,32.480306],[114.084505,32.480116],[114.087364,32.481234],[114.087475,32.484628],[114.083411,32.489802],[114.07727,32.492471],[114.076354,32.493526],[114.071329,32.505918],[114.071106,32.509628],[114.072893,32.513479],[114.07296,32.517227],[114.071419,32.520887],[114.067823,32.524838],[114.066662,32.527024],[114.06722,32.534863],[114.066148,32.537531],[114.061213,32.541329],[114.056278,32.539017],[114.054446,32.534062],[114.054491,32.525766],[114.053888,32.52325],[114.050739,32.52137],[114.045424,32.5209],[114.039261,32.522285],[114.036715,32.520201],[114.032762,32.518549],[114.027849,32.518384],[114.01876,32.517354],[114.014897,32.515969],[114.009604,32.509578],[114.007371,32.507773],[114.00382,32.507887],[114.000783,32.509387],[113.998059,32.506528],[113.992118,32.504799],[113.982114,32.503579],[113.976732,32.504634],[113.969094,32.502995],[113.962216,32.505422],[113.955427,32.512335],[113.954355,32.514292],[113.954355,32.522119],[113.953842,32.526592],[113.948236,32.530632],[113.947276,32.539119],[113.944619,32.545635],[113.938634,32.553435],[113.938142,32.556712],[113.940979,32.568218],[113.941492,32.574098],[113.940353,32.576168],[113.93285,32.5782],[113.928294,32.583495],[113.925637,32.587317],[113.922398,32.593957],[113.919741,32.605281],[113.917731,32.607236],[113.913957,32.607985],[113.893322,32.6049],[113.889303,32.605509],[113.886645,32.606995],[113.877489,32.616934],[113.872688,32.622772],[113.868981,32.624244],[113.865117,32.6238],[113.859713,32.619333],[113.853438,32.617391],[113.850401,32.617365],[113.845912,32.621478],[113.843612,32.622239],[113.838766,32.620945],[113.833987,32.621033],[113.826684,32.622404],[113.821905,32.620462],[113.820364,32.619104],[113.81956,32.615804],[113.820409,32.610879],[113.82023,32.601777],[113.817171,32.600228],[113.814446,32.600863],[113.805313,32.597689],[113.801561,32.594744],[113.799819,32.590999],[113.796871,32.589247],[113.789725,32.586352],[113.785169,32.573679],[113.781998,32.566174],[113.776974,32.561233],[113.769091,32.55929],[113.767505,32.558096],[113.764334,32.553473],[113.763039,32.550285],[113.763195,32.547884],[113.767259,32.541659],[113.772999,32.539106],[113.774272,32.537353],[113.76822,32.534405],[113.764714,32.529463],[113.764245,32.524559],[113.759979,32.514317],[113.759376,32.508815],[113.760962,32.501355],[113.763374,32.495077],[113.764245,32.48998],[113.764401,32.480357],[113.76181,32.470657],[113.759019,32.468102],[113.753414,32.465445],[113.7483,32.466754],[113.746156,32.468483],[113.741287,32.465368],[113.739635,32.455044],[113.737647,32.453365],[113.736709,32.45807],[113.735258,32.46102],[113.732757,32.461935],[113.730479,32.460613],[113.730144,32.452424],[113.730881,32.449296],[113.725343,32.436032],[113.719425,32.427866],[113.710671,32.422791],[113.710559,32.421201],[113.714914,32.419369],[113.719291,32.416762],[113.729228,32.412322],[113.735258,32.410859],[113.73662,32.405528],[113.736843,32.398161],[113.737737,32.396049],[113.740751,32.393135],[113.746178,32.392919],[113.748925,32.390565],[113.751716,32.390056],[113.752788,32.388656],[113.75319,32.384355],[113.750756,32.378934],[113.748143,32.376159],[113.743342,32.37476],[113.743856,32.369465],[113.748411,32.363699],[113.751471,32.360784],[113.754218,32.359715],[113.757366,32.360912],[113.758461,32.362872],[113.760359,32.369198],[113.765249,32.370394],[113.768845,32.369478],[113.7711,32.365608],[113.771994,32.362286],[113.770676,32.35862],[113.758483,32.352217],[113.75386,32.342096],[113.752677,32.336914],[113.752587,32.333489],[113.75386,32.328218],[113.759198,32.322717],[113.765093,32.319457],[113.766277,32.317661],[113.773557,32.31952],[113.787894,32.320552],[113.80433,32.320182],[113.81237,32.319469],[113.819717,32.314897],[113.8253,32.312083],[113.828449,32.313484],[113.827734,32.319788],[113.827734,32.324703],[113.83124,32.326792],[113.842428,32.329224],[113.851495,32.330612],[113.857793,32.330955],[113.860584,32.334444],[113.863733,32.335501],[113.86514,32.334088],[113.86514,32.329886],[113.866882,32.324983],[113.871772,32.320768],[113.878472,32.321316],[113.884792,32.32115],[113.887806,32.318871],[113.888543,32.316846],[113.89129,32.315725],[113.898861,32.315585],[113.901809,32.314694],[113.902612,32.312923],[113.912863,32.31258],[113.916503,32.309026],[113.916481,32.30574],[113.913756,32.301435],[113.905136,32.294595],[113.903595,32.289971],[113.903193,32.283346],[113.905181,32.279371],[113.906744,32.277932],[113.911121,32.276021],[113.92117,32.276021],[113.928115,32.279002],[113.931153,32.278976],[113.939996,32.277282],[113.943949,32.275715],[113.945668,32.273867],[113.946494,32.269905],[113.951006,32.264719],[113.952033,32.261291],[113.947901,32.258309],[113.947209,32.256334],[113.948571,32.252906],[113.954065,32.250867],[113.953775,32.247311],[113.957593,32.242289],[113.962238,32.24299],[113.967553,32.246584],[113.972064,32.250879],[113.974342,32.251772],[113.980417,32.250166],[113.983029,32.250166],[113.985798,32.246368],[113.988344,32.24568],[113.99261,32.246916],[113.998684,32.242493],[114.006098,32.240326],[114.008019,32.240428],[114.01186,32.243717],[114.015567,32.244622],[114.022356,32.247833],[114.024991,32.250382],[114.031154,32.251823],[114.034593,32.255072],[114.035956,32.259367],[114.035688,32.264222],[114.036871,32.268541],[114.036023,32.274594],[114.040087,32.277078],[114.039596,32.280327],[114.040913,32.284123],[114.053174,32.292442],[114.061258,32.295461],[114.063736,32.297767],[114.069967,32.29806],[114.070548,32.296582],[114.077515,32.298544],[114.079458,32.295448],[114.080195,32.285448],[114.084036,32.282709],[114.090043,32.280301],[114.08379,32.271268],[114.084862,32.265929],[114.070704,32.268389],[114.06885,32.264184],[114.074523,32.261877],[114.077672,32.257685],[114.077672,32.240862],[114.078029,32.229658],[114.085733,32.218452],[114.08714,32.211797],[114.083277,32.204427],[114.08187,32.199875],[114.08187,32.196368],[114.085041,32.189367],[114.085376,32.186217],[114.081178,32.180605],[114.077314,32.167289],[114.072401,32.164125],[114.069074,32.151687],[114.069074,32.141173],[114.071888,32.136273],[114.079592,32.13173],[114.084505,32.125439],[114.096765,32.118088],[114.107619,32.113531],[114.110767,32.111017],[114.113603,32.105043],[114.113492,32.102758],[114.115144,32.099299],[114.117467,32.09755],[114.119075,32.094486],[114.119722,32.090452],[114.118003,32.089673],[114.117266,32.084119],[114.115948,32.080787],[114.119387,32.079293],[114.117065,32.073598],[114.115837,32.06886],[114.117244,32.065361],[114.121442,32.061505],[114.127382,32.056945],[114.135779,32.053433],[114.142769,32.053778],[114.16059,32.057252],[114.167937,32.057584],[114.179103,32.054059],[114.19833,32.044914],[114.202506,32.040711],[114.203913,32.035806],[114.204271,32.0309],[114.206973,32.025931],[114.208782,32.024474]]]]}},{"type":"Feature","properties":{"adcode":411521,"name":"罗山县","center":[114.533414,32.203206],"centroid":[114.437134,32.026057],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":2,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.376628,32.292009],[114.374774,32.285525],[114.371536,32.27746],[114.371,32.274326],[114.371335,32.270147],[114.372384,32.267267],[114.37225,32.260947],[114.369571,32.255021],[114.364792,32.255085],[114.364434,32.251784],[114.358963,32.249529],[114.353559,32.244622],[114.351214,32.243373],[114.347083,32.243602],[114.343241,32.240326],[114.338596,32.229874],[114.335872,32.228268],[114.333683,32.224342],[114.32848,32.220963],[114.323723,32.219472],[114.31517,32.218796],[114.308739,32.217865],[114.305925,32.218426],[114.301995,32.22141],[114.291052,32.219752],[114.286854,32.222302],[114.284018,32.220377],[114.282075,32.222289],[114.277966,32.221932],[114.276916,32.218439],[114.277206,32.210063],[114.280802,32.201494],[114.280668,32.197273],[114.277296,32.194544],[114.278569,32.191509],[114.278837,32.184253],[114.278412,32.181307],[114.275531,32.176001],[114.275755,32.173947],[114.278323,32.171817],[114.283459,32.171894],[114.286429,32.170784],[114.291365,32.163717],[114.29898,32.161918],[114.301503,32.160068],[114.303937,32.15568],[114.309565,32.154506],[114.315126,32.154289],[114.319369,32.15309],[114.322004,32.149913],[114.325287,32.148944],[114.327096,32.147234],[114.3279,32.141173],[114.325421,32.137817],[114.317873,32.137562],[114.313853,32.136477],[114.30387,32.131348],[114.298422,32.129561],[114.299538,32.124852],[114.299158,32.12198],[114.296992,32.119556],[114.293643,32.119747],[114.292213,32.115688],[114.286898,32.113531],[114.286385,32.112676],[114.284419,32.10078],[114.286519,32.09049],[114.286005,32.08892],[114.281673,32.085715],[114.281539,32.084668],[114.284352,32.082459],[114.284285,32.08011],[114.281248,32.078118],[114.277943,32.080468],[114.272829,32.077135],[114.26642,32.077071],[114.263539,32.075705],[114.260725,32.072998],[114.256974,32.066],[114.251346,32.064851],[114.251346,32.061798],[114.249403,32.060202],[114.244066,32.059615],[114.242525,32.057329],[114.243128,32.052245],[114.241788,32.047698],[114.240448,32.046242],[114.236518,32.044467],[114.228657,32.043036],[114.227987,32.040647],[114.225798,32.03822],[114.218786,32.035231],[114.216955,32.032778],[114.214052,32.032689],[114.210434,32.031118],[114.208782,32.024474],[114.208983,32.019402],[114.209809,32.01516],[114.208112,32.012451],[114.203846,32.010202],[114.20072,32.005027],[114.196253,32.004018],[114.193149,32.001998],[114.187053,31.994484],[114.183547,31.992299],[114.173341,31.991596],[114.170438,31.98918],[114.170349,31.98601],[114.172559,31.983134],[114.172202,31.981473],[114.169589,31.980284],[114.169143,31.977152],[114.171711,31.971068],[114.174279,31.966887],[114.170818,31.958756],[114.170728,31.950254],[114.169366,31.94675],[114.176825,31.933911],[114.179415,31.931954],[114.185847,31.925419],[114.1898,31.923066],[114.191318,31.92084],[114.191608,31.91346],[114.196901,31.908919],[114.201256,31.908778],[114.205767,31.907729],[114.206749,31.903392],[114.212645,31.891392],[114.212935,31.88731],[114.211796,31.883663],[114.204449,31.872236],[114.20273,31.863534],[114.196946,31.85867],[114.184887,31.853064],[114.192412,31.851797],[114.194981,31.850184],[114.200787,31.844948],[114.208893,31.842747],[114.211528,31.840762],[114.217335,31.834976],[114.22131,31.832377],[114.226357,31.832377],[114.230019,31.835065],[114.233771,31.841364],[114.236473,31.841914],[114.237031,31.838164],[114.235446,31.833388],[114.237255,31.827768],[114.240515,31.822736],[114.247617,31.815207],[114.248488,31.810507],[114.250162,31.808509],[114.260279,31.798712],[114.262021,31.796317],[114.264343,31.788504],[114.267045,31.784994],[114.271288,31.783163],[114.27312,31.780178],[114.274058,31.775656],[114.277564,31.771275],[114.287501,31.762037],[114.290382,31.758091],[114.292816,31.752273],[114.298042,31.751851],[114.304786,31.754131],[114.307868,31.753837],[114.31392,31.751966],[114.317314,31.752338],[114.321513,31.755093],[114.327096,31.755067],[114.335247,31.754106],[114.343911,31.754682],[114.346837,31.755567],[114.350388,31.755413],[114.353492,31.754183],[114.357958,31.750556],[114.373814,31.744264],[114.385181,31.741368],[114.390004,31.741009],[114.396146,31.742957],[114.399808,31.746943],[114.403359,31.746699],[114.416311,31.742073],[114.417941,31.73901],[114.419147,31.733166],[114.422475,31.730769],[114.427365,31.731282],[114.429442,31.734589],[114.430872,31.734947],[114.438174,31.730103],[114.441792,31.728616],[114.446548,31.728052],[114.45001,31.729244],[114.45068,31.73637],[114.451551,31.738241],[114.453672,31.738241],[114.458518,31.734153],[114.461332,31.733269],[114.464883,31.734691],[114.469573,31.739664],[114.471984,31.740971],[114.47616,31.741279],[114.479533,31.740548],[114.488867,31.735691],[114.493646,31.73587],[114.501931,31.73828],[114.508653,31.740689],[114.510685,31.744329],[114.509814,31.746405],[114.504365,31.750492],[114.503673,31.75376],[114.504321,31.756425],[114.50805,31.76451],[114.50968,31.766867],[114.512427,31.767739],[114.519573,31.767918],[114.521293,31.766919],[114.524129,31.75804],[114.528194,31.751338],[114.53103,31.741958],[114.533821,31.740458],[114.537819,31.741445],[114.543647,31.744252],[114.5453,31.746148],[114.543759,31.752081],[114.55028,31.753183],[114.551441,31.758116],[114.549476,31.765432],[114.550838,31.767751],[114.554969,31.768533],[114.564148,31.764395],[114.566537,31.764792],[114.569239,31.766816],[114.569954,31.772159],[114.567676,31.776963],[114.56819,31.781152],[114.566939,31.78452],[114.562406,31.787851],[114.56589,31.789759],[114.567453,31.791629],[114.567967,31.7956],[114.567096,31.809124],[114.566202,31.814759],[114.566113,31.819471],[114.567565,31.825694],[114.5725,31.828267],[114.580785,31.829983],[114.582058,31.83463],[114.581366,31.836768],[114.573214,31.843054],[114.571428,31.845563],[114.571071,31.849902],[114.575135,31.857083],[114.575917,31.863764],[114.580048,31.869549],[114.582013,31.875576],[114.582393,31.880081],[114.583509,31.882627],[114.587618,31.884559],[114.590343,31.887848],[114.596797,31.889127],[114.598717,31.890906],[114.595636,31.895256],[114.595747,31.897904],[114.597422,31.899631],[114.596082,31.90187],[114.597668,31.909481],[114.596373,31.912961],[114.593,31.917962],[114.587708,31.929665],[114.583174,31.936124],[114.574242,31.9362],[114.571272,31.937773],[114.571004,31.939858],[114.577033,31.942569],[114.57518,31.945714],[114.569083,31.94808],[114.557984,31.948911],[114.554679,31.957005],[114.550749,31.959932],[114.54655,31.961965],[114.544786,31.964445],[114.541637,31.974992],[114.543424,31.979146],[114.547555,31.984234],[114.551508,31.986918],[114.561557,31.989014],[114.566671,31.991429],[114.569507,31.995276],[114.570847,32.001117],[114.571138,32.010356],[114.572946,32.015122],[114.575626,32.016642],[114.587127,32.018661],[114.595457,32.021536],[114.599521,32.025688],[114.602335,32.03168],[114.602983,32.03481],[114.601219,32.042742],[114.602514,32.047507],[114.61062,32.054059],[114.611871,32.058146],[114.612139,32.062526],[114.613836,32.064455],[114.615243,32.070661],[114.626521,32.084962],[114.627458,32.088077],[114.626677,32.092788],[114.627905,32.09589],[114.646396,32.119288],[114.654592,32.119773],[114.658924,32.120959],[114.65975,32.123729],[114.658768,32.126154],[114.650907,32.13834],[114.650885,32.141798],[114.6518,32.144031],[114.656244,32.148612],[114.65812,32.15258],[114.658902,32.160694],[114.659683,32.162518],[114.663122,32.165732],[114.665847,32.167046],[114.680586,32.170873],[114.683735,32.175465],[114.6857,32.180261],[114.685722,32.18665],[114.684606,32.189494],[114.682886,32.195348],[114.684382,32.198447],[114.694432,32.20384],[114.698474,32.208061],[114.701578,32.216425],[114.703119,32.217891],[114.712721,32.221971],[114.714776,32.224418],[114.713704,32.230563],[114.710153,32.233877],[114.700774,32.238045],[114.699613,32.241703],[114.705262,32.251606],[114.703945,32.255327],[114.695392,32.261826],[114.694744,32.264464],[114.695682,32.265942],[114.704436,32.270759],[114.707585,32.272988],[114.709372,32.276836],[114.709707,32.290595],[114.707384,32.290187],[114.69767,32.283869],[114.692868,32.282429],[114.683846,32.283143],[114.68168,32.284123],[114.680854,32.28699],[114.683065,32.293168],[114.685454,32.302072],[114.684293,32.306377],[114.680296,32.309548],[114.676008,32.309956],[114.661269,32.300276],[114.659036,32.300136],[114.654368,32.302225],[114.645659,32.307893],[114.636324,32.313293],[114.633175,32.312834],[114.62364,32.304619],[114.616404,32.29783],[114.614729,32.296888],[114.612116,32.297665],[114.609079,32.304301],[114.605261,32.305243],[114.582527,32.308453],[114.575314,32.309026],[114.563634,32.306377],[114.561982,32.305142],[114.558922,32.296951],[114.557739,32.295359],[114.550704,32.289015],[114.544697,32.285741],[114.540454,32.284837],[114.535072,32.286085],[114.532571,32.288442],[114.526697,32.296315],[114.521941,32.298684],[114.510685,32.300518],[114.498314,32.301512],[114.495008,32.301244],[114.49215,32.299945],[114.49052,32.296238],[114.491078,32.289716],[114.490832,32.286646],[114.487617,32.283996],[114.483619,32.285194],[114.473168,32.294213],[114.468367,32.294149],[114.463789,32.290926],[114.452511,32.281384],[114.447888,32.280276],[114.444271,32.282735],[114.438353,32.28848],[114.433931,32.290328],[114.429308,32.289334],[114.426472,32.286429],[114.422743,32.280314],[114.420108,32.278722],[114.41716,32.279435],[114.412827,32.284225],[114.404699,32.290671],[114.40155,32.292429],[114.397039,32.293321],[114.376628,32.292009]]]]}},{"type":"Feature","properties":{"adcode":411522,"name":"光山县","center":[114.903577,32.010398],"centroid":[114.836164,31.935893],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":3,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.684606,32.189494],[114.685722,32.18665],[114.6857,32.180261],[114.683735,32.175465],[114.680586,32.170873],[114.665847,32.167046],[114.663122,32.165732],[114.659683,32.162518],[114.658902,32.160694],[114.65812,32.15258],[114.656244,32.148612],[114.6518,32.144031],[114.650885,32.141798],[114.650907,32.13834],[114.658768,32.126154],[114.65975,32.123729],[114.658924,32.120959],[114.654592,32.119773],[114.646396,32.119288],[114.627905,32.09589],[114.626677,32.092788],[114.627458,32.088077],[114.626521,32.084962],[114.615243,32.070661],[114.613836,32.064455],[114.612139,32.062526],[114.611871,32.058146],[114.61062,32.054059],[114.602514,32.047507],[114.601219,32.042742],[114.602983,32.03481],[114.602335,32.03168],[114.599521,32.025688],[114.595457,32.021536],[114.587127,32.018661],[114.575626,32.016642],[114.572946,32.015122],[114.571138,32.010356],[114.570847,32.001117],[114.569507,31.995276],[114.566671,31.991429],[114.561557,31.989014],[114.551508,31.986918],[114.547555,31.984234],[114.543424,31.979146],[114.541637,31.974992],[114.544786,31.964445],[114.54655,31.961965],[114.550749,31.959932],[114.554679,31.957005],[114.557984,31.948911],[114.569083,31.94808],[114.57518,31.945714],[114.577033,31.942569],[114.571004,31.939858],[114.571272,31.937773],[114.574242,31.9362],[114.583174,31.936124],[114.587708,31.929665],[114.593,31.917962],[114.596373,31.912961],[114.597668,31.909481],[114.596082,31.90187],[114.597422,31.899631],[114.595747,31.897904],[114.595636,31.895256],[114.598717,31.890906],[114.596797,31.889127],[114.590343,31.887848],[114.587618,31.884559],[114.583509,31.882627],[114.582393,31.880081],[114.582013,31.875576],[114.580048,31.869549],[114.575917,31.863764],[114.575135,31.857083],[114.571071,31.849902],[114.571428,31.845563],[114.573214,31.843054],[114.581366,31.836768],[114.582058,31.83463],[114.580785,31.829983],[114.582572,31.822249],[114.582036,31.816718],[114.582728,31.815117],[114.587886,31.815732],[114.592398,31.817102],[114.600526,31.817166],[114.602201,31.815796],[114.605529,31.808586],[114.612652,31.801338],[114.614863,31.799967],[114.617699,31.799775],[114.624176,31.804027],[114.634203,31.8076],[114.640992,31.807382],[114.648651,31.806512],[114.654971,31.804667],[114.662475,31.801479],[114.666874,31.798187],[114.665735,31.790592],[114.666427,31.787069],[114.67038,31.784264],[114.675427,31.783393],[114.684896,31.785481],[114.688804,31.783854],[114.691863,31.777001],[114.693226,31.776348],[114.696039,31.779102],[114.698652,31.788786],[114.699345,31.794409],[114.704615,31.796932],[114.707049,31.801158],[114.710488,31.802311],[114.713883,31.801722],[114.715915,31.798456],[114.708166,31.795664],[114.708478,31.793679],[114.710287,31.792923],[114.713726,31.793487],[114.718729,31.792347],[114.723083,31.789823],[114.732306,31.780908],[114.734428,31.780293],[114.736728,31.781702],[114.738917,31.785776],[114.742802,31.789593],[114.748497,31.791693],[114.752807,31.791886],[114.75973,31.787005],[114.762544,31.785532],[114.766385,31.784879],[114.771298,31.786403],[114.779337,31.784969],[114.779248,31.778397],[114.78157,31.775438],[114.781593,31.772697],[114.777819,31.764625],[114.778488,31.761358],[114.781459,31.76073],[114.786863,31.764484],[114.790994,31.765855],[114.792759,31.768917],[114.797582,31.772312],[114.800977,31.77262],[114.808391,31.772274],[114.81221,31.775118],[114.815202,31.775041],[114.819802,31.772018],[114.822973,31.772171],[114.830075,31.776373],[114.834117,31.779243],[114.83539,31.781203],[114.833894,31.788081],[114.8351,31.790694],[114.838137,31.792488],[114.840593,31.791796],[114.848856,31.78461],[114.852496,31.783035],[114.858101,31.781779],[114.862612,31.779781],[114.868352,31.775259],[114.87255,31.773209],[114.882711,31.767226],[114.884498,31.764472],[114.887669,31.761922],[114.89247,31.762127],[114.896892,31.761448],[114.901782,31.759513],[114.904105,31.757514],[114.909331,31.754772],[114.91478,31.749429],[114.932131,31.746417],[114.939389,31.746225],[114.940126,31.744726],[114.939858,31.740035],[114.94122,31.737921],[114.945039,31.737664],[114.954664,31.740394],[114.958461,31.74083],[114.964959,31.742483],[114.970229,31.746328],[114.974071,31.746994],[114.980368,31.746276],[114.98316,31.746738],[114.989613,31.749929],[114.992271,31.750031],[114.996916,31.746917],[115.002834,31.746443],[115.006675,31.745559],[115.007568,31.740625],[115.009667,31.739292],[115.013241,31.739971],[115.016144,31.737831],[115.018823,31.737139],[115.02099,31.737985],[115.020074,31.741727],[115.020722,31.743611],[115.025411,31.747481],[115.030436,31.747622],[115.037873,31.750274],[115.041379,31.74989],[115.040865,31.744726],[115.041892,31.740151],[115.044639,31.733576],[115.048614,31.72718],[115.050713,31.724643],[115.053036,31.723989],[115.057502,31.724476],[115.066256,31.72836],[115.072308,31.730359],[115.074698,31.728808],[115.07807,31.730398],[115.080281,31.733076],[115.085238,31.737126],[115.08727,31.737588],[115.089839,31.736178],[115.091022,31.734114],[115.089325,31.729372],[115.08937,31.727104],[115.093948,31.726642],[115.097699,31.726975],[115.105828,31.725258],[115.108508,31.724066],[115.110027,31.722169],[115.111054,31.717503],[115.119227,31.715618],[115.120322,31.709888],[115.119875,31.706158],[115.122354,31.702658],[115.127669,31.702286],[115.134882,31.69985],[115.138745,31.699388],[115.146048,31.702017],[115.159492,31.705478],[115.164583,31.707529],[115.164896,31.710298],[115.167352,31.715888],[115.169787,31.719413],[115.170702,31.722258],[115.175392,31.724027],[115.179412,31.727885],[115.1862,31.737472],[115.18629,31.739894],[115.184526,31.742534],[115.18064,31.745046],[115.177625,31.754631],[115.175637,31.758014],[115.173114,31.760307],[115.165968,31.764536],[115.15306,31.767982],[115.151117,31.768213],[115.146986,31.770967],[115.144663,31.774234],[115.14578,31.78069],[115.143167,31.783342],[115.137941,31.783316],[115.134391,31.784162],[115.127914,31.789862],[115.12481,31.794255],[115.122599,31.795011],[115.116994,31.794627],[115.116369,31.797137],[115.118222,31.804142],[115.117642,31.808036],[115.114247,31.813773],[115.11561,31.81609],[115.120813,31.816385],[115.122666,31.817204],[115.123872,31.82184],[115.121751,31.82869],[115.125324,31.83422],[115.125279,31.836154],[115.122666,31.841223],[115.123515,31.844488],[115.135105,31.866477],[115.140934,31.870867],[115.135061,31.871328],[115.124721,31.871392],[115.115498,31.871072],[115.112394,31.872799],[115.109111,31.876933],[115.108307,31.882166],[115.107056,31.885301],[115.099218,31.890842],[115.095064,31.896138],[115.091424,31.904774],[115.089638,31.907],[115.083675,31.909379],[115.078338,31.916235],[115.074273,31.918487],[115.072308,31.924741],[115.069427,31.927478],[115.066993,31.928553],[115.064715,31.928156],[115.061634,31.922567],[115.058105,31.919561],[115.052031,31.91809],[115.046984,31.918244],[115.04446,31.91983],[115.041691,31.923232],[115.03852,31.92501],[115.035126,31.9246],[115.03162,31.925406],[115.025233,31.93019],[115.019315,31.93386],[115.015161,31.938016],[115.013352,31.940983],[115.01036,31.943924],[115.004084,31.94606],[115.00002,31.952044],[114.995755,31.956902],[114.994683,31.964151],[114.992159,31.969546],[114.991824,31.971809],[114.993231,31.975107],[114.994504,31.981664],[114.99772,31.98624],[114.998658,31.988937],[114.998167,31.991506],[114.99897,31.994497],[115.002789,31.999187],[114.998368,32.002676],[114.995933,32.003149],[114.989971,32.002982],[114.983919,32.004797],[114.979274,32.00835],[114.97818,32.010075],[114.978381,32.01341],[114.979698,32.015377],[114.986219,32.017524],[114.987224,32.019402],[114.986018,32.024398],[114.981083,32.028039],[114.98144,32.030172],[114.986264,32.0309],[114.992316,32.030389],[115.000221,32.033328],[115.002119,32.034707],[115.003348,32.038719],[115.002968,32.043483],[114.998591,32.048937],[114.997742,32.051875],[114.9981,32.054659],[114.99964,32.057686],[115.003147,32.062245],[115.008573,32.065527],[115.008997,32.071683],[115.00739,32.072819],[115.003638,32.072193],[114.996268,32.072359],[114.993678,32.071274],[114.988743,32.071823],[114.985504,32.069141],[114.980256,32.070176],[114.975701,32.06941],[114.971636,32.069767],[114.96976,32.067635],[114.965361,32.070137],[114.961766,32.070214],[114.960091,32.072819],[114.957098,32.073726],[114.956562,32.075488],[114.950622,32.078654],[114.949796,32.082664],[114.947406,32.086111],[114.948746,32.088728],[114.947473,32.091205],[114.944749,32.092341],[114.943141,32.096861],[114.93968,32.096809],[114.935749,32.099631],[114.93193,32.104239],[114.929988,32.10803],[114.928916,32.111783],[114.926236,32.113889],[114.922328,32.119083],[114.918688,32.128234],[114.912948,32.13723],[114.910269,32.139221],[114.902921,32.141671],[114.90147,32.142921],[114.901715,32.147157],[114.899326,32.14976],[114.899326,32.152644],[114.901135,32.154659],[114.907142,32.158678],[114.907589,32.160592],[114.906182,32.163806],[114.910135,32.166051],[114.912435,32.169547],[114.911876,32.175184],[114.914958,32.178233],[114.912948,32.181205],[114.915316,32.18489],[114.908862,32.185324],[114.907298,32.186791],[114.909465,32.189915],[114.908839,32.192377],[114.905378,32.187288],[114.900911,32.182888],[114.898857,32.180108],[114.898723,32.177161],[114.895038,32.175784],[114.892604,32.176741],[114.885614,32.170325],[114.882063,32.170286],[114.87724,32.168041],[114.870607,32.16734],[114.865605,32.163564],[114.862501,32.161969],[114.860134,32.15767],[114.856762,32.157747],[114.855243,32.152809],[114.850509,32.147515],[114.844077,32.142194],[114.838829,32.139846],[114.835993,32.141479],[114.832531,32.139489],[114.829963,32.139553],[114.82869,32.137958],[114.824246,32.13561],[114.81719,32.136758],[114.80953,32.135916],[114.804349,32.138238],[114.800977,32.141952],[114.795617,32.144937],[114.793585,32.146762],[114.790659,32.14777],[114.785523,32.147974],[114.783759,32.149837],[114.781593,32.149569],[114.775987,32.154404],[114.774848,32.156713],[114.770315,32.158091],[114.767367,32.158282],[114.766094,32.159877],[114.766876,32.163513],[114.769444,32.1641],[114.769109,32.166485],[114.767122,32.169049],[114.763437,32.16822],[114.762968,32.166],[114.757184,32.16512],[114.756603,32.167455],[114.75466,32.169024],[114.750194,32.175937],[114.750015,32.177468],[114.742512,32.186714],[114.739341,32.187263],[114.729091,32.180427],[114.723485,32.178998],[114.715133,32.17961],[114.713168,32.181141],[114.712409,32.187161],[114.708188,32.189035],[114.684606,32.189494]]]]}},{"type":"Feature","properties":{"adcode":411523,"name":"新县","center":[114.87705,31.63515],"centroid":[114.852568,31.640359],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":4,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.580785,31.829983],[114.5725,31.828267],[114.567565,31.825694],[114.566113,31.819471],[114.566202,31.814759],[114.567096,31.809124],[114.567967,31.7956],[114.567453,31.791629],[114.56589,31.789759],[114.562406,31.787851],[114.566939,31.78452],[114.56819,31.781152],[114.567676,31.776963],[114.569954,31.772159],[114.569239,31.766816],[114.570713,31.766688],[114.572746,31.762575],[114.574733,31.762409],[114.57882,31.764766],[114.582482,31.764753],[114.586033,31.762396],[114.58802,31.756579],[114.587596,31.754029],[114.583532,31.749442],[114.581589,31.742522],[114.581745,31.738472],[114.584112,31.731884],[114.581209,31.728142],[114.579735,31.724668],[114.579467,31.719913],[114.582527,31.712657],[114.579579,31.710388],[114.579132,31.708158],[114.581165,31.705952],[114.589048,31.70494],[114.590767,31.703901],[114.591393,31.70035],[114.586145,31.692541],[114.582996,31.690952],[114.576721,31.692195],[114.574197,31.689169],[114.573974,31.681257],[114.572143,31.674204],[114.570825,31.660109],[114.559168,31.656042],[114.555952,31.653297],[114.554679,31.648564],[114.550525,31.644895],[114.549654,31.64247],[114.552915,31.635183],[114.552357,31.629846],[114.549029,31.626112],[114.548024,31.623597],[114.549297,31.615205],[114.548895,31.609789],[114.550659,31.606439],[114.553674,31.595427],[114.554232,31.584683],[114.558721,31.568918],[114.559793,31.562947],[114.561066,31.560944],[114.572478,31.554049],[114.574778,31.555205],[114.574956,31.559545],[114.577011,31.560341],[114.587373,31.56061],[114.59079,31.563358],[114.593268,31.567865],[114.595636,31.5763],[114.597467,31.576981],[114.602201,31.576493],[114.607248,31.576737],[114.612027,31.578483],[114.615377,31.584362],[114.616762,31.585338],[114.621384,31.584118],[114.623796,31.584195],[114.627682,31.585761],[114.633577,31.584016],[114.641728,31.582154],[114.644475,31.579086],[114.644431,31.57467],[114.649634,31.574336],[114.653028,31.572705],[114.655753,31.568725],[114.656936,31.56287],[114.659683,31.56088],[114.662609,31.556283],[114.670112,31.547037],[114.673953,31.544584],[114.678509,31.544032],[114.691774,31.545175],[114.697603,31.547012],[114.699836,31.546138],[114.700885,31.541515],[114.696285,31.53246],[114.695637,31.528877],[114.696553,31.525845],[114.700885,31.52501],[114.704637,31.52546],[114.713927,31.528286],[114.71721,31.527926],[114.720202,31.520797],[114.723307,31.520604],[114.729716,31.522839],[114.739519,31.527194],[114.742043,31.527194],[114.747224,31.524034],[114.757028,31.52722],[114.761985,31.523392],[114.764285,31.523173],[114.771007,31.520553],[114.774625,31.52018],[114.778868,31.520746],[114.777595,31.516879],[114.775228,31.515402],[114.774044,31.51246],[114.774625,31.500909],[114.783111,31.494806],[114.78396,31.492647],[114.781436,31.488805],[114.781436,31.486736],[114.783044,31.484616],[114.789409,31.480542],[114.793696,31.479745],[114.799078,31.479617],[114.805175,31.480542],[114.813013,31.478859],[114.815425,31.477458],[114.824179,31.469952],[114.826413,31.466726],[114.829829,31.458911],[114.836842,31.458834],[114.841554,31.461957],[114.845908,31.46868],[114.848856,31.474528],[114.850687,31.47616],[114.869937,31.479334],[114.875275,31.47828],[114.876123,31.471417],[114.876771,31.470569],[114.884029,31.469245],[114.886708,31.469438],[114.896378,31.474373],[114.905847,31.475414],[114.91201,31.47679],[114.914489,31.478036],[114.917638,31.481172],[114.922663,31.481313],[114.925276,31.480452],[114.931037,31.474373],[114.936464,31.469772],[114.938429,31.470492],[114.939948,31.477162],[114.942091,31.479591],[114.94897,31.483588],[114.95395,31.488009],[114.959934,31.490836],[114.963999,31.495359],[114.967996,31.496605],[114.972195,31.496682],[114.976125,31.495911],[114.978738,31.49311],[114.980189,31.484745],[114.982467,31.480362],[114.98537,31.477689],[114.988899,31.477766],[114.991065,31.47598],[114.993633,31.472124],[114.998278,31.471623],[115.001181,31.477638],[115.001449,31.484436],[115.00203,31.485297],[115.007725,31.486569],[115.010829,31.488227],[115.010025,31.491761],[115.001695,31.499972],[115.00203,31.502002],[115.010025,31.504892],[115.011409,31.506074],[115.014893,31.512755],[115.01994,31.520591],[115.023089,31.527592],[115.026975,31.528774],[115.030302,31.527682],[115.030771,31.522377],[115.032468,31.520694],[115.038453,31.517046],[115.042763,31.516339],[115.048927,31.517547],[115.050222,31.514978],[115.053058,31.513487],[115.055649,31.514618],[115.063174,31.511419],[115.064671,31.513089],[115.066301,31.510507],[115.07012,31.510854],[115.076909,31.510507],[115.080906,31.508503],[115.083362,31.509235],[115.084055,31.507912],[115.089347,31.508708],[115.091737,31.507989],[115.096226,31.508464],[115.098704,31.512794],[115.098235,31.514502],[115.09435,31.515517],[115.092809,31.519088],[115.098704,31.519615],[115.102099,31.520591],[115.106476,31.523276],[115.113354,31.528967],[115.114448,31.530495],[115.113801,31.532858],[115.107458,31.537893],[115.105493,31.542658],[115.106096,31.545535],[115.111054,31.552341],[115.107012,31.553086],[115.103081,31.55577],[115.102947,31.560277],[115.10431,31.564206],[115.106744,31.567467],[115.120411,31.575774],[115.126217,31.57802],[115.127267,31.57906],[115.128115,31.585209],[115.127579,31.588021],[115.124788,31.596557],[115.125369,31.599098],[115.134837,31.602422],[115.148929,31.60436],[115.158844,31.604899],[115.164405,31.604565],[115.173717,31.601934],[115.177982,31.608801],[115.179188,31.611675],[115.178563,31.614101],[115.175258,31.619234],[115.180037,31.627279],[115.182114,31.634567],[115.186334,31.641701],[115.188478,31.643304],[115.192654,31.644112],[115.198148,31.646191],[115.201341,31.64841],[115.20248,31.651578],[115.202034,31.659442],[115.203173,31.661917],[115.208934,31.666381],[115.210855,31.669651],[115.211659,31.674448],[115.210989,31.676602],[115.207952,31.678436],[115.198706,31.680475],[115.192565,31.679616],[115.187585,31.678282],[115.187585,31.681103],[115.184637,31.682155],[115.181823,31.679962],[115.177536,31.679282],[115.172667,31.680116],[115.167062,31.678872],[115.164874,31.680013],[115.166727,31.683566],[115.16273,31.687502],[115.160541,31.692849],[115.161278,31.696901],[115.163735,31.700952],[115.164583,31.707529],[115.159492,31.705478],[115.146048,31.702017],[115.138745,31.699388],[115.134882,31.69985],[115.127669,31.702286],[115.122354,31.702658],[115.119875,31.706158],[115.120322,31.709888],[115.119227,31.715618],[115.111054,31.717503],[115.110027,31.722169],[115.108508,31.724066],[115.105828,31.725258],[115.097699,31.726975],[115.093948,31.726642],[115.08937,31.727104],[115.089325,31.729372],[115.091022,31.734114],[115.089839,31.736178],[115.08727,31.737588],[115.085238,31.737126],[115.080281,31.733076],[115.07807,31.730398],[115.074698,31.728808],[115.072308,31.730359],[115.066256,31.72836],[115.057502,31.724476],[115.053036,31.723989],[115.050713,31.724643],[115.048614,31.72718],[115.044639,31.733576],[115.041892,31.740151],[115.040865,31.744726],[115.041379,31.74989],[115.037873,31.750274],[115.030436,31.747622],[115.025411,31.747481],[115.020722,31.743611],[115.020074,31.741727],[115.02099,31.737985],[115.018823,31.737139],[115.016144,31.737831],[115.013241,31.739971],[115.009667,31.739292],[115.007568,31.740625],[115.006675,31.745559],[115.002834,31.746443],[114.996916,31.746917],[114.992271,31.750031],[114.989613,31.749929],[114.98316,31.746738],[114.980368,31.746276],[114.974071,31.746994],[114.970229,31.746328],[114.964959,31.742483],[114.958461,31.74083],[114.954664,31.740394],[114.945039,31.737664],[114.94122,31.737921],[114.939858,31.740035],[114.940126,31.744726],[114.939389,31.746225],[114.932131,31.746417],[114.91478,31.749429],[114.909331,31.754772],[114.904105,31.757514],[114.901782,31.759513],[114.896892,31.761448],[114.89247,31.762127],[114.887669,31.761922],[114.884498,31.764472],[114.882711,31.767226],[114.87255,31.773209],[114.868352,31.775259],[114.862612,31.779781],[114.858101,31.781779],[114.852496,31.783035],[114.848856,31.78461],[114.840593,31.791796],[114.838137,31.792488],[114.8351,31.790694],[114.833894,31.788081],[114.83539,31.781203],[114.834117,31.779243],[114.830075,31.776373],[114.822973,31.772171],[114.819802,31.772018],[114.815202,31.775041],[114.81221,31.775118],[114.808391,31.772274],[114.800977,31.77262],[114.797582,31.772312],[114.792759,31.768917],[114.790994,31.765855],[114.786863,31.764484],[114.781459,31.76073],[114.778488,31.761358],[114.777819,31.764625],[114.781593,31.772697],[114.78157,31.775438],[114.779248,31.778397],[114.779337,31.784969],[114.771298,31.786403],[114.766385,31.784879],[114.762544,31.785532],[114.75973,31.787005],[114.752807,31.791886],[114.748497,31.791693],[114.742802,31.789593],[114.738917,31.785776],[114.736728,31.781702],[114.734428,31.780293],[114.732306,31.780908],[114.723083,31.789823],[114.718729,31.792347],[114.713726,31.793487],[114.710287,31.792923],[114.708478,31.793679],[114.708166,31.795664],[114.715915,31.798456],[114.713883,31.801722],[114.710488,31.802311],[114.707049,31.801158],[114.704615,31.796932],[114.699345,31.794409],[114.698652,31.788786],[114.696039,31.779102],[114.693226,31.776348],[114.691863,31.777001],[114.688804,31.783854],[114.684896,31.785481],[114.675427,31.783393],[114.67038,31.784264],[114.666427,31.787069],[114.665735,31.790592],[114.666874,31.798187],[114.662475,31.801479],[114.654971,31.804667],[114.648651,31.806512],[114.640992,31.807382],[114.634203,31.8076],[114.624176,31.804027],[114.617699,31.799775],[114.614863,31.799967],[114.612652,31.801338],[114.605529,31.808586],[114.602201,31.815796],[114.600526,31.817166],[114.592398,31.817102],[114.587886,31.815732],[114.582728,31.815117],[114.582036,31.816718],[114.582572,31.822249],[114.580785,31.829983]]]]}},{"type":"Feature","properties":{"adcode":411524,"name":"商城县","center":[115.406297,31.799982],"centroid":[115.368512,31.760268],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":5,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.173717,31.601934],[115.176866,31.598854],[115.17691,31.589933],[115.177446,31.584965],[115.179278,31.579214],[115.180394,31.577764],[115.187161,31.572782],[115.191136,31.571896],[115.192833,31.569547],[115.191783,31.565554],[115.192967,31.564052],[115.197545,31.56287],[115.201453,31.562665],[115.207259,31.564219],[115.209671,31.561663],[115.2111,31.557092],[115.212619,31.555526],[115.21972,31.554524],[115.225862,31.55514],[115.233053,31.556771],[115.235911,31.555461],[115.233365,31.552264],[115.231355,31.548206],[115.230239,31.544225],[115.230574,31.53824],[115.227693,31.533796],[115.223763,31.523533],[115.219408,31.518767],[115.218224,31.515312],[115.219519,31.506897],[115.217956,31.501475],[115.212798,31.493907],[115.212351,31.490116],[115.216907,31.48157],[115.218023,31.477059],[115.218537,31.471572],[115.218336,31.466855],[115.217041,31.46287],[115.214964,31.461006],[115.212217,31.456764],[115.210966,31.450427],[115.21052,31.445451],[115.212351,31.439833],[115.216393,31.435745],[115.218805,31.429393],[115.220502,31.426705],[115.223897,31.424944],[115.232963,31.427091],[115.235844,31.426692],[115.243303,31.423298],[115.252571,31.42169],[115.260297,31.412135],[115.259181,31.406129],[115.251722,31.395891],[115.250337,31.394514],[115.250471,31.391774],[115.260409,31.387388],[115.265612,31.38924],[115.273361,31.396482],[115.278207,31.399003],[115.281356,31.399865],[115.285532,31.399402],[115.289999,31.397576],[115.294041,31.395042],[115.30112,31.384069],[115.307216,31.382371],[115.313559,31.383426],[115.323206,31.388443],[115.327181,31.391131],[115.329883,31.394604],[115.332563,31.399325],[115.33598,31.403377],[115.33866,31.404045],[115.350652,31.400007],[115.355297,31.399955],[115.36021,31.401524],[115.36682,31.404444],[115.373631,31.405769],[115.375038,31.410553],[115.376869,31.412843],[115.38339,31.418655],[115.384864,31.421279],[115.384038,31.426075],[115.385445,31.433546],[115.385646,31.44333],[115.387611,31.446827],[115.389733,31.448344],[115.3898,31.450311],[115.377629,31.470518],[115.375597,31.477741],[115.373899,31.480054],[115.373162,31.484552],[115.374815,31.488047],[115.372291,31.490206],[115.371152,31.493393],[115.371577,31.495847],[115.37515,31.501141],[115.377137,31.502978],[115.389621,31.507578],[115.392926,31.51007],[115.396812,31.51517],[115.408022,31.519833],[115.415905,31.525974],[115.422538,31.535145],[115.428545,31.547191],[115.428746,31.553034],[115.431381,31.557054],[115.431582,31.559005],[115.428255,31.563397],[115.428679,31.567441],[115.432431,31.574426],[115.434508,31.576775],[115.438863,31.579972],[115.438997,31.585261],[115.440046,31.588714],[115.444535,31.59191],[115.457376,31.596492],[115.463048,31.600523],[115.472338,31.605528],[115.475375,31.606696],[115.482343,31.607736],[115.485268,31.609109],[115.488216,31.612227],[115.490717,31.618823],[115.49065,31.623597],[115.489667,31.625765],[115.481807,31.637223],[115.476983,31.642958],[115.477117,31.645434],[115.484263,31.649077],[115.486094,31.652669],[115.485424,31.659775],[115.486139,31.661186],[115.491208,31.662764],[115.494067,31.667933],[115.495384,31.672922],[115.500007,31.676051],[115.511932,31.681103],[115.515036,31.68286],[115.520329,31.690528],[115.523388,31.693529],[115.529507,31.697696],[115.531852,31.698529],[115.538306,31.697606],[115.548221,31.694631],[115.553492,31.695273],[115.556172,31.69835],[115.557065,31.701927],[115.561375,31.706427],[115.564903,31.709004],[115.568074,31.70985],[115.574752,31.710311],[115.581094,31.712529],[115.582657,31.713926],[115.586967,31.721707],[115.594247,31.725117],[115.601438,31.731679],[115.609344,31.733704],[115.619147,31.738344],[115.628415,31.746007],[115.632569,31.748788],[115.635851,31.75408],[115.63842,31.75613],[115.63565,31.765599],[115.63411,31.768802],[115.621916,31.772761],[115.616802,31.775771],[115.616802,31.778449],[115.622229,31.782356],[115.624462,31.785917],[115.624864,31.793],[115.621425,31.798021],[115.618388,31.801094],[115.613453,31.803771],[115.609723,31.804014],[115.604855,31.80258],[115.601215,31.797547],[115.59925,31.795843],[115.593443,31.794896],[115.587481,31.795049],[115.580938,31.796394],[115.577945,31.798623],[115.576471,31.804629],[115.577789,31.807421],[115.576694,31.809419],[115.572362,31.810315],[115.570888,31.811621],[115.570308,31.815348],[115.566467,31.828177],[115.566578,31.82988],[115.569727,31.832505],[115.57464,31.834784],[115.577878,31.841966],[115.578392,31.845256],[115.574417,31.855125],[115.575399,31.862523],[115.574819,31.867949],[115.578794,31.87175],[115.580536,31.876126],[115.581317,31.880772],[115.585784,31.883663],[115.586275,31.886568],[115.58422,31.893861],[115.592282,31.90178],[115.594605,31.905234],[115.598647,31.908535],[115.605614,31.91126],[115.607311,31.912731],[115.606865,31.915941],[115.604185,31.918295],[115.597016,31.922068],[115.59552,31.923923],[115.59657,31.931775],[115.593175,31.934499],[115.585784,31.939308],[115.584064,31.952108],[115.584779,31.956941],[115.582925,31.962758],[115.5823,31.966644],[115.577789,31.967015],[115.57636,31.964394],[115.575935,31.96061],[115.57426,31.95937],[115.570509,31.959204],[115.567605,31.962093],[115.566868,31.964918],[115.56803,31.96883],[115.56497,31.972244],[115.564032,31.978635],[115.56497,31.979734],[115.571848,31.982904],[115.573032,31.986585],[115.573188,31.989909],[115.57225,31.992618],[115.566243,31.999494],[115.560638,32.002267],[115.556105,32.003673],[115.554273,32.007634],[115.555256,32.015326],[115.554832,32.025484],[115.554028,32.029367],[115.549338,32.035883],[115.546524,32.03601],[115.539758,32.033149],[115.534577,32.032037],[115.525354,32.029419],[115.518475,32.029738],[115.507511,32.035244],[115.499516,32.044543],[115.49793,32.047839],[115.49822,32.051913],[115.500498,32.054455],[115.506662,32.058095],[115.507667,32.061939],[115.507756,32.065502],[115.506483,32.068797],[115.502129,32.067162],[115.500744,32.070738],[115.502642,32.077914],[115.504674,32.081859],[115.502553,32.08394],[115.497551,32.082332],[115.494982,32.08283],[115.490382,32.086175],[115.487792,32.086647],[115.481427,32.084566],[115.477095,32.087209],[115.47408,32.088103],[115.471802,32.090988],[115.471333,32.096209],[115.469613,32.097716],[115.467425,32.097537],[115.460703,32.092954],[115.457577,32.091754],[115.450095,32.093465],[115.443731,32.092597],[115.43424,32.089354],[115.430064,32.086915],[115.429305,32.084234],[115.43051,32.077301],[115.430577,32.071644],[115.429818,32.069295],[115.426424,32.064582],[115.425017,32.061645],[115.426223,32.054161],[115.423029,32.044952],[115.42361,32.042742],[115.42763,32.040609],[115.428992,32.038808],[115.428702,32.035985],[115.426558,32.029674],[115.426312,32.025535],[115.422605,32.02694],[115.418719,32.025394],[115.417111,32.028103],[115.412824,32.028626],[115.408983,32.024347],[115.406727,32.022813],[115.404003,32.022967],[115.402953,32.024602],[115.402283,32.028856],[115.398643,32.031552],[115.394891,32.035269],[115.388281,32.040303],[115.38569,32.044467],[115.384462,32.050674],[115.38214,32.052143],[115.37343,32.053178],[115.369924,32.052258],[115.367177,32.046945],[115.365838,32.046166],[115.358557,32.048005],[115.35054,32.047085],[115.344243,32.050074],[115.342188,32.049895],[115.340513,32.046587],[115.335734,32.042346],[115.334327,32.039115],[115.329459,32.038591],[115.324814,32.036228],[115.319186,32.037377],[115.316663,32.039434],[115.314564,32.039281],[115.306681,32.027924],[115.307596,32.023746],[115.306413,32.020143],[115.306949,32.015135],[115.30543,32.011531],[115.307663,32.008516],[115.30648,32.006279],[115.306212,32.002203],[115.299333,31.99672],[115.295582,31.992337],[115.295001,31.990407],[115.296497,31.981792],[115.29576,31.979415],[115.29652,31.975401],[115.295604,31.970569],[115.296363,31.968115],[115.294331,31.964305],[115.293304,31.958104],[115.295046,31.950957],[115.294309,31.949525],[115.290512,31.947198],[115.28944,31.940689],[115.287832,31.93886],[115.284505,31.937415],[115.285019,31.933029],[115.288413,31.928975],[115.294934,31.925317],[115.295604,31.922298],[115.294443,31.918116],[115.292522,31.91534],[115.289351,31.915634],[115.286895,31.917911],[115.283478,31.91722],[115.278877,31.91227],[115.269945,31.904416],[115.266037,31.899976],[115.262441,31.898121],[115.257863,31.898326],[115.2517,31.907435],[115.248395,31.907115],[115.248328,31.904953],[115.252325,31.899222],[115.25199,31.898006],[115.248461,31.896765],[115.244598,31.893771],[115.244531,31.889588],[115.245357,31.886696],[115.248662,31.879402],[115.248037,31.877381],[115.240779,31.87532],[115.232695,31.876958],[115.229077,31.880464],[115.227001,31.884495],[115.227916,31.889076],[115.231601,31.88992],[115.234638,31.887272],[115.236067,31.888705],[115.233923,31.892044],[115.229569,31.892863],[115.222802,31.890714],[115.219363,31.891865],[115.21684,31.894015],[115.222333,31.903866],[115.220502,31.906808],[115.216281,31.902203],[115.214495,31.90178],[115.212507,31.90329],[115.206634,31.904147],[115.198416,31.901512],[115.193123,31.898147],[115.18964,31.897495],[115.18256,31.897802],[115.180037,31.896497],[115.174097,31.899861],[115.174365,31.907345],[115.171461,31.909801],[115.168313,31.909149],[115.158442,31.902318],[115.150871,31.895703],[115.147611,31.890778],[115.141537,31.878545],[115.141403,31.876357],[115.143547,31.873797],[115.140934,31.870867],[115.135105,31.866477],[115.123515,31.844488],[115.122666,31.841223],[115.125279,31.836154],[115.125324,31.83422],[115.121751,31.82869],[115.123872,31.82184],[115.122666,31.817204],[115.120813,31.816385],[115.11561,31.81609],[115.114247,31.813773],[115.117642,31.808036],[115.118222,31.804142],[115.116369,31.797137],[115.116994,31.794627],[115.122599,31.795011],[115.12481,31.794255],[115.127914,31.789862],[115.134391,31.784162],[115.137941,31.783316],[115.143167,31.783342],[115.14578,31.78069],[115.144663,31.774234],[115.146986,31.770967],[115.151117,31.768213],[115.15306,31.767982],[115.165968,31.764536],[115.173114,31.760307],[115.175637,31.758014],[115.177625,31.754631],[115.18064,31.745046],[115.184526,31.742534],[115.18629,31.739894],[115.1862,31.737472],[115.179412,31.727885],[115.175392,31.724027],[115.170702,31.722258],[115.169787,31.719413],[115.167352,31.715888],[115.164896,31.710298],[115.164583,31.707529],[115.163735,31.700952],[115.161278,31.696901],[115.160541,31.692849],[115.16273,31.687502],[115.166727,31.683566],[115.164874,31.680013],[115.167062,31.678872],[115.172667,31.680116],[115.177536,31.679282],[115.181823,31.679962],[115.184637,31.682155],[115.187585,31.681103],[115.187585,31.678282],[115.192565,31.679616],[115.198706,31.680475],[115.207952,31.678436],[115.210989,31.676602],[115.211659,31.674448],[115.210855,31.669651],[115.208934,31.666381],[115.203173,31.661917],[115.202034,31.659442],[115.20248,31.651578],[115.201341,31.64841],[115.198148,31.646191],[115.192654,31.644112],[115.188478,31.643304],[115.186334,31.641701],[115.182114,31.634567],[115.180037,31.627279],[115.175258,31.619234],[115.178563,31.614101],[115.179188,31.611675],[115.177982,31.608801],[115.173717,31.601934]]]]}},{"type":"Feature","properties":{"adcode":411525,"name":"固始县","center":[115.667328,32.183074],"centroid":[115.703582,32.130843],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":6,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.376021,32.247056],[115.378321,32.245934],[115.376445,32.243551],[115.378544,32.239574],[115.377316,32.236923],[115.373587,32.234501],[115.367981,32.234234],[115.367736,32.233048],[115.371108,32.231315],[115.370192,32.225094],[115.366507,32.222633],[115.365413,32.217445],[115.363426,32.21543],[115.36682,32.212613],[115.365369,32.207857],[115.36586,32.20648],[115.369768,32.202463],[115.370594,32.199632],[115.368004,32.196763],[115.370974,32.19383],[115.36845,32.18623],[115.370907,32.179585],[115.371018,32.175988],[115.36711,32.173054],[115.361996,32.172837],[115.358647,32.168105],[115.355431,32.166766],[115.354783,32.165426],[115.356324,32.161752],[115.355118,32.159941],[115.352103,32.158971],[115.351433,32.155935],[115.354091,32.154608],[115.354716,32.151444],[115.351992,32.150538],[115.349357,32.14509],[115.34958,32.140573],[115.351791,32.139132],[115.353131,32.136044],[115.352059,32.133568],[115.354627,32.129497],[115.358803,32.128183],[115.360076,32.126192],[115.361483,32.120449],[115.362532,32.119402],[115.362644,32.115931],[115.364252,32.113965],[115.364565,32.109026],[115.36356,32.105924],[115.360567,32.105605],[115.360143,32.104379],[115.362287,32.101239],[115.362711,32.098673],[115.367267,32.094512],[115.367669,32.090388],[115.37046,32.087311],[115.370751,32.084681],[115.373475,32.082957],[115.373386,32.078488],[115.376333,32.074837],[115.376936,32.069805],[115.374971,32.066025],[115.372693,32.063305],[115.372492,32.057584],[115.37343,32.053178],[115.38214,32.052143],[115.384462,32.050674],[115.38569,32.044467],[115.388281,32.040303],[115.394891,32.035269],[115.398643,32.031552],[115.402283,32.028856],[115.402953,32.024602],[115.404003,32.022967],[115.406727,32.022813],[115.408983,32.024347],[115.412824,32.028626],[115.417111,32.028103],[115.418719,32.025394],[115.422605,32.02694],[115.426312,32.025535],[115.426558,32.029674],[115.428702,32.035985],[115.428992,32.038808],[115.42763,32.040609],[115.42361,32.042742],[115.423029,32.044952],[115.426223,32.054161],[115.425017,32.061645],[115.426424,32.064582],[115.429818,32.069295],[115.430577,32.071644],[115.43051,32.077301],[115.429305,32.084234],[115.430064,32.086915],[115.43424,32.089354],[115.443731,32.092597],[115.450095,32.093465],[115.457577,32.091754],[115.460703,32.092954],[115.467425,32.097537],[115.469613,32.097716],[115.471333,32.096209],[115.471802,32.090988],[115.47408,32.088103],[115.477095,32.087209],[115.481427,32.084566],[115.487792,32.086647],[115.490382,32.086175],[115.494982,32.08283],[115.497551,32.082332],[115.502553,32.08394],[115.504674,32.081859],[115.502642,32.077914],[115.500744,32.070738],[115.502129,32.067162],[115.506483,32.068797],[115.507756,32.065502],[115.507667,32.061939],[115.506662,32.058095],[115.500498,32.054455],[115.49822,32.051913],[115.49793,32.047839],[115.499516,32.044543],[115.507511,32.035244],[115.518475,32.029738],[115.525354,32.029419],[115.534577,32.032037],[115.539758,32.033149],[115.546524,32.03601],[115.549338,32.035883],[115.554028,32.029367],[115.554832,32.025484],[115.555256,32.015326],[115.554273,32.007634],[115.556105,32.003673],[115.560638,32.002267],[115.566243,31.999494],[115.57225,31.992618],[115.573188,31.989909],[115.573032,31.986585],[115.571848,31.982904],[115.56497,31.979734],[115.564032,31.978635],[115.56497,31.972244],[115.56803,31.96883],[115.566868,31.964918],[115.567605,31.962093],[115.570509,31.959204],[115.57426,31.95937],[115.575935,31.96061],[115.57636,31.964394],[115.577789,31.967015],[115.5823,31.966644],[115.582925,31.962758],[115.584779,31.956941],[115.584064,31.952108],[115.585784,31.939308],[115.593175,31.934499],[115.59657,31.931775],[115.59552,31.923923],[115.597016,31.922068],[115.604185,31.918295],[115.606865,31.915941],[115.607311,31.912731],[115.605614,31.91126],[115.598647,31.908535],[115.594605,31.905234],[115.592282,31.90178],[115.58422,31.893861],[115.586275,31.886568],[115.585784,31.883663],[115.581317,31.880772],[115.580536,31.876126],[115.578794,31.87175],[115.574819,31.867949],[115.575399,31.862523],[115.574417,31.855125],[115.578392,31.845256],[115.577878,31.841966],[115.57464,31.834784],[115.569727,31.832505],[115.566578,31.82988],[115.566467,31.828177],[115.570308,31.815348],[115.570888,31.811621],[115.572362,31.810315],[115.576694,31.809419],[115.577789,31.807421],[115.576471,31.804629],[115.577945,31.798623],[115.580938,31.796394],[115.587481,31.795049],[115.593443,31.794896],[115.59925,31.795843],[115.601215,31.797547],[115.604855,31.80258],[115.609723,31.804014],[115.613453,31.803771],[115.618388,31.801094],[115.621425,31.798021],[115.624864,31.793],[115.624462,31.785917],[115.622229,31.782356],[115.616802,31.778449],[115.616802,31.775771],[115.621916,31.772761],[115.63411,31.768802],[115.63565,31.765599],[115.63842,31.75613],[115.644539,31.758142],[115.659613,31.760218],[115.663543,31.763306],[115.673548,31.77458],[115.676562,31.77841],[115.680805,31.779038],[115.689783,31.776553],[115.692061,31.772107],[115.697152,31.768623],[115.702646,31.768149],[115.706085,31.770083],[115.710842,31.770903],[115.716268,31.767047],[115.719439,31.765804],[115.729846,31.763293],[115.736434,31.763293],[115.737305,31.765906],[115.7317,31.767072],[115.731298,31.768764],[115.733285,31.769263],[115.734089,31.771262],[115.733062,31.773132],[115.734268,31.776027],[115.739583,31.775848],[115.740632,31.780242],[115.741995,31.782112],[115.749632,31.781459],[115.755237,31.782663],[115.763321,31.782445],[115.767319,31.787274],[115.768793,31.787659],[115.773415,31.784777],[115.784581,31.780537],[115.787216,31.780409],[115.790767,31.777411],[115.79434,31.773235],[115.800415,31.771428],[115.803206,31.771441],[115.806868,31.773094],[115.808409,31.772568],[115.807226,31.768789],[115.809861,31.765163],[115.815087,31.762383],[115.823885,31.770916],[115.827079,31.772082],[115.831031,31.77759],[115.833823,31.777501],[115.836458,31.773862],[115.838758,31.774042],[115.842644,31.777834],[115.844297,31.78242],[115.850259,31.786762],[115.85151,31.786557],[115.853743,31.782151],[115.853922,31.779089],[115.85582,31.775143],[115.858299,31.773709],[115.868192,31.776463],[115.871541,31.775387],[115.877392,31.774503],[115.885253,31.776104],[115.889117,31.779397],[115.891707,31.785007],[115.896307,31.787274],[115.898317,31.790989],[115.900796,31.792026],[115.907228,31.791719],[115.910242,31.792334],[115.91156,31.797419],[115.912141,31.804642],[115.914084,31.808164],[115.915021,31.811903],[115.913146,31.820098],[115.90687,31.825373],[115.904079,31.829394],[115.901712,31.830277],[115.896843,31.830636],[115.892958,31.833273],[115.89269,31.838804],[115.893583,31.840199],[115.894699,31.847048],[115.89528,31.857365],[115.895928,31.862855],[115.895124,31.864442],[115.895682,31.867514],[115.899121,31.87271],[115.89796,31.878916],[115.89834,31.880247],[115.903766,31.88351],[115.910577,31.894949],[115.917232,31.90998],[115.92018,31.920469],[115.918885,31.924844],[115.916138,31.927913],[115.915289,31.930919],[115.916138,31.935983],[115.915155,31.937492],[115.909014,31.943246],[115.907764,31.946699],[115.907831,31.951673],[115.908679,31.955394],[115.911359,31.958015],[115.91692,31.972819],[115.920895,31.978443],[115.923195,31.985461],[115.92123,31.98964],[115.924557,31.995596],[115.92746,31.99612],[115.9311,31.994497],[115.934338,31.998267],[115.933959,32.001347],[115.928956,32.002919],[115.929827,32.005449],[115.927594,32.007544],[115.92784,32.011659],[115.930341,32.011582],[115.929515,32.013371],[115.931056,32.014151],[115.927505,32.01548],[115.926679,32.018457],[115.92784,32.023593],[115.925182,32.023797],[115.925138,32.021945],[115.92324,32.023542],[115.923552,32.025586],[115.919555,32.02786],[115.921967,32.03228],[115.921699,32.03366],[115.925651,32.034963],[115.925138,32.036419],[115.927728,32.03633],[115.926143,32.039166],[115.926857,32.040073],[115.923865,32.043739],[115.923485,32.046051],[115.925048,32.048861],[115.922212,32.04964],[115.924981,32.055413],[115.92449,32.056435],[115.927773,32.058759],[115.935433,32.061977],[115.939631,32.065834],[115.943294,32.074326],[115.942579,32.077671],[115.932485,32.08426],[115.931324,32.086571],[115.929872,32.093375],[115.926991,32.102248],[115.926567,32.10526],[115.931391,32.109294],[115.932373,32.111591],[115.932396,32.118407],[115.935567,32.126396],[115.93914,32.138953],[115.940323,32.146775],[115.937934,32.151801],[115.939854,32.160528],[115.941931,32.165171],[115.933669,32.180427],[115.930944,32.184087],[115.925249,32.187837],[115.923351,32.191701],[115.922949,32.19457],[115.923284,32.200525],[115.922882,32.203649],[115.91922,32.21084],[115.912744,32.227605],[115.912297,32.231531],[115.912431,32.238325],[115.914709,32.254856],[115.918505,32.263891],[115.920738,32.266732],[115.921319,32.27072],[115.920091,32.273205],[115.911069,32.284174],[115.911582,32.291627],[115.910667,32.295945],[115.908255,32.299244],[115.900282,32.301397],[115.8993,32.303626],[115.900148,32.305256],[115.905575,32.308784],[115.90696,32.311599],[115.904458,32.319902],[115.906267,32.327135],[115.90457,32.341014],[115.899233,32.344973],[115.898161,32.352357],[115.899054,32.358506],[115.89825,32.362694],[115.897893,32.373601],[115.898407,32.375701],[115.899121,32.39012],[115.898809,32.392372],[115.896084,32.396978],[115.892556,32.405274],[115.892377,32.407945],[115.889295,32.413479],[115.888134,32.418568],[115.889407,32.424267],[115.884204,32.430334],[115.879358,32.432305],[115.878956,32.434595],[115.88034,32.436744],[115.88034,32.439606],[115.883199,32.438512],[115.881769,32.442276],[115.883668,32.443446],[115.883668,32.450657],[115.882707,32.456087],[115.877102,32.458312],[115.865601,32.458782],[115.863457,32.459583],[115.864351,32.4628],[115.873507,32.470619],[115.877147,32.472119],[115.8813,32.472488],[115.881836,32.483103],[115.883578,32.489255],[115.88101,32.494161],[115.874467,32.497796],[115.873172,32.50471],[115.869666,32.50546],[115.853051,32.504456],[115.845748,32.501813],[115.84452,32.504316],[115.847356,32.509578],[115.85343,32.515664],[115.856981,32.51799],[115.869978,32.523784],[115.873015,32.525842],[115.875494,32.531547],[115.875226,32.540478],[115.875896,32.542472],[115.885141,32.548341],[115.899412,32.556191],[115.904771,32.560852],[115.91022,32.566999],[115.912476,32.568129],[115.916719,32.567672],[115.921163,32.565386],[115.927036,32.566301],[115.929269,32.567228],[115.926187,32.568307],[115.920493,32.574162],[115.915423,32.576866],[115.91185,32.577577],[115.902828,32.577717],[115.899121,32.578238],[115.893717,32.577616],[115.891573,32.576244],[115.887553,32.567647],[115.882819,32.562262],[115.86377,32.539652],[115.861403,32.537391],[115.852001,32.535079],[115.845971,32.531649],[115.841773,32.527939],[115.839942,32.524788],[115.839384,32.520518],[115.839272,32.51297],[115.84088,32.50288],[115.841483,32.501215],[115.839495,32.499881],[115.83657,32.499894],[115.825449,32.502461],[115.823841,32.502245],[115.820089,32.496907],[115.816627,32.493767],[115.808968,32.489065],[115.804122,32.485467],[115.788757,32.468916],[115.78476,32.46636],[115.782683,32.465839],[115.781299,32.468458],[115.785988,32.475336],[115.787417,32.480116],[115.787038,32.48576],[115.785653,32.48937],[115.780763,32.496602],[115.771517,32.50532],[115.769842,32.505981],[115.767364,32.504265],[115.76752,32.499881],[115.766761,32.492433],[115.763589,32.485404],[115.76024,32.481997],[115.757203,32.480205],[115.750838,32.478183],[115.741972,32.476353],[115.73592,32.479416],[115.727211,32.482493],[115.719372,32.485633],[115.71303,32.48895],[115.704946,32.494835],[115.701194,32.495305],[115.69483,32.4912],[115.692105,32.487526],[115.691502,32.483179],[115.692217,32.480599],[115.699765,32.474064],[115.701239,32.470886],[115.7001,32.469005],[115.696728,32.467466],[115.679532,32.466945],[115.675892,32.466436],[115.674619,32.464186],[115.679108,32.456659],[115.681565,32.451178],[115.681766,32.444972],[115.680582,32.44],[115.674441,32.430868],[115.672766,32.420044],[115.671225,32.415388],[115.667451,32.409892],[115.664972,32.408429],[115.658764,32.407373],[115.656285,32.408734],[115.655347,32.4118],[115.656642,32.417118],[115.657804,32.428833],[115.655057,32.429736],[115.649787,32.422473],[115.645588,32.417538],[115.627142,32.405439],[115.625467,32.405045],[115.623279,32.406508],[115.620889,32.411304],[115.610706,32.419433],[115.609277,32.423987],[115.606597,32.42592],[115.604565,32.42592],[115.596592,32.423542],[115.594314,32.420323],[115.583081,32.40063],[115.58297,32.398607],[115.5846,32.388885],[115.583818,32.386328],[115.578235,32.384877],[115.575623,32.383452],[115.573903,32.376121],[115.572652,32.368078],[115.57426,32.360491],[115.573523,32.358786],[115.569392,32.357551],[115.557266,32.357335],[115.555457,32.355463],[115.556864,32.348665],[115.554631,32.347953],[115.551594,32.352268],[115.549673,32.351593],[115.547685,32.347532],[115.547864,32.3437],[115.551348,32.338557],[115.548936,32.336214],[115.550879,32.333005],[115.551348,32.329071],[115.557199,32.327492],[115.559454,32.324805],[115.55865,32.323073],[115.556261,32.322844],[115.552308,32.32464],[115.550187,32.323099],[115.55146,32.319508],[115.550611,32.318463],[115.545095,32.316515],[115.543643,32.317075],[115.542036,32.320017],[115.539735,32.321138],[115.536162,32.321036],[115.532143,32.31924],[115.528056,32.31533],[115.525644,32.315674],[115.521937,32.320259],[115.520173,32.319571],[115.520508,32.312363],[115.524929,32.309969],[115.526113,32.307842],[115.525465,32.305256],[115.521178,32.302187],[115.521155,32.298034],[115.518029,32.293856],[115.515952,32.293894],[115.512825,32.298225],[115.508962,32.296531],[115.507019,32.292073],[115.507153,32.289525],[115.509498,32.284123],[115.506439,32.278021],[115.503982,32.277244],[115.494893,32.277702],[115.485916,32.276033],[115.480913,32.277537],[115.46613,32.27918],[115.458649,32.276569],[115.448689,32.271472],[115.42562,32.258972],[115.41796,32.254588],[115.406928,32.249681],[115.400854,32.248445],[115.388929,32.247553],[115.376021,32.247056]]]]}},{"type":"Feature","properties":{"adcode":411526,"name":"潢川县","center":[115.050123,32.134024],"centroid":[115.157677,32.127372],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":7,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.376021,32.247056],[115.361728,32.249987],[115.357195,32.251453],[115.350071,32.254792],[115.343751,32.256614],[115.335399,32.256958],[115.333702,32.256487],[115.330576,32.252944],[115.32937,32.253033],[115.328007,32.257646],[115.326065,32.258488],[115.323273,32.257506],[115.321353,32.253288],[115.318248,32.255493],[115.317176,32.257952],[115.318762,32.264337],[115.317176,32.267216],[115.311326,32.272466],[115.308311,32.279015],[115.308355,32.284149],[115.312174,32.291996],[115.310254,32.297143],[115.31003,32.300149],[115.311303,32.304237],[115.318851,32.31207],[115.319968,32.315904],[115.315971,32.321125],[115.315256,32.322946],[115.316842,32.329606],[115.312487,32.336367],[115.30639,32.338073],[115.302683,32.340021],[115.297703,32.345279],[115.295157,32.350346],[115.291763,32.359537],[115.288033,32.361892],[115.282384,32.358149],[115.277806,32.356405],[115.272915,32.355807],[115.257997,32.358455],[115.249824,32.358595],[115.245692,32.357844],[115.241226,32.354254],[115.239506,32.348373],[115.240668,32.343127],[115.242722,32.339919],[115.242633,32.336851],[115.2404,32.335412],[115.235933,32.335323],[115.23035,32.340517],[115.223294,32.343904],[115.217264,32.344439],[115.215142,32.343433],[115.207081,32.337691],[115.205607,32.337245],[115.201341,32.339575],[115.201565,32.34696],[115.20114,32.348207],[115.194285,32.357322],[115.190443,32.361026],[115.185329,32.361624],[115.180528,32.359931],[115.173605,32.356813],[115.169854,32.356991],[115.167509,32.358595],[115.162261,32.363699],[115.160586,32.364526],[115.140599,32.364246],[115.138656,32.364539],[115.135887,32.366996],[115.133274,32.370878],[115.128026,32.376439],[115.122398,32.378565],[115.115565,32.378018],[115.112438,32.37537],[115.112394,32.372265],[115.114314,32.367492],[115.114605,32.364323],[115.109156,32.352739],[115.105828,32.348525],[115.102858,32.347494],[115.093255,32.34533],[115.089303,32.343242],[115.087471,32.340008],[115.087181,32.336723],[115.090509,32.328027],[115.089727,32.321176],[115.088454,32.316935],[115.08669,32.313955],[115.074318,32.300658],[115.072554,32.299448],[115.067931,32.298442],[115.064246,32.29876],[115.045443,32.301728],[115.036957,32.301817],[115.034366,32.300607],[115.028471,32.294544],[115.027935,32.293041],[115.037739,32.288633],[115.04053,32.285869],[115.040686,32.281881],[115.036957,32.278174],[115.016523,32.268694],[115.014513,32.266987],[115.007635,32.255187],[115.003325,32.249975],[114.996268,32.243041],[114.991154,32.239817],[114.986934,32.239855],[114.977443,32.243857],[114.973736,32.24401],[114.972373,32.24234],[114.967237,32.230575],[114.962949,32.227159],[114.957835,32.220963],[114.958394,32.21645],[114.956786,32.214066],[114.942873,32.211376],[114.940684,32.21042],[114.940684,32.206136],[114.93624,32.20472],[114.931082,32.206939],[114.92829,32.206837],[114.926392,32.20523],[114.923824,32.198918],[114.921367,32.198472],[114.921434,32.201609],[114.918621,32.201405],[114.913819,32.196904],[114.908996,32.194519],[114.908839,32.192377],[114.909465,32.189915],[114.907298,32.186791],[114.908862,32.185324],[114.915316,32.18489],[114.912948,32.181205],[114.914958,32.178233],[114.911876,32.175184],[114.912435,32.169547],[114.910135,32.166051],[114.906182,32.163806],[114.907589,32.160592],[114.907142,32.158678],[114.901135,32.154659],[114.899326,32.152644],[114.899326,32.14976],[114.901715,32.147157],[114.90147,32.142921],[114.902921,32.141671],[114.910269,32.139221],[114.912948,32.13723],[114.918688,32.128234],[114.922328,32.119083],[114.926236,32.113889],[114.928916,32.111783],[114.929988,32.10803],[114.93193,32.104239],[114.935749,32.099631],[114.93968,32.096809],[114.943141,32.096861],[114.944749,32.092341],[114.947473,32.091205],[114.948746,32.088728],[114.947406,32.086111],[114.949796,32.082664],[114.950622,32.078654],[114.956562,32.075488],[114.957098,32.073726],[114.960091,32.072819],[114.961766,32.070214],[114.965361,32.070137],[114.96976,32.067635],[114.971636,32.069767],[114.975701,32.06941],[114.980256,32.070176],[114.985504,32.069141],[114.988743,32.071823],[114.993678,32.071274],[114.996268,32.072359],[115.003638,32.072193],[115.00739,32.072819],[115.008997,32.071683],[115.008573,32.065527],[115.003147,32.062245],[114.99964,32.057686],[114.9981,32.054659],[114.997742,32.051875],[114.998591,32.048937],[115.002968,32.043483],[115.003348,32.038719],[115.002119,32.034707],[115.000221,32.033328],[114.992316,32.030389],[114.986264,32.0309],[114.98144,32.030172],[114.981083,32.028039],[114.986018,32.024398],[114.987224,32.019402],[114.986219,32.017524],[114.979698,32.015377],[114.978381,32.01341],[114.97818,32.010075],[114.979274,32.00835],[114.983919,32.004797],[114.989971,32.002982],[114.995933,32.003149],[114.998368,32.002676],[115.002789,31.999187],[114.99897,31.994497],[114.998167,31.991506],[114.998658,31.988937],[114.99772,31.98624],[114.994504,31.981664],[114.993231,31.975107],[114.991824,31.971809],[114.992159,31.969546],[114.994683,31.964151],[114.995755,31.956902],[115.00002,31.952044],[115.004084,31.94606],[115.01036,31.943924],[115.013352,31.940983],[115.015161,31.938016],[115.019315,31.93386],[115.025233,31.93019],[115.03162,31.925406],[115.035126,31.9246],[115.03852,31.92501],[115.041691,31.923232],[115.04446,31.91983],[115.046984,31.918244],[115.052031,31.91809],[115.058105,31.919561],[115.061634,31.922567],[115.064715,31.928156],[115.066993,31.928553],[115.069427,31.927478],[115.072308,31.924741],[115.074273,31.918487],[115.078338,31.916235],[115.083675,31.909379],[115.089638,31.907],[115.091424,31.904774],[115.095064,31.896138],[115.099218,31.890842],[115.107056,31.885301],[115.108307,31.882166],[115.109111,31.876933],[115.112394,31.872799],[115.115498,31.871072],[115.124721,31.871392],[115.135061,31.871328],[115.140934,31.870867],[115.143547,31.873797],[115.141403,31.876357],[115.141537,31.878545],[115.147611,31.890778],[115.150871,31.895703],[115.158442,31.902318],[115.168313,31.909149],[115.171461,31.909801],[115.174365,31.907345],[115.174097,31.899861],[115.180037,31.896497],[115.18256,31.897802],[115.18964,31.897495],[115.193123,31.898147],[115.198416,31.901512],[115.206634,31.904147],[115.212507,31.90329],[115.214495,31.90178],[115.216281,31.902203],[115.220502,31.906808],[115.222333,31.903866],[115.21684,31.894015],[115.219363,31.891865],[115.222802,31.890714],[115.229569,31.892863],[115.233923,31.892044],[115.236067,31.888705],[115.234638,31.887272],[115.231601,31.88992],[115.227916,31.889076],[115.227001,31.884495],[115.229077,31.880464],[115.232695,31.876958],[115.240779,31.87532],[115.248037,31.877381],[115.248662,31.879402],[115.245357,31.886696],[115.244531,31.889588],[115.244598,31.893771],[115.248461,31.896765],[115.25199,31.898006],[115.252325,31.899222],[115.248328,31.904953],[115.248395,31.907115],[115.2517,31.907435],[115.257863,31.898326],[115.262441,31.898121],[115.266037,31.899976],[115.269945,31.904416],[115.278877,31.91227],[115.283478,31.91722],[115.286895,31.917911],[115.289351,31.915634],[115.292522,31.91534],[115.294443,31.918116],[115.295604,31.922298],[115.294934,31.925317],[115.288413,31.928975],[115.285019,31.933029],[115.284505,31.937415],[115.287832,31.93886],[115.28944,31.940689],[115.290512,31.947198],[115.294309,31.949525],[115.295046,31.950957],[115.293304,31.958104],[115.294331,31.964305],[115.296363,31.968115],[115.295604,31.970569],[115.29652,31.975401],[115.29576,31.979415],[115.296497,31.981792],[115.295001,31.990407],[115.295582,31.992337],[115.299333,31.99672],[115.306212,32.002203],[115.30648,32.006279],[115.307663,32.008516],[115.30543,32.011531],[115.306949,32.015135],[115.306413,32.020143],[115.307596,32.023746],[115.306681,32.027924],[115.314564,32.039281],[115.316663,32.039434],[115.319186,32.037377],[115.324814,32.036228],[115.329459,32.038591],[115.334327,32.039115],[115.335734,32.042346],[115.340513,32.046587],[115.342188,32.049895],[115.344243,32.050074],[115.35054,32.047085],[115.358557,32.048005],[115.365838,32.046166],[115.367177,32.046945],[115.369924,32.052258],[115.37343,32.053178],[115.372492,32.057584],[115.372693,32.063305],[115.374971,32.066025],[115.376936,32.069805],[115.376333,32.074837],[115.373386,32.078488],[115.373475,32.082957],[115.370751,32.084681],[115.37046,32.087311],[115.367669,32.090388],[115.367267,32.094512],[115.362711,32.098673],[115.362287,32.101239],[115.360143,32.104379],[115.360567,32.105605],[115.36356,32.105924],[115.364565,32.109026],[115.364252,32.113965],[115.362644,32.115931],[115.362532,32.119402],[115.361483,32.120449],[115.360076,32.126192],[115.358803,32.128183],[115.354627,32.129497],[115.352059,32.133568],[115.353131,32.136044],[115.351791,32.139132],[115.34958,32.140573],[115.349357,32.14509],[115.351992,32.150538],[115.354716,32.151444],[115.354091,32.154608],[115.351433,32.155935],[115.352103,32.158971],[115.355118,32.159941],[115.356324,32.161752],[115.354783,32.165426],[115.355431,32.166766],[115.358647,32.168105],[115.361996,32.172837],[115.36711,32.173054],[115.371018,32.175988],[115.370907,32.179585],[115.36845,32.18623],[115.370974,32.19383],[115.368004,32.196763],[115.370594,32.199632],[115.369768,32.202463],[115.36586,32.20648],[115.365369,32.207857],[115.36682,32.212613],[115.363426,32.21543],[115.365413,32.217445],[115.366507,32.222633],[115.370192,32.225094],[115.371108,32.231315],[115.367736,32.233048],[115.367981,32.234234],[115.373587,32.234501],[115.377316,32.236923],[115.378544,32.239574],[115.376445,32.243551],[115.378321,32.245934],[115.376021,32.247056]]]]}},{"type":"Feature","properties":{"adcode":411527,"name":"淮滨县","center":[115.415451,32.452639],"centroid":[115.318362,32.440221],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":8,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.596592,32.423542],[115.591969,32.422155],[115.586096,32.419217],[115.580848,32.41507],[115.571781,32.408645],[115.566199,32.403772],[115.563854,32.402996],[115.552531,32.408989],[115.553224,32.412614],[115.555479,32.412945],[115.560392,32.410579],[115.564256,32.411393],[115.569102,32.414624],[115.570888,32.419077],[115.567605,32.421646],[115.556283,32.423465],[115.549941,32.423046],[115.547306,32.424737],[115.541232,32.435701],[115.53748,32.438957],[115.534867,32.439402],[115.529932,32.438563],[115.526359,32.439453],[115.52321,32.442022],[115.524103,32.447846],[115.522317,32.449194],[115.515595,32.450619],[115.513518,32.453798],[115.513473,32.458617],[115.510414,32.464033],[115.505322,32.47648],[115.502888,32.483078],[115.496702,32.493386],[115.49036,32.496335],[115.488573,32.499728],[115.490203,32.503503],[115.489154,32.504265],[115.484955,32.50391],[115.484218,32.505956],[115.48663,32.50898],[115.486541,32.511496],[115.485045,32.512272],[115.480065,32.51109],[115.477631,32.511814],[115.477072,32.514241],[115.477765,32.51987],[115.474884,32.521662],[115.469948,32.520074],[115.465728,32.520124],[115.449224,32.52738],[115.443776,32.530962],[115.438974,32.532576],[115.437679,32.534367],[115.438416,32.536273],[115.441699,32.537442],[115.443709,32.543298],[115.442972,32.546131],[115.441029,32.54829],[115.438081,32.548049],[115.437009,32.545966],[115.434642,32.545204],[115.433972,32.549662],[115.431649,32.552317],[115.426379,32.550208],[115.423029,32.55064],[115.418049,32.552952],[115.415883,32.552253],[115.414298,32.549675],[115.41001,32.548087],[115.408893,32.550005],[115.410546,32.556026],[115.412801,32.559798],[115.412399,32.563138],[115.412935,32.567507],[115.411528,32.571279],[115.411573,32.574771],[115.408335,32.577158],[115.403243,32.576676],[115.400965,32.57392],[115.394981,32.571812],[115.393641,32.570657],[115.391943,32.566326],[115.389197,32.566745],[115.389867,32.569958],[115.388393,32.570834],[115.371778,32.568358],[115.351255,32.564764],[115.329593,32.561208],[115.322893,32.564192],[115.320482,32.562656],[115.324055,32.558083],[115.324725,32.55595],[115.322581,32.554286],[115.31233,32.552063],[115.30744,32.552292],[115.302237,32.555429],[115.297145,32.560535],[115.296676,32.563113],[115.301165,32.568866],[115.306502,32.567939],[115.310321,32.569463],[115.310857,32.570555],[115.300964,32.572346],[115.298485,32.57326],[115.297591,32.575939],[115.301857,32.578644],[115.305542,32.583177],[115.305296,32.584637],[115.30246,32.587774],[115.299378,32.588129],[115.298462,32.583838],[115.294845,32.581069],[115.292031,32.581362],[115.290758,32.58305],[115.290691,32.586771],[115.289195,32.589869],[115.282562,32.591291],[115.280284,32.589881],[115.282183,32.588167],[115.281624,32.585183],[115.278743,32.583279],[115.272066,32.580727],[115.26722,32.57806],[115.26454,32.578517],[115.254737,32.584993],[115.254424,32.586961],[115.260364,32.587824],[115.261972,32.589856],[115.261302,32.591659],[115.257417,32.594731],[115.254781,32.595214],[115.250538,32.592687],[115.245,32.593703],[115.241985,32.592598],[115.239372,32.588116],[115.234303,32.585539],[115.232695,32.584015],[115.231288,32.580447],[115.229792,32.579089],[115.225929,32.57886],[115.223651,32.581476],[115.229144,32.584866],[115.230976,32.588777],[115.229479,32.590592],[115.221261,32.589843],[115.217889,32.58738],[115.214294,32.587456],[115.212128,32.588485],[115.210855,32.591862],[115.208331,32.592852],[115.201118,32.591811],[115.198528,32.593779],[115.197456,32.598591],[115.192252,32.60231],[115.188099,32.604329],[115.178943,32.605751],[115.175347,32.605357],[115.172868,32.603859],[115.167509,32.599035],[115.155383,32.591367],[115.1521,32.590008],[115.145646,32.580143],[115.140197,32.58013],[115.137562,32.583038],[115.137048,32.587037],[115.139817,32.594122],[115.140331,32.599213],[115.13879,32.601828],[115.136132,32.603199],[115.124766,32.607566],[115.122957,32.607566],[115.11686,32.605675],[115.111567,32.607439],[115.099553,32.619866],[115.098459,32.626808],[115.098883,32.631085],[115.098034,32.633763],[115.094305,32.636707],[115.090576,32.637024],[115.076127,32.63309],[115.074675,32.617797],[115.072063,32.615639],[115.06648,32.618368],[115.063018,32.618038],[115.061366,32.616731],[115.058619,32.611717],[115.054175,32.60994],[115.049909,32.609737],[115.047475,32.608759],[115.041446,32.602336],[115.02827,32.593043],[115.023379,32.589983],[115.022218,32.587342],[115.02396,32.585082],[115.032133,32.58531],[115.036689,32.583393],[115.041781,32.584117],[115.04848,32.582669],[115.052522,32.583177],[115.059021,32.585222],[115.063956,32.584345],[115.073514,32.57585],[115.076484,32.569298],[115.074028,32.564688],[115.074966,32.558871],[115.073983,32.557385],[115.069606,32.55595],[115.066413,32.552419],[115.066748,32.546245],[115.067819,32.545737],[115.066859,32.541062],[115.064403,32.542256],[115.061768,32.541647],[115.062147,32.544848],[115.057748,32.545978],[115.054867,32.550577],[115.049887,32.550602],[115.049753,32.547554],[115.046694,32.546614],[115.04618,32.542511],[115.047855,32.542155],[115.047431,32.537925],[115.045867,32.534964],[115.042629,32.531344],[115.043366,32.527888],[115.04513,32.526871],[115.052678,32.525486],[115.055716,32.523555],[115.061075,32.523187],[115.066346,32.521738],[115.078963,32.514],[115.082134,32.512665],[115.085685,32.512729],[115.090174,32.514101],[115.092608,32.513606],[115.096873,32.503732],[115.09828,32.502613],[115.102434,32.501927],[115.103305,32.500669],[115.103126,32.497059],[115.105292,32.493335],[115.105516,32.485671],[115.106922,32.483421],[115.11217,32.481031],[115.111679,32.477993],[115.119361,32.461656],[115.122778,32.457523],[115.121192,32.453086],[115.121572,32.448724],[115.119384,32.445786],[115.124051,32.442543],[115.124297,32.440547],[115.120768,32.439288],[115.116815,32.439288],[115.116927,32.437812],[115.121818,32.435638],[115.121572,32.434099],[115.117195,32.434531],[115.115587,32.432356],[115.117552,32.429545],[115.124096,32.430639],[115.126641,32.429736],[115.127512,32.427599],[115.121996,32.426327],[115.120701,32.423809],[115.124029,32.416494],[115.123269,32.413988],[115.119875,32.413289],[115.119026,32.410757],[115.121505,32.406902],[115.122599,32.403327],[115.129366,32.397894],[115.129433,32.396584],[115.126597,32.39026],[115.126619,32.388033],[115.128808,32.383401],[115.126976,32.381136],[115.123158,32.381212],[115.122398,32.378565],[115.128026,32.376439],[115.133274,32.370878],[115.135887,32.366996],[115.138656,32.364539],[115.140599,32.364246],[115.160586,32.364526],[115.162261,32.363699],[115.167509,32.358595],[115.169854,32.356991],[115.173605,32.356813],[115.180528,32.359931],[115.185329,32.361624],[115.190443,32.361026],[115.194285,32.357322],[115.20114,32.348207],[115.201565,32.34696],[115.201341,32.339575],[115.205607,32.337245],[115.207081,32.337691],[115.215142,32.343433],[115.217264,32.344439],[115.223294,32.343904],[115.23035,32.340517],[115.235933,32.335323],[115.2404,32.335412],[115.242633,32.336851],[115.242722,32.339919],[115.240668,32.343127],[115.239506,32.348373],[115.241226,32.354254],[115.245692,32.357844],[115.249824,32.358595],[115.257997,32.358455],[115.272915,32.355807],[115.277806,32.356405],[115.282384,32.358149],[115.288033,32.361892],[115.291763,32.359537],[115.295157,32.350346],[115.297703,32.345279],[115.302683,32.340021],[115.30639,32.338073],[115.312487,32.336367],[115.316842,32.329606],[115.315256,32.322946],[115.315971,32.321125],[115.319968,32.315904],[115.318851,32.31207],[115.311303,32.304237],[115.31003,32.300149],[115.310254,32.297143],[115.312174,32.291996],[115.308355,32.284149],[115.308311,32.279015],[115.311326,32.272466],[115.317176,32.267216],[115.318762,32.264337],[115.317176,32.257952],[115.318248,32.255493],[115.321353,32.253288],[115.323273,32.257506],[115.326065,32.258488],[115.328007,32.257646],[115.32937,32.253033],[115.330576,32.252944],[115.333702,32.256487],[115.335399,32.256958],[115.343751,32.256614],[115.350071,32.254792],[115.357195,32.251453],[115.361728,32.249987],[115.376021,32.247056],[115.388929,32.247553],[115.400854,32.248445],[115.406928,32.249681],[115.41796,32.254588],[115.42562,32.258972],[115.448689,32.271472],[115.458649,32.276569],[115.46613,32.27918],[115.480913,32.277537],[115.485916,32.276033],[115.494893,32.277702],[115.503982,32.277244],[115.506439,32.278021],[115.509498,32.284123],[115.507153,32.289525],[115.507019,32.292073],[115.508962,32.296531],[115.512825,32.298225],[115.515952,32.293894],[115.518029,32.293856],[115.521155,32.298034],[115.521178,32.302187],[115.525465,32.305256],[115.526113,32.307842],[115.524929,32.309969],[115.520508,32.312363],[115.520173,32.319571],[115.521937,32.320259],[115.525644,32.315674],[115.528056,32.31533],[115.532143,32.31924],[115.536162,32.321036],[115.539735,32.321138],[115.542036,32.320017],[115.543643,32.317075],[115.545095,32.316515],[115.550611,32.318463],[115.55146,32.319508],[115.550187,32.323099],[115.552308,32.32464],[115.556261,32.322844],[115.55865,32.323073],[115.559454,32.324805],[115.557199,32.327492],[115.551348,32.329071],[115.550879,32.333005],[115.548936,32.336214],[115.551348,32.338557],[115.547864,32.3437],[115.547685,32.347532],[115.549673,32.351593],[115.551594,32.352268],[115.554631,32.347953],[115.556864,32.348665],[115.555457,32.355463],[115.557266,32.357335],[115.569392,32.357551],[115.573523,32.358786],[115.57426,32.360491],[115.572652,32.368078],[115.573903,32.376121],[115.575623,32.383452],[115.578235,32.384877],[115.583818,32.386328],[115.5846,32.388885],[115.58297,32.398607],[115.583081,32.40063],[115.594314,32.420323],[115.596592,32.423542]]]]}},{"type":"Feature","properties":{"adcode":411528,"name":"息县","center":[114.740713,32.344744],"centroid":[114.864991,32.40574],"childrenNum":0,"level":"district","parent":{"adcode":411500},"subFeatureIndex":9,"acroutes":[100000,410000,411500]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.908839,32.192377],[114.908996,32.194519],[114.913819,32.196904],[114.918621,32.201405],[114.921434,32.201609],[114.921367,32.198472],[114.923824,32.198918],[114.926392,32.20523],[114.92829,32.206837],[114.931082,32.206939],[114.93624,32.20472],[114.940684,32.206136],[114.940684,32.21042],[114.942873,32.211376],[114.956786,32.214066],[114.958394,32.21645],[114.957835,32.220963],[114.962949,32.227159],[114.967237,32.230575],[114.972373,32.24234],[114.973736,32.24401],[114.977443,32.243857],[114.986934,32.239855],[114.991154,32.239817],[114.996268,32.243041],[115.003325,32.249975],[115.007635,32.255187],[115.014513,32.266987],[115.016523,32.268694],[115.036957,32.278174],[115.040686,32.281881],[115.04053,32.285869],[115.037739,32.288633],[115.027935,32.293041],[115.028471,32.294544],[115.034366,32.300607],[115.036957,32.301817],[115.045443,32.301728],[115.064246,32.29876],[115.067931,32.298442],[115.072554,32.299448],[115.074318,32.300658],[115.08669,32.313955],[115.088454,32.316935],[115.089727,32.321176],[115.090509,32.328027],[115.087181,32.336723],[115.087471,32.340008],[115.089303,32.343242],[115.093255,32.34533],[115.102858,32.347494],[115.105828,32.348525],[115.109156,32.352739],[115.114605,32.364323],[115.114314,32.367492],[115.112394,32.372265],[115.112438,32.37537],[115.115565,32.378018],[115.122398,32.378565],[115.123158,32.381212],[115.126976,32.381136],[115.128808,32.383401],[115.126619,32.388033],[115.126597,32.39026],[115.129433,32.396584],[115.129366,32.397894],[115.122599,32.403327],[115.121505,32.406902],[115.119026,32.410757],[115.119875,32.413289],[115.123269,32.413988],[115.124029,32.416494],[115.120701,32.423809],[115.121996,32.426327],[115.127512,32.427599],[115.126641,32.429736],[115.124096,32.430639],[115.117552,32.429545],[115.115587,32.432356],[115.117195,32.434531],[115.121572,32.434099],[115.121818,32.435638],[115.116927,32.437812],[115.116815,32.439288],[115.120768,32.439288],[115.124297,32.440547],[115.124051,32.442543],[115.119384,32.445786],[115.121572,32.448724],[115.121192,32.453086],[115.122778,32.457523],[115.119361,32.461656],[115.111679,32.477993],[115.11217,32.481031],[115.106922,32.483421],[115.105516,32.485671],[115.105292,32.493335],[115.103126,32.497059],[115.103305,32.500669],[115.102434,32.501927],[115.09828,32.502613],[115.096873,32.503732],[115.092608,32.513606],[115.090174,32.514101],[115.085685,32.512729],[115.082134,32.512665],[115.078963,32.514],[115.066346,32.521738],[115.061075,32.523187],[115.055716,32.523555],[115.052678,32.525486],[115.04513,32.526871],[115.043366,32.527888],[115.042629,32.531344],[115.045867,32.534964],[115.047431,32.537925],[115.047855,32.542155],[115.04618,32.542511],[115.046694,32.546614],[115.049753,32.547554],[115.049887,32.550602],[115.054867,32.550577],[115.057748,32.545978],[115.062147,32.544848],[115.061768,32.541647],[115.064403,32.542256],[115.066859,32.541062],[115.067819,32.545737],[115.066748,32.546245],[115.066413,32.552419],[115.069606,32.55595],[115.073983,32.557385],[115.074966,32.558871],[115.074028,32.564688],[115.076484,32.569298],[115.073514,32.57585],[115.063956,32.584345],[115.059021,32.585222],[115.052522,32.583177],[115.04848,32.582669],[115.041781,32.584117],[115.036689,32.583393],[115.032133,32.58531],[115.02396,32.585082],[115.022218,32.587342],[115.023379,32.589983],[115.02827,32.593043],[115.041446,32.602336],[115.047475,32.608759],[115.049909,32.609737],[115.054175,32.60994],[115.058619,32.611717],[115.061366,32.616731],[115.063018,32.618038],[115.06648,32.618368],[115.072063,32.615639],[115.074675,32.617797],[115.076127,32.63309],[115.065184,32.629054],[115.06045,32.630285],[115.053907,32.636872],[115.050043,32.640146],[115.04513,32.642607],[115.03948,32.644625],[115.030101,32.648622],[115.024607,32.649129],[115.017305,32.650741],[115.012459,32.652822],[114.985482,32.659343],[114.957813,32.659965],[114.955446,32.659495],[114.95022,32.656615],[114.933583,32.649332],[114.929385,32.648076],[114.923221,32.647975],[114.91938,32.648888],[114.91402,32.652555],[114.911072,32.653393],[114.906628,32.652352],[114.901313,32.648965],[114.901045,32.64578],[114.902944,32.63974],[114.901782,32.634753],[114.897003,32.628052],[114.894681,32.623572],[114.893497,32.619701],[114.891666,32.617505],[114.884855,32.616236],[114.882354,32.616401],[114.876123,32.618368],[114.871389,32.622138],[114.869357,32.623051],[114.862836,32.624143],[114.859977,32.623153],[114.856561,32.619244],[114.850017,32.621148],[114.841487,32.622087],[114.832643,32.621985],[114.822371,32.622861],[114.820115,32.622544],[114.816855,32.620361],[114.815381,32.617568],[114.814755,32.612948],[114.813773,32.611146],[114.810803,32.6098],[114.806158,32.609483],[114.798073,32.613303],[114.794009,32.613672],[114.790458,32.610447],[114.788984,32.607185],[114.789118,32.594097],[114.79019,32.587418],[114.791329,32.584155],[114.794076,32.583266],[114.798386,32.584498],[114.802674,32.583419],[114.80781,32.575736],[114.810155,32.569031],[114.810356,32.562173],[114.808882,32.558896],[114.799905,32.552152],[114.795438,32.551923],[114.788984,32.548265],[114.785813,32.54561],[114.783089,32.541507],[114.781101,32.535536],[114.782017,32.532817],[114.784764,32.529273],[114.785411,32.525398],[114.786841,32.52386],[114.793518,32.521738],[114.795126,32.518066],[114.794433,32.512704],[114.789699,32.50823],[114.780677,32.507379],[114.774044,32.508701],[114.761583,32.516262],[114.759707,32.522323],[114.757273,32.524038],[114.752293,32.523962],[114.740614,32.518079],[114.736058,32.51691],[114.730542,32.518269],[114.729515,32.519337],[114.727192,32.527672],[114.724535,32.541494],[114.721743,32.544911],[114.717076,32.545],[114.713034,32.543717],[114.704459,32.538852],[114.702136,32.53513],[114.702091,32.533376],[114.704258,32.525194],[114.703923,32.519972],[114.701935,32.517367],[114.692824,32.5148],[114.684516,32.515143],[114.676678,32.514991],[114.672971,32.517532],[114.669286,32.523797],[114.66607,32.527176],[114.664373,32.527964],[114.658142,32.528434],[114.650326,32.527824],[114.644006,32.526274],[114.642019,32.525232],[114.634783,32.519044],[114.632773,32.517774],[114.615757,32.509908],[114.612295,32.509209],[114.605953,32.513174],[114.598695,32.513212],[114.590678,32.513962],[114.583867,32.514127],[114.574018,32.509539],[114.57049,32.507354],[114.569507,32.49922],[114.569552,32.495115],[114.573326,32.491454],[114.574755,32.486344],[114.571741,32.479734],[114.570468,32.475832],[114.569932,32.470454],[114.57154,32.46678],[114.581812,32.46144],[114.584313,32.459011],[114.585653,32.455146],[114.584849,32.450937],[114.582929,32.446664],[114.581321,32.445201],[114.576319,32.443497],[114.573974,32.442047],[114.571361,32.439021],[114.5702,32.434086],[114.574443,32.426734],[114.57652,32.425742],[114.588534,32.423414],[114.594519,32.421913],[114.603608,32.418339],[114.62431,32.406686],[114.634672,32.399803],[114.639227,32.39526],[114.647736,32.3876],[114.646641,32.383604],[114.646686,32.378667],[114.644565,32.375892],[114.641215,32.37406],[114.63523,32.372214],[114.623729,32.37061],[114.621183,32.368803],[114.620156,32.363381],[114.623349,32.355896],[114.623349,32.352548],[114.610732,32.349989],[114.60794,32.347036],[114.608342,32.339626],[114.60803,32.337029],[114.602134,32.328905],[114.595591,32.326193],[114.592889,32.321329],[114.589606,32.320055],[114.57911,32.31966],[114.576475,32.318871],[114.575984,32.3164],[114.582527,32.308453],[114.605261,32.305243],[114.609079,32.304301],[114.612116,32.297665],[114.614729,32.296888],[114.616404,32.29783],[114.62364,32.304619],[114.633175,32.312834],[114.636324,32.313293],[114.645659,32.307893],[114.654368,32.302225],[114.659036,32.300136],[114.661269,32.300276],[114.676008,32.309956],[114.680296,32.309548],[114.684293,32.306377],[114.685454,32.302072],[114.683065,32.293168],[114.680854,32.28699],[114.68168,32.284123],[114.683846,32.283143],[114.692868,32.282429],[114.69767,32.283869],[114.707384,32.290187],[114.709707,32.290595],[114.709372,32.276836],[114.707585,32.272988],[114.704436,32.270759],[114.695682,32.265942],[114.694744,32.264464],[114.695392,32.261826],[114.703945,32.255327],[114.705262,32.251606],[114.699613,32.241703],[114.700774,32.238045],[114.710153,32.233877],[114.713704,32.230563],[114.714776,32.224418],[114.712721,32.221971],[114.703119,32.217891],[114.701578,32.216425],[114.698474,32.208061],[114.694432,32.20384],[114.684382,32.198447],[114.682886,32.195348],[114.684606,32.189494],[114.708188,32.189035],[114.712409,32.187161],[114.713168,32.181141],[114.715133,32.17961],[114.723485,32.178998],[114.729091,32.180427],[114.739341,32.187263],[114.742512,32.186714],[114.750015,32.177468],[114.750194,32.175937],[114.75466,32.169024],[114.756603,32.167455],[114.757184,32.16512],[114.762968,32.166],[114.763437,32.16822],[114.767122,32.169049],[114.769109,32.166485],[114.769444,32.1641],[114.766876,32.163513],[114.766094,32.159877],[114.767367,32.158282],[114.770315,32.158091],[114.774848,32.156713],[114.775987,32.154404],[114.781593,32.149569],[114.783759,32.149837],[114.785523,32.147974],[114.790659,32.14777],[114.793585,32.146762],[114.795617,32.144937],[114.800977,32.141952],[114.804349,32.138238],[114.80953,32.135916],[114.81719,32.136758],[114.824246,32.13561],[114.82869,32.137958],[114.829963,32.139553],[114.832531,32.139489],[114.835993,32.141479],[114.838829,32.139846],[114.844077,32.142194],[114.850509,32.147515],[114.855243,32.152809],[114.856762,32.157747],[114.860134,32.15767],[114.862501,32.161969],[114.865605,32.163564],[114.870607,32.16734],[114.87724,32.168041],[114.882063,32.170286],[114.885614,32.170325],[114.892604,32.176741],[114.895038,32.175784],[114.898723,32.177161],[114.898857,32.180108],[114.900911,32.182888],[114.905378,32.187288],[114.908839,32.192377]]]]}}]}
index.vue
<template>
<div :id="id" :class="className" :style="{ height: height, width: width }" />
</template>
<script>
import tdTheme from './theme.json' // 引入默认主题
export default {
name: 'echart',
props: {
className: {
type: String,
default: 'chart'
},
id: {
type: String,
default: 'chart'
},
width: {
type: String,
default: '100%'
},
height: {
type: String,
default: '2.5rem'
},
options: {
type: Object,
default: ()=>({})
}
},
data () {
return {
chart: null
}
},
watch: {
options: {
handler (options) {
// 设置true清空echart缓存
this.chart.setOption(options, true)
},
deep: true
}
},
mounted () {
this.$echarts.registerTheme('tdTheme', tdTheme); // 覆盖默认主题
this.initChart();
},
beforeDestroy () {
this.chart.dispose()
this.chart = null
},
methods: {
initChart () {
// 初始化echart
this.chart = this.$echarts.init(this.$el, 'tdTheme')
this.chart.setOption(this.options, true)
}
}
}
</script>
效果展示:
中间的图表可以根据对应的json文件转换