diff --git a/src/components/dialog/angleDialog.vue b/src/components/dialog/angleDialog.vue
index 7b9dd33..0d8ab04 100644
--- a/src/components/dialog/angleDialog.vue
+++ b/src/components/dialog/angleDialog.vue
@@ -124,7 +124,14 @@ export default {
async getChartsData(devId) {
this.desHander()
let res = await getTowerDevAttributeRecordByDevice({devId})
- this.generateCharts(res.data.slice(0,9))
+ let arr = []
+ res.data.forEach(item=>{
+ if(item.jcName=="角度Y"){
+ arr.push(item)
+ }
+ })
+ console.log(arr)
+ this.generateCharts(arr.slice(0,9))
},
//打开时触发
openChart() {
@@ -153,6 +160,16 @@ export default {
// 倾角图表
let tempOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '倾角',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
tooltip: {
trigger: 'axis',
axisPointer: {
diff --git a/src/components/dialog/dipDialog.vue b/src/components/dialog/dipDialog.vue
index 8519d73..dffea44 100644
--- a/src/components/dialog/dipDialog.vue
+++ b/src/components/dialog/dipDialog.vue
@@ -177,6 +177,16 @@ export default {
// 含氧量图表
let O2Option = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '含氧量',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
tooltip: {
trigger: 'axis',
axisPointer: {
@@ -234,6 +244,16 @@ export default {
O2Chart.setOption(O2Option)
// 可燃气体图表
let fireOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '可燃气体',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
@@ -285,6 +305,16 @@ export default {
fireChart.setOption(fireOption)
// 一氧化碳图表
let COOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '一氧化碳',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
@@ -340,6 +370,16 @@ export default {
COChart.setOption(COOption)
// 硫化氢图表
let H2SOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '硫化氢',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
diff --git a/src/components/dialog/envirDialog.vue b/src/components/dialog/envirDialog.vue
index 5426ca5..c2fedef 100644
--- a/src/components/dialog/envirDialog.vue
+++ b/src/components/dialog/envirDialog.vue
@@ -184,6 +184,16 @@ export default {
})
// 温度图表
let tempOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '温度',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
tooltip: {
trigger: 'axis',
axisPointer: {
@@ -241,6 +251,16 @@ export default {
tempChart.setOption(tempOption)
// 湿度图表
let wetOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '湿度',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
@@ -296,6 +316,16 @@ export default {
wetChart.setOption(wetOption)
// 噪声图表
let loudOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '噪声',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
@@ -347,6 +377,16 @@ export default {
loudChart.setOption(loudOption)
// 空气质量图表
let airOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '空气质量',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
grid: {
width: '80%',
height: '60%'
diff --git a/src/components/dialog/pullDialog.vue b/src/components/dialog/pullDialog.vue
index 69c060f..6966da9 100644
--- a/src/components/dialog/pullDialog.vue
+++ b/src/components/dialog/pullDialog.vue
@@ -69,8 +69,8 @@ import {
queryEnvironmentInfoByIdApi,
getTowerDevAttributeRecordByDevice,
queryWarnInfoByIdApi
-} from '@/api/substation/substation'
-import * as echarts from 'echarts'
+} from '@/api/substation/substation';
+import * as echarts from 'echarts';
export default {
name: 'pullDialog',
components: {},
@@ -125,10 +125,15 @@ export default {
//获取echart数据
async getChartsData(devId) {
this.desHander()
- let res = await getTowerDevAttributeRecordByDevice({devId})
- // console.log(res)
-
- this.generateCharts(res.data.slice(0,9))
+ let res = await getTowerDevAttributeRecordByDevice({devId})
+ let arr = []
+ res.data.forEach(item=>{
+ if(item.jcName=="拉力"){
+ arr.push(item)
+ }
+ })
+ console.log(arr)
+ this.generateCharts(arr.slice(0,9))
},
//打开时触发
openChart() {
@@ -148,14 +153,24 @@ export default {
//渲染echart
generateCharts(list) {
console.log(list)
- let tempArr = list.map(item => {
+ let pullArr = list.map(item => {
return Number(item.jcValue)
})
- let tempXList = list.map(item => {
+ let pullXList = list.map(item => {
return item.xtime
})
// 拉力图表
- let tempOption = {
+ let pullOption = {
+ title: {
+ top: 0,
+ left: 0,
+ text: '拉力',
+ // subtext: '',
+ textStyle: {
+ color: '#000',
+ fontSize: 16,
+ }
+ },
tooltip: {
trigger: 'axis',
axisPointer: {
@@ -174,7 +189,7 @@ export default {
xAxis: [
{
type: 'category',
- data: tempXList,
+ data: pullXList,
axisTick: {
alignWithLabel: true
}
@@ -183,7 +198,7 @@ export default {
yAxis: [
{
type: 'value',
- name: '°'
+ name: 'N'
}
],
series: [
@@ -191,7 +206,7 @@ export default {
name: '拉力',
type: 'bar',
barWidth: '40%',
- data: tempArr,
+ data: pullArr,
itemStyle:{
// 设置柱状渐变色
color: new echarts.graphic.LinearGradient(0, 0, 1, 1, [
@@ -209,9 +224,8 @@ export default {
}
]
};
- let tempChart = echarts.init(document.querySelector('#pullWetChart'))
- tempChart.dispose()
- tempChart.setOption(tempOption)
+ let pullChart = echarts.init(document.querySelector('#pullWetChart'))
+ pullChart.setOption(pullOption)
},
// 销毁实例
@@ -220,7 +234,7 @@ export default {
myChart.dispose();
},
closeDialog() {
- echarts.init(document.getElementById('#pullWetChart')).dispose()
+ // echarts.init(document.getElementById('#pullWetChart')).dispose()
this.$emit('closeDialog')
}
},
diff --git a/src/components/dialog/tableDialog.vue b/src/components/dialog/tableDialog.vue
index 50bc91d..b189eaa 100644
--- a/src/components/dialog/tableDialog.vue
+++ b/src/components/dialog/tableDialog.vue
@@ -48,12 +48,12 @@
v-loading="loading"
:row-style="rowStyle"
>
-
+
+
+
+ {{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}
+
+
+
+
+
+
+

+
组塔监测
+

+
+
+
+
+
{{proData.proName}}
+
{{ item.label }}
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/home/commonDialog.vue b/src/components/home/commonDialog.vue
index 6521c22..ebd163b 100644
--- a/src/components/home/commonDialog.vue
+++ b/src/components/home/commonDialog.vue
@@ -112,12 +112,12 @@
'linear-gradient(to bottom, #A0C9E8, #DDECFB)',
}"
>
-
+
+
+
+ {{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}
+
+
+
+
+
@@ -196,6 +203,7 @@ import EnvirDialog from '@/components/dialog/envirDialog.vue'
import DipDialog from '@/components/dialog/dipDialog.vue'
import PullDialog from '@/components/dialog/pullDialog.vue'
import AngleDialog from '@/components/dialog/angleDialog.vue'
+import WireDialog from '@/components/dialog/wireDialog.vue'
export default {
name: 'commonDialog',
components: {
@@ -203,7 +211,8 @@ export default {
EnvirDialog,
DipDialog,
PullDialog,
- AngleDialog
+ AngleDialog,
+ WireDialog
},
data() {
return {
@@ -228,6 +237,8 @@ export default {
angleData:{},
pullOpen: false,
pullData:{},
+ wireOpen: false,
+ wireData:{},
proTypeRange: [
{ label: '变电工程', value: '1' },
{ label: '线路工程', value: '2' },
@@ -442,10 +453,15 @@ export default {
},
async getTableList(func, param) {
this.loading = true
+ // console.log(this.queryParams.date)
if (this.queryParams.date) {
+ // console.log(this.queryParams.date)
this.queryParams.startTime = this.queryParams.date[0]
this.queryParams.endTime = this.queryParams.date[1]
- delete this.queryParams.date
+ // delete this.queryParams.date
+ }else{
+ this.queryParams.startTime = undefined
+ this.queryParams.endTime = undefined
}
if(param) {
Object.assign(this.queryParams, param)
@@ -494,6 +510,9 @@ export default {
} else if(v.devTypeName === '组塔拉力监测类') {
this.pullOpen = true;
this.pullData=v;
+ } else if(v.devTypeName === '牵张引线拉力监测类') {
+ this.wireOpen = true;
+ this.wireData=v;
}
}
},
diff --git a/src/components/home/provinceMap.vue b/src/components/home/provinceMap.vue
index 3f0cd89..a576581 100644
--- a/src/components/home/provinceMap.vue
+++ b/src/components/home/provinceMap.vue
@@ -55,6 +55,10 @@ let xizangJson = require('@/untils/mapJson/xizang.json')
let guangxiJson = require('@/untils/mapJson/guangxi.json')
let ningxiaJson = require('@/untils/mapJson/ningxia.json')
let qinghaiJson = require('@/untils/mapJson/qinghai.json')
+let gansuJson = require('@/untils/mapJson/gansu.json')
+let taiwanJson = require('@/untils/mapJson/taiwan.json')
+let xianggangJson = require('@/untils/mapJson/xianggang.json')
+let aomenJson = require('@/untils/mapJson/aomen.json')
export default {
name: 'centerTopPage',
@@ -117,6 +121,10 @@ export default {
{ id: 28, json: guangxiJson },
{ id: 29, json: ningxiaJson },
{ id: 30, json: qinghaiJson },
+ { id: 31, json: gansuJson },
+ { id: 32, json: taiwanJson },
+ { id: 33, json: xianggangJson },
+ { id: 34, json: aomenJson },
]
}
},
diff --git a/src/components/substation/manDetect.vue b/src/components/substation/manDetect.vue
index 7e079d9..563f683 100644
--- a/src/components/substation/manDetect.vue
+++ b/src/components/substation/manDetect.vue
@@ -243,22 +243,22 @@ export default {
this.map.addOverlay(marker)
})
- this_.map.addEventListener('click', function (e) {
- console.log(e)
- var pt = e.latlng
- geoc.getLocation(pt, function (res) {
- console.log(res, 'res')
- /* var addComp = res.addressComponents
- this_.form.detailsAddress = `${addComp.city}${addComp.district}${addComp.street}${addComp.streetNumber}`
- this_.form.province = `${addComp.province}`
- this_.form.longitude = e.latlng.lng
- this_.form.latitude = e.latlng.lat */
- })
- this_.map.clearOverlays()
- point = new BMapGL.Point(e.latlng.lng, e.latlng.lat)
- let marker = new BMapGL.Marker(point) // 创建标点
- this_.map.addOverlay(marker)
- })
+ // this_.map.addEventListener('click', function (e) {
+ // console.log(e)
+ // var pt = e.latlng
+ // geoc.getLocation(pt, function (res) {
+ // console.log(res, 'res')
+ // /* var addComp = res.addressComponents
+ // this_.form.detailsAddress = `${addComp.city}${addComp.district}${addComp.street}${addComp.streetNumber}`
+ // this_.form.province = `${addComp.province}`
+ // this_.form.longitude = e.latlng.lng
+ // this_.form.latitude = e.latlng.lat */
+ // })
+ // this_.map.clearOverlays()
+ // point = new BMapGL.Point(e.latlng.lng, e.latlng.lat)
+ // let marker = new BMapGL.Marker(point) // 创建标点
+ // this_.map.addOverlay(marker)
+ // })
})
},
handleCrew(v) {
diff --git a/src/untils/mapJson/aomen.json b/src/untils/mapJson/aomen.json
new file mode 100644
index 0000000..04df109
--- /dev/null
+++ b/src/untils/mapJson/aomen.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":820001,"name":"花地玛堂区","center":[113.5528956,22.20787],"centroid":[113.561427,22.201995],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":0,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.540624,22.201871],[113.544801,22.202859],[113.547856,22.203799],[113.547893,22.203796],[113.548935,22.204118],[113.548947,22.204136],[113.550298,22.204553],[113.550558,22.204553],[113.550862,22.204447],[113.554611,22.201432],[113.55462,22.201399],[113.555433,22.200742],[113.555796,22.200429],[113.555852,22.200424],[113.557631,22.198945],[113.557831,22.198878],[113.558317,22.198833],[113.558679,22.198708],[113.559087,22.198448],[113.559382,22.198211],[113.559632,22.197815],[113.559718,22.197413],[113.559753,22.196629],[113.559753,22.195816],[113.559666,22.195555],[113.559538,22.195372],[113.559596,22.195368],[113.560671,22.194629],[113.560667,22.194582],[113.561481,22.194029],[113.561519,22.194054],[113.582019,22.182646],[113.575698,22.194265],[113.575472,22.199781],[113.573697,22.205587],[113.567629,22.209102],[113.567336,22.209241],[113.55711,22.213036],[113.556008,22.212463],[113.555864,22.212561],[113.555807,22.212703],[113.555932,22.214074],[113.555089,22.213974],[113.55474,22.213773],[113.554289,22.213656],[113.553843,22.213659],[113.553427,22.213776],[113.552808,22.213703],[113.552722,22.213604],[113.552132,22.213827],[113.550576,22.213861],[113.550287,22.213973],[113.549457,22.214005],[113.548496,22.213368],[113.54757,22.211492],[113.547515,22.211343],[113.547122,22.210753],[113.547063,22.210731],[113.546825,22.210294],[113.546644,22.210384],[113.54644,22.210146],[113.546291,22.210083],[113.546011,22.210094],[113.543261,22.210709],[113.541458,22.210708],[113.540832,22.210632],[113.540566,22.210549],[113.540073,22.210601],[113.538217,22.209386],[113.5391,22.206724],[113.539782,22.204445],[113.540515,22.203771],[113.540624,22.201871]]],[[[113.586501,22.201059],[113.576151,22.201038],[113.576045,22.20007],[113.576045,22.194495],[113.57635,22.193843],[113.577001,22.193432],[113.583971,22.193289],[113.586193,22.194792],[113.586499,22.195613],[113.586501,22.201059]]]]}},{"type":"Feature","properties":{"adcode":820002,"name":"花王堂区","center":[113.5489608,22.1992075],"centroid":[113.546753,22.198828],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":1,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.53954,22.194664],[113.540439,22.194489],[113.542568,22.194084],[113.542809,22.194007],[113.544126,22.193404],[113.545017,22.192899],[113.545848,22.19224],[113.545951,22.192252],[113.546852,22.192922],[113.547129,22.193039],[113.547173,22.193356],[113.548246,22.193533],[113.548575,22.193276],[113.548731,22.193482],[113.548748,22.193801],[113.548645,22.194912],[113.548722,22.195229],[113.548825,22.195338],[113.55049,22.196665],[113.550536,22.196663],[113.551511,22.197419],[113.551504,22.19745],[113.553139,22.198685],[113.55448,22.199812],[113.555433,22.200742],[113.55462,22.201399],[113.554611,22.201432],[113.550862,22.204447],[113.550558,22.204553],[113.550298,22.204553],[113.548947,22.204136],[113.548935,22.204118],[113.547893,22.203796],[113.547856,22.203799],[113.544801,22.202859],[113.540624,22.201871],[113.540764,22.199383],[113.53954,22.194664]]]]}},{"type":"Feature","properties":{"adcode":820003,"name":"望德堂区","center":[113.5501828,22.19372083],"centroid":[113.554545,22.195889],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":2,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.559538,22.195372],[113.559666,22.195555],[113.559753,22.195816],[113.559753,22.196629],[113.559718,22.197413],[113.559632,22.197815],[113.559382,22.198211],[113.559087,22.198448],[113.558679,22.198708],[113.558317,22.198833],[113.557831,22.198878],[113.557631,22.198945],[113.555852,22.200424],[113.555796,22.200429],[113.555433,22.200742],[113.55448,22.199812],[113.553139,22.198685],[113.551504,22.19745],[113.551511,22.197419],[113.550536,22.196663],[113.55049,22.196665],[113.548825,22.195338],[113.548722,22.195229],[113.548645,22.194912],[113.548748,22.193801],[113.548731,22.193482],[113.548575,22.193276],[113.549882,22.192716],[113.550012,22.192702],[113.550782,22.192859],[113.551241,22.192898],[113.5519,22.192896],[113.55299,22.192841],[113.553484,22.192765],[113.554297,22.192585],[113.555613,22.192221],[113.556316,22.191999],[113.556973,22.193012],[113.557198,22.193303],[113.558913,22.194906],[113.559538,22.195372]]]]}},{"type":"Feature","properties":{"adcode":820004,"name":"大堂区","center":[113.5536475,22.18853944],"centroid":[113.557955,22.17835],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":3,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.540985,22.161571],[113.544576,22.162559],[113.544681,22.162679],[113.544778,22.162616],[113.559694,22.166727],[113.586631,22.174165],[113.582019,22.182646],[113.561519,22.194054],[113.561481,22.194029],[113.560667,22.194582],[113.560671,22.194629],[113.559596,22.195368],[113.559538,22.195372],[113.558913,22.194906],[113.557198,22.193303],[113.556973,22.193012],[113.556316,22.191999],[113.555613,22.192221],[113.554297,22.192585],[113.553484,22.192765],[113.55299,22.192841],[113.5519,22.192896],[113.551241,22.192898],[113.550782,22.192859],[113.550012,22.192702],[113.549882,22.192716],[113.548575,22.193276],[113.548246,22.193533],[113.547173,22.193356],[113.547129,22.193039],[113.546852,22.192922],[113.545951,22.192252],[113.545848,22.19224],[113.545017,22.192899],[113.544126,22.193404],[113.542809,22.194007],[113.542568,22.194084],[113.540439,22.194489],[113.543813,22.191402],[113.544904,22.190468],[113.545826,22.189594],[113.545858,22.189537],[113.545467,22.189246],[113.544628,22.188373],[113.544516,22.188227],[113.544307,22.187732],[113.544108,22.187427],[113.543528,22.18665],[113.54332,22.186298],[113.543,22.185487],[113.542792,22.184526],[113.54274,22.184083],[113.542723,22.183006],[113.542693,22.182878],[113.542541,22.182834],[113.541053,22.182558],[113.540784,22.182467],[113.540612,22.182325],[113.540524,22.182133],[113.540334,22.181321],[113.540213,22.181147],[113.539972,22.180985],[113.539123,22.180548],[113.539001,22.180295],[113.539053,22.179656],[113.53895,22.179145],[113.538724,22.17867],[113.538499,22.178441],[113.538066,22.178252],[113.537686,22.17819],[113.537253,22.178242],[113.535557,22.178775],[113.535064,22.178014],[113.533314,22.179271],[113.53456,22.174104],[113.535723,22.172545],[113.537107,22.170402],[113.537273,22.16918],[113.540985,22.161571]]]]}},{"type":"Feature","properties":{"adcode":820005,"name":"风顺堂区","center":[113.5419278,22.18736806],"centroid":[113.539116,22.185895],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":4,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.533314,22.179271],[113.535064,22.178014],[113.535557,22.178775],[113.537253,22.178242],[113.537686,22.17819],[113.538066,22.178252],[113.538499,22.178441],[113.538724,22.17867],[113.53895,22.179145],[113.539053,22.179656],[113.539001,22.180295],[113.539123,22.180548],[113.539972,22.180985],[113.540213,22.181147],[113.540334,22.181321],[113.540524,22.182133],[113.540612,22.182325],[113.540784,22.182467],[113.541053,22.182558],[113.542541,22.182834],[113.542693,22.182878],[113.542723,22.183006],[113.54274,22.184083],[113.542792,22.184526],[113.543,22.185487],[113.54332,22.186298],[113.543528,22.18665],[113.544108,22.187427],[113.544307,22.187732],[113.544516,22.188227],[113.544628,22.188373],[113.545467,22.189246],[113.545858,22.189537],[113.545826,22.189594],[113.544904,22.190468],[113.543813,22.191402],[113.540439,22.194489],[113.53954,22.194664],[113.538742,22.191586],[113.534366,22.185627],[113.535335,22.185013],[113.534311,22.183656],[113.533508,22.181603],[113.533314,22.179271]]]]}},{"type":"Feature","properties":{"adcode":820006,"name":"嘉模堂区","center":[113.5587044,22.15375944],"centroid":[113.573356,22.157677],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":5,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.549079,22.149234],[113.551557,22.149168],[113.554042,22.149194],[113.556269,22.149081],[113.556753,22.148961],[113.55948,22.147904],[113.559811,22.147805],[113.560165,22.147866],[113.560659,22.148274],[113.560936,22.148388],[113.561672,22.148306],[113.562044,22.14832],[113.562382,22.148377],[113.563032,22.148573],[113.563335,22.148727],[113.5635,22.148868],[113.563725,22.149183],[113.563855,22.149476],[113.563968,22.149999],[113.564036,22.150455],[113.564201,22.150787],[113.564357,22.150883],[113.565528,22.151392],[113.565881,22.151391],[113.566428,22.15116],[113.566713,22.150915],[113.566852,22.150494],[113.567061,22.150276],[113.567987,22.149961],[113.568195,22.149819],[113.56835,22.149605],[113.568611,22.149024],[113.568663,22.148702],[113.568636,22.148547],[113.568481,22.148172],[113.568489,22.147816],[113.568777,22.147547],[113.569179,22.147555],[113.56939,22.147639],[113.571235,22.148645],[113.571358,22.148748],[113.571377,22.14902],[113.571106,22.149549],[113.571106,22.149712],[113.571227,22.149876],[113.571513,22.150105],[113.571981,22.150426],[113.573593,22.151359],[113.573965,22.151521],[113.574199,22.151531],[113.574502,22.151311],[113.575022,22.15065],[113.57531,22.15041],[113.575724,22.150234],[113.589178,22.144281],[113.601946,22.138113],[113.593091,22.162285],[113.586631,22.174165],[113.559694,22.166727],[113.544778,22.162616],[113.544681,22.162679],[113.544576,22.162559],[113.540985,22.161571],[113.544638,22.154083],[113.549079,22.149234]]]]}},{"type":"Feature","properties":{"adcode":820007,"name":"路凼填海区","center":[113.5695992,22.13663],"centroid":[113.56766,22.139899],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":6,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.553916,22.125215],[113.563949,22.127289],[113.56407,22.127443],[113.564391,22.128296],[113.564529,22.128445],[113.564798,22.128485],[113.567266,22.128386],[113.567631,22.128485],[113.567856,22.128712],[113.56789,22.128884],[113.568003,22.131993],[113.568107,22.132223],[113.568324,22.132349],[113.568618,22.132386],[113.571408,22.132305],[113.572257,22.132331],[113.573184,22.13248],[113.574068,22.132806],[113.574848,22.133293],[113.575827,22.134051],[113.57659,22.134553],[113.577257,22.134855],[113.57802,22.135011],[113.579329,22.135134],[113.580612,22.135239],[113.581374,22.135379],[113.582312,22.135821],[113.583056,22.136473],[113.584062,22.137923],[113.589178,22.144281],[113.575724,22.150234],[113.57531,22.15041],[113.575022,22.15065],[113.574502,22.151311],[113.574199,22.151531],[113.573965,22.151521],[113.573593,22.151359],[113.571981,22.150426],[113.571513,22.150105],[113.571227,22.149876],[113.571106,22.149712],[113.571106,22.149549],[113.571377,22.14902],[113.571358,22.148748],[113.571235,22.148645],[113.56939,22.147639],[113.569179,22.147555],[113.568777,22.147547],[113.568489,22.147816],[113.568481,22.148172],[113.568636,22.148547],[113.568663,22.148702],[113.568611,22.149024],[113.56835,22.149605],[113.568195,22.149819],[113.567987,22.149961],[113.567061,22.150276],[113.566852,22.150494],[113.566713,22.150915],[113.566428,22.15116],[113.565881,22.151391],[113.565528,22.151392],[113.564357,22.150883],[113.564201,22.150787],[113.564036,22.150455],[113.563968,22.149999],[113.563855,22.149476],[113.563725,22.149183],[113.5635,22.148868],[113.563335,22.148727],[113.563032,22.148573],[113.562382,22.148377],[113.562044,22.14832],[113.561672,22.148306],[113.560936,22.148388],[113.560659,22.148274],[113.560165,22.147866],[113.559811,22.147805],[113.55948,22.147904],[113.556753,22.148961],[113.556269,22.149081],[113.554042,22.149194],[113.551557,22.149168],[113.549079,22.149234],[113.550344,22.14785],[113.554638,22.142429],[113.553916,22.125215]]]]}},{"type":"Feature","properties":{"adcode":820008,"name":"圣方济各堂区","center":[113.5599542,22.12348639],"centroid":[113.577403,22.123389],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":7,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.553916,22.125215],[113.553389,22.112664],[113.554447,22.107312],[113.559643,22.106216],[113.561045,22.106214],[113.576328,22.108147],[113.578953,22.108929],[113.580194,22.109694],[113.597564,22.125115],[113.603681,22.132371],[113.603873,22.132864],[113.601946,22.138113],[113.589178,22.144281],[113.584062,22.137923],[113.583056,22.136473],[113.582312,22.135821],[113.581374,22.135379],[113.580612,22.135239],[113.579329,22.135134],[113.57802,22.135011],[113.577257,22.134855],[113.57659,22.134553],[113.575827,22.134051],[113.574848,22.133293],[113.574068,22.132806],[113.573184,22.13248],[113.572257,22.132331],[113.571408,22.132305],[113.568618,22.132386],[113.568324,22.132349],[113.568107,22.132223],[113.568003,22.131993],[113.56789,22.128884],[113.567856,22.128712],[113.567631,22.128485],[113.567266,22.128386],[113.564798,22.128485],[113.564529,22.128445],[113.564391,22.128296],[113.56407,22.127443],[113.563949,22.127289],[113.553916,22.125215]]]]}}]}
\ No newline at end of file
diff --git a/src/untils/mapJson/gansu.json b/src/untils/mapJson/gansu.json
new file mode 100644
index 0000000..19847dd
--- /dev/null
+++ b/src/untils/mapJson/gansu.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":620100,"name":"兰州市","center":[103.823557,36.058039],"centroid":[103.644112,36.355083],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":0,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.564881,36.973787],[103.528532,36.970481],[103.511832,36.961493],[103.483669,36.966452],[103.450104,36.981946],[103.440607,36.995992],[103.404586,36.999193],[103.359396,36.996715],[103.317152,36.986697],[103.309457,36.949818],[103.323702,36.946718],[103.348098,36.958291],[103.348589,36.926773],[103.368237,36.907856],[103.383464,36.920364],[103.407861,36.923465],[103.44159,36.950542],[103.455998,36.935868],[103.479576,36.940208],[103.499879,36.913335],[103.501353,36.895448],[103.519691,36.902686],[103.541631,36.878799],[103.518053,36.849938],[103.47319,36.874248],[103.472535,36.861732],[103.450759,36.831209],[103.399019,36.826034],[103.377897,36.853352],[103.380353,36.878902],[103.348425,36.895862],[103.347607,36.916126],[103.313223,36.907132],[103.281131,36.915196],[103.26574,36.907959],[103.248057,36.916643],[103.276219,36.954158],[103.258208,36.958704],[103.230537,36.937211],[103.206141,36.941242],[103.201393,36.92977],[103.176833,36.932974],[103.180271,36.945685],[103.128695,36.951678],[103.074336,36.945272],[103.068114,36.959737],[103.004421,36.946925],[102.975932,36.947855],[102.954974,36.92884],[102.919607,36.935454],[102.883095,36.901342],[102.903398,36.878695],[102.902415,36.865146],[102.877855,36.856042],[102.863447,36.838142],[102.843471,36.845179],[102.810397,36.841143],[102.846255,36.808645],[102.822677,36.794876],[102.84298,36.77458],[102.833156,36.762358],[102.813508,36.762773],[102.807614,36.773544],[102.778305,36.761737],[102.756856,36.717598],[102.778142,36.691579],[102.772575,36.673434],[102.730659,36.672811],[102.688743,36.684218],[102.666475,36.707648],[102.684977,36.743918],[102.715268,36.745576],[102.731477,36.762358],[102.720671,36.770023],[102.692509,36.775305],[102.636676,36.733143],[102.613426,36.738634],[102.601309,36.709928],[102.609005,36.6781],[102.630618,36.650927],[102.66582,36.633913],[102.684486,36.618971],[102.724273,36.61399],[102.714777,36.600289],[102.764552,36.575477],[102.737699,36.57122],[102.734425,36.562289],[102.75309,36.525933],[102.777323,36.516893],[102.779124,36.502136],[102.793041,36.499434],[102.788784,36.481867],[102.76668,36.465543],[102.787966,36.447448],[102.793532,36.427061],[102.809742,36.407916],[102.826279,36.406251],[102.813017,36.388455],[102.829718,36.365345],[102.831846,36.365345],[102.847401,36.355974],[102.838887,36.345769],[102.836431,36.344623],[102.845436,36.332229],[102.896685,36.331812],[102.915841,36.315145],[102.923701,36.29764],[102.971347,36.283571],[102.99165,36.264392],[103.023578,36.257407],[103.02145,36.232693],[103.048302,36.226435],[103.070897,36.206929],[103.102661,36.211623],[103.10741,36.221637],[103.123128,36.195661],[103.155711,36.19013],[103.165863,36.176146],[103.19075,36.180321],[103.200902,36.170301],[103.230374,36.168318],[103.257881,36.15955],[103.259846,36.146605],[103.278184,36.151929],[103.298323,36.145038],[103.312895,36.152556],[103.343022,36.125198],[103.365617,36.119872],[103.396727,36.128958],[103.412282,36.123005],[103.41048,36.07777],[103.438315,36.069201],[103.475646,36.110785],[103.483342,36.098354],[103.496604,36.108382],[103.521819,36.101697],[103.538848,36.105039],[103.571267,36.091876],[103.575033,36.06293],[103.596318,36.069514],[103.621697,36.025922],[103.633322,36.017451],[103.622352,35.99444],[103.632831,35.982409],[103.616785,35.959284],[103.623989,35.934895],[103.643801,35.931336],[103.660993,35.914269],[103.702581,35.927253],[103.714697,35.909975],[103.76742,35.89039],[103.776425,35.896256],[103.779863,35.848166],[103.795909,35.852463],[103.799184,35.841039],[103.837334,35.841773],[103.837498,35.815985],[103.849614,35.803927],[103.848959,35.774979],[103.865005,35.794803],[103.901354,35.774979],[103.919855,35.757354],[103.952111,35.746756],[103.963736,35.735318],[103.980928,35.735737],[103.997956,35.716109],[104.019569,35.713589],[104.040036,35.68902],[104.053135,35.68608],[104.067543,35.664759],[104.092431,35.657615],[104.101436,35.636076],[104.110769,35.638178],[104.138931,35.618525],[104.148591,35.635025],[104.173151,35.649421],[104.202787,35.614111],[104.198039,35.598973],[104.225382,35.578575],[104.282198,35.571109],[104.290057,35.589616],[104.310196,35.601812],[104.305939,35.643327],[104.331809,35.658561],[104.317564,35.66791],[104.316746,35.705296],[104.331154,35.732379],[104.357351,35.74109],[104.369959,35.766692],[104.384695,35.767426],[104.401068,35.793964],[104.398612,35.808855],[104.421371,35.865456],[104.439055,35.864618],[104.448879,35.875619],[104.44282,35.89657],[104.42612,35.916154],[104.441019,35.974771],[104.483754,35.993708],[104.484572,36.020693],[104.500618,36.02017],[104.507331,36.037946],[104.522722,36.043696],[104.519284,36.060212],[104.53795,36.08404],[104.5612,36.09219],[104.567422,36.112456],[104.559399,36.130106],[104.568895,36.139296],[104.577246,36.168109],[104.530909,36.168005],[104.512571,36.202547],[104.543025,36.237699],[104.531728,36.26116],[104.522231,36.262098],[104.517155,36.290241],[104.502419,36.316083],[104.501764,36.350767],[104.510442,36.373153],[104.507168,36.428621],[104.489812,36.44256],[104.439382,36.408541],[104.429067,36.386581],[104.415477,36.391369],[104.349165,36.375547],[104.318055,36.377421],[104.313962,36.363887],[104.296279,36.354308],[104.258948,36.362221],[104.232095,36.359306],[104.218178,36.349622],[104.221453,36.337541],[104.184121,36.341915],[104.164965,36.32275],[104.163327,36.305351],[104.141551,36.293785],[104.130253,36.250942],[104.113389,36.26043],[104.125669,36.29837],[104.114371,36.306914],[104.111096,36.327438],[104.128616,36.335979],[104.095214,36.371696],[104.050024,36.414056],[104.042492,36.457224],[104.051825,36.464295],[104.041018,36.481243],[104.016622,36.4959],[104.022025,36.520634],[104.034141,36.535699],[104.028575,36.554292],[104.040855,36.573712],[103.974051,36.58451],[103.951456,36.61181],[103.960789,36.62582],[103.942123,36.635573],[103.924767,36.656217],[103.899225,36.671774],[103.915435,36.693238],[103.89726,36.704227],[103.897424,36.715629],[103.930662,36.719774],[103.940813,36.748684],[103.922639,36.751999],[103.92051,36.766812],[103.897097,36.77023],[103.891366,36.787731],[103.903482,36.803469],[103.859765,36.803676],[103.832422,36.812475],[103.825709,36.7985],[103.815066,36.82324],[103.790015,36.829657],[103.777244,36.85149],[103.757923,36.844247],[103.761853,36.828104],[103.7964,36.80378],[103.800494,36.791666],[103.740895,36.799328],[103.731234,36.805125],[103.712078,36.7839],[103.676875,36.790631],[103.669507,36.812889],[103.628246,36.822101],[103.604505,36.847248],[103.62317,36.86887],[103.592388,36.882419],[103.575196,36.923465],[103.547689,36.950025],[103.564881,36.973787]]],[[[102.831846,36.365345],[102.829718,36.365345],[102.836431,36.344623],[102.838887,36.345769],[102.831846,36.365345]]]]}},{"type":"Feature","properties":{"adcode":620200,"name":"嘉峪关市","center":[98.277304,39.786529],"centroid":[98.211266,39.829379],"childrenNum":0,"level":"city","parent":{"adcode":620000},"subFeatureIndex":1,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[97.862533,39.715005],[97.857458,39.711823],[97.855657,39.71043],[97.939979,39.695807],[97.969288,39.66277],[98.038383,39.698593],[98.157581,39.696902],[98.166259,39.713116],[98.188199,39.725945],[98.217671,39.727436],[98.246325,39.718884],[98.243378,39.707943],[98.281036,39.690932],[98.320824,39.665258],[98.33556,39.667547],[98.370762,39.654309],[98.381732,39.663765],[98.391229,39.690733],[98.413824,39.710331],[98.406947,39.731016],[98.361102,39.756169],[98.355535,39.78002],[98.456395,39.823429],[98.491106,39.840705],[98.484557,39.864428],[98.518777,39.892905],[98.520087,39.909469],[98.497328,39.916114],[98.497001,39.950219],[98.474897,39.969247],[98.444115,39.955769],[98.420701,39.955373],[98.392539,39.965779],[98.371745,39.957454],[98.329501,39.955868],[98.296591,39.962806],[98.162002,39.971625],[98.062943,39.99976],[98.068674,39.983217],[98.066382,39.954084],[98.024793,39.946551],[98.004818,39.922956],[98.036255,39.914725],[97.990901,39.891913],[97.98386,39.882785],[98.031179,39.827996],[97.99221,39.808631],[97.974363,39.780616],[97.862533,39.715005]]]]}},{"type":"Feature","properties":{"adcode":620300,"name":"金昌市","center":[102.187888,38.514238],"centroid":[102.045658,38.43382],"childrenNum":2,"level":"city","parent":{"adcode":620000},"subFeatureIndex":2,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.071959,38.892926],[102.07507,38.891517],[102.00974,38.854474],[101.996478,38.842491],[101.941463,38.808848],[101.874005,38.733949],[101.775601,38.660588],[101.744328,38.679062],[101.731393,38.674721],[101.678998,38.690971],[101.64969,38.686127],[101.613014,38.655742],[101.591401,38.642312],[101.564385,38.608372],[101.567168,38.57573],[101.516247,38.548332],[101.538188,38.525172],[101.547357,38.498665],[101.533603,38.489861],[101.502494,38.487027],[101.503967,38.463746],[101.529673,38.462531],[101.518539,38.436305],[101.48743,38.412502],[101.447315,38.388487],[101.424065,38.394871],[101.372162,38.388487],[101.371179,38.37227],[101.35628,38.36487],[101.337778,38.369736],[101.34711,38.317309],[101.392301,38.316294],[101.403599,38.284332],[101.417188,38.273675],[101.467946,38.250731],[101.491196,38.228389],[101.478261,38.207362],[101.462706,38.201469],[101.419481,38.164069],[101.402452,38.132955],[101.403599,38.102336],[101.386243,38.071298],[101.419153,38.058879],[101.441257,38.040144],[101.481208,38.055723],[101.516083,38.061424],[101.576665,38.056741],[101.612523,38.059795],[101.636755,38.071501],[101.651327,38.090024],[101.690623,38.066616],[101.706342,38.091754],[101.740071,38.096028],[101.766596,38.07944],[101.812277,38.064987],[101.835036,38.075267],[101.855339,38.099487],[101.885794,38.103048],[101.945393,38.080255],[101.975192,38.085547],[101.986654,38.096028],[102.003682,38.094807],[102.015798,38.081985],[102.026113,38.043097],[102.040522,38.029655],[102.094554,38.034544],[102.10929,38.042996],[102.135979,38.045338],[102.162503,38.061729],[102.17462,38.050938],[102.185917,38.062645],[102.207039,38.055519],[102.218337,38.088905],[102.232254,38.109255],[102.223412,38.113832],[102.253867,38.12492],[102.305115,38.134582],[102.344248,38.146988],[102.388947,38.143124],[102.409414,38.130514],[102.409905,38.11607],[102.431681,38.110882],[102.447236,38.115969],[102.458206,38.134175],[102.519934,38.170269],[102.531886,38.184905],[102.557265,38.183076],[102.575276,38.173522],[102.612443,38.173116],[102.649938,38.158172],[102.678592,38.157867],[102.675153,38.188666],[102.706754,38.186836],[102.719361,38.19588],[102.723782,38.238241],[102.700859,38.277938],[102.686942,38.289508],[102.695784,38.335972],[102.693328,38.347735],[102.704134,38.396594],[102.700859,38.411488],[102.622431,38.417769],[102.572656,38.416149],[102.616209,38.470023],[102.536143,38.500183],[102.496684,38.545804],[102.478509,38.58513],[102.459025,38.595943],[102.447072,38.631606],[102.397789,38.665232],[102.408922,38.727192],[102.411378,38.773475],[102.439868,38.808545],[102.425132,38.877527],[102.412361,38.885378],[102.43643,38.918281],[102.376503,38.926127],[102.336716,38.940007],[102.283666,38.948052],[102.269421,38.913955],[102.144984,38.939906],[102.094718,38.960218],[102.087514,38.981026],[101.96062,38.996804],[102.071959,38.892926]]]]}},{"type":"Feature","properties":{"adcode":620400,"name":"白银市","center":[104.173606,36.54568],"centroid":[104.622687,36.618375],"childrenNum":5,"level":"city","parent":{"adcode":620000},"subFeatureIndex":3,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.485967,35.726396],[105.472704,35.750639],[105.453875,35.747596],[105.457313,35.771623],[105.431771,35.787566],[105.430625,35.813049],[105.408684,35.822275],[105.383961,35.792496],[105.374955,35.804346],[105.386253,35.817662],[105.371026,35.844288],[105.398369,35.855187],[105.390838,35.866504],[105.350232,35.875934],[105.334513,35.88641],[105.329274,35.907881],[105.340244,35.909242],[105.325017,35.941804],[105.33173,35.951434],[105.333203,36.000612],[105.341881,36.005947],[105.34401,36.033868],[105.36595,36.034705],[105.360383,36.044219],[105.391329,36.074844],[105.40803,36.075785],[105.43128,36.104099],[105.49137,36.10107],[105.514948,36.147335],[105.502013,36.157671],[105.47909,36.212875],[105.462062,36.222159],[105.465827,36.251985],[105.459769,36.264496],[105.473195,36.275546],[105.475324,36.295035],[105.454202,36.32275],[105.425713,36.330146],[105.401644,36.369926],[105.419491,36.377317],[105.402135,36.385124],[105.399515,36.428829],[105.384779,36.44048],[105.368242,36.432158],[105.371026,36.461696],[105.361365,36.498186],[105.320105,36.53601],[105.303895,36.524686],[105.281136,36.522608],[105.260178,36.533621],[105.252155,36.55315],[105.275897,36.56312],[105.261161,36.602677],[105.250027,36.601431],[105.241513,36.62582],[105.221865,36.62997],[105.225467,36.664515],[105.208602,36.680174],[105.200907,36.702154],[105.215315,36.727858],[105.240039,36.741432],[105.272294,36.73936],[105.275897,36.75231],[105.319613,36.742882],[105.341063,36.764741],[105.332712,36.806057],[105.300129,36.824171],[105.296691,36.844247],[105.27868,36.852628],[105.274587,36.870835],[105.240694,36.896793],[105.226285,36.886452],[105.207783,36.897516],[105.178966,36.892243],[105.184042,36.902376],[105.177656,36.92915],[105.185679,36.942068],[105.168651,36.967279],[105.165376,36.994856],[105.129355,36.996302],[105.075978,37.013132],[105.059605,37.022836],[105.039793,37.007247],[105.010976,37.017261],[105.004426,37.035429],[104.965294,37.031713],[104.954488,37.04028],[104.953833,37.077321],[104.9147,37.097846],[104.915519,37.116201],[104.898982,37.127129],[104.887521,37.159182],[104.866072,37.17134],[104.856411,37.211715],[104.806636,37.234675],[104.793701,37.229219],[104.775199,37.246821],[104.717238,37.208523],[104.683181,37.202962],[104.663697,37.208317],[104.626038,37.205846],[104.60066,37.242704],[104.603607,37.262463],[104.619816,37.29055],[104.632424,37.298882],[104.644376,37.291168],[104.664679,37.299602],[104.665989,37.310812],[104.714618,37.330348],[104.717729,37.350393],[104.702829,37.34546],[104.668281,37.356046],[104.661405,37.376598],[104.679907,37.407827],[104.605244,37.426208],[104.564802,37.430418],[104.544335,37.42323],[104.521085,37.434833],[104.499472,37.421177],[104.45068,37.423641],[104.437745,37.445817],[104.404834,37.438323],[104.365538,37.418096],[104.345071,37.420458],[104.298407,37.413988],[104.285309,37.43052],[104.237826,37.411935],[104.18363,37.406799],[104.082934,37.469321],[103.933609,37.574123],[103.87139,37.605781],[103.850269,37.633126],[103.79067,37.586317],[103.762671,37.541939],[103.759233,37.521843],[103.771513,37.506767],[103.773478,37.473836],[103.764472,37.44633],[103.767747,37.425489],[103.746953,37.421793],[103.732708,37.394782],[103.735983,37.378242],[103.770039,37.355018],[103.763654,37.34217],[103.775934,37.329731],[103.765127,37.30207],[103.747608,37.307418],[103.757596,37.27728],[103.743351,37.283555],[103.723048,37.261331],[103.746298,37.242806],[103.725013,37.229425],[103.692757,37.238277],[103.675565,37.209553],[103.65559,37.148568],[103.64642,37.133004],[103.622188,37.125479],[103.634304,37.113211],[103.634959,37.084851],[103.618586,37.0636],[103.590587,37.068759],[103.581418,37.047607],[103.559642,37.027275],[103.580927,37.002497],[103.578471,36.985974],[103.564881,36.973787],[103.547689,36.950025],[103.575196,36.923465],[103.592388,36.882419],[103.62317,36.86887],[103.604505,36.847248],[103.628246,36.822101],[103.669507,36.812889],[103.676875,36.790631],[103.712078,36.7839],[103.731234,36.805125],[103.740895,36.799328],[103.800494,36.791666],[103.7964,36.80378],[103.761853,36.828104],[103.757923,36.844247],[103.777244,36.85149],[103.790015,36.829657],[103.815066,36.82324],[103.825709,36.7985],[103.832422,36.812475],[103.859765,36.803676],[103.903482,36.803469],[103.891366,36.787731],[103.897097,36.77023],[103.92051,36.766812],[103.922639,36.751999],[103.940813,36.748684],[103.930662,36.719774],[103.897424,36.715629],[103.89726,36.704227],[103.915435,36.693238],[103.899225,36.671774],[103.924767,36.656217],[103.942123,36.635573],[103.960789,36.62582],[103.951456,36.61181],[103.974051,36.58451],[104.040855,36.573712],[104.028575,36.554292],[104.034141,36.535699],[104.022025,36.520634],[104.016622,36.4959],[104.041018,36.481243],[104.051825,36.464295],[104.042492,36.457224],[104.050024,36.414056],[104.095214,36.371696],[104.128616,36.335979],[104.111096,36.327438],[104.114371,36.306914],[104.125669,36.29837],[104.113389,36.26043],[104.130253,36.250942],[104.141551,36.293785],[104.163327,36.305351],[104.164965,36.32275],[104.184121,36.341915],[104.221453,36.337541],[104.218178,36.349622],[104.232095,36.359306],[104.258948,36.362221],[104.296279,36.354308],[104.313962,36.363887],[104.318055,36.377421],[104.349165,36.375547],[104.415477,36.391369],[104.429067,36.386581],[104.439382,36.408541],[104.489812,36.44256],[104.507168,36.428621],[104.510442,36.373153],[104.501764,36.350767],[104.502419,36.316083],[104.517155,36.290241],[104.522231,36.262098],[104.531728,36.26116],[104.543025,36.237699],[104.512571,36.202547],[104.530909,36.168005],[104.577246,36.168109],[104.568895,36.139296],[104.559399,36.130106],[104.567422,36.112456],[104.5612,36.09219],[104.53795,36.08404],[104.519284,36.060212],[104.522722,36.043696],[104.507331,36.037946],[104.500618,36.02017],[104.532383,36.014627],[104.561855,36.028013],[104.584941,36.029477],[104.61867,36.044846],[104.633242,36.035541],[104.663369,36.041501],[104.680725,36.033764],[104.676141,36.022994],[104.648797,36.010758],[104.646505,35.996533],[104.676959,35.986804],[104.709379,35.94955],[104.72788,35.951958],[104.738032,35.931754],[104.769305,35.91741],[104.768978,35.887457],[104.811385,35.877924],[104.807291,35.865875],[104.853628,35.854873],[104.865744,35.832444],[104.864762,35.804031],[104.884246,35.79344],[104.891941,35.767112],[104.937296,35.738256],[104.980358,35.716634],[104.985597,35.700361],[104.986743,35.635025],[104.967095,35.608435],[104.954979,35.57216],[104.95285,35.548179],[104.937132,35.544602],[104.933202,35.51293],[104.946465,35.491562],[104.966768,35.489983],[104.975446,35.476402],[104.996731,35.471347],[105.000333,35.456183],[105.044541,35.448916],[105.070738,35.454814],[105.083673,35.418575],[105.123461,35.420156],[105.117894,35.440278],[105.135413,35.449126],[105.1752,35.441858],[105.232998,35.482719],[105.271476,35.475138],[105.303404,35.500299],[105.319777,35.482824],[105.345483,35.485351],[105.355471,35.495668],[105.384288,35.490088],[105.415398,35.497457],[105.406065,35.514403],[105.414251,35.526821],[105.447326,35.537553],[105.451583,35.551124],[105.473687,35.553859],[105.476143,35.60034],[105.520678,35.608014],[105.456658,35.68902],[105.457313,35.715374],[105.485967,35.726396]]]]}},{"type":"Feature","properties":{"adcode":620500,"name":"天水市","center":[105.724998,34.578529],"centroid":[105.741074,34.647312],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":4,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.488671,35.02089],[106.46231,35.040583],[106.446755,35.033807],[106.405985,35.035395],[106.382408,35.059318],[106.398781,35.083127],[106.370128,35.10492],[106.365707,35.13284],[106.330177,35.112642],[106.315113,35.120997],[106.302997,35.150603],[106.27549,35.171638],[106.211797,35.152294],[106.191331,35.162654],[106.177413,35.152294],[106.157765,35.12142],[106.147778,35.144471],[106.116668,35.122371],[106.087196,35.11444],[106.064437,35.123958],[106.018592,35.089581],[106.004675,35.090216],[106.006639,35.112747],[105.991576,35.120785],[105.961285,35.097516],[105.934924,35.096352],[105.92903,35.06027],[105.898739,35.063445],[105.887605,35.052015],[105.849619,35.058789],[105.844052,35.070959],[105.803119,35.074028],[105.784125,35.062916],[105.774793,35.024385],[105.75449,35.023749],[105.738608,35.047781],[105.725345,35.027349],[105.707334,35.044076],[105.706516,35.071805],[105.646262,35.104391],[105.635947,35.120362],[105.638403,35.139396],[105.609094,35.152929],[105.572418,35.181361],[105.558173,35.1821],[105.558501,35.161385],[105.539508,35.152717],[105.535578,35.138762],[105.559974,35.127659],[105.541636,35.07244],[105.52428,35.063339],[105.505615,35.085561],[105.484984,35.093178],[105.456495,35.130831],[105.42031,35.114334],[105.41114,35.079424],[105.396568,35.089475],[105.391656,35.064927],[105.379867,35.072017],[105.354489,35.04831],[105.336478,35.049369],[105.321415,35.03836],[105.297346,35.046722],[105.299147,35.01962],[105.290141,35.006806],[105.27606,35.033596],[105.261816,35.028196],[105.249699,35.00956],[105.259851,34.979797],[105.254611,34.964646],[105.217771,34.93211],[105.192884,34.937516],[105.193539,34.954897],[105.16816,34.969308],[105.130501,34.963904],[105.092515,34.969096],[105.058131,34.981915],[105.073686,34.955639],[105.070738,34.943452],[105.035372,34.925432],[105.007865,34.928718],[105.006391,34.939636],[104.970042,34.940484],[104.971352,34.953202],[104.933694,34.93635],[104.920922,34.950022],[104.898818,34.924584],[104.909788,34.903909],[104.895871,34.862439],[104.878679,34.856073],[104.850189,34.865833],[104.794356,34.869334],[104.757844,34.86212],[104.740979,34.85289],[104.728863,34.86212],[104.697262,34.859574],[104.657803,34.872304],[104.620144,34.86456],[104.598858,34.838883],[104.597385,34.804387],[104.584286,34.787292],[104.584777,34.767221],[104.60639,34.745763],[104.591818,34.726106],[104.577246,34.721218],[104.601642,34.710058],[104.589362,34.699535],[104.601642,34.679017],[104.595584,34.654027],[104.646177,34.655941],[104.699555,34.6737],[104.685965,34.628497],[104.690877,34.618176],[104.671556,34.575816],[104.695952,34.544725],[104.716255,34.541423],[104.738523,34.555587],[104.753914,34.52747],[104.748347,34.472914],[104.783222,34.487089],[104.793046,34.482293],[104.791573,34.431866],[104.837909,34.445622],[104.88572,34.422908],[104.918139,34.438691],[104.966768,34.437198],[104.989035,34.425574],[105.013104,34.420455],[105.038974,34.423441],[105.06861,34.44189],[105.084001,34.460548],[105.108725,34.460975],[105.128373,34.508401],[105.160792,34.527364],[105.20631,34.518948],[105.227759,34.533009],[105.243969,34.528429],[105.24053,34.512343],[105.254284,34.49977],[105.260342,34.452979],[105.290633,34.439331],[105.291615,34.428667],[105.312082,34.43048],[105.31159,34.442423],[105.350887,34.43144],[105.384943,34.408615],[105.408193,34.420988],[105.460261,34.391653],[105.491861,34.352166],[105.501521,34.328786],[105.522807,34.304972],[105.546384,34.319496],[105.558009,34.306788],[105.547039,34.291621],[105.527391,34.28457],[105.530338,34.273245],[105.554899,34.258072],[105.540163,34.248668],[105.555226,34.197245],[105.547858,34.152745],[105.563085,34.137229],[105.552606,34.113682],[105.563576,34.086381],[105.591739,34.084453],[105.596978,34.105868],[105.623994,34.096232],[105.61548,34.081348],[105.640859,34.081241],[105.651665,34.119034],[105.667711,34.144613],[105.704715,34.162054],[105.718141,34.158844],[105.72338,34.174035],[105.740409,34.176602],[105.771027,34.164407],[105.772664,34.136694],[105.781997,34.11957],[105.815235,34.147502],[105.86108,34.15328],[105.86501,34.125136],[105.90316,34.119034],[105.945076,34.144185],[105.9716,34.146111],[106.017773,34.159058],[106.041351,34.158737],[106.071805,34.146646],[106.082121,34.124814],[106.100622,34.125457],[106.117323,34.111434],[106.139755,34.113575],[106.14876,34.124279],[106.189693,34.110471],[106.229972,34.118071],[106.246836,34.132199],[106.244708,34.152638],[106.266648,34.161412],[106.276963,34.191256],[106.270742,34.206869],[106.282039,34.225472],[106.323627,34.230497],[106.330177,34.203447],[106.344585,34.179277],[106.327393,34.140868],[106.336562,34.109829],[106.363087,34.100622],[106.402874,34.109829],[106.453959,34.135517],[106.472298,34.154885],[106.475081,34.180025],[106.494238,34.201415],[106.494238,34.241827],[106.49653,34.25508],[106.526493,34.291941],[106.577087,34.280938],[106.586747,34.257431],[106.602466,34.250912],[106.633575,34.259889],[106.663866,34.24311],[106.684169,34.259996],[106.701197,34.290125],[106.704635,34.30871],[106.690227,34.334018],[106.711021,34.344374],[106.717407,34.369244],[106.697267,34.370631],[106.680075,34.383757],[106.663375,34.380982],[106.637341,34.391973],[106.621786,34.420455],[106.611798,34.452766],[106.591659,34.456604],[106.599355,34.465985],[106.567918,34.474832],[106.552363,34.48922],[106.515196,34.497213],[106.513886,34.512875],[106.453959,34.531305],[106.407787,34.523103],[106.399927,34.510105],[106.380443,34.521292],[106.366034,34.512343],[106.334434,34.517883],[106.343767,34.53663],[106.340983,34.568044],[106.313967,34.578797],[106.323136,34.589868],[106.368163,34.610302],[106.378314,34.623815],[106.4145,34.638178],[106.425306,34.654346],[106.44872,34.636476],[106.467222,34.640943],[106.470496,34.654133],[106.445609,34.669447],[106.441352,34.681675],[106.45969,34.705594],[106.48687,34.71516],[106.505863,34.746932],[106.539592,34.745657],[106.548597,34.761697],[106.574958,34.770088],[106.578397,34.788991],[106.565789,34.796636],[106.55089,34.829544],[106.555965,34.861272],[106.520599,34.885245],[106.510284,34.925114],[106.493092,34.94112],[106.483104,34.980114],[106.502097,34.99558],[106.488671,35.02089]]]]}},{"type":"Feature","properties":{"adcode":620600,"name":"武威市","center":[102.634697,37.929996],"centroid":[103.059993,38.183694],"childrenNum":4,"level":"city","parent":{"adcode":620000},"subFeatureIndex":5,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.564881,36.973787],[103.578471,36.985974],[103.580927,37.002497],[103.559642,37.027275],[103.581418,37.047607],[103.590587,37.068759],[103.618586,37.0636],[103.634959,37.084851],[103.634304,37.113211],[103.622188,37.125479],[103.64642,37.133004],[103.65559,37.148568],[103.675565,37.209553],[103.692757,37.238277],[103.725013,37.229425],[103.746298,37.242806],[103.723048,37.261331],[103.743351,37.283555],[103.757596,37.27728],[103.747608,37.307418],[103.765127,37.30207],[103.775934,37.329731],[103.763654,37.34217],[103.770039,37.355018],[103.735983,37.378242],[103.732708,37.394782],[103.746953,37.421793],[103.767747,37.425489],[103.764472,37.44633],[103.773478,37.473836],[103.771513,37.506767],[103.759233,37.521843],[103.762671,37.541939],[103.79067,37.586317],[103.850269,37.633126],[103.840936,37.647459],[103.683261,37.777973],[103.669998,37.786659],[103.628246,37.797592],[103.401803,37.862031],[103.385429,37.947012],[103.368237,37.985645],[103.371676,38.008265],[103.362343,38.041366],[103.368728,38.088905],[103.48105,38.135701],[103.507738,38.142209],[103.534918,38.156749],[103.507902,38.280881],[103.465331,38.353109],[103.416375,38.405004],[103.574378,38.489861],[103.859765,38.644533],[103.980928,38.814187],[104.011546,38.859105],[104.044457,38.895039],[104.108477,38.916772],[104.167912,38.940409],[104.196401,38.988262],[104.190998,39.042209],[104.207372,39.083671],[104.177572,39.152185],[104.047568,39.297719],[104.073274,39.351829],[104.090957,39.418483],[104.082443,39.422479],[103.965046,39.455231],[103.853707,39.46142],[103.824071,39.45573],[103.729106,39.430069],[103.595336,39.386713],[103.511504,39.371322],[103.473518,39.359227],[103.428819,39.353528],[103.35694,39.33663],[103.339911,39.327529],[103.257881,39.26299],[103.187967,39.215424],[103.133116,39.19268],[103.082195,39.159203],[103.051249,39.129923],[103.013427,39.101132],[102.947115,39.106851],[102.896521,39.116281],[102.765698,39.144564],[102.6167,39.171734],[102.583462,39.180755],[102.537944,39.209713],[102.453622,39.255282],[102.35489,39.232051],[102.280719,39.190275],[102.197706,39.171934],[102.072777,39.146971],[102.008103,39.12581],[101.897583,39.111064],[101.830943,39.094007],[101.926236,39.000622],[101.955053,38.986051],[102.003191,38.945035],[102.045761,38.904699],[102.071959,38.892926],[101.96062,38.996804],[102.087514,38.981026],[102.094718,38.960218],[102.144984,38.939906],[102.269421,38.913955],[102.283666,38.948052],[102.336716,38.940007],[102.376503,38.926127],[102.43643,38.918281],[102.412361,38.885378],[102.425132,38.877527],[102.439868,38.808545],[102.411378,38.773475],[102.408922,38.727192],[102.397789,38.665232],[102.447072,38.631606],[102.459025,38.595943],[102.478509,38.58513],[102.496684,38.545804],[102.536143,38.500183],[102.616209,38.470023],[102.572656,38.416149],[102.622431,38.417769],[102.700859,38.411488],[102.704134,38.396594],[102.693328,38.347735],[102.695784,38.335972],[102.686942,38.289508],[102.700859,38.277938],[102.723782,38.238241],[102.719361,38.19588],[102.706754,38.186836],[102.675153,38.188666],[102.678592,38.157867],[102.649938,38.158172],[102.612443,38.173116],[102.575276,38.173522],[102.557265,38.183076],[102.531886,38.184905],[102.519934,38.170269],[102.458206,38.134175],[102.447236,38.115969],[102.431681,38.110882],[102.409905,38.11607],[102.409414,38.130514],[102.388947,38.143124],[102.344248,38.146988],[102.305115,38.134582],[102.253867,38.12492],[102.223412,38.113832],[102.232254,38.109255],[102.218337,38.088905],[102.207039,38.055519],[102.185917,38.062645],[102.17462,38.050938],[102.162503,38.061729],[102.135979,38.045338],[102.10929,38.042996],[102.094554,38.034544],[102.097501,38.032303],[102.108471,38.026091],[102.110109,38.011932],[102.132049,38.005514],[102.169217,38.004801],[102.166597,37.99451],[102.137616,37.982792],[102.090788,37.955882],[102.031517,37.941608],[102.036265,37.933349],[102.07507,37.929065],[102.087514,37.920498],[102.116986,37.917744],[102.129266,37.903361],[102.122061,37.888158],[102.151533,37.851312],[102.168398,37.84437],[102.202454,37.854477],[102.197706,37.841102],[102.15972,37.819657],[102.15137,37.78809],[102.122225,37.77082],[102.095864,37.728802],[102.079327,37.709881],[102.079163,37.693616],[102.052966,37.682463],[102.049691,37.639576],[102.035283,37.627699],[102.070158,37.601377],[102.066392,37.590108],[102.089642,37.578837],[102.101595,37.582423],[102.106998,37.564285],[102.130903,37.54686],[102.118132,37.531584],[102.122225,37.515895],[102.103396,37.492817],[102.106507,37.481326],[102.125172,37.485533],[102.176585,37.458853],[102.197379,37.420561],[102.248791,37.411524],[102.271223,37.39283],[102.30004,37.391289],[102.298893,37.370022],[102.341137,37.348029],[102.368317,37.327675],[102.393531,37.325002],[102.428243,37.308344],[102.419238,37.296002],[102.453622,37.27121],[102.461481,37.246512],[102.479983,37.241057],[102.489807,37.223659],[102.533196,37.217276],[102.579533,37.172473],[102.600982,37.174328],[102.62767,37.126098],[102.637331,37.121974],[102.642079,37.099702],[102.583626,37.105374],[102.577241,37.098465],[102.531886,37.08743],[102.497993,37.090421],[102.488497,37.078559],[102.498976,37.058442],[102.494228,37.043789],[102.505525,37.023559],[102.467212,36.988556],[102.467375,36.976575],[102.450347,36.968518],[102.467867,36.954365],[102.498485,36.956224],[102.499795,36.943515],[102.5237,36.939795],[102.527793,36.927703],[102.560867,36.919537],[102.570691,36.8879],[102.595579,36.871455],[102.637494,36.853663],[102.658125,36.823861],[102.704461,36.792184],[102.720671,36.770023],[102.731477,36.762358],[102.715268,36.745576],[102.684977,36.743918],[102.666475,36.707648],[102.688743,36.684218],[102.730659,36.672811],[102.772575,36.673434],[102.778142,36.691579],[102.756856,36.717598],[102.778305,36.761737],[102.807614,36.773544],[102.813508,36.762773],[102.833156,36.762358],[102.84298,36.77458],[102.822677,36.794876],[102.846255,36.808645],[102.810397,36.841143],[102.843471,36.845179],[102.863447,36.838142],[102.877855,36.856042],[102.902415,36.865146],[102.903398,36.878695],[102.883095,36.901342],[102.919607,36.935454],[102.954974,36.92884],[102.975932,36.947855],[103.004421,36.946925],[103.068114,36.959737],[103.074336,36.945272],[103.128695,36.951678],[103.180271,36.945685],[103.176833,36.932974],[103.201393,36.92977],[103.206141,36.941242],[103.230537,36.937211],[103.258208,36.958704],[103.276219,36.954158],[103.248057,36.916643],[103.26574,36.907959],[103.281131,36.915196],[103.313223,36.907132],[103.347607,36.916126],[103.348425,36.895862],[103.380353,36.878902],[103.377897,36.853352],[103.399019,36.826034],[103.450759,36.831209],[103.472535,36.861732],[103.47319,36.874248],[103.518053,36.849938],[103.541631,36.878799],[103.519691,36.902686],[103.501353,36.895448],[103.499879,36.913335],[103.479576,36.940208],[103.455998,36.935868],[103.44159,36.950542],[103.407861,36.923465],[103.383464,36.920364],[103.368237,36.907856],[103.348589,36.926773],[103.348098,36.958291],[103.323702,36.946718],[103.309457,36.949818],[103.317152,36.986697],[103.359396,36.996715],[103.404586,36.999193],[103.440607,36.995992],[103.450104,36.981946],[103.483669,36.966452],[103.511832,36.961493],[103.528532,36.970481],[103.564881,36.973787]]]]}},{"type":"Feature","properties":{"adcode":620700,"name":"张掖市","center":[100.455472,38.932897],"centroid":[99.818538,38.961729],"childrenNum":6,"level":"city","parent":{"adcode":620000},"subFeatureIndex":6,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.035283,37.627699],[102.049691,37.639576],[102.052966,37.682463],[102.079163,37.693616],[102.079327,37.709881],[102.095864,37.728802],[102.122225,37.77082],[102.15137,37.78809],[102.15972,37.819657],[102.197706,37.841102],[102.202454,37.854477],[102.168398,37.84437],[102.151533,37.851312],[102.122061,37.888158],[102.129266,37.903361],[102.116986,37.917744],[102.087514,37.920498],[102.07507,37.929065],[102.036265,37.933349],[102.031517,37.941608],[102.090788,37.955882],[102.137616,37.982792],[102.166597,37.99451],[102.169217,38.004801],[102.132049,38.005514],[102.110109,38.011932],[102.108471,38.026091],[102.097501,38.032303],[102.094554,38.034544],[102.040522,38.029655],[102.026113,38.043097],[102.015798,38.081985],[102.003682,38.094807],[101.986654,38.096028],[101.975192,38.085547],[101.945393,38.080255],[101.885794,38.103048],[101.855339,38.099487],[101.835036,38.075267],[101.812277,38.064987],[101.766596,38.07944],[101.740071,38.096028],[101.706342,38.091754],[101.690623,38.066616],[101.651327,38.090024],[101.636755,38.071501],[101.612523,38.059795],[101.576665,38.056741],[101.516083,38.061424],[101.481208,38.055723],[101.441257,38.040144],[101.419153,38.058879],[101.386243,38.071298],[101.403599,38.102336],[101.402452,38.132955],[101.419481,38.164069],[101.462706,38.201469],[101.478261,38.207362],[101.491196,38.228389],[101.467946,38.250731],[101.417188,38.273675],[101.403599,38.284332],[101.392301,38.316294],[101.34711,38.317309],[101.337778,38.369736],[101.35628,38.36487],[101.371179,38.37227],[101.372162,38.388487],[101.424065,38.394871],[101.447315,38.388487],[101.48743,38.412502],[101.518539,38.436305],[101.529673,38.462531],[101.503967,38.463746],[101.502494,38.487027],[101.533603,38.489861],[101.547357,38.498665],[101.538188,38.525172],[101.516247,38.548332],[101.567168,38.57573],[101.564385,38.608372],[101.591401,38.642312],[101.613014,38.655742],[101.601716,38.655136],[101.56242,38.712968],[101.487266,38.736471],[101.412276,38.7642],[101.331228,38.777305],[101.316656,38.783756],[101.306341,38.801895],[101.330082,38.807739],[101.34138,38.822246],[101.334012,38.848533],[101.259677,38.855078],[101.239865,38.86575],[101.237736,38.907315],[101.198604,38.943225],[101.228567,39.020715],[101.117229,38.975196],[100.969213,38.946945],[100.969377,38.996703],[100.961518,39.006048],[100.901755,39.030057],[100.888984,39.007254],[100.875394,39.002431],[100.835116,39.026039],[100.829549,39.035581],[100.829385,39.074939],[100.864424,39.106951],[100.865734,39.124707],[100.85329,39.151684],[100.842811,39.200095],[100.842156,39.405697],[100.707895,39.404598],[100.658775,39.392009],[100.61997,39.387612],[100.56954,39.395107],[100.499135,39.400502],[100.500608,39.481382],[100.443301,39.485573],[100.326232,39.509119],[100.301017,39.572335],[100.314116,39.606909],[100.250096,39.685062],[100.127951,39.702174],[100.040681,39.757063],[99.95865,39.769487],[99.904454,39.785783],[99.821933,39.860061],[99.712067,39.877626],[99.672608,39.888044],[99.48808,39.876038],[99.455988,39.877427],[99.35873,39.86681],[99.320581,39.847753],[99.247719,39.838024],[99.229872,39.851624],[99.206295,39.829982],[99.193196,39.809128],[99.140965,39.80148],[99.113785,39.835046],[99.083331,39.837329],[99.06925,39.850136],[99.026843,39.854007],[98.987055,39.832762],[98.960039,39.788565],[98.94956,39.701478],[98.94956,39.66496],[98.881447,39.665457],[98.824632,39.676405],[98.804492,39.627028],[98.816118,39.592065],[98.872114,39.594058],[98.938099,39.577916],[98.946613,39.594955],[98.977886,39.619559],[99.025205,39.629617],[99.053695,39.623144],[99.064665,39.609997],[99.056478,39.587681],[99.072852,39.554891],[99.097575,39.530763],[99.10609,39.514107],[99.135234,39.503633],[99.183372,39.475394],[99.23593,39.458426],[99.256233,39.427472],[99.308137,39.357527],[99.30519,39.33313],[99.293073,39.30012],[99.280793,39.289113],[99.207277,39.283809],[99.198927,39.275903],[99.213663,39.226642],[99.207113,39.205706],[99.176331,39.171634],[99.179115,39.181556],[99.143585,39.208211],[99.141292,39.24607],[99.120498,39.261088],[99.080711,39.267795],[99.060244,39.257885],[99.046491,39.285511],[99.023568,39.30032],[98.985418,39.312926],[98.975758,39.33073],[98.906498,39.33253],[98.902078,39.316527],[98.880956,39.33003],[98.866547,39.324229],[98.838713,39.34423],[98.800235,39.360426],[98.752589,39.389811],[98.72852,39.399203],[98.710509,39.414788],[98.660407,39.43646],[98.612269,39.444548],[98.57019,39.460622],[98.579686,39.481981],[98.553325,39.470204],[98.526473,39.467509],[98.515503,39.480384],[98.530566,39.486771],[98.549723,39.509718],[98.434127,39.577517],[98.410058,39.550904],[98.402035,39.514406],[98.396632,39.535549],[98.362412,39.542629],[98.330156,39.569544],[98.357009,39.630315],[98.370762,39.654309],[98.33556,39.667547],[98.320824,39.665258],[98.281036,39.690932],[98.243378,39.707943],[98.246325,39.718884],[98.217671,39.727436],[98.188199,39.725945],[98.166259,39.713116],[98.157581,39.696902],[98.038383,39.698593],[97.969288,39.66277],[97.939979,39.695807],[97.855657,39.71043],[97.828968,39.68536],[97.785579,39.680684],[97.700273,39.697101],[97.676532,39.679092],[97.656229,39.632007],[97.619062,39.630613],[97.585333,39.603124],[97.569942,39.564162],[97.557825,39.554094],[97.520494,39.53874],[97.480216,39.472999],[97.480543,39.406396],[97.477268,39.373221],[97.453855,39.352229],[97.429295,39.347429],[97.397039,39.318027],[97.402115,39.293016],[97.395074,39.240363],[97.426347,39.173738],[97.43306,39.126011],[97.458767,39.118087],[97.504939,39.076545],[97.543417,39.067209],[97.581403,39.052351],[97.620208,39.031764],[97.679152,39.010268],[97.695034,38.988765],[97.690449,38.9759],[97.701583,38.963334],[97.735967,38.958106],[97.749721,38.94956],[97.793274,38.942923],[97.828968,38.93005],[97.875796,38.898259],[97.90887,38.884472],[97.95537,38.873702],[97.971907,38.863334],[98.012022,38.858098],[98.027741,38.835542],[98.050991,38.819224],[98.062452,38.819728],[98.095035,38.786276],[98.117303,38.805623],[98.152342,38.820131],[98.167733,38.840175],[98.203427,38.856588],[98.251237,38.891215],[98.249763,38.911842],[98.236173,38.920896],[98.270066,38.954587],[98.287586,38.992181],[98.281036,39.027044],[98.292334,39.037991],[98.316894,39.040502],[98.384025,39.029354],[98.401053,39.001527],[98.43249,38.9961],[98.428233,38.976],[98.457541,38.952979],[98.526473,38.955593],[98.550542,38.949359],[98.572973,38.932363],[98.590165,38.933168],[98.597697,38.947649],[98.614889,38.947348],[98.624058,38.959212],[98.614562,38.980523],[98.663354,38.994493],[98.691844,39.020816],[98.705434,39.043314],[98.730485,39.05717],[98.743747,39.086882],[98.759793,39.090294],[98.81317,39.087685],[98.817755,39.066507],[98.857215,39.047531],[98.887178,39.039196],[98.902896,39.012578],[98.94956,38.988463],[98.984108,38.984845],[98.993277,38.977407],[99.013908,38.984644],[99.056478,38.975598],[99.065484,38.96263],[99.108873,38.946342],[99.062045,38.911641],[99.068758,38.897052],[99.110674,38.867965],[99.141292,38.852762],[99.169291,38.827283],[99.222177,38.788896],[99.257707,38.781639],[99.290945,38.765914],[99.362169,38.718214],[99.371502,38.690567],[99.412435,38.665535],[99.426189,38.647361],[99.432247,38.623425],[99.450912,38.604431],[99.496103,38.612918],[99.514277,38.597661],[99.514114,38.568452],[99.529013,38.546107],[99.548661,38.534275],[99.555702,38.520418],[99.585338,38.498564],[99.63937,38.474578],[99.659673,38.449167],[99.679157,38.436609],[99.715342,38.425164],[99.73499,38.412603],[99.75824,38.410475],[99.830774,38.368621],[99.909203,38.343375],[99.937201,38.34155],[99.959796,38.320656],[100.001712,38.314975],[100.050177,38.283215],[100.071463,38.284535],[100.099133,38.270325],[100.116162,38.254183],[100.127951,38.230624],[100.160206,38.217013],[100.183129,38.222397],[100.180509,38.245451],[100.169211,38.262001],[100.157914,38.310511],[100.164627,38.327452],[100.135646,38.33516],[100.116653,38.35027],[100.111414,38.377338],[100.091602,38.408449],[100.047885,38.421518],[100.047557,38.430229],[100.022015,38.432558],[100.025945,38.451293],[100.001221,38.466986],[100.025781,38.507974],[100.064095,38.518597],[100.090128,38.49229],[100.112232,38.497248],[100.12615,38.485206],[100.151364,38.478323],[100.164791,38.460507],[100.205069,38.456254],[100.241254,38.43985],[100.259592,38.366391],[100.274001,38.379163],[100.300853,38.389095],[100.331308,38.337493],[100.318209,38.328365],[100.359797,38.307874],[100.373715,38.309091],[100.396637,38.293262],[100.424145,38.307163],[100.435278,38.301279],[100.437243,38.26799],[100.461148,38.265858],[100.474411,38.288696],[100.496515,38.273675],[100.520584,38.271035],[100.546617,38.246872],[100.574452,38.251442],[100.595082,38.242303],[100.618987,38.265757],[100.673838,38.256214],[100.686282,38.249614],[100.714935,38.253574],[100.751775,38.238749],[100.780265,38.213559],[100.789107,38.193543],[100.810064,38.181247],[100.822017,38.161934],[100.843794,38.149123],[100.860494,38.148412],[100.911743,38.179214],[100.938104,38.160409],[100.925005,38.14892],[100.916164,38.115053],[100.922713,38.085547],[100.894878,38.063256],[100.887347,38.049614],[100.89668,38.029757],[100.894715,38.013562],[100.917965,37.999707],[100.964138,38.011015],[100.980347,38.006838],[100.997539,37.988396],[101.020953,37.975454],[101.034543,37.976575],[101.077114,37.941812],[101.102984,37.946503],[101.114281,37.920192],[101.130818,37.913664],[101.152268,37.891117],[101.150794,37.877749],[101.172734,37.860908],[101.202697,37.847535],[101.23921,37.843144],[101.258531,37.832831],[101.279161,37.836712],[101.319931,37.811281],[101.362338,37.791257],[101.376746,37.801066],[101.382641,37.82221],[101.402944,37.831708],[101.443222,37.868155],[101.482846,37.853558],[101.500365,37.857948],[101.542608,37.838958],[101.598278,37.827419],[101.619072,37.809851],[101.640685,37.775827],[101.67032,37.754261],[101.659187,37.733301],[101.791811,37.696071],[101.813587,37.681644],[101.816043,37.654318],[101.854357,37.664656],[101.872368,37.685737],[101.90888,37.703641],[101.946375,37.728086],[101.999097,37.725018],[102.033481,37.6885],[102.0343,37.667522],[102.047399,37.654318],[102.035283,37.627699]]]]}},{"type":"Feature","properties":{"adcode":620800,"name":"平凉市","center":[106.684691,35.54279],"centroid":[106.651661,35.305521],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":7,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.083103,35.421842],[106.072951,35.420788],[106.067876,35.436065],[106.072951,35.447546],[106.072133,35.463555],[106.053958,35.454709],[106.034474,35.469241],[106.017282,35.463766],[106.00402,35.439014],[105.965542,35.425635],[105.930667,35.425846],[105.894646,35.413834],[105.889734,35.439436],[105.897593,35.451549],[105.925591,35.450812],[105.988465,35.475559],[106.048555,35.489036],[106.047736,35.498089],[106.020557,35.493878],[106.016136,35.522191],[105.913311,35.539657],[105.902832,35.547337],[105.868612,35.539973],[105.862063,35.515035],[105.846999,35.49051],[105.83652,35.494826],[105.834719,35.541025],[105.816381,35.575105],[105.798207,35.565745],[105.777576,35.586777],[105.785763,35.591929],[105.762185,35.602968],[105.759074,35.634395],[105.742046,35.626303],[105.744011,35.639964],[105.714702,35.647004],[105.722889,35.673477],[105.704224,35.68587],[105.69047,35.683979],[105.723708,35.725871],[105.728456,35.699626],[105.737625,35.697421],[105.758911,35.725032],[105.734842,35.724402],[105.707826,35.737941],[105.679827,35.737626],[105.668857,35.750009],[105.595668,35.715584],[105.570126,35.716319],[105.575038,35.701306],[105.564395,35.687655],[105.561284,35.724612],[105.530175,35.726921],[105.509381,35.718943],[105.485967,35.726396],[105.457313,35.715374],[105.456658,35.68902],[105.520678,35.608014],[105.476143,35.60034],[105.473687,35.553859],[105.451583,35.551124],[105.447326,35.537553],[105.414251,35.526821],[105.406065,35.514403],[105.415398,35.497457],[105.384288,35.490088],[105.355471,35.495668],[105.345483,35.485351],[105.383797,35.458921],[105.393457,35.425003],[105.404427,35.407406],[105.426859,35.398342],[105.427841,35.380107],[105.440285,35.373782],[105.456331,35.345101],[105.477289,35.352166],[105.47778,35.388435],[105.489569,35.387591],[105.506925,35.358915],[105.54049,35.342148],[105.532631,35.311873],[105.559483,35.293301],[105.549495,35.283697],[105.545893,35.257941],[105.573564,35.207459],[105.607457,35.223304],[105.614661,35.216438],[105.617117,35.1821],[105.63873,35.173117],[105.648227,35.145845],[105.638403,35.139396],[105.635947,35.120362],[105.646262,35.104391],[105.706516,35.071805],[105.707334,35.044076],[105.725345,35.027349],[105.738608,35.047781],[105.75449,35.023749],[105.774793,35.024385],[105.784125,35.062916],[105.803119,35.074028],[105.844052,35.070959],[105.849619,35.058789],[105.887605,35.052015],[105.898739,35.063445],[105.92903,35.06027],[105.934924,35.096352],[105.961285,35.097516],[105.991576,35.120785],[106.006639,35.112747],[106.004675,35.090216],[106.018592,35.089581],[106.064437,35.123958],[106.087196,35.11444],[106.116668,35.122371],[106.147778,35.144471],[106.157765,35.12142],[106.177413,35.152294],[106.191331,35.162654],[106.211797,35.152294],[106.27549,35.171638],[106.302997,35.150603],[106.315113,35.120997],[106.330177,35.112642],[106.365707,35.13284],[106.370128,35.10492],[106.398781,35.083127],[106.382408,35.059318],[106.405985,35.035395],[106.446755,35.033807],[106.46231,35.040583],[106.488671,35.02089],[106.503571,35.033807],[106.521418,35.027773],[106.545978,35.070536],[106.543522,35.085032],[106.575777,35.08937],[106.615401,35.071065],[106.640124,35.071488],[106.706436,35.081858],[106.714459,35.105555],[106.777824,35.094236],[106.838406,35.079847],[106.856908,35.091274],[106.900624,35.094553],[106.911103,35.080694],[106.945979,35.077414],[106.950072,35.066938],[106.990842,35.068525],[107.012454,35.029361],[107.032757,35.030102],[107.050932,35.040794],[107.048312,35.028302],[107.088754,35.020785],[107.097596,34.998228],[107.089573,34.976724],[107.119536,34.950234],[107.162434,34.944088],[107.179954,34.928294],[107.189614,34.893305],[107.201075,34.881639],[107.223016,34.878138],[107.231202,34.892563],[107.251997,34.881108],[107.262312,34.907515],[107.282942,34.911756],[107.286708,34.931898],[107.322402,34.938152],[107.350237,34.934124],[107.372013,34.918011],[107.392971,34.932428],[107.426045,34.928718],[107.455517,34.916739],[107.474838,34.919389],[107.523958,34.909847],[107.536729,34.915361],[107.537875,34.932534],[107.551138,34.940272],[107.562108,34.966553],[107.572096,34.971427],[107.605661,34.958712],[107.619742,34.964646],[107.633332,34.953943],[107.6258,34.918965],[107.639881,34.918753],[107.637753,34.933276],[107.65429,34.933594],[107.675412,34.95087],[107.74156,34.95352],[107.778564,34.964752],[107.804761,34.956805],[107.80689,34.973652],[107.842092,34.978949],[107.863378,34.999181],[107.84373,35.002252],[107.848314,35.023855],[107.82752,35.022161],[107.80034,35.033384],[107.759407,35.071171],[107.754004,35.095082],[107.722567,35.114863],[107.727643,35.120151],[107.715854,35.16815],[107.6872,35.216649],[107.670336,35.214431],[107.651998,35.239779],[107.66264,35.255407],[107.69244,35.251183],[107.720111,35.269237],[107.737303,35.267442],[107.736812,35.296151],[107.718637,35.303221],[107.745817,35.311662],[107.737139,35.326748],[107.744343,35.338034],[107.736812,35.353643],[107.721912,35.353432],[107.707667,35.371251],[107.690639,35.407195],[107.700626,35.424581],[107.678522,35.43459],[107.665096,35.427637],[107.634969,35.431851],[107.636279,35.444281],[107.617614,35.462186],[107.594527,35.462397],[107.598129,35.487141],[107.585031,35.482508],[107.592726,35.467135],[107.570622,35.46345],[107.542951,35.495247],[107.53018,35.497984],[107.504474,35.480087],[107.500708,35.459974],[107.479586,35.461659],[107.482861,35.485983],[107.451752,35.485351],[107.423589,35.502089],[107.405251,35.50051],[107.383802,35.48114],[107.352365,35.490931],[107.332553,35.488825],[107.290638,35.518192],[107.255108,35.522085],[107.256745,35.499878],[107.233986,35.513561],[107.198783,35.509562],[107.189287,35.517981],[107.171112,35.474401],[107.126413,35.493141],[107.096613,35.466609],[107.064522,35.478929],[107.056499,35.465451],[107.052242,35.491036],[106.990187,35.532187],[106.989368,35.539131],[106.926003,35.579101],[106.90308,35.611168],[106.876719,35.632188],[106.823833,35.661607],[106.754738,35.691225],[106.737546,35.68944],[106.674836,35.728076],[106.662392,35.707605],[106.633248,35.714849],[106.620968,35.743818],[106.6136,35.729755],[106.599682,35.743713],[106.597554,35.727971],[106.566608,35.738781],[106.530423,35.741824],[106.506354,35.737521],[106.504226,35.736157],[106.498004,35.732484],[106.4926,35.732799],[106.465912,35.717999],[106.44872,35.694166],[106.434966,35.688495],[106.439387,35.661817],[106.459854,35.643852],[106.454287,35.62914],[106.482449,35.575526],[106.460509,35.579417],[106.451012,35.553544],[106.454778,35.537658],[106.440697,35.52661],[106.462637,35.50272],[106.465584,35.481034],[106.490144,35.480403],[106.483431,35.450601],[106.503571,35.414993],[106.494893,35.401399],[106.496039,35.376101],[106.509301,35.35881],[106.493747,35.351955],[106.490472,35.329596],[106.472298,35.310712],[106.430545,35.292985],[106.417774,35.275992],[106.38732,35.269764],[106.368163,35.273459],[106.375695,35.248544],[106.363578,35.238301],[106.335907,35.251078],[106.318715,35.267125],[106.32068,35.277681],[106.285641,35.301532],[106.275326,35.329174],[106.261736,35.330334],[106.241433,35.358493],[106.24962,35.366823],[106.237504,35.409513],[106.191986,35.412253],[106.17463,35.438382],[106.166934,35.420999],[106.134515,35.397815],[106.123873,35.373465],[106.106517,35.36714],[106.100295,35.402031],[106.08736,35.402347],[106.083103,35.421842]]],[[[106.047736,35.498089],[106.048555,35.489036],[106.053958,35.454709],[106.072133,35.463555],[106.068858,35.489141],[106.099476,35.499668],[106.078518,35.509667],[106.047736,35.498089]]],[[[106.072951,35.447546],[106.067876,35.436065],[106.072951,35.420788],[106.083103,35.421842],[106.072951,35.447546]]],[[[106.504226,35.736157],[106.506354,35.737521],[106.4926,35.732799],[106.498004,35.732484],[106.504226,35.736157]]]]}},{"type":"Feature","properties":{"adcode":620900,"name":"酒泉市","center":[98.510795,39.744023],"centroid":[96.063265,40.283136],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":8,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.455988,39.877427],[99.440925,39.88596],[99.45959,39.898063],[99.491355,39.884274],[99.524756,39.888143],[99.55341,39.904213],[99.621195,39.928211],[99.714032,39.97212],[99.7512,40.006891],[99.836996,40.012635],[99.881368,40.030853],[99.927704,40.063912],[99.955867,40.150836],[100.001712,40.196972],[100.169703,40.277611],[100.169703,40.541356],[100.242564,40.618639],[100.237325,40.716808],[100.224717,40.727489],[100.107975,40.875572],[100.057054,40.908021],[99.98583,40.909682],[99.828482,40.921993],[99.673263,40.932934],[99.566017,40.846725],[99.36266,40.852006],[99.174694,40.858363],[99.173057,40.747278],[99.125574,40.715142],[99.10216,40.67642],[99.041579,40.693774],[98.985091,40.782826],[98.791066,40.705341],[98.789265,40.678872],[98.807276,40.659356],[98.796142,40.633359],[98.803019,40.607843],[98.758156,40.642189],[98.715585,40.66171],[98.687914,40.696813],[98.668594,40.772937],[98.570026,40.746887],[98.627988,40.677891],[98.344237,40.568371],[98.333267,40.91916],[98.293808,40.932153],[98.250254,40.939185],[98.184761,40.988003],[98.142354,41.00186],[97.972071,41.097904],[97.910671,41.160914],[97.629541,41.440562],[97.63478,41.451901],[97.616442,41.464304],[97.61415,41.477189],[97.665235,41.517765],[97.846979,41.656635],[97.663761,41.969056],[97.500846,42.243878],[97.35938,42.476993],[97.247878,42.668756],[97.172724,42.795163],[97.073502,42.774287],[96.982629,42.757392],[96.856882,42.755493],[96.742105,42.757107],[96.597692,42.74372],[96.49192,42.736598],[96.386148,42.727765],[96.354711,42.708482],[96.281522,42.677882],[96.18934,42.634427],[96.168055,42.631763],[96.165272,42.622345],[96.103544,42.604171],[96.072435,42.56933],[96.023806,42.542472],[96.017584,42.482142],[95.978779,42.436737],[96.066213,42.4145],[96.042144,42.3529],[96.041162,42.326522],[96.17837,42.217934],[96.077183,42.149623],[96.138911,42.054172],[96.137437,42.019601],[96.115988,41.984724],[96.039197,41.925301],[96.009889,41.911255],[95.918361,41.876029],[95.883977,41.867845],[95.855652,41.849645],[95.801456,41.848104],[95.759212,41.836063],[95.676036,41.830187],[95.650985,41.823732],[95.610706,41.805133],[95.571901,41.796169],[95.562405,41.785373],[95.534898,41.77467],[95.510174,41.756347],[95.39425,41.693526],[95.359539,41.668033],[95.33547,41.644172],[95.300104,41.566152],[95.250329,41.608992],[95.212015,41.676918],[95.194168,41.694974],[95.199571,41.719395],[95.16486,41.735317],[95.13768,41.772452],[95.110664,41.768402],[95.011278,41.726343],[94.968871,41.71872],[94.861953,41.668516],[94.809885,41.619336],[94.750123,41.538285],[94.534158,41.505953],[94.281354,41.335216],[94.184096,41.268583],[94.010866,41.114855],[93.908205,40.983415],[93.809965,40.879482],[93.821099,40.793692],[93.760845,40.664848],[93.506403,40.648468],[92.928423,40.572693],[92.920564,40.39184],[92.906811,40.310648],[92.796454,40.153801],[92.769929,40.001047],[92.745533,39.868298],[92.687735,39.657395],[92.639925,39.514306],[92.525475,39.368623],[92.4608,39.322529],[92.378606,39.258485],[92.340129,39.238059],[92.346351,39.206808],[92.341439,39.182057],[92.345696,39.141556],[92.366162,39.096014],[92.351099,39.08357],[92.353719,39.069518],[92.37484,39.057672],[92.389249,39.05958],[92.410698,39.038594],[92.423142,39.046627],[92.458999,39.042711],[92.460473,39.066206],[92.494038,39.102135],[92.536282,39.10073],[92.545778,39.111265],[92.610453,39.108957],[92.645328,39.119993],[92.663503,39.110864],[92.715242,39.126813],[92.72785,39.121597],[92.765672,39.137144],[92.831166,39.143862],[92.86686,39.138648],[92.889127,39.159905],[92.939066,39.169629],[92.959042,39.165218],[92.968702,39.149277],[92.993589,39.151784],[93.043201,39.14647],[93.115407,39.179552],[93.142423,39.160707],[93.126705,39.122801],[93.131944,39.107954],[93.165673,39.090696],[93.175497,39.069418],[93.198093,39.046426],[93.185649,38.947348],[93.179263,38.923914],[93.206934,38.915867],[93.23788,38.916168],[93.273901,38.896146],[93.302555,38.894033],[93.33219,38.904095],[93.453189,38.915464],[93.72908,38.924518],[93.748073,38.912345],[93.834361,38.867663],[93.884627,38.867663],[93.884136,38.826175],[93.772961,38.820937],[93.756424,38.807639],[93.77509,38.770047],[93.800304,38.750791],[93.871856,38.722552],[93.951431,38.715187],[93.972225,38.724872],[94.281354,38.760067],[94.334894,38.755631],[94.370097,38.762789],[94.428059,38.634434],[94.511072,38.445116],[94.527118,38.426076],[94.529901,38.360815],[94.552005,38.35027],[94.583115,38.369229],[94.611277,38.371358],[94.636983,38.380886],[94.678735,38.387271],[94.729329,38.389602],[94.75045,38.385041],[94.812178,38.385548],[94.861462,38.393757],[94.883893,38.414832],[94.902231,38.420505],[94.973455,38.43033],[94.981969,38.424962],[95.0175,38.426177],[95.031581,38.412704],[95.045334,38.418782],[95.072678,38.402471],[95.122125,38.416959],[95.140791,38.392338],[95.169117,38.387575],[95.192367,38.372067],[95.188601,38.364464],[95.204647,38.331611],[95.229698,38.330495],[95.259989,38.302293],[95.315495,38.318526],[95.335634,38.308077],[95.361667,38.313352],[95.388683,38.301177],[95.408168,38.300365],[95.424541,38.311526],[95.440914,38.310917],[95.454996,38.291639],[95.487906,38.31457],[95.501005,38.313149],[95.516232,38.294785],[95.536044,38.313251],[95.54947,38.315178],[95.590076,38.344288],[95.608414,38.339217],[95.627734,38.349155],[95.640178,38.365985],[95.662446,38.365275],[95.674398,38.390615],[95.704034,38.400141],[95.723846,38.378555],[95.761832,38.365884],[95.776077,38.355948],[95.808333,38.349459],[95.823232,38.355137],[95.837641,38.342462],[95.856143,38.284433],[95.896421,38.290117],[95.933752,38.257838],[95.938501,38.237327],[95.970429,38.226663],[95.984019,38.210918],[96.006941,38.20726],[96.044109,38.180535],[96.064739,38.172811],[96.073745,38.188157],[96.101743,38.188056],[96.115497,38.180637],[96.15512,38.174437],[96.209316,38.150242],[96.222087,38.149123],[96.227654,38.16966],[96.252542,38.167423],[96.26433,38.14587],[96.313123,38.161934],[96.301825,38.183178],[96.335718,38.246162],[96.378289,38.277329],[96.399738,38.281795],[96.463594,38.277735],[96.52483,38.262001],[96.66515,38.230218],[96.663349,38.259666],[96.65418,38.297727],[96.638625,38.307671],[96.625363,38.339217],[96.627,38.356455],[96.663513,38.388487],[96.679722,38.411691],[96.698061,38.422125],[96.708048,38.45919],[96.666296,38.483688],[96.680214,38.498766],[96.700844,38.497046],[96.712797,38.506659],[96.780582,38.504331],[96.794991,38.510301],[96.800558,38.527802],[96.76732,38.552478],[96.783038,38.566936],[96.805306,38.570575],[96.794336,38.607968],[96.846731,38.599379],[96.876858,38.580683],[96.899125,38.580683],[96.92565,38.564408],[96.960689,38.557837],[97.055982,38.594529],[97.047304,38.653924],[97.057456,38.672803],[97.043866,38.685521],[97.019961,38.686228],[97.009154,38.702677],[97.021598,38.730924],[97.023072,38.75553],[97.00064,38.761075],[96.987705,38.793028],[96.9936,38.83534],[96.983776,38.870985],[96.993108,38.884774],[96.966256,38.886787],[96.940877,38.907919],[96.949228,38.939202],[96.939076,38.955492],[96.948737,38.992282],[96.965601,39.016999],[96.957742,39.041707],[96.969203,39.079054],[96.969858,39.09782],[97.011938,39.141857],[96.997857,39.151884],[96.983612,39.17855],[96.962981,39.198392],[97.017505,39.208311],[97.047632,39.20771],[97.060403,39.19759],[97.141123,39.199995],[97.163555,39.194885],[97.220862,39.193081],[97.3006,39.16592],[97.342025,39.168326],[97.365275,39.143562],[97.401296,39.14667],[97.43306,39.126011],[97.426347,39.173738],[97.395074,39.240363],[97.402115,39.293016],[97.397039,39.318027],[97.429295,39.347429],[97.453855,39.352229],[97.477268,39.373221],[97.480543,39.406396],[97.480216,39.472999],[97.520494,39.53874],[97.557825,39.554094],[97.569942,39.564162],[97.585333,39.603124],[97.619062,39.630613],[97.656229,39.632007],[97.676532,39.679092],[97.700273,39.697101],[97.785579,39.680684],[97.828968,39.68536],[97.855657,39.71043],[97.857458,39.711823],[97.855493,39.713016],[97.85975,39.716895],[97.862533,39.715005],[97.974363,39.780616],[97.99221,39.808631],[98.031179,39.827996],[97.98386,39.882785],[97.990901,39.891913],[98.036255,39.914725],[98.004818,39.922956],[98.024793,39.946551],[98.066382,39.954084],[98.068674,39.983217],[98.062943,39.99976],[98.162002,39.971625],[98.296591,39.962806],[98.329501,39.955868],[98.371745,39.957454],[98.392539,39.965779],[98.420701,39.955373],[98.444115,39.955769],[98.474897,39.969247],[98.497001,39.950219],[98.497328,39.916114],[98.520087,39.909469],[98.518777,39.892905],[98.484557,39.864428],[98.491106,39.840705],[98.456395,39.823429],[98.355535,39.78002],[98.361102,39.756169],[98.406947,39.731016],[98.413824,39.710331],[98.391229,39.690733],[98.381732,39.663765],[98.370762,39.654309],[98.357009,39.630315],[98.330156,39.569544],[98.362412,39.542629],[98.396632,39.535549],[98.402035,39.514406],[98.410058,39.550904],[98.434127,39.577517],[98.549723,39.509718],[98.530566,39.486771],[98.515503,39.480384],[98.526473,39.467509],[98.553325,39.470204],[98.579686,39.481981],[98.57019,39.460622],[98.612269,39.444548],[98.660407,39.43646],[98.710509,39.414788],[98.72852,39.399203],[98.752589,39.389811],[98.800235,39.360426],[98.838713,39.34423],[98.866547,39.324229],[98.880956,39.33003],[98.902078,39.316527],[98.906498,39.33253],[98.975758,39.33073],[98.985418,39.312926],[99.023568,39.30032],[99.046491,39.285511],[99.060244,39.257885],[99.080711,39.267795],[99.120498,39.261088],[99.141292,39.24607],[99.143585,39.208211],[99.179115,39.181556],[99.176331,39.171634],[99.207113,39.205706],[99.213663,39.226642],[99.198927,39.275903],[99.207277,39.283809],[99.280793,39.289113],[99.293073,39.30012],[99.30519,39.33313],[99.308137,39.357527],[99.256233,39.427472],[99.23593,39.458426],[99.183372,39.475394],[99.135234,39.503633],[99.10609,39.514107],[99.097575,39.530763],[99.072852,39.554891],[99.056478,39.587681],[99.064665,39.609997],[99.053695,39.623144],[99.025205,39.629617],[98.977886,39.619559],[98.946613,39.594955],[98.938099,39.577916],[98.872114,39.594058],[98.816118,39.592065],[98.804492,39.627028],[98.824632,39.676405],[98.881447,39.665457],[98.94956,39.66496],[98.94956,39.701478],[98.960039,39.788565],[98.987055,39.832762],[99.026843,39.854007],[99.06925,39.850136],[99.083331,39.837329],[99.113785,39.835046],[99.140965,39.80148],[99.193196,39.809128],[99.206295,39.829982],[99.229872,39.851624],[99.247719,39.838024],[99.320581,39.847753],[99.35873,39.86681],[99.455988,39.877427]]],[[[97.862533,39.715005],[97.85975,39.716895],[97.855493,39.713016],[97.857458,39.711823],[97.862533,39.715005]]]]}},{"type":"Feature","properties":{"adcode":621000,"name":"庆阳市","center":[107.638372,35.734218],"centroid":[107.593489,36.166303],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":9,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.754738,35.691225],[106.823833,35.661607],[106.876719,35.632188],[106.90308,35.611168],[106.926003,35.579101],[106.989368,35.539131],[106.990187,35.532187],[107.052242,35.491036],[107.056499,35.465451],[107.064522,35.478929],[107.096613,35.466609],[107.126413,35.493141],[107.171112,35.474401],[107.189287,35.517981],[107.198783,35.509562],[107.233986,35.513561],[107.256745,35.499878],[107.255108,35.522085],[107.290638,35.518192],[107.332553,35.488825],[107.352365,35.490931],[107.383802,35.48114],[107.405251,35.50051],[107.423589,35.502089],[107.451752,35.485351],[107.482861,35.485983],[107.479586,35.461659],[107.500708,35.459974],[107.504474,35.480087],[107.53018,35.497984],[107.542951,35.495247],[107.570622,35.46345],[107.592726,35.467135],[107.585031,35.482508],[107.598129,35.487141],[107.594527,35.462397],[107.617614,35.462186],[107.636279,35.444281],[107.634969,35.431851],[107.665096,35.427637],[107.678522,35.43459],[107.700626,35.424581],[107.690639,35.407195],[107.707667,35.371251],[107.721912,35.353432],[107.736812,35.353643],[107.744343,35.338034],[107.737139,35.326748],[107.745817,35.311662],[107.808036,35.287286],[107.831122,35.27272],[107.845039,35.275676],[107.868617,35.256357],[107.90251,35.261741],[107.936075,35.253928],[107.936894,35.266809],[107.960635,35.26153],[107.949829,35.24527],[107.970132,35.241574],[108.048724,35.253823],[108.094897,35.280109],[108.123878,35.281798],[108.174635,35.30512],[108.193792,35.306597],[108.233252,35.286441],[108.22703,35.276942],[108.23931,35.256251],[108.268618,35.268814],[108.29809,35.268392],[108.345409,35.300688],[108.352777,35.285808],[108.400096,35.282747],[108.403043,35.27747],[108.449052,35.27367],[108.488021,35.274831],[108.525025,35.288974],[108.543527,35.303959],[108.56825,35.290874],[108.600342,35.308813],[108.615406,35.331706],[108.610821,35.35649],[108.631124,35.418575],[108.619499,35.443017],[108.616552,35.477244],[108.605909,35.502826],[108.625721,35.537132],[108.618517,35.55691],[108.567596,35.585515],[108.56383,35.597922],[108.539761,35.605596],[108.523224,35.661187],[108.530428,35.680514],[108.517002,35.716004],[108.533866,35.746232],[108.520113,35.766797],[108.524861,35.774875],[108.527808,35.824162],[108.524534,35.839676],[108.499482,35.872267],[108.500956,35.885048],[108.518639,35.905472],[108.563011,35.921285],[108.569233,35.939606],[108.593793,35.950806],[108.633744,35.944735],[108.656503,35.953004],[108.661742,35.993917],[108.688595,36.021111],[108.682536,36.055091],[108.690887,36.088742],[108.707424,36.10974],[108.697764,36.117052],[108.712336,36.138774],[108.702839,36.160803],[108.665017,36.214753],[108.646024,36.254175],[108.655029,36.273982],[108.642094,36.311186],[108.641603,36.359098],[108.651263,36.384708],[108.619008,36.433927],[108.593629,36.431534],[108.562684,36.438607],[108.533048,36.454624],[108.510616,36.474485],[108.51471,36.445576],[108.496863,36.422691],[108.485565,36.429453],[108.459368,36.42394],[108.418762,36.448696],[108.402552,36.4462],[108.408119,36.459616],[108.391582,36.505462],[108.365385,36.519698],[108.359654,36.547229],[108.340661,36.558862],[108.311189,36.561043],[108.287447,36.553357],[108.270255,36.567482],[108.262396,36.549307],[108.245532,36.571012],[108.216551,36.571324],[108.204762,36.596656],[108.222936,36.630904],[108.197885,36.62997],[108.182331,36.590116],[108.163665,36.563743],[108.141397,36.562601],[108.139105,36.576723],[108.115691,36.586587],[108.092932,36.587313],[108.094897,36.604545],[108.081143,36.615235],[108.06215,36.592608],[108.032023,36.606413],[108.002715,36.636403],[108.022363,36.647193],[108.023345,36.6697],[108.004843,36.683181],[107.986178,36.6753],[107.985687,36.652172],[107.975044,36.666278],[107.937385,36.658188],[107.940987,36.694897],[107.932473,36.711172],[107.914299,36.721018],[107.907422,36.750238],[107.881879,36.74713],[107.866652,36.766708],[107.826701,36.785453],[107.820316,36.776755],[107.768248,36.792909],[107.745326,36.810716],[107.709632,36.80554],[107.673283,36.832554],[107.640373,36.818789],[107.603532,36.825827],[107.58896,36.836487],[107.540168,36.828622],[107.528543,36.853766],[107.533618,36.867215],[107.477949,36.908476],[107.447167,36.899378],[107.365464,36.905374],[107.332881,36.925636],[107.311759,36.913025],[107.295386,36.929046],[107.304391,36.951988],[107.287363,36.992377],[107.290965,37.004046],[107.279995,37.041931],[107.286217,37.055552],[107.268697,37.099496],[107.249704,37.106302],[107.23546,37.096196],[107.2276,37.106818],[107.180445,37.143518],[107.134108,37.134757],[107.095795,37.115582],[107.078275,37.12919],[107.061738,37.124139],[107.030629,37.140838],[107.031448,37.115479],[106.984783,37.107539],[106.960878,37.113932],[106.952528,37.128778],[106.9057,37.15135],[106.891292,37.14125],[106.913396,37.132386],[106.911922,37.11022],[106.891292,37.098465],[106.870989,37.115891],[106.858872,37.113726],[106.780771,37.158667],[106.767182,37.132283],[106.77324,37.123005],[106.756539,37.102177],[106.726903,37.108983],[106.72854,37.121459],[106.699723,37.11785],[106.687771,37.129912],[106.66976,37.111148],[106.660755,37.126098],[106.640124,37.118984],[106.616874,37.135169],[106.605249,37.127644],[106.620804,37.095784],[106.645528,37.065045],[106.651913,37.033881],[106.666813,37.016745],[106.641598,37.011996],[106.646674,37.000432],[106.643235,36.96294],[106.622932,36.959324],[106.595425,36.969035],[106.595753,36.940415],[106.57987,36.934834],[106.580525,36.947442],[106.540411,36.984425],[106.554983,36.953125],[106.549089,36.942585],[106.601974,36.91809],[106.609997,36.90403],[106.600665,36.891416],[106.609506,36.878178],[106.627026,36.89245],[106.638651,36.870525],[106.626698,36.861939],[106.641925,36.853559],[106.640616,36.834003],[106.658463,36.819617],[106.641762,36.802744],[106.639469,36.771473],[106.627517,36.75231],[106.632265,36.723298],[106.611471,36.730241],[106.594934,36.749617],[106.57545,36.746923],[106.57283,36.733972],[106.553837,36.737805],[106.514377,36.715629],[106.53075,36.68992],[106.490963,36.685773],[106.495056,36.646363],[106.491291,36.628725],[106.468532,36.620424],[106.444627,36.624886],[106.444299,36.600808],[106.471315,36.580461],[106.449702,36.577658],[106.459199,36.568728],[106.444954,36.5572],[106.397471,36.574335],[106.392232,36.556473],[106.364233,36.577658],[106.371765,36.548891],[106.401565,36.546294],[106.453796,36.497875],[106.475408,36.495692],[106.483759,36.480931],[106.494729,36.494445],[106.518143,36.480931],[106.51978,36.456288],[106.503407,36.441728],[106.504717,36.41468],[106.492273,36.422587],[106.488507,36.400424],[106.503898,36.401569],[106.526985,36.390224],[106.525183,36.372737],[106.510284,36.378879],[106.506354,36.328271],[106.497349,36.313791],[106.509792,36.30358],[106.510447,36.286073],[106.480157,36.316083],[106.470824,36.306289],[106.504717,36.26606],[106.514541,36.272002],[106.541229,36.253862],[106.556293,36.260639],[106.559895,36.292117],[106.584291,36.287949],[106.594279,36.270334],[106.605904,36.295661],[106.61098,36.273148],[106.655352,36.258658],[106.685315,36.273357],[106.698741,36.243017],[106.716588,36.231963],[106.735745,36.237282],[106.763579,36.214961],[106.795344,36.223098],[106.808442,36.210997],[106.827763,36.21517],[106.833821,36.229251],[106.841353,36.206511],[106.851504,36.207555],[106.875082,36.176877],[106.898168,36.169362],[106.912413,36.153913],[106.90701,36.136372],[106.918471,36.128853],[106.93026,36.138565],[106.925676,36.116112],[106.940084,36.126451],[106.944014,36.099607],[106.957604,36.091563],[106.959405,36.075367],[106.940575,36.064916],[106.942376,36.033136],[106.930588,36.028954],[106.928623,36.011176],[106.951218,36.004482],[106.944178,35.984293],[106.917653,35.961168],[106.891783,35.966191],[106.902589,35.943584],[106.918963,35.940443],[106.938447,35.953109],[106.944832,35.940234],[106.925184,35.926206],[106.912904,35.932173],[106.905373,35.912698],[106.886052,35.917515],[106.850195,35.887562],[106.873117,35.878239],[106.877865,35.852777],[106.89997,35.827307],[106.911267,35.831186],[106.926331,35.811686],[106.922237,35.803402],[106.897677,35.80854],[106.914378,35.791342],[106.908975,35.767741],[106.897677,35.759768],[106.885233,35.771832],[106.868533,35.772042],[106.867059,35.738676],[106.827763,35.745287],[106.818103,35.739515],[106.816465,35.717579],[106.806314,35.7096],[106.782409,35.723667],[106.753101,35.726396],[106.744586,35.700466],[106.754738,35.691225]]]]}},{"type":"Feature","properties":{"adcode":621100,"name":"定西市","center":[104.626294,35.579578],"centroid":[104.456158,35.122537],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":10,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.638403,35.139396],[105.648227,35.145845],[105.63873,35.173117],[105.617117,35.1821],[105.614661,35.216438],[105.607457,35.223304],[105.573564,35.207459],[105.545893,35.257941],[105.549495,35.283697],[105.559483,35.293301],[105.532631,35.311873],[105.54049,35.342148],[105.506925,35.358915],[105.489569,35.387591],[105.47778,35.388435],[105.477289,35.352166],[105.456331,35.345101],[105.440285,35.373782],[105.427841,35.380107],[105.426859,35.398342],[105.404427,35.407406],[105.393457,35.425003],[105.383797,35.458921],[105.345483,35.485351],[105.319777,35.482824],[105.303404,35.500299],[105.271476,35.475138],[105.232998,35.482719],[105.1752,35.441858],[105.135413,35.449126],[105.117894,35.440278],[105.123461,35.420156],[105.083673,35.418575],[105.070738,35.454814],[105.044541,35.448916],[105.000333,35.456183],[104.996731,35.471347],[104.975446,35.476402],[104.966768,35.489983],[104.946465,35.491562],[104.933202,35.51293],[104.937132,35.544602],[104.95285,35.548179],[104.954979,35.57216],[104.967095,35.608435],[104.986743,35.635025],[104.985597,35.700361],[104.980358,35.716634],[104.937296,35.738256],[104.891941,35.767112],[104.884246,35.79344],[104.864762,35.804031],[104.865744,35.832444],[104.853628,35.854873],[104.807291,35.865875],[104.811385,35.877924],[104.768978,35.887457],[104.769305,35.91741],[104.738032,35.931754],[104.72788,35.951958],[104.709379,35.94955],[104.676959,35.986804],[104.646505,35.996533],[104.648797,36.010758],[104.676141,36.022994],[104.680725,36.033764],[104.663369,36.041501],[104.633242,36.035541],[104.61867,36.044846],[104.584941,36.029477],[104.561855,36.028013],[104.532383,36.014627],[104.500618,36.02017],[104.484572,36.020693],[104.483754,35.993708],[104.441019,35.974771],[104.42612,35.916154],[104.44282,35.89657],[104.448879,35.875619],[104.439055,35.864618],[104.421371,35.865456],[104.398612,35.808855],[104.401068,35.793964],[104.384695,35.767426],[104.369959,35.766692],[104.357351,35.74109],[104.331154,35.732379],[104.316746,35.705296],[104.317564,35.66791],[104.331809,35.658561],[104.305939,35.643327],[104.310196,35.601812],[104.290057,35.589616],[104.282198,35.571109],[104.225382,35.578575],[104.198039,35.598973],[104.202787,35.614111],[104.173151,35.649421],[104.148591,35.635025],[104.138931,35.618525],[104.110769,35.638178],[104.101436,35.636076],[104.092431,35.657615],[104.067543,35.664759],[104.053135,35.68608],[104.040036,35.68902],[104.019569,35.713589],[103.997956,35.716109],[103.980928,35.735737],[103.963736,35.735318],[103.952111,35.746756],[103.919855,35.757354],[103.901354,35.774979],[103.865005,35.794803],[103.848959,35.774979],[103.849614,35.803927],[103.837498,35.815985],[103.837334,35.841773],[103.799184,35.841039],[103.795909,35.852463],[103.779863,35.848166],[103.776425,35.896256],[103.76742,35.89039],[103.714697,35.909975],[103.702581,35.927253],[103.660993,35.914269],[103.643801,35.931336],[103.623989,35.934895],[103.595991,35.909452],[103.558659,35.911127],[103.542122,35.943898],[103.509212,35.940967],[103.498897,35.927253],[103.476629,35.917306],[103.471062,35.8818],[103.515925,35.851729],[103.547853,35.803193],[103.56439,35.807177],[103.59157,35.781063],[103.595663,35.75704],[103.621533,35.753577],[103.640526,35.719993],[103.694558,35.672952],[103.719937,35.659191],[103.785267,35.598973],[103.793126,35.564378],[103.8113,35.534186],[103.830948,35.520928],[103.832913,35.506825],[103.854362,35.498089],[103.854198,35.477349],[103.828001,35.458605],[103.822925,35.445018],[103.800494,35.435117],[103.811791,35.422685],[103.814084,35.39634],[103.780682,35.387486],[103.77708,35.356912],[103.74024,35.312717],[103.731726,35.277787],[103.699634,35.238512],[103.689974,35.219818],[103.691611,35.195626],[103.721083,35.190237],[103.716498,35.133263],[103.748426,35.115074],[103.735328,35.100477],[103.748918,35.088417],[103.738275,35.064927],[103.743514,35.044817],[103.758087,35.028302],[103.786249,35.01549],[103.784612,35.002676],[103.816703,34.993038],[103.834878,34.977996],[103.860584,34.987106],[103.911178,34.969096],[103.942942,34.936138],[103.952766,34.94981],[103.981092,34.946737],[103.984366,34.938046],[104.017768,34.936774],[104.024809,34.917057],[104.011055,34.910165],[104.027265,34.893411],[104.021207,34.872411],[103.964555,34.840581],[103.997629,34.807678],[103.999103,34.787717],[104.02399,34.774868],[104.004669,34.735244],[103.989115,34.738219],[103.963572,34.728656],[103.909049,34.744701],[103.881214,34.747357],[103.853052,34.738644],[103.833404,34.71686],[103.862876,34.682526],[103.850432,34.641369],[103.841591,34.634667],[103.834714,34.604768],[103.839462,34.575497],[103.828328,34.545364],[103.779045,34.536524],[103.768566,34.523316],[103.794763,34.492524],[103.810318,34.483572],[103.804751,34.471102],[103.8113,34.424508],[103.802786,34.408722],[103.753993,34.371592],[103.733363,34.331883],[103.698488,34.315011],[103.69243,34.300166],[103.70209,34.280617],[103.745152,34.287561],[103.77315,34.273245],[103.792798,34.270574],[103.821779,34.281258],[103.83717,34.273673],[103.879577,34.267369],[103.924276,34.213605],[103.936884,34.193609],[103.990916,34.161733],[104.028738,34.127276],[104.060339,34.151782],[104.067052,34.177993],[104.105693,34.194143],[104.153503,34.193074],[104.165783,34.210397],[104.162509,34.247492],[104.136966,34.269399],[104.116008,34.323127],[104.148755,34.339036],[104.14941,34.350779],[104.202787,34.375113],[104.269754,34.348644],[104.28711,34.376287],[104.328862,34.376607],[104.353913,34.369564],[104.366684,34.336687],[104.406308,34.338929],[104.417769,34.331028],[104.437417,34.298137],[104.445113,34.271108],[104.435125,34.258713],[104.452153,34.229214],[104.472456,34.218202],[104.511097,34.208045],[104.527634,34.19147],[104.536967,34.219592],[104.552358,34.204196],[104.571024,34.201629],[104.623746,34.234986],[104.665498,34.226114],[104.689894,34.248026],[104.720021,34.252942],[104.741143,34.233383],[104.779293,34.239583],[104.789117,34.252515],[104.814332,34.255187],[104.821536,34.27613],[104.844131,34.281472],[104.863288,34.301768],[104.852973,34.320457],[104.855429,34.343199],[104.844459,34.367856],[104.856902,34.379382],[104.895871,34.377995],[104.938278,34.386318],[104.96644,34.382583],[104.991983,34.396134],[104.983632,34.405735],[104.989035,34.425574],[104.966768,34.437198],[104.918139,34.438691],[104.88572,34.422908],[104.837909,34.445622],[104.791573,34.431866],[104.793046,34.482293],[104.783222,34.487089],[104.748347,34.472914],[104.753914,34.52747],[104.738523,34.555587],[104.716255,34.541423],[104.695952,34.544725],[104.671556,34.575816],[104.690877,34.618176],[104.685965,34.628497],[104.699555,34.6737],[104.646177,34.655941],[104.595584,34.654027],[104.601642,34.679017],[104.589362,34.699535],[104.601642,34.710058],[104.577246,34.721218],[104.591818,34.726106],[104.60639,34.745763],[104.584777,34.767221],[104.584286,34.787292],[104.597385,34.804387],[104.598858,34.838883],[104.620144,34.86456],[104.657803,34.872304],[104.697262,34.859574],[104.728863,34.86212],[104.740979,34.85289],[104.757844,34.86212],[104.794356,34.869334],[104.850189,34.865833],[104.878679,34.856073],[104.895871,34.862439],[104.909788,34.903909],[104.898818,34.924584],[104.920922,34.950022],[104.933694,34.93635],[104.971352,34.953202],[104.970042,34.940484],[105.006391,34.939636],[105.007865,34.928718],[105.035372,34.925432],[105.070738,34.943452],[105.073686,34.955639],[105.058131,34.981915],[105.092515,34.969096],[105.130501,34.963904],[105.16816,34.969308],[105.193539,34.954897],[105.192884,34.937516],[105.217771,34.93211],[105.254611,34.964646],[105.259851,34.979797],[105.249699,35.00956],[105.261816,35.028196],[105.27606,35.033596],[105.290141,35.006806],[105.299147,35.01962],[105.297346,35.046722],[105.321415,35.03836],[105.336478,35.049369],[105.354489,35.04831],[105.379867,35.072017],[105.391656,35.064927],[105.396568,35.089475],[105.41114,35.079424],[105.42031,35.114334],[105.456495,35.130831],[105.484984,35.093178],[105.505615,35.085561],[105.52428,35.063339],[105.541636,35.07244],[105.559974,35.127659],[105.535578,35.138762],[105.539508,35.152717],[105.558501,35.161385],[105.558173,35.1821],[105.572418,35.181361],[105.609094,35.152929],[105.638403,35.139396]]]]}},{"type":"Feature","properties":{"adcode":621200,"name":"陇南市","center":[104.929379,33.388598],"centroid":[105.225469,33.598913],"childrenNum":9,"level":"city","parent":{"adcode":620000},"subFeatureIndex":11,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.494238,34.241827],[106.494238,34.201415],[106.475081,34.180025],[106.472298,34.154885],[106.453959,34.135517],[106.402874,34.109829],[106.363087,34.100622],[106.336562,34.109829],[106.327393,34.140868],[106.344585,34.179277],[106.330177,34.203447],[106.323627,34.230497],[106.282039,34.225472],[106.270742,34.206869],[106.276963,34.191256],[106.266648,34.161412],[106.244708,34.152638],[106.246836,34.132199],[106.229972,34.118071],[106.189693,34.110471],[106.14876,34.124279],[106.139755,34.113575],[106.117323,34.111434],[106.100622,34.125457],[106.082121,34.124814],[106.071805,34.146646],[106.041351,34.158737],[106.017773,34.159058],[105.9716,34.146111],[105.945076,34.144185],[105.90316,34.119034],[105.86501,34.125136],[105.86108,34.15328],[105.815235,34.147502],[105.781997,34.11957],[105.772664,34.136694],[105.771027,34.164407],[105.740409,34.176602],[105.72338,34.174035],[105.718141,34.158844],[105.704715,34.162054],[105.667711,34.144613],[105.651665,34.119034],[105.640859,34.081241],[105.61548,34.081348],[105.623994,34.096232],[105.596978,34.105868],[105.591739,34.084453],[105.563576,34.086381],[105.552606,34.113682],[105.563085,34.137229],[105.547858,34.152745],[105.555226,34.197245],[105.540163,34.248668],[105.554899,34.258072],[105.530338,34.273245],[105.527391,34.28457],[105.547039,34.291621],[105.558009,34.306788],[105.546384,34.319496],[105.522807,34.304972],[105.501521,34.328786],[105.491861,34.352166],[105.460261,34.391653],[105.408193,34.420988],[105.384943,34.408615],[105.350887,34.43144],[105.31159,34.442423],[105.312082,34.43048],[105.291615,34.428667],[105.290633,34.439331],[105.260342,34.452979],[105.254284,34.49977],[105.24053,34.512343],[105.243969,34.528429],[105.227759,34.533009],[105.20631,34.518948],[105.160792,34.527364],[105.128373,34.508401],[105.108725,34.460975],[105.084001,34.460548],[105.06861,34.44189],[105.038974,34.423441],[105.013104,34.420455],[104.989035,34.425574],[104.983632,34.405735],[104.991983,34.396134],[104.96644,34.382583],[104.938278,34.386318],[104.895871,34.377995],[104.856902,34.379382],[104.844459,34.367856],[104.855429,34.343199],[104.852973,34.320457],[104.863288,34.301768],[104.844131,34.281472],[104.821536,34.27613],[104.814332,34.255187],[104.789117,34.252515],[104.779293,34.239583],[104.741143,34.233383],[104.720021,34.252942],[104.689894,34.248026],[104.665498,34.226114],[104.623746,34.234986],[104.571024,34.201629],[104.552358,34.204196],[104.536967,34.219592],[104.527634,34.19147],[104.511097,34.208045],[104.472456,34.218202],[104.452153,34.229214],[104.435125,34.258713],[104.445113,34.271108],[104.437417,34.298137],[104.417769,34.331028],[104.406308,34.338929],[104.366684,34.336687],[104.353913,34.369564],[104.328862,34.376607],[104.28711,34.376287],[104.269754,34.348644],[104.202787,34.375113],[104.14941,34.350779],[104.148755,34.339036],[104.116008,34.323127],[104.136966,34.269399],[104.162509,34.247492],[104.165783,34.210397],[104.153503,34.193074],[104.105693,34.194143],[104.067052,34.177993],[104.060339,34.151782],[104.028738,34.127276],[104.02661,34.084989],[104.03627,34.056714],[104.064432,34.043966],[104.077858,34.022643],[104.194764,33.949099],[104.248305,33.922817],[104.330827,33.867653],[104.341961,33.853803],[104.385186,33.847897],[104.410892,33.838984],[104.446259,33.80719],[104.450188,33.785593],[104.469181,33.771084],[104.531073,33.763238],[104.528944,33.7412],[104.490139,33.705497],[104.486373,33.69076],[104.509296,33.675806],[104.514536,33.658803],[104.501437,33.660202],[104.50553,33.642013],[104.548592,33.64309],[104.521412,33.611869],[104.542698,33.590761],[104.555797,33.598623],[104.570041,33.576543],[104.581011,33.575789],[104.584122,33.534845],[104.57217,33.536461],[104.583631,33.516413],[104.60508,33.50283],[104.657148,33.482774],[104.699391,33.457428],[104.698081,33.439843],[104.714454,33.415672],[104.730828,33.408333],[104.713636,33.401101],[104.715764,33.346142],[104.729682,33.328859],[104.759481,33.308007],[104.727226,33.299686],[104.675322,33.302388],[104.661405,33.29612],[104.646341,33.269314],[104.639628,33.238824],[104.627676,33.226927],[104.567585,33.221411],[104.539096,33.226927],[104.532219,33.251259],[104.540078,33.274071],[104.501273,33.340742],[104.487683,33.329507],[104.467217,33.333721],[104.437253,33.323242],[104.393537,33.310924],[104.41253,33.281745],[104.385841,33.298606],[104.349165,33.300659],[104.33623,33.314274],[104.302828,33.302604],[104.329026,33.252989],[104.328371,33.224115],[104.350966,33.159087],[104.377818,33.109174],[104.36079,33.099318],[104.367175,33.086753],[104.33754,33.038208],[104.360135,33.028452],[104.391408,33.03539],[104.421044,33.024225],[104.42612,33.010781],[104.383549,32.994299],[104.378473,32.95319],[104.349329,32.940495],[104.305939,32.951562],[104.286127,32.939085],[104.276958,32.888504],[104.288911,32.870371],[104.294314,32.835722],[104.330172,32.82464],[104.359807,32.823988],[104.422026,32.768776],[104.447569,32.761709],[104.45903,32.748552],[104.510279,32.754424],[104.526652,32.728432],[104.555142,32.73387],[104.582813,32.722232],[104.591327,32.697101],[104.619653,32.68339],[104.64192,32.662711],[104.667954,32.662494],[104.696771,32.673487],[104.738032,32.636148],[104.76603,32.645512],[104.79583,32.643552],[104.820717,32.662929],[104.845769,32.653894],[104.873603,32.622973],[104.88179,32.601191],[104.927799,32.608924],[104.972007,32.632882],[105.014905,32.640177],[105.030296,32.650411],[105.079416,32.637237],[105.096608,32.606092],[105.110853,32.59411],[105.184697,32.617419],[105.214988,32.636802],[105.219736,32.666412],[105.241185,32.668916],[105.263289,32.65237],[105.297673,32.657051],[105.308807,32.671092],[105.340899,32.679581],[105.365623,32.710375],[105.394276,32.714291],[105.425385,32.733979],[105.446507,32.732239],[105.459442,32.752358],[105.45322,32.767689],[105.425713,32.774212],[105.413105,32.812362],[105.392966,32.833115],[105.395095,32.864723],[105.380686,32.877103],[105.407866,32.88579],[105.413105,32.918899],[105.425549,32.931163],[105.456331,32.932682],[105.499065,32.911844],[105.527882,32.918899],[105.534104,32.909456],[105.565541,32.906851],[105.590592,32.876777],[105.638239,32.879275],[105.656577,32.895344],[105.699475,32.903486],[105.735497,32.905331],[105.785599,32.926822],[105.827024,32.950803],[105.861735,32.938976],[105.917405,32.993866],[105.928047,33.04146],[105.913311,33.053164],[105.915112,33.066276],[105.933287,33.077003],[105.918714,33.105384],[105.936889,33.113614],[105.920188,33.132131],[105.923463,33.147721],[105.896447,33.142741],[105.924609,33.167529],[105.916913,33.177811],[105.92772,33.198478],[105.945567,33.188091],[105.946877,33.153567],[105.968326,33.154108],[105.962595,33.207565],[105.906598,33.240121],[105.862554,33.234282],[105.835538,33.251151],[105.792803,33.26272],[105.791493,33.278611],[105.767425,33.282502],[105.747777,33.298822],[105.755145,33.328859],[105.728947,33.353163],[105.708972,33.380698],[105.732877,33.391062],[105.743192,33.385341],[105.802627,33.378755],[105.829643,33.382858],[105.837994,33.410816],[105.830953,33.456457],[105.841923,33.490107],[105.877945,33.517707],[105.884167,33.535707],[105.902669,33.556181],[105.919533,33.55478],[105.954081,33.587099],[105.962104,33.606485],[105.979787,33.612407],[105.998944,33.604115],[106.019083,33.609715],[106.029562,33.595931],[106.045772,33.609715],[106.063946,33.604115],[106.086705,33.617145],[106.119452,33.602392],[106.108482,33.569756],[106.141392,33.574927],[106.143684,33.564908],[106.187237,33.546483],[106.237504,33.564046],[106.277455,33.5969],[106.303325,33.604331],[106.335089,33.586991],[106.351462,33.587207],[106.384864,33.612084],[106.431364,33.619083],[106.446919,33.613268],[106.452813,33.591838],[106.456088,33.53797],[106.477537,33.519431],[106.494238,33.530426],[106.541066,33.513071],[106.563006,33.543035],[106.559731,33.570834],[106.580525,33.575897],[106.581672,33.609823],[106.575613,33.631679],[106.534844,33.695171],[106.482613,33.707326],[106.48818,33.758186],[106.479829,33.780757],[106.461819,33.789676],[106.468695,33.820081],[106.491291,33.834473],[106.493419,33.846179],[106.474262,33.876671],[106.428253,33.866472],[106.410897,33.90919],[106.444627,33.935905],[106.476063,33.973764],[106.478683,33.997885],[106.471643,34.024037],[106.505535,34.0565],[106.501933,34.104904],[106.561205,34.110899],[106.584782,34.149428],[106.574958,34.163765],[106.557766,34.229748],[106.53206,34.254011],[106.512903,34.239369],[106.494238,34.241827]]]]}},{"type":"Feature","properties":{"adcode":622900,"name":"临夏回族自治州","center":[103.212006,35.599446],"centroid":[103.289177,35.625236],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":12,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.742448,35.495247],[102.747687,35.487351],[102.820385,35.460922],[102.853132,35.420577],[102.871142,35.408565],[102.889317,35.411199],[102.907655,35.425846],[102.926975,35.428163],[102.949079,35.4073],[102.959395,35.356912],[102.951699,35.30417],[102.955137,35.259946],[102.97102,35.252978],[102.983463,35.260685],[102.989849,35.283064],[103.019485,35.288552],[103.060091,35.273459],[103.08023,35.275676],[103.099059,35.246115],[103.114778,35.236717],[103.165371,35.226895],[103.211217,35.2364],[103.262138,35.236928],[103.269833,35.232704],[103.297996,35.18284],[103.36398,35.142674],[103.408024,35.143414],[103.457145,35.128399],[103.488745,35.133475],[103.490874,35.152294],[103.5359,35.141088],[103.573068,35.115391],[103.624971,35.094025],[103.651824,35.067043],[103.676875,35.052332],[103.680477,35.036772],[103.708312,35.039736],[103.729597,35.010831],[103.70078,35.006383],[103.677857,34.992826],[103.691938,34.987212],[103.729761,35.004159],[103.733036,34.978419],[103.712733,34.960196],[103.686699,34.954473],[103.668524,34.932958],[103.685717,34.907939],[103.703563,34.915997],[103.757104,34.927128],[103.803932,34.929142],[103.833732,34.91483],[103.848468,34.953732],[103.834878,34.977996],[103.816703,34.993038],[103.784612,35.002676],[103.786249,35.01549],[103.758087,35.028302],[103.743514,35.044817],[103.738275,35.064927],[103.748918,35.088417],[103.735328,35.100477],[103.748426,35.115074],[103.716498,35.133263],[103.721083,35.190237],[103.691611,35.195626],[103.689974,35.219818],[103.699634,35.238512],[103.731726,35.277787],[103.74024,35.312717],[103.77708,35.356912],[103.780682,35.387486],[103.814084,35.39634],[103.811791,35.422685],[103.800494,35.435117],[103.822925,35.445018],[103.828001,35.458605],[103.854198,35.477349],[103.854362,35.498089],[103.832913,35.506825],[103.830948,35.520928],[103.8113,35.534186],[103.793126,35.564378],[103.785267,35.598973],[103.719937,35.659191],[103.694558,35.672952],[103.640526,35.719993],[103.621533,35.753577],[103.595663,35.75704],[103.59157,35.781063],[103.56439,35.807177],[103.547853,35.803193],[103.515925,35.851729],[103.471062,35.8818],[103.476629,35.917306],[103.498897,35.927253],[103.509212,35.940967],[103.542122,35.943898],[103.558659,35.911127],[103.595991,35.909452],[103.623989,35.934895],[103.616785,35.959284],[103.632831,35.982409],[103.622352,35.99444],[103.633322,36.017451],[103.621697,36.025922],[103.596318,36.069514],[103.575033,36.06293],[103.571267,36.091876],[103.538848,36.105039],[103.521819,36.101697],[103.496604,36.108382],[103.483342,36.098354],[103.475646,36.110785],[103.438315,36.069201],[103.41048,36.07777],[103.412282,36.123005],[103.396727,36.128958],[103.365617,36.119872],[103.343022,36.125198],[103.312895,36.152556],[103.298323,36.145038],[103.278184,36.151929],[103.259846,36.146605],[103.257881,36.15955],[103.230374,36.168318],[103.200902,36.170301],[103.19075,36.180321],[103.165863,36.176146],[103.155711,36.19013],[103.123128,36.195661],[103.10741,36.221637],[103.102661,36.211623],[103.070897,36.206929],[103.049121,36.199208],[103.01883,36.204842],[102.987393,36.193782],[102.966435,36.152242],[102.948588,36.150572],[102.94122,36.104935],[102.910111,36.088219],[102.883913,36.088951],[102.89603,36.065647],[102.909947,36.070455],[102.932379,36.048609],[102.969219,36.044114],[102.9535,36.015778],[102.971838,35.995277],[102.950062,35.963156],[102.942203,35.928195],[102.948424,35.920447],[102.951208,35.871219],[102.95612,35.861579],[102.942366,35.829928],[102.91404,35.845126],[102.886369,35.849319],[102.853295,35.846908],[102.848383,35.854768],[102.820057,35.850367],[102.784036,35.862313],[102.737208,35.820598],[102.715104,35.81546],[102.694801,35.796481],[102.68596,35.772147],[102.708064,35.704981],[102.727057,35.69133],[102.743921,35.657825],[102.764552,35.653308],[102.763242,35.611903],[102.78027,35.587829],[102.801719,35.574684],[102.80876,35.560486],[102.781744,35.549441],[102.746214,35.545233],[102.729513,35.523664],[102.773557,35.534186],[102.78289,35.528083],[102.742448,35.495247]]]]}},{"type":"Feature","properties":{"adcode":623000,"name":"甘南藏族自治州","center":[102.911008,34.986354],"centroid":[102.766903,34.325574],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":13,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.028738,34.127276],[103.990916,34.161733],[103.936884,34.193609],[103.924276,34.213605],[103.879577,34.267369],[103.83717,34.273673],[103.821779,34.281258],[103.792798,34.270574],[103.77315,34.273245],[103.745152,34.287561],[103.70209,34.280617],[103.69243,34.300166],[103.698488,34.315011],[103.733363,34.331883],[103.753993,34.371592],[103.802786,34.408722],[103.8113,34.424508],[103.804751,34.471102],[103.810318,34.483572],[103.794763,34.492524],[103.768566,34.523316],[103.779045,34.536524],[103.828328,34.545364],[103.839462,34.575497],[103.834714,34.604768],[103.841591,34.634667],[103.850432,34.641369],[103.862876,34.682526],[103.833404,34.71686],[103.853052,34.738644],[103.881214,34.747357],[103.909049,34.744701],[103.963572,34.728656],[103.989115,34.738219],[104.004669,34.735244],[104.02399,34.774868],[103.999103,34.787717],[103.997629,34.807678],[103.964555,34.840581],[104.021207,34.872411],[104.027265,34.893411],[104.011055,34.910165],[104.024809,34.917057],[104.017768,34.936774],[103.984366,34.938046],[103.981092,34.946737],[103.952766,34.94981],[103.942942,34.936138],[103.911178,34.969096],[103.860584,34.987106],[103.834878,34.977996],[103.848468,34.953732],[103.833732,34.91483],[103.803932,34.929142],[103.757104,34.927128],[103.703563,34.915997],[103.685717,34.907939],[103.668524,34.932958],[103.686699,34.954473],[103.712733,34.960196],[103.733036,34.978419],[103.729761,35.004159],[103.691938,34.987212],[103.677857,34.992826],[103.70078,35.006383],[103.729597,35.010831],[103.708312,35.039736],[103.680477,35.036772],[103.676875,35.052332],[103.651824,35.067043],[103.624971,35.094025],[103.573068,35.115391],[103.5359,35.141088],[103.490874,35.152294],[103.488745,35.133475],[103.457145,35.128399],[103.408024,35.143414],[103.36398,35.142674],[103.297996,35.18284],[103.269833,35.232704],[103.262138,35.236928],[103.211217,35.2364],[103.165371,35.226895],[103.114778,35.236717],[103.099059,35.246115],[103.08023,35.275676],[103.060091,35.273459],[103.019485,35.288552],[102.989849,35.283064],[102.983463,35.260685],[102.97102,35.252978],[102.955137,35.259946],[102.951699,35.30417],[102.959395,35.356912],[102.949079,35.4073],[102.926975,35.428163],[102.907655,35.425846],[102.889317,35.411199],[102.871142,35.408565],[102.853132,35.420577],[102.820385,35.460922],[102.747687,35.487351],[102.742448,35.495247],[102.695292,35.528504],[102.63553,35.534397],[102.571182,35.548074],[102.531395,35.580468],[102.503233,35.584254],[102.514203,35.569426],[102.49783,35.571845],[102.498648,35.545233],[102.482603,35.51293],[102.463446,35.507773],[102.460826,35.478823],[102.451002,35.478718],[102.438067,35.45534],[102.447564,35.437329],[102.408595,35.41004],[102.314776,35.434379],[102.292672,35.422579],[102.282193,35.385062],[102.286613,35.366507],[102.306589,35.359864],[102.317723,35.342886],[102.311665,35.314405],[102.284485,35.313244],[102.280883,35.303115],[102.312156,35.282431],[102.335242,35.283486],[102.369954,35.263958],[102.365697,35.235555],[102.400081,35.19552],[102.403519,35.17819],[102.37372,35.16128],[102.343429,35.161702],[102.339499,35.141088],[102.313138,35.130937],[102.301841,35.105872],[102.295128,35.070641],[102.2799,35.056672],[102.252393,35.048734],[102.224067,35.059],[102.213916,35.03656],[102.17462,35.032537],[102.157428,35.010831],[102.133686,35.014643],[102.107489,34.989331],[102.095045,34.986788],[102.061807,34.94271],[102.04789,34.910802],[102.068357,34.887684],[102.028242,34.896274],[101.985999,34.89988],[101.959801,34.887154],[101.939662,34.888639],[101.916903,34.87379],[101.93344,34.845887],[101.923289,34.835912],[101.927546,34.803007],[101.920178,34.799822],[101.917394,34.706232],[101.930002,34.681888],[101.918213,34.667108],[101.91985,34.625198],[101.934586,34.587526],[101.956035,34.582949],[101.974374,34.548878],[101.999589,34.539186],[102.040849,34.534713],[102.09308,34.536417],[102.106998,34.521824],[102.121406,34.522996],[102.139581,34.503713],[102.15579,34.507548],[102.172327,34.476218],[102.16938,34.458203],[102.191157,34.438691],[102.222594,34.384717],[102.234055,34.382796],[102.25927,34.355582],[102.220956,34.339356],[102.186572,34.352807],[102.16938,34.324942],[102.169871,34.310633],[102.150878,34.292048],[102.148259,34.271322],[102.133359,34.272925],[102.085058,34.291727],[102.067865,34.293543],[102.060334,34.278801],[102.059843,34.227183],[102.038721,34.229962],[102.014161,34.218523],[102.030862,34.190507],[102.018254,34.190293],[102.003191,34.161947],[101.965368,34.167403],[101.967497,34.155634],[101.955053,34.109614],[101.895618,34.134019],[101.872531,34.13327],[101.865982,34.15007],[101.838147,34.124707],[101.788372,34.131664],[101.763812,34.122674],[101.757427,34.099658],[101.736141,34.080063],[101.728282,34.099658],[101.710926,34.086809],[101.713219,34.109079],[101.703067,34.119249],[101.67032,34.11197],[101.643304,34.138728],[101.65231,34.148786],[101.627586,34.165477],[101.624966,34.176923],[101.600243,34.179277],[101.576665,34.197031],[101.561274,34.191042],[101.540644,34.21168],[101.492506,34.195534],[101.482354,34.218737],[101.418171,34.228038],[101.371671,34.247706],[101.323205,34.246744],[101.327626,34.264911],[101.295698,34.268544],[101.262951,34.285745],[101.265735,34.292903],[101.229059,34.298457],[101.23528,34.325156],[101.193856,34.336687],[101.169132,34.319176],[101.156033,34.329961],[101.140479,34.324729],[101.070728,34.328893],[101.054519,34.32302],[101.051408,34.337221],[101.024064,34.342986],[100.986897,34.37458],[100.975435,34.369884],[100.950875,34.383757],[100.916164,34.373833],[100.897171,34.375754],[100.868517,34.332737],[100.822672,34.318642],[100.808427,34.274314],[100.799422,34.26224],[100.809737,34.247064],[100.782394,34.197779],[100.764383,34.178956],[100.806299,34.15542],[100.839209,34.114432],[100.849033,34.089593],[100.870155,34.083918],[100.879979,34.058],[100.879324,34.039038],[100.89668,34.035931],[100.909451,34.007425],[100.934829,33.989846],[100.927625,33.975157],[100.966594,33.945881],[100.975763,33.919384],[100.999013,33.889659],[101.023246,33.896098],[101.048461,33.878818],[101.052226,33.864325],[101.153577,33.844461],[101.149812,33.828566],[101.171261,33.804504],[101.189763,33.793115],[101.184196,33.765173],[101.188944,33.744641],[101.16291,33.719587],[101.164711,33.692912],[101.178301,33.683767],[101.166676,33.659987],[101.217761,33.66978],[101.237082,33.685596],[101.259677,33.669565],[101.302902,33.65805],[101.351368,33.657512],[101.391155,33.645242],[101.423083,33.654283],[101.427504,33.678388],[101.469911,33.686242],[101.491687,33.699904],[101.542117,33.695171],[101.557999,33.669672],[101.582559,33.675052],[101.588617,33.638138],[101.605973,33.628988],[101.616943,33.598839],[101.611868,33.590115],[101.614651,33.538617],[101.622674,33.502291],[101.635281,33.491616],[101.650018,33.502183],[101.677197,33.496468],[101.702249,33.501428],[101.735814,33.496361],[101.749404,33.506064],[101.759064,33.535599],[101.782314,33.556289],[101.806056,33.5481],[101.830288,33.554457],[101.830779,33.578805],[101.844369,33.6025],[101.882028,33.579344],[101.907079,33.542065],[101.89791,33.517707],[101.907407,33.480186],[101.929019,33.469617],[101.924435,33.449985],[101.946375,33.442757],[101.915921,33.425708],[101.91412,33.405851],[101.887267,33.383829],[101.876297,33.351111],[101.87597,33.314166],[101.857959,33.312005],[101.832253,33.291689],[101.823903,33.27126],[101.809658,33.288231],[101.76987,33.268774],[101.770362,33.249637],[101.788045,33.225846],[101.797541,33.232984],[101.829797,33.213948],[101.841258,33.189064],[101.840603,33.160386],[101.82554,33.119462],[101.865982,33.103001],[101.88563,33.134405],[101.921815,33.154],[101.935569,33.1869],[101.957345,33.186684],[101.993858,33.199992],[102.010559,33.191661],[102.055094,33.190038],[102.089642,33.204969],[102.089478,33.227576],[102.10929,33.264017],[102.112728,33.286825],[102.144165,33.274395],[102.152679,33.253097],[102.174947,33.233633],[102.203437,33.22325],[102.217518,33.248123],[102.202291,33.300983],[102.205565,33.320108],[102.1869,33.332532],[102.21981,33.351435],[102.238148,33.388579],[102.261071,33.396352],[102.263363,33.417075],[102.275152,33.408657],[102.292017,33.413945],[102.310682,33.397971],[102.347522,33.409736],[102.370118,33.394193],[102.36717,33.408981],[102.396151,33.405311],[102.403519,33.424521],[102.434301,33.439412],[102.442324,33.453113],[102.462463,33.449661],[102.453785,33.483637],[102.460498,33.509406],[102.445762,33.529456],[102.475889,33.531072],[102.473433,33.547669],[102.454604,33.555104],[102.440359,33.574819],[102.406466,33.581498],[102.386655,33.598731],[102.344575,33.606808],[102.333605,33.642013],[102.315267,33.665153],[102.328366,33.706358],[102.341628,33.720877],[102.325418,33.735287],[102.30135,33.709907],[102.287105,33.716575],[102.288087,33.733029],[102.322799,33.746038],[102.323126,33.757541],[102.300203,33.782369],[102.243552,33.78699],[102.234546,33.794619],[102.261235,33.82137],[102.253376,33.861534],[102.233891,33.87023],[102.204583,33.905649],[102.136306,33.965185],[102.166924,33.982877],[102.198525,33.978374],[102.202618,33.967115],[102.237985,33.963577],[102.241587,33.981483],[102.258124,33.975694],[102.277772,33.99006],[102.287268,33.977516],[102.316249,33.994026],[102.313138,33.974407],[102.350633,33.977409],[102.39304,33.973227],[102.39959,34.017714],[102.417764,34.042252],[102.437576,34.087238],[102.467212,34.073851],[102.516823,34.087452],[102.557429,34.091521],[102.585263,34.10105],[102.616045,34.099765],[102.649447,34.080063],[102.660417,34.085096],[102.655833,34.113468],[102.64126,34.127062],[102.598362,34.147823],[102.625378,34.16751],[102.650429,34.165584],[102.647482,34.178314],[102.665002,34.192753],[102.701187,34.196924],[102.731805,34.237445],[102.777978,34.235628],[102.783872,34.258072],[102.798281,34.273032],[102.856734,34.270681],[102.861154,34.302409],[102.879165,34.312128],[102.911748,34.312982],[102.93991,34.299952],[102.956447,34.269399],[102.980189,34.241293],[102.977078,34.198314],[103.007532,34.184839],[103.039788,34.185801],[103.05043,34.194678],[103.071552,34.184839],[103.100369,34.181951],[103.124111,34.16184],[103.132625,34.128989],[103.121818,34.112719],[103.135408,34.1003],[103.149817,34.10287],[103.178306,34.080384],[103.170283,34.065712],[103.130824,34.06689],[103.119198,34.039573],[103.147197,34.036466],[103.157185,33.998743],[103.136718,33.973656],[103.123947,33.968188],[103.120508,33.9506],[103.134426,33.930327],[103.164716,33.929361],[103.181254,33.900713],[103.153419,33.819114],[103.161278,33.80719],[103.20303,33.795371],[103.228081,33.794834],[103.250022,33.814065],[103.284733,33.802033],[103.278347,33.775383],[103.3201,33.752059],[103.349572,33.743458],[103.431766,33.750769],[103.464513,33.802462],[103.506428,33.81009],[103.518381,33.807082],[103.539994,33.766785],[103.531316,33.749049],[103.54949,33.74034],[103.545069,33.718941],[103.520509,33.678603],[103.55211,33.671501],[103.565045,33.700657],[103.598774,33.717866],[103.643473,33.708939],[103.65166,33.721415],[103.669016,33.712381],[103.650023,33.700119],[103.666887,33.699366],[103.667706,33.685812],[103.689155,33.69345],[103.778226,33.658803],[103.800494,33.67021],[103.86173,33.682154],[103.926732,33.679679],[103.96652,33.670425],[104.013184,33.683337],[104.052316,33.685274],[104.103564,33.663538],[104.169385,33.610792],[104.179701,33.575681],[104.168076,33.571049],[104.155632,33.541311],[104.169058,33.51361],[104.180683,33.473068],[104.213102,33.446856],[104.221944,33.42873],[104.220798,33.404663],[104.249779,33.407038],[104.270573,33.393329],[104.295788,33.332856],[104.328043,33.333072],[104.367667,33.345062],[104.437253,33.323242],[104.467217,33.333721],[104.487683,33.329507],[104.501273,33.340742],[104.540078,33.274071],[104.532219,33.251259],[104.539096,33.226927],[104.567585,33.221411],[104.627676,33.226927],[104.639628,33.238824],[104.646341,33.269314],[104.661405,33.29612],[104.675322,33.302388],[104.727226,33.299686],[104.759481,33.308007],[104.729682,33.328859],[104.715764,33.346142],[104.713636,33.401101],[104.730828,33.408333],[104.714454,33.415672],[104.698081,33.439843],[104.699391,33.457428],[104.657148,33.482774],[104.60508,33.50283],[104.583631,33.516413],[104.57217,33.536461],[104.584122,33.534845],[104.581011,33.575789],[104.570041,33.576543],[104.555797,33.598623],[104.542698,33.590761],[104.521412,33.611869],[104.548592,33.64309],[104.50553,33.642013],[104.501437,33.660202],[104.514536,33.658803],[104.509296,33.675806],[104.486373,33.69076],[104.490139,33.705497],[104.528944,33.7412],[104.531073,33.763238],[104.469181,33.771084],[104.450188,33.785593],[104.446259,33.80719],[104.410892,33.838984],[104.385186,33.847897],[104.341961,33.853803],[104.330827,33.867653],[104.248305,33.922817],[104.194764,33.949099],[104.077858,34.022643],[104.064432,34.043966],[104.03627,34.056714],[104.02661,34.084989],[104.028738,34.127276]]]]}}]}
\ No newline at end of file
diff --git a/src/untils/mapJson/taiwan.json b/src/untils/mapJson/taiwan.json
new file mode 100644
index 0000000..8abdb85
--- /dev/null
+++ b/src/untils/mapJson/taiwan.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":710000,"name":"台湾省","center":[121.509062,25.044332],"centroid":[120.971485,23.749452],"childrenNum":0,"level":"province","acroutes":[100000],"parent":{"adcode":100000}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.443558,22.441245],[120.517584,22.408536],[120.569903,22.361728],[120.640505,22.241347],[120.659209,22.15432],[120.662001,22.066983],[120.651464,22.033165],[120.667691,21.983168],[120.70157,21.927065],[120.743246,21.915569],[120.78155,21.923957],[120.85468,21.883333],[120.87291,21.897387],[120.866482,21.98436],[120.907315,22.033208],[120.904154,22.119757],[120.914955,22.302718],[120.981658,22.528305],[121.015009,22.584168],[121.033292,22.650725],[121.078498,22.669656],[121.170544,22.723133],[121.210481,22.770665],[121.237931,22.836327],[121.324708,22.945666],[121.354687,23.01006],[121.370388,23.084347],[121.409535,23.102669],[121.430294,23.137196],[121.415015,23.195973],[121.440358,23.272096],[121.479558,23.3223],[121.497788,23.419789],[121.521497,23.483198],[121.523078,23.538708],[121.587778,23.76102],[121.621604,23.92075],[121.659381,24.006893],[121.639992,24.064276],[121.643838,24.097713],[121.678085,24.133906],[121.689044,24.174401],[121.809172,24.339055],[121.826717,24.423579],[121.867498,24.478978],[121.885464,24.529677],[121.892524,24.617912],[121.862598,24.671515],[121.837993,24.76015],[121.845053,24.836269],[121.932883,24.938645],[122.012178,25.001469],[121.980776,25.03079],[121.947425,25.031955],[121.917077,25.137908],[121.842155,25.135332],[121.782407,25.160425],[121.750531,25.160716],[121.707327,25.191493],[121.700319,25.226913],[121.655324,25.241859],[121.623026,25.294694],[121.584986,25.308926],[121.535038,25.307515],[121.444415,25.270624],[121.413487,25.238912],[121.371864,25.159885],[121.319281,25.140691],[121.209322,25.127104],[121.133135,25.078728],[121.102102,25.075153],[121.024704,25.040479],[121.009688,24.993649],[120.960899,24.940227],[120.908475,24.852012],[120.892299,24.767526],[120.823753,24.688321],[120.762371,24.658335],[120.688661,24.600678],[120.64277,24.490172],[120.589187,24.432354],[120.546299,24.370413],[120.521009,24.312038],[120.470534,24.24259],[120.451461,24.182691],[120.392029,24.11824],[120.316158,23.984881],[120.278276,23.927798],[120.245768,23.840553],[120.175377,23.807385],[120.102773,23.700981],[120.094817,23.587466],[120.121741,23.504664],[120.107831,23.341264],[120.081434,23.29191],[120.018947,23.073115],[120.029537,23.048623],[120.131382,23.002118],[120.149138,22.896715],[120.200403,22.721101],[120.274272,22.560181],[120.297191,22.531315],[120.443558,22.441245]]],[[[124.542984,25.903911],[124.586346,25.913777],[124.572805,25.93974],[124.541825,25.931031],[124.542984,25.903911]]],[[[123.445286,25.725966],[123.472104,25.713024],[123.508933,25.723237],[123.514834,25.751226],[123.483063,25.768587],[123.444496,25.746514],[123.445286,25.725966]]],[[[119.64597,23.55091],[119.701081,23.550657],[119.678057,23.600041],[119.610089,23.603953],[119.594388,23.577245],[119.566306,23.584732],[119.562565,23.530377],[119.573788,23.505885],[119.609141,23.503864],[119.64597,23.55091]]],[[[123.667207,25.914066],[123.707092,25.916873],[123.678008,25.938667],[123.667207,25.914066]]],[[[119.506031,23.625567],[119.505241,23.575814],[119.472416,23.557136],[119.523207,23.563699],[119.525578,23.624895],[119.506031,23.625567]]],[[[119.49739,23.386683],[119.495125,23.350156],[119.516885,23.349903],[119.49739,23.386683]]],[[[119.557454,23.666474],[119.604083,23.616989],[119.615516,23.660925],[119.586485,23.675974],[119.557454,23.666474]]],[[[121.46823,22.676644],[121.476502,22.64166],[121.513541,22.631833],[121.5147,22.67639],[121.46823,22.676644]]],[[[121.510538,22.087185],[121.507693,22.048523],[121.534089,22.022146],[121.594522,21.995382],[121.604586,22.022699],[121.575028,22.037122],[121.575607,22.084421],[121.510538,22.087185]]],[[[122.097533,25.500168],[122.093581,25.47183],[122.124825,25.475932],[122.097533,25.500168]]],[[[119.421467,23.216684],[119.421309,23.18935],[119.453396,23.217697],[119.421467,23.216684]]],[[[120.355042,22.327259],[120.395454,22.342287],[120.383072,22.355573],[120.355042,22.327259]]]]}}]}
\ No newline at end of file
diff --git a/src/untils/mapJson/xianggang.json b/src/untils/mapJson/xianggang.json
new file mode 100644
index 0000000..66928b7
--- /dev/null
+++ b/src/untils/mapJson/xianggang.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":810001,"name":"中西区","center":[114.1543731,22.28198083],"centroid":[114.152342,22.274164],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":0,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.172841,22.252307],[114.173394,22.254814],[114.173783,22.259053],[114.173947,22.264623],[114.173674,22.271928],[114.172945,22.287709],[114.156253,22.293144],[114.154437,22.293107],[114.143819,22.292886],[114.142052,22.2918],[114.138905,22.290416],[114.136075,22.289245],[114.134587,22.287803],[114.13093,22.284631],[114.129223,22.283725],[114.126824,22.282765],[114.123842,22.281324],[114.121971,22.27967],[114.12089,22.277698],[114.120622,22.274893],[114.12041,22.27388],[114.120452,22.272255],[114.121728,22.269217],[114.122487,22.268343],[114.128294,22.267821],[114.129946,22.267902],[114.132011,22.268846],[114.13356,22.269319],[114.135322,22.26965],[114.136931,22.269732],[114.138717,22.269646],[114.140351,22.269282],[114.142216,22.268221],[114.144135,22.266436],[114.146225,22.264174],[114.15341,22.255574],[114.154285,22.253761],[114.154674,22.252478],[114.154905,22.250861],[114.155907,22.250302],[114.158458,22.250412],[114.160851,22.250849],[114.162461,22.251323],[114.163463,22.251768],[114.164356,22.252405],[114.164933,22.252462],[114.165941,22.25207],[114.167186,22.251935],[114.170649,22.252511],[114.172841,22.252307]]],[[[114.116352,22.28007],[114.118065,22.280683],[114.119377,22.280691],[114.120531,22.28143],[114.12058,22.28201],[114.120215,22.282659],[114.118782,22.283623],[114.11781,22.283741],[114.116923,22.283549],[114.116152,22.282912],[114.115787,22.282144],[114.115739,22.281009],[114.115969,22.280295],[114.116352,22.28007]]],[[[114.12211,22.281953],[114.122772,22.282402],[114.122451,22.283623],[114.122025,22.283827],[114.121078,22.283394],[114.121078,22.282835],[114.12211,22.281953]]]]}},{"type":"Feature","properties":{"adcode":810002,"name":"湾仔区","center":[114.1829153,22.27638889],"centroid":[114.189433,22.266406],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":1,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.186277,22.286391],[114.181886,22.284798],[114.172945,22.287709],[114.173674,22.271928],[114.173947,22.264623],[114.173783,22.259053],[114.173394,22.254814],[114.172841,22.252307],[114.17942,22.251298],[114.184048,22.250902],[114.186848,22.250996],[114.19161,22.250698],[114.193341,22.250694],[114.200163,22.251421],[114.203704,22.252058],[114.204494,22.252295],[114.204743,22.256558],[114.205283,22.261242],[114.208314,22.261614],[114.210713,22.262104],[114.212511,22.262778],[114.214479,22.264027],[114.216326,22.265812],[114.214826,22.268895],[114.213866,22.270454],[114.212663,22.271708],[114.211406,22.269821],[114.210531,22.268858],[114.209723,22.268409],[114.207743,22.268176],[114.206553,22.268421],[114.205344,22.269205],[114.204281,22.270622],[114.202106,22.275411],[114.200867,22.276849],[114.199725,22.277261],[114.198158,22.277008],[114.195644,22.275808],[114.194969,22.27582],[114.19404,22.276922],[114.193427,22.27731],[114.192449,22.277147],[114.192023,22.277784],[114.191137,22.280225],[114.190736,22.28054],[114.189065,22.279568],[114.187966,22.27927],[114.187498,22.279486],[114.187037,22.28065],[114.186277,22.286391]]]]}},{"type":"Feature","properties":{"adcode":810003,"name":"东区","center":[114.2260031,22.27969306],"centroid":[114.227107,22.270314],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":2,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.204494,22.252295],[114.207154,22.253095],[114.209638,22.253434],[114.210835,22.253287],[114.213119,22.252564],[114.214461,22.252511],[114.216022,22.253058],[114.217225,22.253303],[114.2185,22.253365],[114.219539,22.253115],[114.224295,22.251261],[114.225929,22.25089],[114.232416,22.250432],[114.233886,22.250012],[114.236225,22.249105],[114.236844,22.249003],[114.238089,22.249289],[114.239474,22.249955],[114.240434,22.250204],[114.242627,22.250077],[114.24632,22.249195],[114.248166,22.248946],[114.249339,22.248497],[114.249806,22.248084],[114.25418,22.242223],[114.255686,22.240831],[114.255577,22.242219],[114.256858,22.243902],[114.25763,22.244462],[114.259665,22.245344],[114.260807,22.246361],[114.261615,22.248203],[114.261912,22.250008],[114.261821,22.251155],[114.262094,22.253267],[114.261936,22.254545],[114.261536,22.255615],[114.261505,22.257003],[114.26255,22.257644],[114.263084,22.258661],[114.262763,22.259486],[114.261372,22.260797],[114.255844,22.265562],[114.254058,22.267216],[114.251866,22.270022],[114.249521,22.272696],[114.24861,22.274632],[114.24847,22.275836],[114.248689,22.277355],[114.249497,22.279809],[114.225036,22.291666],[114.215555,22.296271],[114.1967,22.289906],[114.186277,22.286391],[114.187037,22.28065],[114.187498,22.279486],[114.187966,22.27927],[114.189065,22.279568],[114.190736,22.28054],[114.191137,22.280225],[114.192023,22.277784],[114.192449,22.277147],[114.193427,22.27731],[114.19404,22.276922],[114.194969,22.27582],[114.195644,22.275808],[114.198158,22.277008],[114.199725,22.277261],[114.200867,22.276849],[114.202106,22.275411],[114.204281,22.270622],[114.205344,22.269205],[114.206553,22.268421],[114.207743,22.268176],[114.209723,22.268409],[114.210531,22.268858],[114.211406,22.269821],[114.212663,22.271708],[114.213866,22.270454],[114.214826,22.268895],[114.216326,22.265812],[114.214479,22.264027],[114.212511,22.262778],[114.210713,22.262104],[114.208314,22.261614],[114.205283,22.261242],[114.204743,22.256558],[114.204494,22.252295]]]]}},{"type":"Feature","properties":{"adcode":810004,"name":"南区","center":[114.1600117,22.24589667],"centroid":[114.206983,22.23293],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":3,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.122487,22.268343],[114.123829,22.266796],[114.128033,22.26241],[114.137211,22.248415],[114.138535,22.246524],[114.139774,22.245442],[114.142082,22.244245],[114.144846,22.24313],[114.146346,22.242354],[114.147385,22.241354],[114.149966,22.238082],[114.151436,22.236624],[114.153532,22.235137],[114.155469,22.234169],[114.157498,22.232834],[114.161574,22.231049],[114.162351,22.230591],[114.162941,22.22986],[114.16503,22.226727],[114.166093,22.225972],[114.167296,22.225996],[114.170205,22.227548],[114.170819,22.227785],[114.171809,22.227732],[114.17405,22.227005],[114.175836,22.226229],[114.177081,22.225825],[114.178308,22.225637],[114.179322,22.225792],[114.180039,22.226327],[114.180628,22.227209],[114.181029,22.228328],[114.1814,22.230371],[114.182281,22.233679],[114.184334,22.238352],[114.184886,22.239258],[114.18598,22.239552],[114.18745,22.239524],[114.188786,22.239119],[114.189478,22.238466],[114.193633,22.234043],[114.194672,22.233181],[114.19534,22.233017],[114.196877,22.233038],[114.199701,22.232842],[114.20043,22.232107],[114.201341,22.229762],[114.201141,22.227945],[114.200315,22.226666],[114.200315,22.225857],[114.20077,22.223786],[114.200369,22.222651],[114.199337,22.222414],[114.197982,22.222728],[114.196391,22.222569],[114.195486,22.221683],[114.19571,22.220952],[114.196488,22.220049],[114.198966,22.218636],[114.201815,22.217214],[114.202993,22.216168],[114.203339,22.215155],[114.203285,22.214301],[114.201529,22.211801],[114.200916,22.210527],[114.201001,22.208987],[114.201353,22.207757],[114.201882,22.207226],[114.202714,22.206916],[114.204202,22.20683],[114.207276,22.207308],[114.209912,22.209195],[114.211011,22.209853],[114.211928,22.209939],[114.212633,22.209673],[114.215318,22.193418],[114.216059,22.192147],[114.217638,22.190954],[114.219266,22.190688],[114.222904,22.191081],[114.225723,22.191693],[114.227429,22.192261],[114.228529,22.192792],[114.229403,22.193622],[114.229804,22.194594],[114.229628,22.196261],[114.22763,22.19977],[114.225917,22.202205],[114.225401,22.204179],[114.225261,22.205723],[114.225765,22.207222],[114.226682,22.208227],[114.229804,22.210294],[114.235168,22.213064],[114.238296,22.213868],[114.240264,22.213149],[114.244741,22.206916],[114.245439,22.205024],[114.246933,22.203925],[114.249485,22.203133],[114.252339,22.202769],[114.259574,22.202344],[114.260302,22.202344],[114.261116,22.203235],[114.262283,22.203292],[114.262635,22.202912],[114.262878,22.20194],[114.264269,22.201621],[114.264676,22.20091],[114.265611,22.200792],[114.266012,22.201115],[114.266024,22.202169],[114.265362,22.202998],[114.265526,22.203553],[114.266401,22.204722],[114.266613,22.2058],[114.266231,22.206605],[114.265107,22.207165],[114.264609,22.208713],[114.264093,22.208954],[114.262513,22.209142],[114.261615,22.210127],[114.261372,22.212373],[114.260946,22.213145],[114.260752,22.214698],[114.260892,22.216953],[114.26057,22.218766],[114.259981,22.220425],[114.258839,22.222508],[114.257976,22.223443],[114.257855,22.224383],[114.258213,22.224738],[114.259446,22.224852],[114.261153,22.224632],[114.261584,22.224893],[114.261602,22.225792],[114.262343,22.2262],[114.263765,22.225959],[114.264688,22.2262],[114.265423,22.227303],[114.26518,22.228508],[114.264038,22.228753],[114.262343,22.228365],[114.260983,22.228324],[114.260242,22.228541],[114.259798,22.229039],[114.259768,22.229627],[114.260327,22.231923],[114.260381,22.232993],[114.259288,22.234966],[114.257551,22.237024],[114.256731,22.239254],[114.255686,22.240831],[114.25418,22.242223],[114.249806,22.248084],[114.249339,22.248497],[114.248166,22.248946],[114.24632,22.249195],[114.242627,22.250077],[114.240434,22.250204],[114.239474,22.249955],[114.238089,22.249289],[114.236844,22.249003],[114.236225,22.249105],[114.233886,22.250012],[114.232416,22.250432],[114.225929,22.25089],[114.224295,22.251261],[114.219539,22.253115],[114.2185,22.253365],[114.217225,22.253303],[114.216022,22.253058],[114.214461,22.252511],[114.213119,22.252564],[114.210835,22.253287],[114.209638,22.253434],[114.207154,22.253095],[114.204494,22.252295],[114.203704,22.252058],[114.200163,22.251421],[114.193341,22.250694],[114.19161,22.250698],[114.186848,22.250996],[114.184048,22.250902],[114.17942,22.251298],[114.172841,22.252307],[114.170649,22.252511],[114.167186,22.251935],[114.165941,22.25207],[114.164933,22.252462],[114.164356,22.252405],[114.163463,22.251768],[114.162461,22.251323],[114.160851,22.250849],[114.158458,22.250412],[114.155907,22.250302],[114.154905,22.250861],[114.154674,22.252478],[114.154285,22.253761],[114.15341,22.255574],[114.146225,22.264174],[114.144135,22.266436],[114.142216,22.268221],[114.140351,22.269282],[114.138717,22.269646],[114.136931,22.269732],[114.135322,22.26965],[114.13356,22.269319],[114.132011,22.268846],[114.129946,22.267902],[114.128294,22.267821],[114.122487,22.268343]]],[[[114.189399,22.229141],[114.190517,22.229456],[114.19127,22.230559],[114.192357,22.230301],[114.19322,22.230461],[114.194629,22.231637],[114.194696,22.232891],[114.193433,22.23363],[114.191556,22.233083],[114.190189,22.233218],[114.189017,22.233745],[114.18765,22.233773],[114.186745,22.232593],[114.186672,22.231576],[114.187662,22.230673],[114.188379,22.229378],[114.189399,22.229141]]],[[[114.144336,22.24012],[114.146067,22.240631],[114.146431,22.241235],[114.145502,22.241309],[114.142653,22.24088],[114.142744,22.240516],[114.144336,22.24012]]],[[[114.18991,22.210658],[114.190578,22.210703],[114.191908,22.211528],[114.193044,22.212002],[114.193408,22.212414],[114.193068,22.213799],[114.192576,22.214195],[114.19107,22.214575],[114.190049,22.21502],[114.189278,22.21509],[114.188106,22.214571],[114.188021,22.213877],[114.188634,22.212136],[114.189369,22.210968],[114.18991,22.210658]]],[[[114.228565,22.203292],[114.228814,22.203946],[114.22763,22.204865],[114.226579,22.204991],[114.226379,22.20426],[114.227636,22.203431],[114.228565,22.203292]]],[[[114.2634,22.222038],[114.264032,22.222161],[114.264366,22.222753],[114.263838,22.223815],[114.261906,22.224142],[114.260381,22.223995],[114.260096,22.223729],[114.260217,22.222978],[114.260709,22.22263],[114.2621,22.222222],[114.2634,22.222038]]]]}},{"type":"Feature","properties":{"adcode":810005,"name":"油尖旺区","center":[114.1733317,22.31170389],"centroid":[114.172222,22.303469],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":4,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.154358,22.311514],[114.154437,22.293107],[114.156253,22.293144],[114.172945,22.287709],[114.181886,22.284798],[114.186277,22.286391],[114.1967,22.289906],[114.19387,22.297618],[114.193311,22.298957],[114.192564,22.300215],[114.191033,22.301566],[114.187024,22.304334],[114.186053,22.305199],[114.182912,22.308665],[114.181303,22.310812],[114.179602,22.313649],[114.178114,22.316825],[114.177889,22.317576],[114.177798,22.319221],[114.178326,22.321372],[114.179456,22.323781],[114.178812,22.323924],[114.175089,22.323822],[114.168717,22.323524],[114.167599,22.323217],[114.166318,22.32243],[114.164046,22.322299],[114.163026,22.32187],[114.16079,22.323409],[114.1581,22.320899],[114.157219,22.320405],[114.156125,22.320119],[114.154188,22.319874],[114.154358,22.311514]]]]}},{"type":"Feature","properties":{"adcode":810006,"name":"深水埗区","center":[114.1632417,22.33385417],"centroid":[114.156935,22.328966],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":5,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.154358,22.311514],[114.154188,22.319874],[114.156125,22.320119],[114.157219,22.320405],[114.1581,22.320899],[114.16079,22.323409],[114.163026,22.32187],[114.164046,22.322299],[114.166318,22.32243],[114.167599,22.323217],[114.168717,22.323524],[114.175089,22.323822],[114.178812,22.323924],[114.179456,22.323781],[114.181278,22.326826],[114.181734,22.328091],[114.181989,22.329887],[114.181789,22.331581],[114.181527,22.332626],[114.178982,22.338878],[114.178758,22.339923],[114.179165,22.340911],[114.179098,22.341552],[114.177822,22.344392],[114.17668,22.34416],[114.172896,22.344278],[114.170728,22.344184],[114.166864,22.343437],[114.16172,22.343698],[114.15991,22.343731],[114.157522,22.3434],[114.153732,22.342266],[114.152414,22.341658],[114.151703,22.340621],[114.151527,22.33994],[114.151442,22.337948],[114.150774,22.337511],[114.150124,22.337678],[114.149389,22.338348],[114.148436,22.338617],[114.145927,22.338478],[114.142932,22.339042],[114.14139,22.338862],[114.139555,22.337568],[114.138444,22.337132],[114.136336,22.337336],[114.135419,22.336862],[114.13503,22.335303],[114.13548,22.333364],[114.136087,22.33225],[114.136755,22.331466],[114.137733,22.330964],[114.139373,22.330515],[114.14538,22.329005],[114.146413,22.328303],[114.146413,22.327858],[114.14572,22.32683],[114.137697,22.322323],[114.132467,22.319523],[114.131562,22.318458],[114.131622,22.317617],[114.132102,22.316817],[114.133469,22.315131],[114.133754,22.313858],[114.133797,22.31191],[114.134004,22.311376],[114.135358,22.310923],[114.154358,22.311514]]]]}},{"type":"Feature","properties":{"adcode":810007,"name":"九龙城区","center":[114.1928467,22.31251],"centroid":[114.197767,22.314545],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":6,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.184315,22.345976],[114.183544,22.345874],[114.1816,22.346155],[114.180076,22.345882],[114.177822,22.344392],[114.179098,22.341552],[114.179165,22.340911],[114.178758,22.339923],[114.178982,22.338878],[114.181527,22.332626],[114.181789,22.331581],[114.181989,22.329887],[114.181734,22.328091],[114.181278,22.326826],[114.179456,22.323781],[114.178326,22.321372],[114.177798,22.319221],[114.177889,22.317576],[114.178114,22.316825],[114.179602,22.313649],[114.181303,22.310812],[114.182912,22.308665],[114.186053,22.305199],[114.187024,22.304334],[114.191033,22.301566],[114.192564,22.300215],[114.193311,22.298957],[114.19387,22.297618],[114.1967,22.289906],[114.215555,22.296271],[114.225036,22.291666],[114.223578,22.300492],[114.212924,22.309886],[114.21516,22.312784],[114.210543,22.317527],[114.208964,22.318642],[114.207288,22.319197],[114.206504,22.319927],[114.20637,22.321393],[114.207045,22.322936],[114.209505,22.32543],[114.208168,22.332217],[114.208193,22.332524],[114.206674,22.332258],[114.202902,22.330907],[114.201712,22.330307],[114.199501,22.328356],[114.198996,22.328152],[114.198334,22.328483],[114.197114,22.330483],[114.196737,22.330707],[114.195121,22.330875],[114.194575,22.331115],[114.193639,22.332699],[114.191647,22.334866],[114.190037,22.336221],[114.189849,22.338074],[114.189582,22.338621],[114.187018,22.339866],[114.186757,22.340197],[114.186271,22.343298],[114.18584,22.344029],[114.184315,22.345976]]]]}},{"type":"Feature","properties":{"adcode":810008,"name":"黄大仙区","center":[114.2038856,22.33632056],"centroid":[114.20974,22.341657],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":7,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208193,22.332524],[114.209341,22.33225],[114.211315,22.331107],[114.212542,22.331062],[114.215038,22.331817],[114.215992,22.331801],[114.216994,22.331283],[114.217638,22.330458],[114.218579,22.329662],[114.219484,22.329675],[114.223925,22.330589],[114.229215,22.330813],[114.232325,22.331307],[114.231542,22.331605],[114.230637,22.332989],[114.227648,22.345249],[114.22712,22.348261],[114.227089,22.350436],[114.227429,22.352693],[114.228322,22.354566],[114.225662,22.354611],[114.222485,22.35428],[114.218592,22.35353],[114.216727,22.353309],[114.212493,22.353142],[114.211357,22.353366],[114.209134,22.354317],[114.208545,22.354178],[114.206128,22.352203],[114.205295,22.352318],[114.203461,22.353326],[114.202264,22.353591],[114.201068,22.353387],[114.201001,22.352815],[114.201778,22.351518],[114.201633,22.350571],[114.200758,22.350208],[114.190827,22.348437],[114.187772,22.347359],[114.184801,22.346041],[114.184315,22.345976],[114.18584,22.344029],[114.186271,22.343298],[114.186757,22.340197],[114.187018,22.339866],[114.189582,22.338621],[114.189849,22.338074],[114.190037,22.336221],[114.191647,22.334866],[114.193639,22.332699],[114.194575,22.331115],[114.195121,22.330875],[114.196737,22.330707],[114.197114,22.330483],[114.198334,22.328483],[114.198996,22.328152],[114.199501,22.328356],[114.201712,22.330307],[114.202902,22.330907],[114.206674,22.332258],[114.208193,22.332524]]]]}},{"type":"Feature","properties":{"adcode":810009,"name":"观塘区","center":[114.2140542,22.32083778],"centroid":[114.230773,22.309542],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":8,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208193,22.332524],[114.208168,22.332217],[114.209505,22.32543],[114.207045,22.322936],[114.20637,22.321393],[114.206504,22.319927],[114.207288,22.319197],[114.208964,22.318642],[114.210543,22.317527],[114.21516,22.312784],[114.212924,22.309886],[114.223578,22.300492],[114.225036,22.291666],[114.249497,22.279809],[114.2498,22.280907],[114.249582,22.281924],[114.24915,22.282557],[114.248501,22.28299],[114.246715,22.283729],[114.246217,22.284313],[114.245846,22.285791],[114.246174,22.287473],[114.249254,22.294168],[114.250244,22.294948],[114.252005,22.295397],[114.252661,22.296014],[114.252831,22.29663],[114.252661,22.297532],[114.251513,22.299668],[114.249916,22.301599],[114.248355,22.303076],[114.245154,22.305705],[114.24485,22.306452],[114.244911,22.308359],[114.245214,22.309449],[114.246757,22.311637],[114.248683,22.315045],[114.248999,22.315772],[114.24909,22.316715],[114.248816,22.317103],[114.24813,22.317033],[114.24629,22.315923],[114.245409,22.315715],[114.244886,22.316482],[114.244929,22.320825],[114.244747,22.32116],[114.244176,22.32083],[114.243817,22.318642],[114.243101,22.318417],[114.241376,22.319797],[114.23897,22.320078],[114.238442,22.320691],[114.234949,22.33145],[114.232325,22.331307],[114.229215,22.330813],[114.223925,22.330589],[114.219484,22.329675],[114.218579,22.329662],[114.217638,22.330458],[114.216994,22.331283],[114.215992,22.331801],[114.215038,22.331817],[114.212542,22.331062],[114.211315,22.331107],[114.209341,22.33225],[114.208193,22.332524]]]]}},{"type":"Feature","properties":{"adcode":810010,"name":"荃湾区","center":[114.1210792,22.36830667],"centroid":[114.086798,22.365421],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":9,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.149322,22.374512],[114.154036,22.375336],[114.156617,22.376226],[114.158172,22.377115],[114.163153,22.381065],[114.164453,22.38277],[114.165218,22.384774],[114.16551,22.386446],[114.165978,22.387197],[114.166779,22.387336],[114.172562,22.387964],[114.173406,22.388103],[114.174184,22.388923],[114.173734,22.392464],[114.17357,22.395532],[114.17368,22.397792],[114.173977,22.399648],[114.173746,22.40135],[114.173358,22.402912],[114.172106,22.407028],[114.172003,22.408338],[114.172167,22.409786],[114.172902,22.412041],[114.168261,22.411629],[114.163615,22.411287],[114.161598,22.411238],[114.157073,22.411266],[114.153993,22.410924],[114.153368,22.411148],[114.152669,22.414766],[114.152317,22.415211],[114.151564,22.415435],[114.150756,22.415378],[114.148193,22.414607],[114.146917,22.414579],[114.144579,22.415223],[114.141323,22.415537],[114.130183,22.414685],[114.12926,22.413808],[114.128677,22.412666],[114.128427,22.411299],[114.127802,22.410757],[114.124048,22.410083],[114.122366,22.409618],[114.121047,22.408917],[114.115945,22.405131],[114.11388,22.404128],[114.112483,22.40374],[114.111323,22.40374],[114.108869,22.40416],[114.107648,22.404103],[114.106087,22.403434],[114.099345,22.396964],[114.098112,22.396242],[114.097055,22.395936],[114.096156,22.396018],[114.095299,22.396381],[114.094242,22.39716],[114.092681,22.39758],[114.091145,22.397523],[114.090033,22.397213],[114.088861,22.396348],[114.085623,22.393586],[114.084651,22.39297],[114.080491,22.39113],[114.079039,22.390122],[114.077982,22.38887],[114.077034,22.388645],[114.076123,22.38907],[114.074872,22.388919],[114.073882,22.388205],[114.072145,22.386018],[114.071258,22.384896],[114.070796,22.383031],[114.071088,22.380747],[114.065791,22.380975],[114.063835,22.380999],[114.062044,22.380836],[114.059116,22.380355],[114.056789,22.380685],[114.05504,22.380514],[114.054093,22.379731],[114.053868,22.379204],[114.053935,22.377976],[114.054943,22.376156],[114.054858,22.375377],[114.054147,22.375222],[114.049361,22.376801],[114.046008,22.377323],[114.044781,22.377266],[114.043718,22.377013],[114.042546,22.375834],[114.041963,22.374581],[114.041118,22.374133],[114.038118,22.37412],[114.037559,22.37399],[114.036939,22.373125],[114.0368,22.371954],[114.037261,22.37077],[114.039551,22.369648],[114.040219,22.366939],[114.041228,22.365547],[114.042108,22.36509],[114.045571,22.364152],[114.045892,22.36358],[114.041385,22.361716],[114.039551,22.360569],[114.03714,22.358239],[114.036271,22.357627],[114.033532,22.356113],[114.032888,22.355611],[114.032189,22.354048],[114.031637,22.349473],[114.025951,22.34782],[114.026164,22.347388],[114.026316,22.345147],[114.025647,22.343045],[114.022708,22.337862],[114.018802,22.334789],[114.015753,22.332062],[113.986008,22.315523],[114.060744,22.312539],[114.060659,22.31338],[114.061084,22.314596],[114.063477,22.317495],[114.068124,22.324879],[114.070061,22.327075],[114.074799,22.329189],[114.07834,22.329613],[114.081292,22.329654],[114.08261,22.329377],[114.07848,22.358067],[114.088302,22.362532],[114.114998,22.36407],[114.115119,22.357239],[114.118065,22.357802],[114.119201,22.358198],[114.120829,22.359165],[114.124668,22.360977],[114.125251,22.361463],[114.12618,22.362626],[114.126399,22.36376],[114.128233,22.36698],[114.128579,22.368134],[114.1283,22.369934],[114.127607,22.371146],[114.126599,22.372023],[114.126453,22.372696],[114.1268,22.373137],[114.132722,22.375316],[114.135528,22.376442],[114.138966,22.377919],[114.14125,22.378486],[114.14309,22.378453],[114.143564,22.377931],[114.143886,22.374863],[114.144068,22.374263],[114.144785,22.373704],[114.145848,22.373712],[114.149322,22.374512]]]]}},{"type":"Feature","properties":{"adcode":810011,"name":"屯门区","center":[113.9765742,22.39384417],"centroid":[113.979886,22.388499],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":10,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.072145,22.386018],[114.071908,22.390424],[114.062475,22.390453],[114.062262,22.390649],[114.062159,22.396829],[114.062293,22.39707],[114.064637,22.39716],[114.064759,22.399632],[114.0644,22.400089],[114.057573,22.400056],[114.057275,22.39993],[114.057215,22.396348],[114.056935,22.39612],[114.014258,22.396385],[114.013754,22.39676],[114.013803,22.406392],[114.013426,22.406726],[114.0083,22.406902],[114.00796,22.40711],[114.008391,22.414673],[114.008008,22.414962],[113.998776,22.415676],[113.996431,22.415758],[113.996048,22.415872],[113.991499,22.41898],[113.990187,22.419661],[113.991967,22.422598],[113.99255,22.423883],[113.992714,22.425135],[113.991602,22.425302],[113.986737,22.423809],[113.985425,22.423638],[113.980031,22.424792],[113.977796,22.425123],[113.972548,22.425372],[113.971539,22.425596],[113.970367,22.426147],[113.969644,22.42693],[113.968915,22.42737],[113.967798,22.427648],[113.957575,22.427733],[113.955789,22.427648],[113.954805,22.427281],[113.954277,22.426669],[113.953104,22.423797],[113.951853,22.42148],[113.950086,22.419021],[113.948421,22.416871],[113.945396,22.414057],[113.944655,22.413783],[113.943398,22.414203],[113.943143,22.414766],[113.942025,22.418894],[113.941582,22.419706],[113.940543,22.420342],[113.931043,22.422198],[113.930029,22.421892],[113.921361,22.419641],[113.918324,22.418229],[113.910009,22.40875],[113.906012,22.404397],[113.905222,22.402724],[113.905392,22.402019],[113.912116,22.40002],[113.914236,22.398963],[113.915639,22.39747],[113.91669,22.395312],[113.917966,22.390257],[113.918895,22.388188],[113.919946,22.38643],[113.920833,22.38091],[113.920602,22.377699],[113.919508,22.375585],[113.91819,22.3733],[113.918275,22.371452],[113.920037,22.367869],[113.923815,22.365233],[113.93077,22.361018],[113.941393,22.355272],[113.943532,22.354982],[113.947625,22.354799],[113.951908,22.355068],[113.957065,22.352587],[113.959257,22.35326],[113.956403,22.35939],[113.958705,22.361373],[113.96043,22.36265],[113.967743,22.365482],[113.970203,22.366196],[113.974224,22.36638],[113.979928,22.366086],[113.985176,22.364499],[113.988091,22.363172],[113.999839,22.358096],[114.002268,22.357533],[114.016245,22.35566],[114.018759,22.354827],[114.020916,22.353628],[114.023224,22.351718],[114.024943,22.349873],[114.025951,22.34782],[114.031637,22.349473],[114.032189,22.354048],[114.032888,22.355611],[114.033532,22.356113],[114.036271,22.357627],[114.03714,22.358239],[114.039551,22.360569],[114.041385,22.361716],[114.045892,22.36358],[114.045571,22.364152],[114.042108,22.36509],[114.041228,22.365547],[114.040219,22.366939],[114.039551,22.369648],[114.037261,22.37077],[114.0368,22.371954],[114.036939,22.373125],[114.037559,22.37399],[114.038118,22.37412],[114.041118,22.374133],[114.041963,22.374581],[114.042546,22.375834],[114.043718,22.377013],[114.044781,22.377266],[114.046008,22.377323],[114.049361,22.376801],[114.054147,22.375222],[114.054858,22.375377],[114.054943,22.376156],[114.053935,22.377976],[114.053868,22.379204],[114.054093,22.379731],[114.05504,22.380514],[114.056789,22.380685],[114.059116,22.380355],[114.062044,22.380836],[114.063835,22.380999],[114.065791,22.380975],[114.071088,22.380747],[114.070796,22.383031],[114.071258,22.384896],[114.072145,22.386018]]],[[[113.886666,22.36689],[113.887814,22.367024],[113.888719,22.368098],[113.888555,22.369171],[113.889691,22.370554],[113.889472,22.371027],[113.888433,22.371117],[113.88833,22.372223],[113.889551,22.373329],[113.889016,22.374116],[113.889721,22.374814],[113.890286,22.375785],[113.890341,22.376756],[113.88983,22.377319],[113.888634,22.37778],[113.887036,22.37807],[113.885591,22.37807],[113.884637,22.379196],[113.883525,22.379437],[113.882626,22.379335],[113.882019,22.378996],[113.881673,22.378127],[113.881655,22.377225],[113.88208,22.376556],[113.884279,22.375752],[113.88573,22.374851],[113.886222,22.37359],[113.886277,22.372039],[113.885111,22.367775],[113.885396,22.36718],[113.886666,22.36689]]],[[[113.895121,22.339091],[113.895698,22.339535],[113.89585,22.34027],[113.895668,22.341156],[113.896694,22.342788],[113.89639,22.343388],[113.89571,22.343817],[113.893323,22.34369],[113.893165,22.343368],[113.893779,22.342152],[113.893936,22.341278],[113.893718,22.339952],[113.894441,22.339764],[113.895121,22.339091]]],[[[113.879966,22.352228],[113.880397,22.352383],[113.880349,22.353697],[113.879,22.354346],[113.878648,22.354007],[113.879304,22.352644],[113.879966,22.352228]]],[[[113.971655,22.325752],[113.972286,22.325969],[113.97409,22.328026],[113.974175,22.328618],[113.971715,22.329438],[113.971108,22.330491],[113.971472,22.331062],[113.970829,22.331254],[113.970003,22.330634],[113.969583,22.327426],[113.969924,22.32636],[113.970634,22.325862],[113.971655,22.325752]]],[[[113.985801,22.330728],[113.986409,22.331075],[113.987854,22.333483],[113.989021,22.336046],[113.988863,22.33727],[113.988298,22.337858],[113.987453,22.337687],[113.985765,22.335703],[113.984945,22.333095],[113.984878,22.331536],[113.985157,22.330793],[113.985801,22.330728]]],[[[113.983815,22.323389],[113.984356,22.323915],[113.983967,22.324605],[113.983353,22.324601],[113.98325,22.324071],[113.983815,22.323389]]],[[[113.891701,22.347792],[113.892552,22.348208],[113.893651,22.349612],[113.893493,22.350575],[113.893007,22.350889],[113.892132,22.350954],[113.89124,22.35055],[113.890341,22.349551],[113.890304,22.348526],[113.890796,22.347894],[113.891701,22.347792]]]]}},{"type":"Feature","properties":{"adcode":810012,"name":"元朗区","center":[114.0324381,22.44142833],"centroid":[114.047174,22.445964],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":11,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.12926,22.413808],[114.129667,22.414889],[114.129715,22.416341],[114.129065,22.41805],[114.128203,22.418898],[114.123908,22.422361],[114.121685,22.424315],[114.119796,22.426546],[114.118296,22.42872],[114.115891,22.432681],[114.11501,22.435136],[114.114894,22.436502],[114.115174,22.438117],[114.116006,22.439904],[114.120914,22.447538],[114.129041,22.459597],[114.126478,22.459511],[114.124248,22.460184],[114.12225,22.461803],[114.119936,22.464551],[114.118551,22.465138],[114.116711,22.465024],[114.115149,22.464694],[114.112811,22.463911],[114.111414,22.463581],[114.108012,22.463356],[114.10551,22.462969],[114.10045,22.461737],[114.095062,22.460037],[114.093641,22.459678],[114.092608,22.459788],[114.092274,22.460763],[114.092651,22.472347],[114.092918,22.473852],[114.094534,22.476947],[114.094631,22.477468],[114.094674,22.483605],[114.094394,22.485235],[114.093283,22.486662],[114.090908,22.489149],[114.090604,22.490295],[114.091357,22.493809],[114.091132,22.496455],[114.090968,22.496887],[114.089741,22.498501],[114.089492,22.499353],[114.089492,22.500442],[114.089778,22.501404],[114.091898,22.505264],[114.092098,22.505892],[114.091983,22.506883],[114.090598,22.509818],[114.090094,22.511489],[114.089754,22.513246],[114.089523,22.517008],[114.089389,22.517974],[114.08764,22.515899],[114.086395,22.51486],[114.084293,22.513389],[114.083036,22.5127],[114.081578,22.512427],[114.080296,22.512997],[114.079203,22.514395],[114.078328,22.515035],[114.077004,22.515484],[114.075182,22.514999],[114.073432,22.514656],[114.070948,22.51431],[114.069126,22.51378],[114.066793,22.512268],[114.064601,22.510547],[114.06409,22.509952],[114.062979,22.507824],[114.062633,22.506365],[114.062323,22.502827],[114.061357,22.50162],[114.059978,22.500727],[114.058302,22.500006],[114.057075,22.499623],[114.055951,22.4995],[114.054712,22.49961],[114.053795,22.499888],[114.051584,22.50089],[114.050588,22.501196],[114.048431,22.50151],[114.046014,22.502183],[114.042108,22.502794],[114.03697,22.503365],[114.031873,22.504139],[114.030604,22.503781],[114.029164,22.503059],[114.028757,22.502619],[114.028423,22.501449],[114.028496,22.500756],[114.029055,22.49937],[114.030124,22.497845],[114.032025,22.495591],[114.032724,22.494347],[114.032967,22.493418],[114.032584,22.492138],[114.030124,22.489594],[114.029049,22.48899],[114.026461,22.488073],[114.026206,22.487735],[114.026206,22.486622],[114.027038,22.484979],[114.027184,22.484265],[114.027057,22.483352],[114.026103,22.481362],[114.024985,22.480526],[114.022884,22.480323],[114.021213,22.480559],[114.020576,22.48113],[114.019106,22.483923],[114.016202,22.48729],[114.014319,22.488554],[114.004303,22.490776],[114.000956,22.490943],[113.999802,22.490238],[113.999189,22.487241],[113.998654,22.482222],[113.99654,22.479797],[113.990891,22.475736],[113.985959,22.471144],[113.981634,22.46418],[113.977668,22.456828],[113.975372,22.455323],[113.969116,22.453549],[113.963643,22.451425],[113.961359,22.450275],[113.957739,22.447979],[113.953335,22.443219],[113.948664,22.434895],[113.944752,22.428981],[113.94222,22.426196],[113.940634,22.425315],[113.938879,22.424564],[113.931043,22.422198],[113.940543,22.420342],[113.941582,22.419706],[113.942025,22.418894],[113.943143,22.414766],[113.943398,22.414203],[113.944655,22.413783],[113.945396,22.414057],[113.948421,22.416871],[113.950086,22.419021],[113.951853,22.42148],[113.953104,22.423797],[113.954277,22.426669],[113.954805,22.427281],[113.955789,22.427648],[113.957575,22.427733],[113.967798,22.427648],[113.968915,22.42737],[113.969644,22.42693],[113.970367,22.426147],[113.971539,22.425596],[113.972548,22.425372],[113.977796,22.425123],[113.980031,22.424792],[113.985425,22.423638],[113.986737,22.423809],[113.991602,22.425302],[113.992714,22.425135],[113.99255,22.423883],[113.991967,22.422598],[113.990187,22.419661],[113.991499,22.41898],[113.996048,22.415872],[113.996431,22.415758],[113.998776,22.415676],[114.008008,22.414962],[114.008391,22.414673],[114.00796,22.40711],[114.0083,22.406902],[114.013426,22.406726],[114.013803,22.406392],[114.013754,22.39676],[114.014258,22.396385],[114.056935,22.39612],[114.057215,22.396348],[114.057275,22.39993],[114.057573,22.400056],[114.0644,22.400089],[114.064759,22.399632],[114.064637,22.39716],[114.062293,22.39707],[114.062159,22.396829],[114.062262,22.390649],[114.062475,22.390453],[114.071908,22.390424],[114.072145,22.386018],[114.073882,22.388205],[114.074872,22.388919],[114.076123,22.38907],[114.077034,22.388645],[114.077982,22.38887],[114.079039,22.390122],[114.080491,22.39113],[114.084651,22.39297],[114.085623,22.393586],[114.088861,22.396348],[114.090033,22.397213],[114.091145,22.397523],[114.092681,22.39758],[114.094242,22.39716],[114.095299,22.396381],[114.096156,22.396018],[114.097055,22.395936],[114.098112,22.396242],[114.099345,22.396964],[114.106087,22.403434],[114.107648,22.404103],[114.108869,22.40416],[114.111323,22.40374],[114.112483,22.40374],[114.11388,22.404128],[114.115945,22.405131],[114.121047,22.408917],[114.122366,22.409618],[114.124048,22.410083],[114.127802,22.410757],[114.128427,22.411299],[114.128677,22.412666],[114.12926,22.413808]]]]}},{"type":"Feature","properties":{"adcode":810013,"name":"北区","center":[114.1473639,22.49610389],"centroid":[114.182122,22.510784],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":12,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.341981,22.507841],[114.341878,22.508142],[114.340438,22.5091],[114.339229,22.509418],[114.336873,22.509573],[114.335585,22.509121],[114.332275,22.507266],[114.327434,22.504359],[114.324585,22.50323],[114.322022,22.502615],[114.31964,22.502154],[114.314477,22.500409],[114.313439,22.499998],[114.311459,22.498872],[114.309296,22.49745],[114.308592,22.497356],[114.306599,22.499105],[114.305196,22.500128],[114.303204,22.500821],[114.302196,22.501942],[114.301455,22.502488],[114.299754,22.503031],[114.298843,22.503679],[114.298667,22.505338],[114.298138,22.505876],[114.297197,22.506275],[114.296286,22.506406],[114.293643,22.505582],[114.293127,22.505794],[114.292507,22.506972],[114.291238,22.506728],[114.290041,22.506712],[114.290017,22.507046],[114.290716,22.507568],[114.290795,22.508289],[114.28927,22.508974],[114.288444,22.508558],[114.28715,22.508729],[114.284672,22.50864],[114.284077,22.508456],[114.283208,22.50875],[114.283159,22.510026],[114.284641,22.512092],[114.285358,22.514872],[114.285723,22.515268],[114.286895,22.515247],[114.286968,22.51713],[114.287229,22.517746],[114.288468,22.518626],[114.290813,22.521064],[114.291044,22.521692],[114.2917,22.52203],[114.290977,22.522825],[114.289148,22.522731],[114.288371,22.522099],[114.287897,22.522046],[114.2876,22.522596],[114.287016,22.522543],[114.285255,22.521231],[114.28483,22.520444],[114.283639,22.521052],[114.283803,22.521903],[114.285474,22.524557],[114.286682,22.525727],[114.286652,22.526236],[114.285753,22.527076],[114.284623,22.527125],[114.281598,22.526493],[114.280462,22.526546],[114.279497,22.527492],[114.279029,22.52772],[114.278002,22.527406],[114.278166,22.526322],[114.278914,22.525405],[114.278841,22.524716],[114.277492,22.523644],[114.276563,22.523522],[114.272603,22.52481],[114.270756,22.524598],[114.269985,22.524162],[114.268642,22.524121],[114.268284,22.525017],[114.269122,22.528188],[114.270191,22.529326],[114.27236,22.530463],[114.273313,22.531384],[114.273283,22.532888],[114.272171,22.534624],[114.271351,22.53493],[114.269316,22.534742],[114.268879,22.53517],[114.268618,22.536637],[114.26815,22.537554],[114.267458,22.538288],[114.266571,22.538606],[114.265229,22.538406],[114.264518,22.538528],[114.263898,22.540012],[114.263734,22.541516],[114.262556,22.542021],[114.262677,22.542946],[114.265277,22.54491],[114.265696,22.546174],[114.265253,22.546785],[114.264609,22.546785],[114.263601,22.546447],[114.261949,22.547343],[114.260339,22.547331],[114.259464,22.547156],[114.259154,22.546818],[114.259173,22.545807],[114.258802,22.545681],[114.257703,22.546039],[114.256622,22.545998],[114.255595,22.546426],[114.255006,22.546259],[114.254483,22.545428],[114.253955,22.545216],[114.252801,22.545566],[114.252455,22.545937],[114.25223,22.547087],[114.251683,22.54749],[114.249661,22.54782],[114.248579,22.547812],[114.247583,22.54758],[114.24652,22.546989],[114.245482,22.545892],[114.243574,22.54284],[114.242645,22.540933],[114.241892,22.539926],[114.237488,22.532342],[114.236765,22.531979],[114.233996,22.532354],[114.233212,22.53202],[114.232781,22.531152],[114.232696,22.529065],[114.232149,22.527972],[114.230922,22.527891],[114.229276,22.526693],[114.228723,22.526823],[114.227891,22.528176],[114.226773,22.528853],[114.226038,22.528853],[114.224988,22.528066],[114.224714,22.526766],[114.223117,22.525588],[114.221841,22.525698],[114.220359,22.525299],[114.219011,22.524076],[114.218403,22.523835],[114.217158,22.523746],[114.215166,22.52384],[114.214382,22.524284],[114.214321,22.525372],[114.214558,22.526395],[114.215682,22.529713],[114.217857,22.530817],[114.218458,22.531355],[114.220013,22.533348],[114.221064,22.535317],[114.222315,22.536572],[114.223827,22.538496],[114.225316,22.539229],[114.231566,22.539584],[114.232562,22.540044],[114.231268,22.540831],[114.230509,22.543044],[114.230965,22.543745],[114.230764,22.545941],[114.229537,22.547099],[114.228997,22.547987],[114.228152,22.548016],[114.227824,22.548346],[114.226306,22.548961],[114.225759,22.550281],[114.224678,22.551023],[114.223287,22.552763],[114.222704,22.553057],[114.221926,22.552881],[114.221641,22.55227],[114.220711,22.551936],[114.218598,22.551724],[114.217504,22.551948],[114.215913,22.55366],[114.215324,22.553949],[114.21451,22.553978],[114.212621,22.553623],[114.210835,22.553831],[114.207294,22.553521],[114.206808,22.553582],[114.206158,22.554589],[114.205216,22.55465],[114.203558,22.55401],[114.202519,22.553982],[114.201353,22.554255],[114.200521,22.553138],[114.199385,22.55282],[114.197229,22.553008],[114.196822,22.552885],[114.19551,22.551814],[114.194137,22.551643],[114.193111,22.552616],[114.192467,22.552625],[114.191714,22.551973],[114.191149,22.551985],[114.189138,22.552417],[114.1868,22.552674],[114.186204,22.552013],[114.185919,22.551317],[114.184492,22.55214],[114.182712,22.5528],[114.182572,22.55533],[114.182323,22.556777],[114.180944,22.557266],[114.179742,22.557246],[114.178235,22.556842],[114.175508,22.556899],[114.174785,22.557437],[114.173965,22.558378],[114.172319,22.558464],[114.171578,22.557873],[114.170582,22.55672],[114.169525,22.556341],[114.168189,22.556573],[114.167411,22.558268],[114.166676,22.559092],[114.165589,22.558892],[114.164435,22.557572],[114.16342,22.556178],[114.162236,22.554051],[114.161076,22.552625],[114.159928,22.55203],[114.157674,22.552074],[114.156879,22.551622],[114.156781,22.549821],[114.156581,22.548598],[114.156022,22.548146],[114.155075,22.548008],[114.154607,22.545929],[114.154832,22.54447],[114.155828,22.544213],[114.155828,22.544967],[114.156417,22.545297],[114.156721,22.544984],[114.156508,22.543696],[114.155299,22.543329],[114.153477,22.541304],[114.153222,22.540692],[114.153544,22.539547],[114.153137,22.539115],[114.150495,22.53852],[114.149735,22.538508],[114.149164,22.539303],[114.146935,22.539437],[114.146401,22.540036],[114.144913,22.540171],[114.143886,22.540627],[114.143024,22.540778],[114.142058,22.540595],[114.140242,22.539242],[114.139403,22.53881],[114.138353,22.538765],[114.136761,22.539156],[114.135893,22.53916],[114.135103,22.538846],[114.134222,22.537746],[114.133378,22.537102],[114.132661,22.536894],[114.131058,22.53711],[114.130481,22.537004],[114.128737,22.53612],[114.127565,22.53537],[114.125062,22.532211],[114.122074,22.531494],[114.121503,22.531066],[114.121211,22.52968],[114.120695,22.528637],[114.120227,22.528233],[114.118751,22.527479],[114.117275,22.526937],[114.115635,22.52732],[114.115034,22.52772],[114.114591,22.528608],[114.11484,22.532802],[114.114627,22.533483],[114.113771,22.533841],[114.11337,22.533581],[114.113054,22.532566],[114.11221,22.531685],[114.110922,22.531718],[114.109586,22.532264],[114.107909,22.532325],[114.103918,22.531335],[114.10195,22.531241],[114.101294,22.531437],[114.100152,22.532191],[114.098409,22.533813],[114.097249,22.534404],[114.09587,22.534278],[114.094109,22.533572],[114.0929,22.532545],[114.091248,22.530067],[114.090355,22.529317],[114.088259,22.52871],[114.085684,22.528417],[114.08402,22.527553],[114.08357,22.526896],[114.083485,22.526114],[114.084287,22.525054],[114.085951,22.523876],[114.088174,22.522931],[114.089377,22.522124],[114.090343,22.52099],[114.0903,22.519429],[114.089389,22.517974],[114.089523,22.517008],[114.089754,22.513246],[114.090094,22.511489],[114.090598,22.509818],[114.091983,22.506883],[114.092098,22.505892],[114.091898,22.505264],[114.089778,22.501404],[114.089492,22.500442],[114.089492,22.499353],[114.089741,22.498501],[114.090968,22.496887],[114.091132,22.496455],[114.091357,22.493809],[114.090604,22.490295],[114.090908,22.489149],[114.093283,22.486662],[114.094394,22.485235],[114.094674,22.483605],[114.094631,22.477468],[114.094534,22.476947],[114.092918,22.473852],[114.092651,22.472347],[114.092274,22.460763],[114.092608,22.459788],[114.093641,22.459678],[114.095062,22.460037],[114.10045,22.461737],[114.10551,22.462969],[114.108012,22.463356],[114.111414,22.463581],[114.112811,22.463911],[114.115149,22.464694],[114.116711,22.465024],[114.118551,22.465138],[114.119936,22.464551],[114.12225,22.461803],[114.124248,22.460184],[114.126478,22.459511],[114.129041,22.459597],[114.129703,22.459621],[114.132042,22.460343],[114.135777,22.462178],[114.140782,22.46524],[114.148065,22.470305],[114.152627,22.471467],[114.15341,22.471964],[114.153908,22.473081],[114.15403,22.474786],[114.153842,22.475373],[114.152882,22.476922],[114.152973,22.477452],[114.153939,22.477709],[114.158069,22.477966],[114.160553,22.478325],[114.160985,22.477852],[114.161112,22.476718],[114.160888,22.47534],[114.161222,22.474349],[114.162406,22.474211],[114.164362,22.475136],[114.164957,22.475124],[114.167035,22.474423],[114.167818,22.474504],[114.16845,22.475254],[114.16862,22.476873],[114.169288,22.478602],[114.171062,22.481721],[114.172507,22.483393],[114.173625,22.484502],[114.175125,22.485505],[114.177409,22.486393],[114.17996,22.487001],[114.184461,22.487384],[114.191137,22.487425],[114.192084,22.487201],[114.194028,22.486332],[114.195704,22.485941],[114.200041,22.48599],[114.201827,22.485761],[114.204099,22.484811],[114.205484,22.48453],[114.208442,22.48497],[114.214552,22.484738],[114.216113,22.484514],[114.217395,22.484065],[114.219624,22.482781],[114.220517,22.48261],[114.221349,22.483225],[114.221738,22.484673],[114.222351,22.485623],[114.225358,22.488155],[114.226634,22.489606],[114.227751,22.49133],[114.229361,22.494396],[114.229865,22.495008],[114.230807,22.495676],[114.232204,22.496402],[114.233151,22.497181],[114.234597,22.4993],[114.236383,22.501306],[114.236826,22.502142],[114.237543,22.504205],[114.238047,22.505264],[114.2386,22.505819],[114.240221,22.506096],[114.241333,22.505595],[114.242177,22.504812],[114.243058,22.503418],[114.243787,22.502582],[114.244783,22.502195],[114.246739,22.502024],[114.247577,22.501689],[114.2483,22.501131],[114.253032,22.495583],[114.254648,22.494523],[114.256433,22.494078],[114.25899,22.493911],[114.261839,22.494025],[114.266468,22.494527],[114.267749,22.494804],[114.26925,22.495309],[114.271206,22.495701],[114.280469,22.496683],[114.2837,22.496687],[114.287436,22.496357],[114.290728,22.495521],[114.304073,22.489687],[114.306132,22.489076],[114.307699,22.48897],[114.309879,22.489141],[114.311939,22.4897],[114.314678,22.490821],[114.319701,22.493116],[114.321038,22.494233],[114.321493,22.494959],[114.322101,22.496467],[114.322714,22.497193],[114.323613,22.497861],[114.326844,22.499427],[114.329031,22.500662],[114.332275,22.501559],[114.33383,22.502456],[114.341981,22.507841]]],[[[114.30383,22.501388],[114.304534,22.501473],[114.307176,22.502839],[114.307948,22.503124],[114.309333,22.504205],[114.309618,22.504682],[114.309618,22.506006],[114.310748,22.506716],[114.311459,22.506646],[114.313955,22.505114],[114.315492,22.505203],[114.315875,22.505648],[114.316676,22.507576],[114.317016,22.507914],[114.318377,22.507922],[114.32091,22.508742],[114.321633,22.509239],[114.322362,22.510193],[114.323686,22.511167],[114.32399,22.512194],[114.324433,22.512602],[114.32645,22.513397],[114.32645,22.514477],[114.32402,22.516397],[114.322939,22.516258],[114.322173,22.51583],[114.321457,22.516446],[114.32153,22.516874],[114.322125,22.517192],[114.322234,22.51797],[114.320327,22.52086],[114.318019,22.522005],[114.314471,22.523599],[114.313688,22.52346],[114.313001,22.522291],[114.313348,22.521639],[114.314028,22.521109],[114.314149,22.520595],[114.313706,22.518883],[114.313736,22.518264],[114.314301,22.516548],[114.314253,22.515647],[114.313749,22.514346],[114.312534,22.513364],[114.312376,22.512153],[114.312017,22.511811],[114.311374,22.512003],[114.310499,22.511636],[114.310469,22.510323],[114.310238,22.510123],[114.309314,22.510282],[114.308792,22.510115],[114.308482,22.509341],[114.309454,22.508615],[114.309029,22.507869],[114.307766,22.50793],[114.307535,22.508473],[114.30762,22.509577],[114.307237,22.510062],[114.306739,22.510005],[114.306593,22.51078],[114.304777,22.510629],[114.304145,22.509308],[114.302979,22.509712],[114.302651,22.510433],[114.302013,22.510478],[114.301424,22.509581],[114.300337,22.509655],[114.299875,22.510662],[114.299207,22.510437],[114.299365,22.509288],[114.299894,22.507955],[114.301266,22.507751],[114.30236,22.506862],[114.302317,22.505941],[114.301455,22.505925],[114.301552,22.504669],[114.300799,22.504482],[114.300762,22.503748],[114.302524,22.501946],[114.30383,22.501388]]],[[[114.309187,22.528841],[114.309661,22.529211],[114.310183,22.530381],[114.31076,22.532823],[114.310098,22.533996],[114.309333,22.534172],[114.308045,22.533589],[114.307255,22.533764],[114.305378,22.535496],[114.303319,22.537114],[114.302773,22.537738],[114.302475,22.540415],[114.301862,22.540847],[114.300932,22.541137],[114.299845,22.541145],[114.29925,22.54145],[114.299268,22.54317],[114.299833,22.544209],[114.300525,22.544951],[114.302129,22.545081],[114.303623,22.544764],[114.305154,22.543643],[114.306933,22.542001],[114.307838,22.541357],[114.308768,22.541471],[114.31028,22.542294],[114.31121,22.543802],[114.311629,22.543981],[114.313123,22.543969],[114.313463,22.544711],[114.313141,22.545493],[114.313463,22.545799],[114.315547,22.544279],[114.316719,22.544213],[114.317855,22.544923],[114.319215,22.545489],[114.320096,22.546451],[114.320886,22.546712],[114.322058,22.546748],[114.322319,22.547372],[114.321894,22.547869],[114.321062,22.548215],[114.319355,22.548505],[114.317812,22.547946],[114.316573,22.548806],[114.31534,22.548668],[114.312862,22.548105],[114.312248,22.548113],[114.309618,22.549409],[114.308683,22.54813],[114.303896,22.548439],[114.29849,22.549034],[114.298114,22.549132],[114.297932,22.55],[114.298618,22.550852],[114.298551,22.551708],[114.297543,22.552396],[114.296462,22.552718],[114.295247,22.552629],[114.29433,22.551773],[114.293698,22.551492],[114.292781,22.550489],[114.292775,22.54978],[114.293467,22.548391],[114.295083,22.547327],[114.29569,22.54661],[114.295727,22.545591],[114.292386,22.545424],[114.291432,22.545216],[114.291001,22.544845],[114.291013,22.5439],[114.29351,22.541744],[114.297786,22.537864],[114.298691,22.536727],[114.298509,22.536275],[114.29733,22.536148],[114.29727,22.53722],[114.297014,22.537668],[114.29597,22.53744],[114.295186,22.536295],[114.293145,22.536332],[114.292094,22.535586],[114.292161,22.534229],[114.291505,22.532957],[114.290236,22.531563],[114.290157,22.530728],[114.29091,22.529843],[114.291451,22.529896],[114.293091,22.531037],[114.293576,22.531119],[114.294749,22.530638],[114.295532,22.530687],[114.296213,22.53109],[114.298102,22.531156],[114.299116,22.530565],[114.301527,22.531963],[114.303161,22.532496],[114.303708,22.532961],[114.304103,22.533699],[114.304868,22.533446],[114.303981,22.530247],[114.304121,22.529586],[114.304753,22.529395],[114.306308,22.529672],[114.307334,22.529513],[114.308507,22.528906],[114.309187,22.528841]]],[[[114.32399,22.519821],[114.325241,22.520298],[114.326128,22.521891],[114.326158,22.523163],[114.3258,22.524064],[114.325526,22.525417],[114.325405,22.528066],[114.326729,22.529517],[114.327051,22.531001],[114.326771,22.532541],[114.326024,22.534004],[114.325065,22.535313],[114.32385,22.535431],[114.32286,22.534864],[114.32238,22.53363],[114.322483,22.530589],[114.322623,22.529101],[114.322094,22.528042],[114.321226,22.527597],[114.319653,22.527667],[114.318025,22.529696],[114.317053,22.531478],[114.31531,22.532712],[114.314216,22.532835],[114.313263,22.532109],[114.312273,22.530695],[114.312115,22.529419],[114.312522,22.526151],[114.313087,22.525429],[114.316008,22.524585],[114.317636,22.523632],[114.320382,22.521696],[114.322216,22.521361],[114.322781,22.521007],[114.323103,22.520216],[114.32399,22.519821]]],[[[114.275281,22.546687],[114.275931,22.547062],[114.276077,22.548199],[114.275791,22.548566],[114.27383,22.550196],[114.272803,22.551288],[114.272177,22.550925],[114.273429,22.548411],[114.274826,22.547987],[114.274874,22.546903],[114.275281,22.546687]]],[[[114.280505,22.52891],[114.281185,22.529114],[114.282327,22.530296],[114.282376,22.530752],[114.281738,22.53116],[114.280967,22.530984],[114.280456,22.531828],[114.279697,22.532305],[114.279229,22.532268],[114.279047,22.531637],[114.27957,22.530988],[114.279649,22.529326],[114.280505,22.52891]]],[[[114.264135,22.541691],[114.265781,22.541886],[114.267112,22.542795],[114.267251,22.543366],[114.266711,22.544063],[114.265921,22.544006],[114.264846,22.543272],[114.263728,22.543166],[114.263303,22.542587],[114.263303,22.54198],[114.264135,22.541691]]],[[[114.291572,22.515989],[114.293479,22.516323],[114.293996,22.516548],[114.293917,22.517457],[114.292769,22.517999],[114.291712,22.517669],[114.291238,22.517807],[114.290977,22.518594],[114.289774,22.518394],[114.289495,22.51788],[114.290181,22.516385],[114.290867,22.516026],[114.291572,22.515989]]],[[[114.265642,22.548219],[114.2662,22.548427],[114.267482,22.548439],[114.267239,22.549255],[114.266468,22.549279],[114.265295,22.54899],[114.265192,22.548464],[114.265642,22.548219]]],[[[114.293109,22.529754],[114.293728,22.530177],[114.292969,22.530234],[114.293109,22.529754]]],[[[114.231991,22.528535],[114.232459,22.529517],[114.232034,22.529456],[114.231706,22.528686],[114.231991,22.528535]]],[[[114.216113,22.524202],[114.216539,22.52472],[114.215937,22.525547],[114.21499,22.525095],[114.215154,22.524467],[114.216113,22.524202]]],[[[114.31062,22.534082],[114.312212,22.534754],[114.314477,22.536629],[114.314951,22.537591],[114.314891,22.538353],[114.314125,22.53918],[114.312965,22.539547],[114.311951,22.539466],[114.311112,22.539111],[114.309934,22.538247],[114.309539,22.536947],[114.309618,22.535292],[114.309873,22.534461],[114.31062,22.534082]]],[[[114.308877,22.49802],[114.309758,22.498383],[114.30963,22.499007],[114.308999,22.498783],[114.308549,22.498273],[114.308877,22.49802]]],[[[114.26023,22.547523],[114.261001,22.548382],[114.260521,22.548717],[114.26023,22.547523]]],[[[114.336041,22.536707],[114.336314,22.536886],[114.33663,22.538638],[114.335968,22.539816],[114.335154,22.540004],[114.334431,22.539865],[114.333854,22.539286],[114.333848,22.53874],[114.334577,22.537774],[114.335628,22.536808],[114.336041,22.536707]]],[[[114.270799,22.538744],[114.270878,22.539559],[114.269784,22.539612],[114.269784,22.539229],[114.270799,22.538744]]],[[[114.285455,22.529293],[114.285856,22.529896],[114.285437,22.530226],[114.284587,22.530088],[114.284587,22.529448],[114.285455,22.529293]]],[[[114.269644,22.54932],[114.270003,22.549695],[114.269377,22.549809],[114.269644,22.54932]]],[[[114.277189,22.532574],[114.277365,22.533157],[114.276806,22.533169],[114.277189,22.532574]]],[[[114.277547,22.529444],[114.277917,22.529794],[114.277899,22.530471],[114.277292,22.530483],[114.277164,22.529656],[114.277547,22.529444]]],[[[114.29255,22.523114],[114.293133,22.52355],[114.292301,22.523742],[114.29255,22.523114]]],[[[114.295569,22.506712],[114.296018,22.507295],[114.295557,22.507449],[114.295569,22.506712]]],[[[114.272396,22.535162],[114.272633,22.535451],[114.272092,22.535953],[114.271855,22.535541],[114.272396,22.535162]]],[[[114.289167,22.522869],[114.289367,22.523375],[114.288766,22.523167],[114.289167,22.522869]]]]}},{"type":"Feature","properties":{"adcode":810014,"name":"大埔区","center":[114.1717431,22.44565306],"centroid":[114.205562,22.458868],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":13,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.341981,22.507841],[114.33383,22.502456],[114.332275,22.501559],[114.329031,22.500662],[114.326844,22.499427],[114.323613,22.497861],[114.322714,22.497193],[114.322101,22.496467],[114.321493,22.494959],[114.321038,22.494233],[114.319701,22.493116],[114.314678,22.490821],[114.311939,22.4897],[114.309879,22.489141],[114.307699,22.48897],[114.306132,22.489076],[114.304073,22.489687],[114.290728,22.495521],[114.287436,22.496357],[114.2837,22.496687],[114.280469,22.496683],[114.271206,22.495701],[114.26925,22.495309],[114.267749,22.494804],[114.266468,22.494527],[114.261839,22.494025],[114.25899,22.493911],[114.256433,22.494078],[114.254648,22.494523],[114.253032,22.495583],[114.2483,22.501131],[114.247577,22.501689],[114.246739,22.502024],[114.244783,22.502195],[114.243787,22.502582],[114.243058,22.503418],[114.242177,22.504812],[114.241333,22.505595],[114.240221,22.506096],[114.2386,22.505819],[114.238047,22.505264],[114.237543,22.504205],[114.236826,22.502142],[114.236383,22.501306],[114.234597,22.4993],[114.233151,22.497181],[114.232204,22.496402],[114.230807,22.495676],[114.229865,22.495008],[114.229361,22.494396],[114.227751,22.49133],[114.226634,22.489606],[114.225358,22.488155],[114.222351,22.485623],[114.221738,22.484673],[114.221349,22.483225],[114.220517,22.48261],[114.219624,22.482781],[114.217395,22.484065],[114.216113,22.484514],[114.214552,22.484738],[114.208442,22.48497],[114.205484,22.48453],[114.204099,22.484811],[114.201827,22.485761],[114.200041,22.48599],[114.195704,22.485941],[114.194028,22.486332],[114.192084,22.487201],[114.191137,22.487425],[114.184461,22.487384],[114.17996,22.487001],[114.177409,22.486393],[114.175125,22.485505],[114.173625,22.484502],[114.172507,22.483393],[114.171062,22.481721],[114.169288,22.478602],[114.16862,22.476873],[114.16845,22.475254],[114.167818,22.474504],[114.167035,22.474423],[114.164957,22.475124],[114.164362,22.475136],[114.162406,22.474211],[114.161222,22.474349],[114.160888,22.47534],[114.161112,22.476718],[114.160985,22.477852],[114.160553,22.478325],[114.158069,22.477966],[114.153939,22.477709],[114.152973,22.477452],[114.152882,22.476922],[114.153842,22.475373],[114.15403,22.474786],[114.153908,22.473081],[114.15341,22.471964],[114.152627,22.471467],[114.148065,22.470305],[114.140782,22.46524],[114.135777,22.462178],[114.132042,22.460343],[114.129703,22.459621],[114.129041,22.459597],[114.120914,22.447538],[114.116006,22.439904],[114.115174,22.438117],[114.114894,22.436502],[114.11501,22.435136],[114.115891,22.432681],[114.118296,22.42872],[114.119796,22.426546],[114.121685,22.424315],[114.123908,22.422361],[114.128203,22.418898],[114.129065,22.41805],[114.129715,22.416341],[114.129667,22.414889],[114.12926,22.413808],[114.130183,22.414685],[114.141323,22.415537],[114.144579,22.415223],[114.146917,22.414579],[114.148193,22.414607],[114.150756,22.415378],[114.151564,22.415435],[114.152317,22.415211],[114.152669,22.414766],[114.153368,22.411148],[114.153993,22.410924],[114.157073,22.411266],[114.161598,22.411238],[114.163615,22.411287],[114.168261,22.411629],[114.172902,22.412041],[114.17699,22.41238],[114.177628,22.412796],[114.178108,22.413881],[114.179942,22.414187],[114.179942,22.415187],[114.180434,22.415688],[114.186581,22.41608],[114.190529,22.416394],[114.190979,22.416643],[114.191033,22.417385],[114.191647,22.417858],[114.200734,22.41847],[114.202374,22.418633],[114.203236,22.418935],[114.20388,22.419494],[114.204293,22.420191],[114.205544,22.423842],[114.206134,22.425094],[114.207057,22.426387],[114.208618,22.427725],[114.214419,22.431608],[114.212724,22.432799],[114.205301,22.437175],[114.204105,22.438195],[114.20323,22.440413],[114.203182,22.442073],[114.204566,22.447477],[114.205441,22.449504],[114.207105,22.451119],[114.208897,22.451763],[114.210744,22.451669],[114.212256,22.451111],[114.212864,22.450328],[114.212864,22.449447],[114.212311,22.44797],[114.212007,22.445838],[114.212493,22.445214],[114.213672,22.444908],[114.216296,22.4447],[114.218658,22.444679],[114.218743,22.44408],[114.219995,22.443868],[114.221361,22.444006],[114.222807,22.444826],[114.226215,22.445544],[114.227199,22.445589],[114.22927,22.44536],[114.230649,22.445593],[114.232283,22.44627],[114.234676,22.447469],[114.23597,22.448382],[114.237992,22.450421],[114.238861,22.451686],[114.239815,22.45421],[114.239547,22.455144],[114.238654,22.455845],[114.237446,22.456449],[114.235733,22.4564],[114.234014,22.455633],[114.233382,22.455111],[114.232283,22.453614],[114.231177,22.451159],[114.230564,22.450132],[114.229179,22.448872],[114.228517,22.448492],[114.227733,22.448386],[114.22585,22.448635],[114.224107,22.449206],[114.22189,22.450238],[114.221872,22.451094],[114.22226,22.452738],[114.2226,22.452974],[114.224811,22.452758],[114.22534,22.453117],[114.225079,22.453769],[114.224204,22.454185],[114.223111,22.454279],[114.221732,22.45496],[114.221009,22.454821],[114.220857,22.454185],[114.220402,22.454446],[114.219952,22.455327],[114.219333,22.455719],[114.217863,22.455837],[114.215275,22.456636],[114.21482,22.456975],[114.21451,22.458051],[114.214571,22.458965],[114.215482,22.460959],[114.215585,22.463234],[114.215919,22.463907],[114.216848,22.464571],[114.218573,22.465562],[114.219685,22.465721],[114.221319,22.464567],[114.222151,22.464359],[114.225425,22.464502],[114.229239,22.464971],[114.230029,22.465285],[114.231299,22.466231],[114.232198,22.466578],[114.234093,22.466574],[114.234372,22.466227],[114.234481,22.46511],[114.235192,22.464392],[114.236996,22.46356],[114.246016,22.454043],[114.246429,22.453117],[114.246569,22.449377],[114.246891,22.447762],[114.247723,22.446376],[114.24915,22.445405],[114.251088,22.445128],[114.253165,22.445499],[114.255243,22.446653],[114.259015,22.448549],[114.26026,22.448876],[114.262611,22.449761],[114.265708,22.452579],[114.266723,22.454397],[114.268588,22.457468],[114.270064,22.458887],[114.272226,22.460143],[114.276763,22.462031],[114.279661,22.463503],[114.280699,22.464359],[114.281282,22.465668],[114.282005,22.466203],[114.284332,22.466419],[114.285565,22.466741],[114.28845,22.467972],[114.293157,22.470317],[114.295028,22.470561],[114.295806,22.47099],[114.29634,22.471658],[114.300112,22.473693],[114.301874,22.474765],[114.303799,22.475291],[114.30875,22.476951],[114.311823,22.478667],[114.313779,22.480037],[114.31517,22.48188],[114.315225,22.483576],[114.315789,22.484033],[114.317016,22.483764],[114.318298,22.48433],[114.321457,22.486316],[114.323145,22.488081],[114.324184,22.488697],[114.325447,22.489765],[114.32716,22.491697],[114.330829,22.496353],[114.333022,22.497556],[114.334625,22.498656],[114.340991,22.503304],[114.342279,22.504857],[114.342497,22.505472],[114.342333,22.506805],[114.341981,22.507841]]],[[[114.25571,22.434683],[114.255874,22.430939],[114.255777,22.427032],[114.255316,22.425535],[114.253645,22.422137],[114.253724,22.420901],[114.25517,22.418935],[114.255437,22.417883],[114.254362,22.407677],[114.254241,22.405878],[114.254344,22.404617],[114.254751,22.402887],[114.255419,22.401827],[114.257484,22.399098],[114.258043,22.397425],[114.25777,22.39348],[114.257964,22.392256],[114.258353,22.391489],[114.259707,22.389763],[114.259956,22.388784],[114.259428,22.385051],[114.259568,22.383248],[114.263024,22.386332],[114.264141,22.386948],[114.265921,22.387617],[114.268041,22.387899],[114.278021,22.388853],[114.278914,22.389074],[114.279582,22.38969],[114.281197,22.394149],[114.281981,22.394932],[114.282649,22.39521],[114.283712,22.395324],[114.288286,22.394798],[114.289015,22.394855],[114.289689,22.395414],[114.292034,22.401329],[114.292362,22.402553],[114.292422,22.403781],[114.291918,22.406902],[114.292034,22.408631],[114.292477,22.410079],[114.293309,22.41114],[114.294652,22.411923],[114.296601,22.412152],[114.299061,22.412099],[114.304528,22.411772],[114.305536,22.411997],[114.306545,22.412609],[114.307328,22.413392],[114.307772,22.414228],[114.307996,22.415178],[114.307608,22.419751],[114.307717,22.421533],[114.308045,22.422704],[114.309333,22.423491],[114.31028,22.423601],[114.31989,22.422366],[114.322058,22.421754],[114.323297,22.420975],[114.32597,22.41836],[114.327816,22.417026],[114.329547,22.416137],[114.333004,22.414693],[114.335354,22.413975],[114.336691,22.413808],[114.338203,22.413979],[114.339989,22.414705],[114.3439,22.416749],[114.345516,22.41681],[114.346245,22.416418],[114.352107,22.411413],[114.354506,22.409965],[114.358806,22.408525],[114.359699,22.408023],[114.360143,22.407359],[114.360203,22.405796],[114.360701,22.405405],[114.362718,22.4058],[114.36595,22.407367],[114.367122,22.408313],[114.367905,22.409321],[114.368634,22.410659],[114.370025,22.415676],[114.370584,22.416794],[114.371817,22.418523],[114.372145,22.419584],[114.372206,22.420922],[114.372036,22.432044],[114.371538,22.433855],[114.369776,22.436502],[114.369521,22.437114],[114.369217,22.440291],[114.373901,22.441086],[114.37333,22.442571],[114.373354,22.443423],[114.374022,22.444545],[114.375735,22.446604],[114.376172,22.447832],[114.37633,22.449867],[114.376057,22.452191],[114.375449,22.453765],[114.374271,22.455392],[114.371331,22.457248],[114.368889,22.45839],[114.365761,22.459617],[114.364771,22.459825],[114.363921,22.459535],[114.363787,22.458973],[114.364079,22.457582],[114.363465,22.455217],[114.363441,22.454283],[114.364109,22.452493],[114.363945,22.451237],[114.362633,22.451102],[114.361643,22.450646],[114.361139,22.449659],[114.360252,22.449202],[114.35846,22.449439],[114.356802,22.448717],[114.356267,22.447991],[114.356182,22.446551],[114.357014,22.444373],[114.356942,22.442289],[114.357148,22.441755],[114.358138,22.441649],[114.358563,22.441143],[114.357926,22.437697],[114.357288,22.43649],[114.356298,22.435315],[114.355654,22.435205],[114.354816,22.435446],[114.352872,22.437636],[114.351827,22.438007],[114.350734,22.438003],[114.348322,22.437546],[114.347247,22.437705],[114.347035,22.43877],[114.347594,22.440829],[114.347654,22.442167],[114.347436,22.444329],[114.347223,22.444838],[114.346099,22.446249],[114.345407,22.447958],[114.345273,22.449683],[114.345832,22.454014],[114.346099,22.454972],[114.347114,22.455939],[114.348377,22.456261],[114.350546,22.456612],[114.352252,22.457285],[114.353492,22.458916],[114.353813,22.459931],[114.353516,22.461317],[114.351937,22.465338],[114.35108,22.46734],[114.350491,22.472229],[114.347891,22.476963],[114.346962,22.477497],[114.34613,22.477579],[114.344362,22.476877],[114.343961,22.4764],[114.343238,22.474125],[114.342844,22.473697],[114.341823,22.473212],[114.341368,22.472254],[114.342084,22.469489],[114.342169,22.467405],[114.34203,22.466145],[114.341635,22.465611],[114.340292,22.464731],[114.340001,22.463552],[114.339418,22.462912],[114.338634,22.462561],[114.337614,22.462504],[114.336684,22.462932],[114.336575,22.464506],[114.337504,22.466932],[114.337565,22.467622],[114.33728,22.468861],[114.336782,22.470223],[114.336101,22.471324],[114.335324,22.471903],[114.334625,22.472046],[114.333338,22.471577],[114.332068,22.470598],[114.3314,22.470358],[114.330452,22.4705],[114.329717,22.471287],[114.329377,22.472857],[114.329608,22.475409],[114.32942,22.47629],[114.328897,22.477342],[114.327749,22.478451],[114.325739,22.47883],[114.324299,22.478529],[114.321724,22.477456],[114.317824,22.475153],[114.315273,22.47205],[114.314581,22.471405],[114.311477,22.469664],[114.310031,22.468539],[114.309065,22.467149],[114.307845,22.464796],[114.305409,22.460877],[114.304467,22.458606],[114.304224,22.457456],[114.303587,22.456705],[114.302651,22.456493],[114.299438,22.45686],[114.296474,22.456522],[114.295885,22.456118],[114.295162,22.454304],[114.294652,22.452591],[114.293479,22.452057],[114.29128,22.452322],[114.290454,22.451947],[114.289167,22.450609],[114.287703,22.449671],[114.283985,22.44658],[114.282194,22.444924],[114.281125,22.443187],[114.280535,22.441984],[114.280323,22.440609],[114.280456,22.439271],[114.280238,22.437428],[114.279065,22.43585],[114.277626,22.435262],[114.276047,22.435393],[114.27471,22.43574],[114.273186,22.436302],[114.271959,22.436592],[114.270386,22.43678],[114.265818,22.436058],[114.258401,22.435124],[114.25571,22.434683]]],[[[114.366138,22.462121],[114.368094,22.463099],[114.369296,22.465216],[114.369132,22.467467],[114.36943,22.468152],[114.371872,22.470011],[114.372394,22.471968],[114.372333,22.473925],[114.371483,22.475259],[114.370341,22.475976],[114.369132,22.476461],[114.368804,22.476983],[114.369102,22.478643],[114.369879,22.479984],[114.369752,22.481611],[114.368841,22.482716],[114.367869,22.483009],[114.366848,22.48294],[114.365482,22.483755],[114.364467,22.483947],[114.363429,22.483719],[114.362384,22.482936],[114.361011,22.480816],[114.360452,22.480294],[114.358497,22.479246],[114.358011,22.478239],[114.358235,22.477615],[114.359906,22.476641],[114.36058,22.475764],[114.360914,22.474655],[114.360689,22.473513],[114.361692,22.472441],[114.36205,22.469444],[114.362706,22.468502],[114.362973,22.467589],[114.362572,22.465077],[114.362512,22.463809],[114.363034,22.462896],[114.364431,22.462149],[114.366138,22.462121]]],[[[114.226318,22.436747],[114.226069,22.435699],[114.226111,22.434973],[114.226597,22.434887],[114.226974,22.435972],[114.227454,22.436637],[114.227071,22.438468],[114.226506,22.438268],[114.226318,22.436747]]],[[[114.362894,22.492982],[114.363981,22.493434],[114.365372,22.493361],[114.365834,22.493715],[114.366223,22.494678],[114.36666,22.496826],[114.36711,22.497813],[114.367857,22.498828],[114.369873,22.500846],[114.370414,22.501922],[114.369916,22.502472],[114.368841,22.501861],[114.368009,22.501783],[114.36533,22.502464],[114.364042,22.502448],[114.362384,22.501791],[114.361382,22.500907],[114.36109,22.499773],[114.361011,22.498607],[114.359705,22.498143],[114.359475,22.497666],[114.359766,22.497038],[114.361503,22.494845],[114.362299,22.493177],[114.362894,22.492982]]],[[[114.224459,22.457986],[114.224708,22.457488],[114.225735,22.45695],[114.227022,22.457072],[114.227539,22.457419],[114.227521,22.458883],[114.227715,22.460017],[114.227302,22.460706],[114.226123,22.45976],[114.224241,22.459666],[114.224155,22.459148],[114.224459,22.457986]]],[[[114.442532,22.534265],[114.445132,22.53506],[114.446614,22.536755],[114.447264,22.538524],[114.446577,22.539686],[114.444846,22.540411],[114.442101,22.540415],[114.44012,22.540741],[114.438353,22.542551],[114.436512,22.544654],[114.436081,22.5474],[114.436367,22.549784],[114.436263,22.550978],[114.435498,22.551883],[114.434016,22.55192],[114.42991,22.550118],[114.42861,22.54835],[114.428142,22.54542],[114.428646,22.5439],[114.429691,22.539816],[114.431064,22.537717],[114.433731,22.536413],[114.438894,22.534379],[114.442532,22.534265]]],[[[114.335968,22.473815],[114.336375,22.473885],[114.336751,22.474582],[114.337019,22.477146],[114.336271,22.478125],[114.335767,22.478149],[114.335342,22.477248],[114.335354,22.475148],[114.334686,22.474802],[114.334704,22.474476],[114.335968,22.473815]]],[[[114.262617,22.443199],[114.262896,22.443664],[114.262356,22.444194],[114.262617,22.443199]]],[[[114.295763,22.460233],[114.296067,22.46053],[114.295617,22.461424],[114.295283,22.460771],[114.295763,22.460233]]],[[[114.377023,22.479739],[114.37763,22.47976],[114.377691,22.480318],[114.375316,22.481684],[114.374836,22.481493],[114.374806,22.480734],[114.375243,22.480412],[114.377023,22.479739]]],[[[114.336435,22.471666],[114.336879,22.471715],[114.33728,22.472294],[114.337006,22.47289],[114.336314,22.473053],[114.335919,22.472514],[114.336083,22.471805],[114.336435,22.471666]]],[[[114.338877,22.476408],[114.339393,22.477187],[114.339078,22.477758],[114.338367,22.477872],[114.337893,22.477318],[114.338009,22.476963],[114.338877,22.476408]]],[[[114.433597,22.461958],[114.433797,22.462496],[114.433439,22.463291],[114.432619,22.464376],[114.432018,22.464384],[114.432078,22.463532],[114.43254,22.4627],[114.433597,22.461958]]]]}},{"type":"Feature","properties":{"adcode":810015,"name":"西贡区","center":[114.264645,22.31421306],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":14,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.373901,22.441086],[114.369217,22.440291],[114.369521,22.437114],[114.369776,22.436502],[114.371538,22.433855],[114.372036,22.432044],[114.372206,22.420922],[114.372145,22.419584],[114.371817,22.418523],[114.370584,22.416794],[114.370025,22.415676],[114.368634,22.410659],[114.367905,22.409321],[114.367122,22.408313],[114.36595,22.407367],[114.362718,22.4058],[114.360701,22.405405],[114.360203,22.405796],[114.360143,22.407359],[114.359699,22.408023],[114.358806,22.408525],[114.354506,22.409965],[114.352107,22.411413],[114.346245,22.416418],[114.345516,22.41681],[114.3439,22.416749],[114.339989,22.414705],[114.338203,22.413979],[114.336691,22.413808],[114.335354,22.413975],[114.333004,22.414693],[114.329547,22.416137],[114.327816,22.417026],[114.32597,22.41836],[114.323297,22.420975],[114.322058,22.421754],[114.31989,22.422366],[114.31028,22.423601],[114.309333,22.423491],[114.308045,22.422704],[114.307717,22.421533],[114.307608,22.419751],[114.307996,22.415178],[114.307772,22.414228],[114.307328,22.413392],[114.306545,22.412609],[114.305536,22.411997],[114.304528,22.411772],[114.299061,22.412099],[114.296601,22.412152],[114.294652,22.411923],[114.293309,22.41114],[114.292477,22.410079],[114.292034,22.408631],[114.291918,22.406902],[114.292422,22.403781],[114.292362,22.402553],[114.292034,22.401329],[114.289689,22.395414],[114.289015,22.394855],[114.288286,22.394798],[114.283712,22.395324],[114.282649,22.39521],[114.281981,22.394932],[114.281197,22.394149],[114.279582,22.38969],[114.278914,22.389074],[114.278021,22.388853],[114.268041,22.387899],[114.265921,22.387617],[114.264141,22.386948],[114.263024,22.386332],[114.259568,22.383248],[114.259817,22.381954],[114.260685,22.379363],[114.260618,22.378645],[114.259914,22.378103],[114.251695,22.376817],[114.250967,22.375928],[114.250827,22.373267],[114.25062,22.372162],[114.250177,22.371105],[114.249478,22.370113],[114.248324,22.36895],[114.244735,22.365943],[114.24078,22.363156],[114.238551,22.361846],[114.236377,22.360912],[114.234488,22.360385],[114.2317,22.360067],[114.229968,22.360096],[114.2293,22.359598],[114.228559,22.357786],[114.228632,22.356447],[114.22944,22.354999],[114.229337,22.354635],[114.228322,22.354566],[114.227429,22.352693],[114.227089,22.350436],[114.22712,22.348261],[114.227648,22.345249],[114.230637,22.332989],[114.231542,22.331605],[114.232325,22.331307],[114.234949,22.33145],[114.238442,22.320691],[114.23897,22.320078],[114.241376,22.319797],[114.243101,22.318417],[114.243817,22.318642],[114.244176,22.32083],[114.244747,22.32116],[114.244929,22.320825],[114.244886,22.316482],[114.245409,22.315715],[114.24629,22.315923],[114.24813,22.317033],[114.248816,22.317103],[114.24909,22.316715],[114.248999,22.315772],[114.248683,22.315045],[114.246757,22.311637],[114.245214,22.309449],[114.244911,22.308359],[114.24485,22.306452],[114.245154,22.305705],[114.248355,22.303076],[114.249916,22.301599],[114.251513,22.299668],[114.252661,22.297532],[114.252831,22.29663],[114.252661,22.296014],[114.252005,22.295397],[114.250244,22.294948],[114.249254,22.294168],[114.246174,22.287473],[114.245846,22.285791],[114.246217,22.284313],[114.246715,22.283729],[114.248501,22.28299],[114.24915,22.282557],[114.249582,22.281924],[114.2498,22.280907],[114.250371,22.282977],[114.252005,22.285035],[114.256324,22.289735],[114.261481,22.294266],[114.262289,22.294585],[114.263807,22.294638],[114.26501,22.294397],[114.26648,22.293654],[114.267391,22.29296],[114.268241,22.29189],[114.269013,22.290355],[114.269499,22.287897],[114.270695,22.286403],[114.270537,22.285709],[114.269547,22.28421],[114.268187,22.281859],[114.267391,22.280029],[114.266929,22.278],[114.266796,22.27573],[114.267014,22.27386],[114.267865,22.270773],[114.268405,22.270189],[114.269444,22.269625],[114.270963,22.269213],[114.271789,22.268466],[114.272299,22.266465],[114.276283,22.259694],[114.276763,22.25927],[114.278422,22.258763],[114.280207,22.258657],[114.28144,22.258927],[114.282619,22.259543],[114.283184,22.260315],[114.28353,22.261626],[114.284356,22.263161],[114.285407,22.264468],[114.287211,22.265195],[114.287539,22.265799],[114.287539,22.26718],[114.287861,22.267645],[114.288984,22.267731],[114.292058,22.267192],[114.292665,22.266951],[114.293795,22.265497],[114.295283,22.263284],[114.297543,22.261704],[114.299268,22.260372],[114.300513,22.259719],[114.301163,22.258477],[114.302821,22.257073],[114.303854,22.256791],[114.304978,22.257114],[114.305822,22.257755],[114.306466,22.258894],[114.306569,22.260287],[114.307195,22.260968],[114.309715,22.260936],[114.311167,22.261483],[114.312303,22.262569],[114.313044,22.264248],[114.313044,22.266061],[114.311957,22.268049],[114.309072,22.270401],[114.308871,22.270867],[114.308762,22.272994],[114.308901,22.274342],[114.309327,22.276632],[114.308829,22.277955],[114.307359,22.278898],[114.306472,22.279074],[114.304814,22.279058],[114.303963,22.279188],[114.303483,22.279617],[114.303374,22.280605],[114.303775,22.281483],[114.304607,22.282259],[114.308185,22.283949],[114.309102,22.284794],[114.309794,22.285917],[114.310809,22.287064],[114.311987,22.287685],[114.314769,22.28862],[114.315522,22.288971],[114.316427,22.289694],[114.317393,22.291457],[114.317758,22.294589],[114.317618,22.295895],[114.316409,22.297728],[114.315534,22.300019],[114.3137,22.301052],[114.311343,22.303709],[114.310894,22.304734],[114.31076,22.306089],[114.310475,22.307036],[114.309345,22.307718],[114.308561,22.308906],[114.306101,22.308473],[114.304188,22.308837],[114.301564,22.308526],[114.299802,22.308951],[114.298436,22.310298],[114.297093,22.312482],[114.296049,22.31507],[114.295387,22.316029],[114.295338,22.318282],[114.29498,22.319013],[114.293686,22.320417],[114.290892,22.321736],[114.288833,22.322054],[114.286852,22.322185],[114.284635,22.322609],[114.283299,22.323115],[114.281507,22.324209],[114.280377,22.325328],[114.279284,22.326875],[114.278397,22.328691],[114.27629,22.336372],[114.27536,22.341111],[114.274716,22.343674],[114.274504,22.345894],[114.275172,22.346694],[114.276909,22.346804],[114.278002,22.346404],[114.280305,22.346188],[114.2811,22.346461],[114.281793,22.347343],[114.282789,22.349747],[114.28407,22.351163],[114.284392,22.35242],[114.284289,22.354023],[114.28469,22.356321],[114.284228,22.357921],[114.281513,22.359908],[114.28025,22.362075],[114.279685,22.364021],[114.279478,22.367575],[114.279855,22.368938],[114.281161,22.372933],[114.281131,22.374026],[114.281295,22.375842],[114.282042,22.37809],[114.282522,22.379078],[114.283882,22.380416],[114.283967,22.381016],[114.283086,22.383578],[114.282929,22.385316],[114.28319,22.386703],[114.284156,22.388148],[114.285146,22.388898],[114.286986,22.389678],[114.288663,22.389963],[114.290035,22.389767],[114.291074,22.389416],[114.292167,22.388674],[114.294822,22.385369],[114.29603,22.38457],[114.297069,22.384251],[114.30044,22.384361],[114.301212,22.384231],[114.301807,22.383509],[114.301892,22.382032],[114.302256,22.381261],[114.303404,22.380999],[114.303994,22.381057],[114.305233,22.381722],[114.30584,22.381869],[114.307122,22.38175],[114.308586,22.381077],[114.310651,22.381093],[114.31186,22.381628],[114.313967,22.381367],[114.315383,22.381681],[114.315729,22.382444],[114.315358,22.383427],[114.314271,22.384423],[114.314192,22.384863],[114.314763,22.386634],[114.315219,22.38727],[114.314921,22.387989],[114.315759,22.388543],[114.318608,22.389151],[114.320527,22.389176],[114.321517,22.388605],[114.322204,22.386781],[114.322362,22.38583],[114.323832,22.385312],[114.323929,22.384557],[114.323151,22.38237],[114.32238,22.380881],[114.322319,22.379527],[114.323048,22.378796],[114.324008,22.378592],[114.325666,22.379045],[114.326753,22.378649],[114.328387,22.377376],[114.330349,22.376124],[114.332396,22.375287],[114.336478,22.373859],[114.337626,22.373594],[114.338306,22.372566],[114.338428,22.371713],[114.338306,22.369069],[114.337668,22.36722],[114.336113,22.365335],[114.33488,22.36245],[114.334801,22.361405],[114.335044,22.3599],[114.335524,22.358937],[114.336861,22.357174],[114.338689,22.355578],[114.340633,22.354407],[114.341252,22.353819],[114.341331,22.353391],[114.340584,22.351856],[114.340505,22.350812],[114.34138,22.3486],[114.345504,22.343531],[114.346336,22.34329],[114.347673,22.343188],[114.348985,22.343323],[114.350108,22.343645],[114.351129,22.344155],[114.352866,22.345853],[114.35464,22.347877],[114.355059,22.348065],[114.355891,22.347816],[114.355818,22.347229],[114.355302,22.346384],[114.355405,22.345237],[114.356049,22.344384],[114.356905,22.341984],[114.357288,22.34025],[114.35829,22.339299],[114.358843,22.335797],[114.359389,22.333715],[114.359924,22.332981],[114.361279,22.332348],[114.36273,22.332458],[114.363757,22.332973],[114.364449,22.334046],[114.365257,22.336585],[114.365877,22.337438],[114.366733,22.337976],[114.367237,22.339258],[114.367055,22.340139],[114.366016,22.341348],[114.365676,22.342001],[114.3655,22.343188],[114.365518,22.345217],[114.365275,22.346751],[114.365494,22.347686],[114.365816,22.347898],[114.3668,22.347755],[114.367656,22.347057],[114.369315,22.346176],[114.370542,22.34611],[114.370766,22.346767],[114.37121,22.34698],[114.37209,22.346755],[114.372704,22.347555],[114.372133,22.349367],[114.372431,22.349832],[114.372965,22.349836],[114.375862,22.348698],[114.376512,22.348832],[114.378893,22.350114],[114.379732,22.350877],[114.379707,22.352448],[114.380473,22.35286],[114.380977,22.353823],[114.382532,22.354334],[114.383388,22.355015],[114.384451,22.354942],[114.384573,22.355252],[114.383698,22.356268],[114.382599,22.35666],[114.381517,22.356819],[114.381299,22.357423],[114.382344,22.359402],[114.383382,22.359753],[114.385132,22.359953],[114.386006,22.360475],[114.386395,22.361136],[114.386632,22.362593],[114.386577,22.364368],[114.387051,22.365596],[114.387944,22.365719],[114.388733,22.365278],[114.390167,22.363662],[114.391248,22.36283],[114.392275,22.362262],[114.393441,22.361952],[114.394419,22.36194],[114.395178,22.362262],[114.396557,22.363838],[114.396903,22.365021],[114.39694,22.366106],[114.396618,22.367579],[114.396114,22.368661],[114.394631,22.371284],[114.394692,22.372007],[114.395184,22.372541],[114.396593,22.373557],[114.397486,22.375295],[114.397389,22.376389],[114.396484,22.380269],[114.396393,22.38111],[114.396599,22.384749],[114.39649,22.385337],[114.395075,22.38714],[114.393568,22.388409],[114.392226,22.389245],[114.39174,22.389363],[114.390404,22.389176],[114.389748,22.389306],[114.387962,22.391032],[114.386,22.393982],[114.384366,22.39512],[114.38156,22.396519],[114.380946,22.39696],[114.380369,22.398057],[114.380503,22.399077],[114.380977,22.40024],[114.382173,22.404976],[114.382842,22.405564],[114.384075,22.405821],[114.384925,22.406636],[114.384725,22.408994],[114.384822,22.409835],[114.385611,22.411397],[114.386583,22.412817],[114.388175,22.414297],[114.390228,22.415582],[114.391783,22.416092],[114.39352,22.416198],[114.394777,22.41601],[114.395925,22.415505],[114.396861,22.414652],[114.398434,22.412327],[114.400493,22.409455],[114.401477,22.408656],[114.403008,22.407856],[114.404818,22.407587],[114.407302,22.407664],[114.409228,22.407934],[114.410321,22.408227],[114.411311,22.408978],[114.41176,22.409671],[114.411924,22.41063],[114.411578,22.411997],[114.410054,22.414934],[114.408371,22.417671],[114.40602,22.419567],[114.405413,22.420746],[114.405437,22.421945],[114.405735,22.42363],[114.405498,22.424385],[114.404629,22.426],[114.404198,22.428439],[114.404198,22.429267],[114.404787,22.430894],[114.405862,22.431959],[114.406142,22.433137],[114.405784,22.433974],[114.404927,22.434214],[114.402358,22.433953],[114.401708,22.434288],[114.400845,22.435907],[114.400086,22.436588],[114.399157,22.436649],[114.397942,22.436217],[114.397687,22.436425],[114.39776,22.438105],[114.397359,22.438811],[114.396004,22.438737],[114.395451,22.437893],[114.394583,22.437391],[114.392809,22.437391],[114.391479,22.437081],[114.387039,22.435315],[114.38518,22.435197],[114.384482,22.435356],[114.382744,22.436315],[114.381627,22.436604],[114.377472,22.436282],[114.376379,22.436359],[114.375735,22.436735],[114.375285,22.437428],[114.373901,22.441086]]],[[[114.295702,22.254704],[114.293321,22.25234],[114.292289,22.251633],[114.291675,22.251776],[114.29108,22.252446],[114.29057,22.25263],[114.289659,22.252429],[114.287114,22.250657],[114.285036,22.24808],[114.284617,22.246749],[114.285115,22.245013],[114.28503,22.243878],[114.284362,22.242881],[114.284769,22.241721],[114.287843,22.239748],[114.289452,22.239197],[114.290716,22.239087],[114.292088,22.238666],[114.292234,22.237955],[114.291536,22.237359],[114.291177,22.23673],[114.291305,22.235521],[114.292289,22.234717],[114.293698,22.234614],[114.294342,22.234958],[114.295052,22.236011],[114.294967,22.237902],[114.295338,22.238401],[114.297276,22.238985],[114.298211,22.238989],[114.298569,22.238646],[114.300191,22.238323],[114.30061,22.238446],[114.301151,22.23934],[114.301193,22.240451],[114.301594,22.241631],[114.301467,22.242995],[114.301005,22.243943],[114.301558,22.244707],[114.303222,22.244568],[114.30341,22.244927],[114.303253,22.246348],[114.303362,22.24748],[114.302803,22.247831],[114.301606,22.247958],[114.301309,22.248484],[114.301552,22.249166],[114.300714,22.249975],[114.300695,22.250518],[114.301278,22.250633],[114.301382,22.251498],[114.302347,22.251372],[114.302706,22.252184],[114.302347,22.253038],[114.301552,22.253446],[114.301351,22.253916],[114.300683,22.2543],[114.301297,22.25501],[114.301285,22.25599],[114.2999,22.256346],[114.298648,22.255603],[114.296942,22.255259],[114.295702,22.254704]]],[[[114.327604,22.339278],[114.328697,22.339499],[114.32973,22.340841],[114.330003,22.342245],[114.329687,22.343298],[114.32914,22.344045],[114.329256,22.344417],[114.331181,22.344992],[114.33154,22.345914],[114.331139,22.346837],[114.331455,22.347384],[114.33239,22.347784],[114.332682,22.348771],[114.331843,22.350701],[114.331916,22.351481],[114.333076,22.353326],[114.33284,22.354048],[114.332044,22.354905],[114.32914,22.356917],[114.327446,22.357704],[114.325605,22.358227],[114.324767,22.358312],[114.324639,22.358818],[114.32487,22.360116],[114.324311,22.361434],[114.324542,22.361761],[114.325575,22.361895],[114.326067,22.362291],[114.325733,22.364421],[114.324743,22.366886],[114.323364,22.368465],[114.322671,22.368816],[114.322501,22.369428],[114.322726,22.371688],[114.322022,22.373117],[114.322817,22.374961],[114.322368,22.376234],[114.321335,22.376821],[114.319883,22.376932],[114.31698,22.378221],[114.314878,22.377756],[114.312194,22.378588],[114.311289,22.378409],[114.310438,22.377727],[114.309181,22.377748],[114.307778,22.378192],[114.306253,22.378192],[114.305336,22.377903],[114.305002,22.377352],[114.304959,22.375948],[114.305075,22.373557],[114.305682,22.372549],[114.307419,22.372047],[114.308209,22.371015],[114.308986,22.370403],[114.309157,22.369897],[114.308829,22.368885],[114.308768,22.367967],[114.307687,22.368053],[114.306873,22.367461],[114.306958,22.366865],[114.307486,22.366208],[114.306539,22.365568],[114.306587,22.365066],[114.307316,22.364233],[114.308209,22.363838],[114.309114,22.363842],[114.309229,22.365025],[114.309971,22.365049],[114.310165,22.363797],[114.309776,22.36336],[114.308914,22.362985],[114.30878,22.362511],[114.309794,22.361699],[114.310165,22.360055],[114.310147,22.359067],[114.309788,22.357574],[114.309746,22.35639],[114.310651,22.35457],[114.310475,22.354129],[114.308294,22.352481],[114.307462,22.351118],[114.307486,22.349494],[114.307905,22.347869],[114.311283,22.342992],[114.313943,22.340911],[114.316233,22.340037],[114.317594,22.340282],[114.318614,22.341576],[114.319507,22.341645],[114.320631,22.340878],[114.322325,22.340246],[114.324785,22.339678],[114.327604,22.339278]]],[[[114.365488,22.314449],[114.365682,22.313119],[114.366235,22.312388],[114.366557,22.311037],[114.366982,22.310363],[114.368088,22.309192],[114.368993,22.308837],[114.3696,22.308073],[114.369776,22.307028],[114.369509,22.305816],[114.369618,22.305195],[114.370633,22.304273],[114.37209,22.303774],[114.372801,22.30413],[114.372607,22.306106],[114.373123,22.307493],[114.374617,22.307816],[114.375759,22.307832],[114.375862,22.308543],[114.375079,22.308918],[114.374812,22.309628],[114.373463,22.310853],[114.373737,22.311874],[114.374429,22.311894],[114.374593,22.313033],[114.373846,22.313707],[114.373275,22.315503],[114.372886,22.316299],[114.370803,22.31756],[114.371495,22.318254],[114.370906,22.318678],[114.369412,22.318393],[114.368586,22.318454],[114.366575,22.318238],[114.365682,22.317793],[114.365221,22.316972],[114.365202,22.315923],[114.365488,22.314449]]],[[[114.297549,22.326544],[114.29702,22.325503],[114.297209,22.324503],[114.298873,22.322283],[114.30044,22.320038],[114.30386,22.319099],[114.305767,22.319217],[114.306581,22.318785],[114.307037,22.319217],[114.306429,22.320238],[114.30632,22.32105],[114.307189,22.32203],[114.307018,22.322952],[114.306168,22.323915],[114.305354,22.324536],[114.304279,22.325854],[114.303538,22.326989],[114.302086,22.327324],[114.299796,22.329793],[114.299177,22.330095],[114.298399,22.329585],[114.297986,22.327393],[114.297549,22.326544]]],[[[114.301133,22.350236],[114.302396,22.350526],[114.303119,22.351383],[114.303082,22.353158],[114.30208,22.355472],[114.30188,22.35859],[114.301394,22.359594],[114.30171,22.360279],[114.302918,22.361569],[114.302943,22.363172],[114.30191,22.364001],[114.301169,22.364339],[114.300884,22.365286],[114.299966,22.3658],[114.299335,22.3668],[114.299183,22.368367],[114.298527,22.369256],[114.298618,22.370346],[114.29925,22.370403],[114.300799,22.369779],[114.301534,22.370007],[114.301746,22.370807],[114.301333,22.371692],[114.299365,22.373206],[114.298278,22.373149],[114.295611,22.371542],[114.29515,22.370256],[114.295186,22.36911],[114.294664,22.367592],[114.293637,22.366192],[114.291766,22.365098],[114.291517,22.364527],[114.291803,22.363984],[114.292665,22.363499],[114.293947,22.361867],[114.29518,22.361214],[114.295806,22.360557],[114.296443,22.359443],[114.297045,22.354811],[114.297616,22.354264],[114.298928,22.35424],[114.29976,22.354011],[114.299936,22.353407],[114.29945,22.351865],[114.29945,22.350836],[114.299851,22.350465],[114.301133,22.350236]]],[[[114.331862,22.32263],[114.332645,22.322809],[114.333277,22.323307],[114.333471,22.324111],[114.334297,22.324895],[114.335293,22.325115],[114.335889,22.325638],[114.33612,22.328111],[114.336472,22.330262],[114.336101,22.33076],[114.334322,22.332193],[114.333034,22.333058],[114.332627,22.334793],[114.331965,22.335401],[114.3316,22.33714],[114.331096,22.337985],[114.330313,22.338417],[114.328442,22.338956],[114.326984,22.339148],[114.325466,22.338801],[114.323917,22.338189],[114.322307,22.338119],[114.321566,22.337687],[114.321044,22.336727],[114.320375,22.336054],[114.320205,22.335466],[114.320527,22.334426],[114.321305,22.333099],[114.322173,22.331973],[114.32187,22.330646],[114.322173,22.329887],[114.323504,22.329046],[114.323595,22.32876],[114.323072,22.327111],[114.323376,22.326111],[114.32433,22.32492],[114.324852,22.323789],[114.325417,22.323446],[114.32679,22.323426],[114.328515,22.323862],[114.329663,22.323907],[114.331011,22.322715],[114.331862,22.32263]]],[[[114.354014,22.250404],[114.354712,22.250669],[114.354743,22.251633],[114.356352,22.250996],[114.357494,22.251114],[114.357677,22.251653],[114.357203,22.252736],[114.358005,22.253365],[114.35826,22.253863],[114.35815,22.255223],[114.357573,22.255925],[114.357379,22.256991],[114.357543,22.258041],[114.357264,22.258596],[114.356529,22.258829],[114.355903,22.258494],[114.355751,22.257865],[114.355866,22.256301],[114.355198,22.255276],[114.353686,22.255696],[114.352896,22.255594],[114.352781,22.254071],[114.353121,22.25334],[114.353018,22.251515],[114.353206,22.250914],[114.354014,22.250404]]],[[[114.371173,22.325434],[114.371829,22.325895],[114.371951,22.326862],[114.373062,22.326903],[114.373591,22.327638],[114.373445,22.328328],[114.372273,22.328956],[114.371841,22.329732],[114.371696,22.331095],[114.372898,22.332589],[114.373384,22.334287],[114.373026,22.336319],[114.37223,22.337283],[114.370863,22.337638],[114.369788,22.337278],[114.369205,22.336148],[114.368464,22.336544],[114.366976,22.336666],[114.36584,22.336332],[114.365318,22.335638],[114.36536,22.333915],[114.364874,22.332552],[114.365336,22.331107],[114.364607,22.328442],[114.364771,22.327499],[114.365585,22.326805],[114.367249,22.327062],[114.367918,22.326854],[114.370183,22.325471],[114.371173,22.325434]]],[[[114.353643,22.309592],[114.354409,22.310269],[114.354512,22.312825],[114.354913,22.313413],[114.356358,22.313147],[114.357209,22.313351],[114.35832,22.313923],[114.359219,22.315168],[114.359675,22.31696],[114.359177,22.318968],[114.359347,22.319556],[114.359936,22.319997],[114.361497,22.320523],[114.362433,22.321617],[114.362852,22.323209],[114.362457,22.324234],[114.361145,22.324695],[114.359724,22.324471],[114.358958,22.323597],[114.358308,22.322262],[114.357604,22.321981],[114.355769,22.322915],[114.354585,22.322781],[114.352987,22.321099],[114.352003,22.318193],[114.350448,22.315066],[114.350339,22.313515],[114.351408,22.310461],[114.352435,22.309677],[114.353643,22.309592]]],[[[114.332852,22.36254],[114.333738,22.362923],[114.333994,22.36334],[114.334097,22.36662],[114.33488,22.368314],[114.33454,22.370876],[114.334139,22.371366],[114.331017,22.373263],[114.327561,22.374716],[114.32603,22.374545],[114.32521,22.373651],[114.325101,22.370138],[114.32549,22.369432],[114.327014,22.36802],[114.327932,22.367763],[114.328557,22.368024],[114.329438,22.369501],[114.329481,22.370958],[114.32976,22.371023],[114.330319,22.37033],[114.330361,22.369811],[114.3301,22.367445],[114.330197,22.36671],[114.331315,22.364899],[114.331758,22.362997],[114.332852,22.36254]]],[[[114.351937,22.260078],[114.352714,22.260168],[114.353826,22.261087],[114.35419,22.261838],[114.354117,22.2629],[114.35467,22.264072],[114.35552,22.265183],[114.355466,22.266085],[114.356273,22.267106],[114.356188,22.267653],[114.355684,22.268147],[114.354567,22.268592],[114.353783,22.268466],[114.353382,22.268082],[114.353546,22.267139],[114.353206,22.266538],[114.351214,22.265428],[114.350837,22.26475],[114.351019,22.263451],[114.350643,22.262279],[114.350594,22.260789],[114.350989,22.260315],[114.351937,22.260078]]],[[[114.38286,22.324956],[114.383297,22.325536],[114.383042,22.326111],[114.382356,22.326666],[114.380782,22.327083],[114.380139,22.328071],[114.378474,22.328132],[114.378177,22.329079],[114.377345,22.329564],[114.376093,22.328756],[114.375808,22.327434],[114.376312,22.326238],[114.377302,22.325487],[114.378523,22.325181],[114.379568,22.325262],[114.380254,22.325054],[114.381007,22.325295],[114.38286,22.324956]]],[[[114.320424,22.381118],[114.321675,22.381563],[114.322902,22.383072],[114.323504,22.384243],[114.323188,22.385316],[114.321031,22.385381],[114.320145,22.384455],[114.319841,22.383664],[114.319683,22.382481],[114.319981,22.381477],[114.320424,22.381118]]],[[[114.286889,22.375626],[114.287739,22.376254],[114.287836,22.377368],[114.285862,22.37911],[114.284714,22.379416],[114.284168,22.379294],[114.283906,22.378547],[114.284344,22.377878],[114.28438,22.37705],[114.28534,22.377331],[114.285723,22.376083],[114.28616,22.375695],[114.286889,22.375626]]],[[[114.324998,22.323303],[114.324676,22.323009],[114.325417,22.322801],[114.324998,22.323303]]],[[[114.29043,22.37057],[114.291335,22.370905],[114.291542,22.372374],[114.291864,22.372757],[114.293236,22.373378],[114.293218,22.373982],[114.292489,22.37401],[114.291985,22.373622],[114.291232,22.373496],[114.29026,22.372598],[114.289258,22.372288],[114.289173,22.37108],[114.29043,22.37057]]],[[[114.284514,22.262929],[114.285073,22.262957],[114.284781,22.263533],[114.284514,22.262929]]],[[[114.356079,22.268196],[114.356352,22.268641],[114.355156,22.269397],[114.355283,22.268535],[114.356079,22.268196]]],[[[114.323127,22.296863],[114.323698,22.297524],[114.322921,22.297545],[114.322641,22.297018],[114.323127,22.296863]]],[[[114.399946,22.444985],[114.401094,22.445324],[114.401143,22.445976],[114.400317,22.445878],[114.399928,22.446735],[114.399606,22.4468],[114.399102,22.446205],[114.399096,22.445401],[114.399946,22.444985]]],[[[114.371058,22.319674],[114.370371,22.320144],[114.370153,22.319776],[114.370857,22.319131],[114.371428,22.318927],[114.371058,22.319674]]],[[[114.305968,22.369697],[114.3068,22.369869],[114.30728,22.370293],[114.307425,22.371027],[114.306891,22.372047],[114.305628,22.372402],[114.30502,22.372872],[114.304291,22.372753],[114.304237,22.372337],[114.304716,22.371427],[114.304814,22.370489],[114.305227,22.369901],[114.305968,22.369697]]],[[[114.375425,22.328785],[114.375911,22.328809],[114.376913,22.329552],[114.376877,22.330809],[114.375893,22.331924],[114.375267,22.332262],[114.37455,22.332181],[114.374077,22.331417],[114.374714,22.330438],[114.374654,22.329197],[114.375425,22.328785]]],[[[114.338901,22.331373],[114.340268,22.33152],[114.340548,22.33254],[114.340068,22.333042],[114.340025,22.333813],[114.339564,22.33456],[114.338434,22.334466],[114.338051,22.33416],[114.337614,22.332507],[114.338075,22.331569],[114.338901,22.331373]]],[[[114.373694,22.323344],[114.374259,22.32343],[114.374241,22.324083],[114.373445,22.324262],[114.37254,22.324168],[114.372503,22.323724],[114.373694,22.323344]]],[[[114.31664,22.298622],[114.317065,22.299031],[114.316367,22.299966],[114.31582,22.299635],[114.31602,22.29899],[114.31664,22.298622]]],[[[114.325192,22.297626],[114.326182,22.297651],[114.325459,22.298843],[114.324597,22.298953],[114.323965,22.29812],[114.325192,22.297626]]],[[[114.318626,22.386034],[114.318833,22.386544],[114.318286,22.387458],[114.31766,22.387201],[114.317806,22.386475],[114.318626,22.386034]]],[[[114.319598,22.380832],[114.319853,22.381142],[114.319519,22.382126],[114.318948,22.381697],[114.319161,22.380955],[114.319598,22.380832]]],[[[114.300282,22.367184],[114.301333,22.367669],[114.301449,22.36844],[114.300483,22.368804],[114.299796,22.369326],[114.299153,22.368824],[114.299881,22.367424],[114.300282,22.367184]]],[[[114.370839,22.34489],[114.37107,22.345282],[114.370299,22.345388],[114.370839,22.34489]]],[[[114.293923,22.375197],[114.294366,22.375434],[114.294682,22.376116],[114.294135,22.376964],[114.292969,22.377588],[114.292198,22.377393],[114.292137,22.37696],[114.293595,22.375275],[114.293923,22.375197]]],[[[114.396921,22.359688],[114.397365,22.359765],[114.397426,22.360928],[114.397085,22.361985],[114.39632,22.362507],[114.395512,22.362246],[114.395403,22.361495],[114.39632,22.35992],[114.396921,22.359688]]],[[[114.291596,22.3595],[114.292003,22.359753],[114.292325,22.361059],[114.292088,22.361581],[114.291438,22.361463],[114.290855,22.360528],[114.291019,22.359826],[114.291596,22.3595]]],[[[114.37333,22.322515],[114.37401,22.32267],[114.373913,22.323164],[114.372619,22.323581],[114.372346,22.323156],[114.372667,22.322581],[114.37333,22.322515]]],[[[114.332123,22.319719],[114.332335,22.320385],[114.331582,22.320389],[114.331528,22.319985],[114.332123,22.319719]]],[[[114.329869,22.36356],[114.330313,22.364123],[114.330045,22.364699],[114.328648,22.364768],[114.328278,22.364339],[114.328618,22.363862],[114.329869,22.36356]]],[[[114.331801,22.360667],[114.331637,22.36021],[114.332202,22.360287],[114.331801,22.360667]]],[[[114.380005,22.335772],[114.380643,22.335997],[114.380461,22.336462],[114.379319,22.336548],[114.379306,22.336013],[114.380005,22.335772]]],[[[114.319349,22.271144],[114.320418,22.271336],[114.32094,22.271904],[114.320922,22.273419],[114.320345,22.274852],[114.319076,22.275236],[114.318122,22.274815],[114.317053,22.273917],[114.316792,22.273072],[114.317035,22.27241],[114.318262,22.271394],[114.319349,22.271144]]],[[[114.351918,22.250735],[114.35238,22.250767],[114.352435,22.25156],[114.352076,22.252139],[114.351068,22.252797],[114.350157,22.252503],[114.350145,22.251408],[114.350625,22.251012],[114.351918,22.250735]]],[[[114.406676,22.432448],[114.407332,22.432921],[114.406986,22.433606],[114.406531,22.433427],[114.406421,22.432554],[114.406676,22.432448]]],[[[114.391321,22.398343],[114.391989,22.398596],[114.391868,22.399522],[114.390531,22.399477],[114.390568,22.398763],[114.391321,22.398343]]],[[[114.289379,22.386544],[114.289732,22.387254],[114.288632,22.387519],[114.288529,22.386826],[114.289379,22.386544]]],[[[114.37455,22.341425],[114.375304,22.341943],[114.37514,22.342894],[114.374787,22.343127],[114.373876,22.342874],[114.37353,22.34196],[114.37455,22.341425]]],[[[114.371817,22.322548],[114.372285,22.323426],[114.371914,22.323613],[114.371416,22.323262],[114.371817,22.322548]]],[[[114.323662,22.308151],[114.324226,22.30853],[114.323977,22.309408],[114.32323,22.310045],[114.322896,22.309698],[114.322981,22.308783],[114.323662,22.308151]]],[[[114.316239,22.300288],[114.316427,22.301211],[114.316105,22.301701],[114.315601,22.301766],[114.315595,22.300766],[114.316239,22.300288]]],[[[114.372066,22.263578],[114.372352,22.264329],[114.371769,22.264636],[114.371313,22.264366],[114.371392,22.263794],[114.372066,22.263578]]],[[[114.375249,22.261781],[114.375619,22.261879],[114.375583,22.262663],[114.37497,22.263504],[114.374204,22.26368],[114.373961,22.263121],[114.374733,22.261981],[114.375249,22.261781]]],[[[114.406585,22.430556],[114.407114,22.430796],[114.406907,22.431331],[114.406379,22.431078],[114.406585,22.430556]]],[[[114.390914,22.399705],[114.391764,22.400113],[114.391704,22.400884],[114.391333,22.401366],[114.390246,22.401447],[114.389827,22.400309],[114.389979,22.399897],[114.390914,22.399705]]],[[[114.287193,22.382836],[114.287521,22.383448],[114.286792,22.383578],[114.286688,22.383068],[114.287193,22.382836]]],[[[114.304249,22.376458],[114.304437,22.377201],[114.303751,22.377254],[114.304249,22.376458]]],[[[114.295326,22.372288],[114.295672,22.372558],[114.295368,22.373214],[114.294749,22.373427],[114.294123,22.373125],[114.294305,22.372541],[114.295326,22.372288]]],[[[114.306411,22.368016],[114.3068,22.368616],[114.306496,22.369061],[114.305688,22.369154],[114.305561,22.368187],[114.306411,22.368016]]],[[[114.350284,22.259723],[114.350582,22.260217],[114.349768,22.260421],[114.349701,22.259915],[114.350284,22.259723]]],[[[114.356577,22.339135],[114.357239,22.339393],[114.357166,22.340082],[114.356541,22.340086],[114.356322,22.339299],[114.356577,22.339135]]]]}},{"type":"Feature","properties":{"adcode":810016,"name":"沙田区","center":[114.1953653,22.37953167],"centroid":[114.207032,22.386019],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":15,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.214419,22.431608],[114.208618,22.427725],[114.207057,22.426387],[114.206134,22.425094],[114.205544,22.423842],[114.204293,22.420191],[114.20388,22.419494],[114.203236,22.418935],[114.202374,22.418633],[114.200734,22.41847],[114.191647,22.417858],[114.191033,22.417385],[114.190979,22.416643],[114.190529,22.416394],[114.186581,22.41608],[114.180434,22.415688],[114.179942,22.415187],[114.179942,22.414187],[114.178108,22.413881],[114.177628,22.412796],[114.17699,22.41238],[114.172902,22.412041],[114.172167,22.409786],[114.172003,22.408338],[114.172106,22.407028],[114.173358,22.402912],[114.173746,22.40135],[114.173977,22.399648],[114.17368,22.397792],[114.17357,22.395532],[114.173734,22.392464],[114.174184,22.388923],[114.173406,22.388103],[114.172562,22.387964],[114.166779,22.387336],[114.165978,22.387197],[114.16551,22.386446],[114.165218,22.384774],[114.164453,22.38277],[114.163153,22.381065],[114.158172,22.377115],[114.156617,22.376226],[114.154036,22.375336],[114.149322,22.374512],[114.149766,22.372978],[114.14979,22.37228],[114.149322,22.371191],[114.148259,22.369803],[114.14784,22.368938],[114.147676,22.36802],[114.147707,22.365245],[114.147931,22.363319],[114.14832,22.362177],[114.149462,22.35939],[114.14965,22.358329],[114.149322,22.356684],[114.148849,22.355933],[114.147148,22.353999],[114.146674,22.352966],[114.146534,22.351967],[114.146571,22.350489],[114.147124,22.346527],[114.147512,22.34491],[114.147956,22.343992],[114.149401,22.342539],[114.151072,22.34145],[114.151703,22.340621],[114.152414,22.341658],[114.153732,22.342266],[114.157522,22.3434],[114.15991,22.343731],[114.16172,22.343698],[114.166864,22.343437],[114.170728,22.344184],[114.172896,22.344278],[114.17668,22.34416],[114.177822,22.344392],[114.180076,22.345882],[114.1816,22.346155],[114.183544,22.345874],[114.184315,22.345976],[114.184801,22.346041],[114.187772,22.347359],[114.190827,22.348437],[114.200758,22.350208],[114.201633,22.350571],[114.201778,22.351518],[114.201001,22.352815],[114.201068,22.353387],[114.202264,22.353591],[114.203461,22.353326],[114.205295,22.352318],[114.206128,22.352203],[114.208545,22.354178],[114.209134,22.354317],[114.211357,22.353366],[114.212493,22.353142],[114.216727,22.353309],[114.218592,22.35353],[114.222485,22.35428],[114.225662,22.354611],[114.228322,22.354566],[114.229337,22.354635],[114.22944,22.354999],[114.228632,22.356447],[114.228559,22.357786],[114.2293,22.359598],[114.229968,22.360096],[114.2317,22.360067],[114.234488,22.360385],[114.236377,22.360912],[114.238551,22.361846],[114.24078,22.363156],[114.244735,22.365943],[114.248324,22.36895],[114.249478,22.370113],[114.250177,22.371105],[114.25062,22.372162],[114.250827,22.373267],[114.250967,22.375928],[114.251695,22.376817],[114.259914,22.378103],[114.260618,22.378645],[114.260685,22.379363],[114.259817,22.381954],[114.259568,22.383248],[114.259428,22.385051],[114.259956,22.388784],[114.259707,22.389763],[114.258353,22.391489],[114.257964,22.392256],[114.25777,22.39348],[114.258043,22.397425],[114.257484,22.399098],[114.255419,22.401827],[114.254751,22.402887],[114.254344,22.404617],[114.254241,22.405878],[114.254362,22.407677],[114.255437,22.417883],[114.25517,22.418935],[114.253724,22.420901],[114.253645,22.422137],[114.255316,22.425535],[114.255777,22.427032],[114.255874,22.430939],[114.25571,22.434683],[114.254866,22.434549],[114.253348,22.434777],[114.251641,22.435381],[114.247583,22.435793],[114.24536,22.435842],[114.24287,22.435426],[114.241722,22.43492],[114.240707,22.43381],[114.240938,22.431502],[114.240665,22.430531],[114.239644,22.429104],[114.238162,22.428227],[114.235769,22.427464],[114.234245,22.427419],[114.232173,22.427513],[114.229221,22.427195],[114.227332,22.426734],[114.224332,22.426644],[114.221938,22.426877],[114.220001,22.427619],[114.21793,22.429144],[114.214419,22.431608]]]]}},{"type":"Feature","properties":{"adcode":810017,"name":"葵青区","center":[114.1393194,22.36387667],"centroid":[114.118692,22.34175],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":16,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.08261,22.329377],[114.085089,22.328862],[114.089808,22.325577],[114.093222,22.322119],[114.094157,22.321348],[114.095524,22.320997],[114.106281,22.321736],[114.112149,22.321732],[114.1188,22.321393],[114.120993,22.320919],[114.122821,22.319295],[114.124303,22.317466],[114.125712,22.315266],[114.127024,22.312886],[114.129199,22.310596],[114.133147,22.308722],[114.139282,22.306281],[114.143862,22.303338],[114.145994,22.300664],[114.146261,22.298043],[114.145623,22.295324],[114.144129,22.293078],[114.143819,22.292886],[114.154437,22.293107],[114.154358,22.311514],[114.135358,22.310923],[114.134004,22.311376],[114.133797,22.31191],[114.133754,22.313858],[114.133469,22.315131],[114.132102,22.316817],[114.131622,22.317617],[114.131562,22.318458],[114.132467,22.319523],[114.137697,22.322323],[114.14572,22.32683],[114.146413,22.327858],[114.146413,22.328303],[114.14538,22.329005],[114.139373,22.330515],[114.137733,22.330964],[114.136755,22.331466],[114.136087,22.33225],[114.13548,22.333364],[114.13503,22.335303],[114.135419,22.336862],[114.136336,22.337336],[114.138444,22.337132],[114.139555,22.337568],[114.14139,22.338862],[114.142932,22.339042],[114.145927,22.338478],[114.148436,22.338617],[114.149389,22.338348],[114.150124,22.337678],[114.150774,22.337511],[114.151442,22.337948],[114.151527,22.33994],[114.151703,22.340621],[114.151072,22.34145],[114.149401,22.342539],[114.147956,22.343992],[114.147512,22.34491],[114.147124,22.346527],[114.146571,22.350489],[114.146534,22.351967],[114.146674,22.352966],[114.147148,22.353999],[114.148849,22.355933],[114.149322,22.356684],[114.14965,22.358329],[114.149462,22.35939],[114.14832,22.362177],[114.147931,22.363319],[114.147707,22.365245],[114.147676,22.36802],[114.14784,22.368938],[114.148259,22.369803],[114.149322,22.371191],[114.14979,22.37228],[114.149766,22.372978],[114.149322,22.374512],[114.145848,22.373712],[114.144785,22.373704],[114.144068,22.374263],[114.143886,22.374863],[114.143564,22.377931],[114.14309,22.378453],[114.14125,22.378486],[114.138966,22.377919],[114.135528,22.376442],[114.132722,22.375316],[114.1268,22.373137],[114.126453,22.372696],[114.126599,22.372023],[114.127607,22.371146],[114.1283,22.369934],[114.128579,22.368134],[114.128233,22.36698],[114.126399,22.36376],[114.12618,22.362626],[114.125251,22.361463],[114.124668,22.360977],[114.120829,22.359165],[114.119201,22.358198],[114.118065,22.357802],[114.115119,22.357239],[114.114998,22.36407],[114.088302,22.362532],[114.07848,22.358067],[114.08261,22.329377]]]]}},{"type":"Feature","properties":{"adcode":810018,"name":"离岛区","center":[113.94612,22.28640778],"centroid":[113.944813,22.260175],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":17,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.060744,22.312539],[113.986008,22.315523],[113.955285,22.298447],[113.952315,22.298794],[113.949776,22.302195],[113.949861,22.304468],[113.952479,22.30593],[113.963321,22.305754],[113.968496,22.310706],[113.970191,22.318025],[113.969523,22.321238],[113.965417,22.322932],[113.949788,22.321307],[113.9416,22.318915],[113.939887,22.321364],[113.939164,22.321789],[113.938253,22.321866],[113.898097,22.308841],[113.897253,22.308008],[113.896779,22.306424],[113.896949,22.305412],[113.897393,22.304795],[113.89967,22.303076],[113.899081,22.301219],[113.898504,22.300198],[113.895425,22.294177],[113.895078,22.292241],[113.895862,22.290216],[113.897715,22.287313],[113.8978,22.283618],[113.897059,22.281953],[113.890498,22.275056],[113.889928,22.274068],[113.889381,22.271369],[113.888931,22.270806],[113.88666,22.270405],[113.884922,22.269209],[113.884181,22.268939],[113.882948,22.268862],[113.881752,22.268462],[113.880282,22.267661],[113.878174,22.267425],[113.876121,22.267453],[113.874815,22.267053],[113.874171,22.266628],[113.87354,22.265799],[113.872525,22.263557],[113.871547,22.260842],[113.870484,22.259266],[113.869482,22.257489],[113.86885,22.257011],[113.868322,22.256999],[113.867058,22.25862],[113.864787,22.258861],[113.863724,22.258718],[113.862126,22.258159],[113.860462,22.257158],[113.858609,22.255839],[113.856459,22.254827],[113.855931,22.254377],[113.855633,22.253683],[113.855609,22.252748],[113.856089,22.250931],[113.856824,22.249183],[113.857097,22.248983],[113.858366,22.248917],[113.859891,22.249334],[113.862236,22.25031],[113.864028,22.250163],[113.864428,22.24933],[113.864167,22.24759],[113.863548,22.245213],[113.862667,22.244119],[113.861391,22.243588],[113.857765,22.242579],[113.854752,22.241835],[113.85307,22.240908],[113.852754,22.24048],[113.852468,22.239279],[113.852645,22.23682],[113.852517,22.234749],[113.851685,22.234137],[113.850118,22.234247],[113.84897,22.234169],[113.847822,22.233687],[113.845295,22.231637],[113.843454,22.229235],[113.84295,22.226633],[113.842975,22.224256],[113.843479,22.219742],[113.844165,22.21654],[113.844803,22.215139],[113.847202,22.212381],[113.847233,22.211826],[113.846066,22.209322],[113.845878,22.20801],[113.846042,22.205874],[113.846716,22.203982],[113.847597,22.202839],[113.849772,22.201339],[113.850786,22.200273],[113.85081,22.199574],[113.848824,22.192829],[113.848867,22.191906],[113.849395,22.191203],[113.850488,22.191068],[113.852547,22.191461],[113.853823,22.192118],[113.855894,22.19229],[113.857382,22.192772],[113.859235,22.194235],[113.860189,22.195444],[113.861045,22.19678],[113.862649,22.197887],[113.864538,22.19872],[113.866682,22.199154],[113.868401,22.198933],[113.869361,22.198492],[113.870903,22.198136],[113.872434,22.198177],[113.876698,22.199889],[113.882711,22.20406],[113.886313,22.205992],[113.887364,22.206891],[113.88881,22.209354],[113.890268,22.214146],[113.891671,22.215204],[113.892819,22.215727],[113.894969,22.216164],[113.896986,22.216344],[113.898395,22.216254],[113.899178,22.215813],[113.899537,22.2152],[113.900023,22.211724],[113.904682,22.207169],[113.909249,22.203611],[113.910166,22.203169],[113.913823,22.202818],[113.917522,22.202777],[113.920158,22.202953],[113.924119,22.20379],[113.929658,22.20417],[113.93278,22.204219],[113.935562,22.204967],[113.936741,22.205894],[113.937761,22.208047],[113.938162,22.211528],[113.937761,22.213415],[113.937057,22.214559],[113.937585,22.215396],[113.945172,22.21712],[113.947771,22.218403],[113.949794,22.219943],[113.952035,22.2225],[113.954246,22.225298],[113.95557,22.225959],[113.957897,22.226184],[113.962003,22.226192],[113.966188,22.226776],[113.969802,22.228194],[113.973683,22.230093],[113.975664,22.230804],[113.978531,22.230853],[113.980341,22.230591],[113.981088,22.230158],[113.981215,22.229231],[113.979982,22.22703],[113.978931,22.224607],[113.978701,22.223112],[113.979017,22.220825],[113.981574,22.216262],[113.985844,22.211193],[113.991711,22.206593],[113.993607,22.206115],[113.995417,22.205988],[113.996522,22.206299],[113.998138,22.207161],[114.003283,22.210796],[114.004443,22.211172],[114.009253,22.211944],[114.009764,22.212365],[114.011082,22.214534],[114.013068,22.215739],[114.015734,22.216707],[114.016299,22.217087],[114.016731,22.217888],[114.017192,22.219681],[114.017617,22.220429],[114.018444,22.220992],[114.019172,22.221168],[114.02128,22.220568],[114.021626,22.220735],[114.022853,22.222263],[114.023673,22.222749],[114.02436,22.223586],[114.024663,22.225678],[114.024998,22.22627],[114.026115,22.227258],[114.026461,22.228729],[114.025666,22.229889],[114.023212,22.230779],[114.021256,22.230857],[114.020132,22.231625],[114.018122,22.232156],[114.017429,22.232899],[114.017217,22.233875],[114.016627,22.234811],[114.016087,22.235207],[114.015182,22.235231],[114.012655,22.234582],[114.011428,22.234606],[114.010517,22.234868],[114.009873,22.235374],[114.008282,22.237171],[114.007662,22.237567],[114.005815,22.238066],[114.005159,22.238568],[114.004667,22.239426],[114.004443,22.2407],[114.004929,22.242109],[114.005487,22.242971],[114.006957,22.24438],[114.008282,22.245091],[114.011173,22.245875],[114.012643,22.24674],[114.015054,22.247835],[114.017393,22.248799],[114.017939,22.250077],[114.017775,22.251253],[114.017308,22.252331],[114.016548,22.253426],[114.013852,22.255782],[114.011987,22.258249],[114.011416,22.258821],[114.008846,22.260625],[114.007954,22.261589],[114.007158,22.262974],[114.006484,22.263476],[114.004759,22.264329],[114.004425,22.264881],[114.004625,22.266461],[114.005591,22.26816],[114.006386,22.268711],[114.007291,22.269021],[114.008178,22.26889],[114.010997,22.266351],[114.012758,22.265779],[114.014228,22.265011],[114.015516,22.263598],[114.016312,22.263243],[114.020551,22.261969],[114.021839,22.261973],[114.025131,22.262569],[114.028502,22.262475],[114.029201,22.262557],[114.029808,22.263766],[114.029729,22.26604],[114.029559,22.266943],[114.02815,22.27183],[114.027646,22.272864],[114.027555,22.274534],[114.027889,22.274999],[114.028891,22.275403],[114.029359,22.276118],[114.028818,22.277963],[114.028672,22.279907],[114.029274,22.282716],[114.029195,22.2837],[114.028873,22.28408],[114.027391,22.284427],[114.02702,22.284933],[114.02699,22.286321],[114.027585,22.287342],[114.031066,22.288097],[114.032189,22.288632],[114.033258,22.289494],[114.034169,22.291404],[114.034011,22.292711],[114.033307,22.295716],[114.033556,22.298186],[114.034066,22.299606],[114.035056,22.300917],[114.036386,22.302015],[114.03765,22.302472],[114.03966,22.302582],[114.043888,22.302219],[114.045947,22.302386],[114.04766,22.302738],[114.052938,22.303513],[114.054998,22.304264],[114.056947,22.305256],[114.059365,22.306869],[114.060537,22.308049],[114.060926,22.309147],[114.061005,22.310518],[114.060744,22.312539]]],[[[114.036137,22.207091],[114.034759,22.208766],[114.034564,22.210053],[114.03491,22.211299],[114.035967,22.212549],[114.03847,22.21306],[114.041161,22.214199],[114.041313,22.214861],[114.040845,22.21529],[114.039837,22.215555],[114.038312,22.215359],[114.037565,22.215551],[114.037486,22.216021],[114.040104,22.217312],[114.041003,22.21864],[114.040924,22.219922],[114.040183,22.220817],[114.03929,22.22105],[114.038269,22.220694],[114.037255,22.219681],[114.036514,22.219485],[114.034989,22.21971],[114.033119,22.219514],[114.031521,22.218962],[114.030659,22.218104],[114.030191,22.21627],[114.030349,22.215686],[114.031205,22.215184],[114.031132,22.214093],[114.030075,22.213431],[114.029875,22.212222],[114.028976,22.211323],[114.027725,22.211552],[114.027142,22.211393],[114.026795,22.210809],[114.02688,22.210253],[114.0277,22.209636],[114.028466,22.20855],[114.028745,22.208443],[114.031284,22.208815],[114.031801,22.208635],[114.033009,22.207463],[114.033392,22.206389],[114.033313,22.205106],[114.032432,22.203382],[114.031843,22.203092],[114.030282,22.202892],[114.028685,22.202843],[114.027907,22.20254],[114.027318,22.201829],[114.026067,22.199076],[114.025186,22.198847],[114.024086,22.199084],[114.023096,22.198884],[114.022064,22.198332],[114.022258,22.197425],[114.022878,22.196821],[114.022981,22.195473],[114.023212,22.195003],[114.024469,22.194623],[114.026279,22.194929],[114.026771,22.194639],[114.026091,22.193814],[114.026297,22.193172],[114.02736,22.193254],[114.028041,22.193822],[114.029328,22.1941],[114.030598,22.195035],[114.031551,22.196637],[114.032104,22.196833],[114.033313,22.196833],[114.033283,22.197989],[114.033817,22.198283],[114.034825,22.199562],[114.03573,22.199836],[114.036842,22.199399],[114.037346,22.199403],[114.037322,22.200183],[114.037765,22.200436],[114.038731,22.200261],[114.040043,22.19859],[114.04045,22.197899],[114.041167,22.19765],[114.041713,22.198116],[114.041877,22.199309],[114.042339,22.19995],[114.044046,22.200371],[114.044416,22.201057],[114.044459,22.201972],[114.044751,22.202422],[114.046063,22.202716],[114.046141,22.203435],[114.044829,22.204309],[114.044574,22.205576],[114.043244,22.206037],[114.041707,22.205764],[114.040766,22.204906],[114.039697,22.204763],[114.036137,22.207091]]],[[[114.142489,22.213783],[114.142386,22.216127],[114.141256,22.218329],[114.140272,22.219195],[114.138936,22.219412],[114.137684,22.219024],[114.136864,22.217819],[114.136433,22.216564],[114.135704,22.21618],[114.133287,22.217345],[114.13243,22.21817],[114.131264,22.219763],[114.131404,22.220457],[114.13195,22.220719],[114.132078,22.221336],[114.131471,22.222103],[114.131525,22.223304],[114.131003,22.224044],[114.126569,22.226723],[114.125919,22.22763],[114.12587,22.229141],[114.126308,22.230395],[114.127857,22.231988],[114.128506,22.233973],[114.128336,22.23557],[114.127389,22.236653],[114.125919,22.236996],[114.124716,22.237086],[114.123811,22.238597],[114.123246,22.238813],[114.122086,22.238164],[114.121436,22.236526],[114.120148,22.235966],[114.118114,22.235664],[114.116911,22.234888],[114.112465,22.233381],[114.11091,22.232213],[114.110393,22.23131],[114.110521,22.230273],[114.111693,22.229452],[114.114147,22.228717],[114.11484,22.228243],[114.114664,22.227205],[114.113115,22.225825],[114.112896,22.224959],[114.113285,22.224399],[114.115484,22.223664],[114.115484,22.222974],[114.113929,22.222675],[114.111997,22.221593],[114.106409,22.217839],[114.10568,22.216936],[114.105419,22.21598],[114.105419,22.215004],[114.106925,22.209269],[114.107338,22.208541],[114.108668,22.208072],[114.113175,22.208202],[114.114214,22.208979],[114.116711,22.210012],[114.119213,22.211479],[114.119899,22.213292],[114.119814,22.216054],[114.121029,22.216315],[114.1231,22.214931],[114.124734,22.21156],[114.124479,22.207847],[114.123781,22.204567],[114.124218,22.202928],[114.125506,22.201633],[114.125421,22.199472],[114.124473,22.189977],[114.122924,22.187734],[114.11965,22.185839],[114.118436,22.183853],[114.118436,22.180225],[114.120416,22.177806],[114.12516,22.176596],[114.127838,22.176678],[114.129126,22.175726],[114.131197,22.174949],[114.133098,22.175207],[114.135334,22.178222],[114.136372,22.179085],[114.137144,22.178909],[114.140078,22.175285],[114.141627,22.174504],[114.143352,22.174847],[114.143777,22.176228],[114.143777,22.178729],[114.142489,22.181839],[114.140588,22.184866],[114.140588,22.186419],[114.141195,22.186329],[114.143692,22.184515],[114.148776,22.17993],[114.152396,22.177855],[114.154722,22.177765],[114.15584,22.179056],[114.15533,22.181217],[114.150932,22.188388],[114.149292,22.192188],[114.148946,22.194092],[114.149814,22.195211],[114.156271,22.200812],[114.158342,22.200808],[114.161355,22.200114],[114.162995,22.200367],[114.164198,22.201662],[114.166439,22.20511],[114.166093,22.206666],[114.164107,22.208223],[114.160663,22.208055],[114.15878,22.207716],[114.158172,22.209011],[114.157304,22.209792],[114.154898,22.209706],[114.151801,22.208676],[114.149292,22.206781],[114.147743,22.206785],[114.14473,22.207308],[114.14094,22.206621],[114.137927,22.205245],[114.135334,22.203259],[114.134732,22.202054],[114.133955,22.201878],[114.132837,22.205077],[114.13336,22.205853],[114.134647,22.20663],[114.140169,22.210335],[114.141967,22.212402],[114.142489,22.213783]]],[[[113.994997,22.185732],[113.998296,22.187289],[113.999262,22.188237],[113.99948,22.189283],[113.999322,22.189765],[113.999839,22.190611],[113.999839,22.191289],[113.999085,22.192314],[113.99798,22.192486],[113.997233,22.191571],[113.996243,22.192327],[113.996473,22.193851],[113.997336,22.194255],[113.996887,22.195567],[113.997026,22.196318],[113.995763,22.197009],[113.995739,22.198377],[113.993837,22.199174],[113.99289,22.198917],[113.992319,22.19935],[113.991359,22.198296],[113.990175,22.197691],[113.989573,22.196388],[113.988717,22.195889],[113.987976,22.194762],[113.987757,22.193671],[113.98732,22.19258],[113.987277,22.19113],[113.988097,22.190108],[113.988844,22.189753],[113.989604,22.189728],[113.99009,22.188931],[113.990916,22.188633],[113.992246,22.18847],[113.992744,22.187604],[113.99422,22.186027],[113.994997,22.185732]]],[[[113.921397,22.174545],[113.921944,22.175178],[113.921537,22.175902],[113.921519,22.176588],[113.92206,22.177332],[113.922685,22.177397],[113.923785,22.17649],[113.923833,22.175673],[113.925753,22.176535],[113.925613,22.177074],[113.924514,22.17718],[113.924963,22.177896],[113.924896,22.178316],[113.923845,22.17917],[113.922327,22.179191],[113.92144,22.180339],[113.92045,22.180927],[113.91895,22.181074],[113.918245,22.180151],[113.917589,22.180159],[113.916684,22.180719],[113.916083,22.181892],[113.91505,22.183191],[113.914194,22.183583],[113.913197,22.184543],[113.911539,22.185095],[113.911059,22.184784],[113.910956,22.182692],[113.91047,22.181687],[113.910914,22.180335],[113.910725,22.178574],[113.910118,22.17763],[113.91027,22.176502],[113.912256,22.176216],[113.913805,22.177164],[113.913987,22.178063],[113.91522,22.178786],[113.916313,22.178917],[113.917668,22.178488],[113.917978,22.177377],[113.91765,22.176727],[113.917692,22.176032],[113.918227,22.175142],[113.91932,22.175816],[113.919679,22.176392],[113.920286,22.175832],[113.920432,22.174937],[113.921397,22.174545]]],[[[114.258122,22.169458],[114.25735,22.168649],[114.255941,22.166503],[114.25486,22.163467],[114.254957,22.162102],[114.255413,22.160978],[114.255941,22.160696],[114.257593,22.161224],[114.258158,22.161681],[114.258571,22.161624],[114.257861,22.160014],[114.257144,22.16021],[114.256622,22.159331],[114.256962,22.158551],[114.257581,22.15831],[114.259853,22.157889],[114.261864,22.157664],[114.262258,22.15688],[114.260892,22.154975],[114.25958,22.152858],[114.260017,22.15229],[114.262131,22.152392],[114.26368,22.152956],[114.265301,22.153909],[114.266814,22.155666],[114.267093,22.156549],[114.266777,22.158343],[114.268539,22.159609],[114.269669,22.161105],[114.270762,22.16097],[114.270543,22.159891],[114.271035,22.158976],[114.27174,22.158943],[114.27646,22.159193],[114.27929,22.159581],[114.279709,22.160251],[114.278713,22.163026],[114.278428,22.164856],[114.277267,22.166368],[114.276952,22.167071],[114.276988,22.167778],[114.277407,22.168481],[114.278397,22.169008],[114.278822,22.169854],[114.27861,22.170312],[114.277583,22.171121],[114.276915,22.173372],[114.27632,22.174357],[114.275579,22.174884],[114.273398,22.176008],[114.272797,22.176429],[114.271776,22.178047],[114.2703,22.178329],[114.269347,22.17801],[114.268399,22.17685],[114.268223,22.176073],[114.267591,22.175231],[114.266109,22.1747],[114.263716,22.174279],[114.262732,22.173854],[114.262064,22.173188],[114.260424,22.17249],[114.26006,22.17213],[114.259355,22.170757],[114.258122,22.169458]]],[[[113.907919,22.153467],[113.909371,22.153733],[113.910063,22.154321],[113.910652,22.155891],[113.911217,22.156173],[113.912329,22.155952],[113.914667,22.155997],[113.916095,22.155743],[113.918014,22.157223],[113.920061,22.156826],[113.920322,22.157313],[113.92011,22.158612],[113.91966,22.159883],[113.91881,22.160341],[113.918014,22.160333],[113.91816,22.16312],[113.918409,22.163393],[113.919715,22.163349],[113.920978,22.163618],[113.92223,22.164722],[113.92175,22.165416],[113.919581,22.166634],[113.918567,22.166189],[113.91632,22.167186],[113.915433,22.167124],[113.914443,22.166703],[113.914133,22.166315],[113.914072,22.165465],[113.913726,22.164305],[113.915208,22.162944],[113.915226,22.162588],[113.914339,22.161996],[113.913847,22.161027],[113.912056,22.16097],[113.911624,22.159801],[113.910549,22.159499],[113.909334,22.160664],[113.907123,22.160533],[113.905404,22.159528],[113.90425,22.158494],[113.903928,22.157721],[113.90405,22.156704],[113.904372,22.156054],[113.90719,22.154383],[113.907919,22.153467]]],[[[114.042041,22.25597],[114.037777,22.256399],[114.036368,22.255762],[114.034206,22.25646],[114.033106,22.256407],[114.032809,22.256044],[114.032621,22.254512],[114.031594,22.254414],[114.03123,22.253879],[114.031302,22.25332],[114.032323,22.251527],[114.032833,22.250971],[114.033787,22.250898],[114.036611,22.251078],[114.037844,22.250277],[114.038968,22.248946],[114.03963,22.247855],[114.039891,22.246785],[114.04062,22.246593],[114.041349,22.247472],[114.043001,22.247014],[114.043517,22.246504],[114.043542,22.246018],[114.043111,22.245458],[114.04308,22.244874],[114.044362,22.243445],[114.044805,22.242452],[114.045018,22.241023],[114.045467,22.240243],[114.047241,22.239275],[114.048292,22.23838],[114.049282,22.238262],[114.050242,22.238482],[114.050703,22.239769],[114.051554,22.240814],[114.05145,22.242032],[114.05238,22.242665],[114.052598,22.243633],[114.05046,22.246736],[114.049385,22.24761],[114.049336,22.248264],[114.050648,22.251233],[114.050703,22.253344],[114.050011,22.254631],[114.04783,22.255888],[114.046494,22.256101],[114.04503,22.255831],[114.044465,22.255562],[114.042041,22.25597]]],[[[114.046992,22.276861],[114.049762,22.277241],[114.051426,22.278253],[114.054603,22.27998],[114.054821,22.281156],[114.054311,22.281744],[114.052756,22.282108],[114.052137,22.282463],[114.051711,22.283116],[114.051554,22.284108],[114.050843,22.284517],[114.049367,22.284607],[114.048079,22.284472],[114.047253,22.283872],[114.046798,22.282973],[114.046233,22.282879],[114.045485,22.283961],[114.045674,22.284447],[114.047101,22.284827],[114.048,22.285835],[114.050339,22.286926],[114.051128,22.287844],[114.051292,22.288538],[114.050381,22.288796],[114.049555,22.290086],[114.044945,22.289306],[114.041896,22.288404],[114.037996,22.287795],[114.036927,22.28697],[114.036812,22.285995],[114.037711,22.285488],[114.039071,22.285546],[114.039916,22.285378],[114.040426,22.284905],[114.041379,22.281949],[114.041853,22.281503],[114.042868,22.281189],[114.042284,22.280046],[114.042096,22.279278],[114.0424,22.278384],[114.043196,22.277804],[114.044198,22.277714],[114.045856,22.276857],[114.046992,22.276861]]],[[[113.904293,22.168146],[113.905544,22.169004],[113.906048,22.168963],[113.906376,22.168334],[113.906777,22.168469],[113.90719,22.169748],[113.90688,22.170455],[113.906237,22.170475],[113.905605,22.169409],[113.90405,22.169372],[113.902871,22.16898],[113.903078,22.168579],[113.904293,22.168146]]],[[[114.249527,22.17537],[114.250013,22.175599],[114.250809,22.176429],[114.250772,22.178206],[114.251598,22.178464],[114.254982,22.177254],[114.255109,22.176343],[114.255747,22.176302],[114.259495,22.177826],[114.260491,22.178525],[114.261444,22.179755],[114.262064,22.181279],[114.262167,22.183248],[114.261639,22.185638],[114.260788,22.187105],[114.260005,22.187571],[114.258055,22.187612],[114.252716,22.186468],[114.249351,22.186108],[114.248276,22.185597],[114.248002,22.185091],[114.248586,22.18344],[114.248543,22.181998],[114.248148,22.180073],[114.248166,22.178672],[114.249102,22.177826],[114.249205,22.177401],[114.248841,22.175983],[114.249527,22.17537]]],[[[114.054937,22.254247],[114.056024,22.254283],[114.057871,22.25586],[114.058873,22.256125],[114.059845,22.256836],[114.060883,22.258984],[114.061637,22.260021],[114.061582,22.260854],[114.060823,22.261642],[114.060568,22.262365],[114.059632,22.262626],[114.058612,22.262606],[114.05719,22.262145],[114.056577,22.261765],[114.055326,22.26183],[114.054682,22.261565],[114.054178,22.260695],[114.052501,22.259788],[114.051973,22.259115],[114.052173,22.258281],[114.052058,22.257457],[114.051596,22.256783],[114.052155,22.255374],[114.053351,22.25508],[114.053534,22.254557],[114.054937,22.254247]]],[[[114.292125,22.177659],[114.292993,22.177851],[114.294008,22.178398],[114.294269,22.179379],[114.294232,22.180907],[114.29399,22.181753],[114.294044,22.182488],[114.294378,22.182827],[114.29467,22.184167],[114.294372,22.185434],[114.292951,22.18724],[114.292107,22.187653],[114.291347,22.18733],[114.290758,22.186484],[114.290515,22.185499],[114.290594,22.184556],[114.290078,22.184368],[114.288905,22.18478],[114.288213,22.184404],[114.28746,22.183497],[114.287247,22.182668],[114.288025,22.181557],[114.288249,22.179485],[114.288857,22.178541],[114.290381,22.177867],[114.292125,22.177659]]],[[[113.927484,22.151076],[113.928176,22.151702],[113.92848,22.152331],[113.928838,22.152311],[113.928298,22.153026],[113.92749,22.152654],[113.926961,22.151939],[113.927004,22.151211],[113.927484,22.151076]]],[[[113.930156,22.174533],[113.930946,22.17499],[113.93108,22.175861],[113.930746,22.176339],[113.929561,22.176702],[113.929081,22.177238],[113.928571,22.177266],[113.928273,22.176514],[113.929203,22.175534],[113.929786,22.174533],[113.930156,22.174533]]],[[[114.063483,22.284802],[114.064619,22.284958],[114.065949,22.285721],[114.065822,22.286219],[114.064838,22.286954],[114.063592,22.287236],[114.063204,22.286799],[114.06222,22.286897],[114.061794,22.286272],[114.062444,22.285795],[114.062554,22.28499],[114.063483,22.284802]]],[[[113.910118,22.170087],[113.910646,22.170688],[113.910221,22.171517],[113.909662,22.171897],[113.909031,22.17164],[113.908806,22.170618],[113.910118,22.170087]]],[[[114.309478,22.180768],[114.310056,22.181099],[114.311361,22.184041],[114.311386,22.185961],[114.310699,22.186133],[114.309964,22.185279],[114.309527,22.183575],[114.309667,22.18295],[114.308792,22.181385],[114.308822,22.181038],[114.309478,22.180768]]],[[[114.081037,22.27918],[114.084074,22.279258],[114.085004,22.279711],[114.085265,22.280254],[114.085174,22.280928],[114.084366,22.281536],[114.08439,22.282181],[114.085016,22.282438],[114.085265,22.283835],[114.084973,22.284451],[114.08439,22.284602],[114.081037,22.283618],[114.079154,22.282206],[114.078881,22.281373],[114.079094,22.280078],[114.079847,22.279303],[114.081037,22.27918]]],[[[113.929853,22.17336],[113.929543,22.174226],[113.929045,22.174071],[113.929853,22.17336]]],[[[113.841814,22.211863],[113.842622,22.211912],[113.843139,22.212332],[113.843679,22.213378],[113.843625,22.214604],[113.842215,22.214661],[113.841547,22.215053],[113.840168,22.21498],[113.839859,22.214534],[113.840089,22.21328],[113.84128,22.212071],[113.841814,22.211863]]],[[[114.255486,22.158731],[114.253985,22.157979],[114.25373,22.1569],[114.254617,22.15663],[114.256658,22.157537],[114.256707,22.158302],[114.255874,22.158972],[114.255486,22.158731]]],[[[114.13882,22.220224],[114.139628,22.220429],[114.140746,22.221107],[114.141396,22.22241],[114.141019,22.223456],[114.140351,22.223786],[114.139762,22.22375],[114.138134,22.222622],[114.137891,22.221577],[114.138243,22.220372],[114.13882,22.220224]]],[[[113.921446,22.159066],[113.921865,22.159258],[113.921725,22.160161],[113.921343,22.160263],[113.921051,22.159401],[113.921446,22.159066]]],[[[113.950377,22.211328],[113.951118,22.211479],[113.951562,22.212096],[113.950802,22.212406],[113.950177,22.211822],[113.950377,22.211328]]],[[[114.307608,22.178194],[114.308841,22.178827],[114.309478,22.180098],[114.309381,22.180556],[114.308816,22.180936],[114.30816,22.180793],[114.306861,22.179742],[114.306848,22.178582],[114.307608,22.178194]]],[[[114.294779,22.185083],[114.295466,22.185589],[114.295708,22.186488],[114.295387,22.187461],[114.294949,22.187489],[114.294269,22.186427],[114.294779,22.185083]]],[[[114.241953,22.171869],[114.242621,22.172281],[114.242171,22.172935],[114.241363,22.173041],[114.241035,22.172343],[114.241953,22.171869]]],[[[113.912232,22.170177],[113.912068,22.170753],[113.91163,22.170528],[113.912232,22.170177]]]]}}]}
\ No newline at end of file
diff --git a/src/views/Workbench/components/workbenchEdit.vue b/src/views/Workbench/components/workbenchEdit.vue
index 2c99497..9bf838c 100644
--- a/src/views/Workbench/components/workbenchEdit.vue
+++ b/src/views/Workbench/components/workbenchEdit.vue
@@ -380,8 +380,8 @@ export default {
i: 11,
isAccord: '1*1',
componentName: '',
- },
- ],
+ }
+ ],
menuLayout: [
{
@@ -486,13 +486,30 @@ export default {
methods: {
async getTableList() {
let res = await queryTableApi()
- this.layout = res.data
+ this.layout = res.data;
+ console.log(this.layout)
},
handleClearPanel() {
- this.layout = this.layoutT
- this.layout.forEach((e) => {
- e.componentName = ''
- })
+ // this.layout = this.layoutT.slice()
+ this.layout = [
+ // 第一行
+ { x: 0,y: 0,w: 3,h: 4,i: 0,isAccord: '1*1',componentName: '',},
+ {x: 3,y: 0,w: 3,h: 4,i: 1,isAccord: '1*1',componentName: '',},
+ {x: 6,y: 0,w: 3,h: 4,i: 2,isAccord: '1*1',componentName: '',},
+ {x: 9,y: 0,w: 3,h: 4,i: 3,isAccord: '1*1',componentName: '',},
+
+ // 第二行
+ {x: 0,y: 1,w: 3,h: 4,i: 4,isAccord: '1*1',componentName: '',},
+ {x: 3,y: 1,w: 3,h: 4,i: 5,isAccord: '1*1',componentName: '',},
+ {x: 6,y: 1,w: 3,h: 4,i: 6,isAccord: '1*1',componentName: '',},
+ {x: 9,y: 1,w: 3,h: 4,i: 7,isAccord: '1*1',componentName: '',},
+
+ // 第三行
+ {x: 0,y: 2,w: 3,h: 4,i: 8,isAccord: '1*1',componentName: '',},
+ {x: 3,y: 2,w: 3,h: 4,i: 9,isAccord: '1*1',componentName: '',},
+ {x: 6,y: 2,w: 3,h: 4,i: 10,isAccord: '1*1',componentName: '',},
+ {x: 9,y: 2,w: 3,h: 4,i: 11,isAccord: '1*1',componentName: '',}
+ ]
},
async handleSubmit() {
// 1. 掉后台接口