Commit 6e66512cc201e0963c11e137e24c10ba9cf74e82

Authored by xp.Huang
2 parents 11a3a6df 78e283b6

Merge branch 'ft' into 'main_dev'

feat(src/packages): 信息里新增加载组态和图表地图新增下钻

See merge request yunteng/thingskit-view!77
Showing 100 changed files with 4210 additions and 1 deletions

Too many changes to show.

To preserve performance only 100 of 404 files are displayed.

@@ -6,7 +6,8 @@ enum Api { @@ -6,7 +6,8 @@ enum Api {
6 UPLOAD = '/oss/upload', 6 UPLOAD = '/oss/upload',
7 DOWNLOAD = '/oss/download_file/', 7 DOWNLOAD = '/oss/download_file/',
8 AREALIST = '/area/list', 8 AREALIST = '/area/list',
9 - PLATFORM = '/platform/get' 9 + PLATFORM = '/platform/get',
  10 + CONFIGURATION = '/configuration/center'
10 } 11 }
11 12
12 export const getDictItemByCode = (value: string) => { 13 export const getDictItemByCode = (value: string) => {
@@ -39,3 +40,8 @@ export const getAreaList = (data: object) => { @@ -39,3 +40,8 @@ export const getAreaList = (data: object) => {
39 40
40 //获取企业定制 41 //获取企业定制
41 export const getPlatformInfo = () => defHttp.get({ url: Api.PLATFORM }) 42 export const getPlatformInfo = () => defHttp.get({ url: Api.PLATFORM })
  43 +
  44 +//获取组态列表
  45 +export const getConfigurationList = (params: object) => {
  46 + return defHttp.get({ url: `${Api.CONFIGURATION}`, params })
  47 +}
  1 +<script lang="ts" setup name="SelectCity">
  2 +import { onMounted, reactive } from 'vue'
  3 +import { getAreaList } from '@/api/external/common/index'
  4 +import { areaEnum } from '../config'
  5 +
  6 +const emits = defineEmits(['submit'])
  7 +
  8 +const selectOptions = reactive({
  9 + provinceOptions: [],
  10 + cityOptions: [],
  11 + countryOptions: []
  12 +})
  13 +
  14 +const selectValues = reactive({
  15 + provinceValue: null,
  16 + cityValue: null,
  17 + countyValue: null
  18 +})
  19 +
  20 +const getAreaLists = async (level = areaEnum.PROVINCE, parentId = 1) => {
  21 + const resp = await getAreaList({
  22 + level,
  23 + parentId
  24 + })
  25 + if (!resp) return []
  26 + return resp.map((item: any) => ({ label: item.name, value: item.code }))
  27 +}
  28 +
  29 +onMounted(async () => {
  30 + selectOptions.provinceOptions = await getAreaLists()
  31 + ;(selectOptions.provinceOptions as never as any).unshift({
  32 + label: '中国',
  33 + value: 'china'
  34 + })
  35 +})
  36 +
  37 +const onHandleSelectProvince = async (value: number | string) => {
  38 + selectValues.cityValue = null
  39 + selectValues.countyValue = null
  40 + if (value === 'china') return
  41 + selectOptions.cityOptions = await getAreaLists(areaEnum.CITY, value as any)
  42 +}
  43 +
  44 +const onHandleSelectCity = async (value: number) => {
  45 + selectValues.countyValue = null
  46 + selectOptions.countryOptions = await getAreaLists(areaEnum.COUNTY, value)
  47 +}
  48 +
  49 +const onHandleSubmit = () => {
  50 + emits('submit', selectValues)
  51 +}
  52 +</script>
  53 +
  54 +<template>
  55 + <div class="select-city-content">
  56 + <n-select
  57 + @change="onHandleSelectProvince"
  58 + placeholder="请选择省份"
  59 + v-model:value="selectValues.provinceValue"
  60 + :options="selectOptions.provinceOptions"
  61 + />
  62 + <n-select
  63 + @change="onHandleSelectCity"
  64 + placeholder="请选择城市"
  65 + v-model:value="selectValues.cityValue"
  66 + :options="selectOptions.cityOptions"
  67 + />
  68 + <n-select
  69 + placeholder="请选择区域"
  70 + v-model:value="selectValues.countyValue"
  71 + :options="selectOptions.countryOptions"
  72 + />
  73 + <n-button type="primary" @click="onHandleSubmit">确定</n-button>
  74 + </div>
  75 +</template>
  76 +
  77 +<style lang="scss" scoped>
  78 +.select-city-content {
  79 + display: flex;
  80 + flex-direction: column;
  81 + justify-content: space-between;
  82 + align-items: center;
  83 + gap: 30px;
  84 +}
  85 +</style>
  1 +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
  2 +import { OverrideMapBaseConfig } from './index'
  3 +import { chartInitConfig } from '@/settings/designSetting'
  4 +import { CreateComponentType } from '@/packages/index.d'
  5 +import cloneDeep from 'lodash/cloneDeep'
  6 +import dataJson from './data.json'
  7 +
  8 +//省市区枚举
  9 +export const enum areaEnum {
  10 + PROVINCE = 'PROVINCE',
  11 + CITY = 'CITY',
  12 + COUNTY = 'COUNTY'
  13 +}
  14 +export const includes = []
  15 +
  16 +export const option = {
  17 + drillingIn:false,
  18 + dataset: dataJson,
  19 + mapRegion: {
  20 + adcode: 'china',
  21 + showHainanIsLands: true
  22 + },
  23 + tooltip: {
  24 + show: true,
  25 + trigger: 'item'
  26 + },
  27 + visualMap: {
  28 + show: true,
  29 + orient: 'vertical',
  30 + pieces: [
  31 + { gte: 1000, label: '>1000' }, // 不指定 max,表示 max 为无限大(Infinity)。
  32 + { gte: 600, lte: 999, label: '600-999' },
  33 + { gte: 200, lte: 599, label: '200-599' },
  34 + { gte: 50, lte: 199, label: '49-199' },
  35 + { gte: 10, lte: 49, label: '10-49' },
  36 + { lte: 9, label: '<9' } // 不指定 min,表示 min 为无限大(-Infinity)。
  37 + ],
  38 + inRange: {
  39 + // 渐变颜色,从小到大
  40 + color: ['#c3d7df', '#5cb3cc', '#8abcd1', '#66a9c9', '#2f90b9', '#1781b5']
  41 + },
  42 + textStyle: {
  43 + color: '#fff'
  44 + }
  45 + },
  46 + geo: {
  47 + show: false,
  48 + type: 'map',
  49 + roam: false,
  50 + map: 'china',
  51 + selectedMode: false, //是否允许选中多个区域
  52 + zoom: 1
  53 + },
  54 + series: [
  55 + {
  56 + name: '',
  57 + type: 'effectScatter',
  58 + coordinateSystem: 'geo',
  59 + symbolSize: 4,
  60 + legendHoverLink: true,
  61 + showEffectOn: 'render',
  62 + rippleEffect: {
  63 + scale: 6,
  64 + color: '#FFFFFF',
  65 + brushType: 'fill'
  66 + },
  67 + tooltip: {
  68 + show: true,
  69 + backgroundColor: 'rgba(0,0,0,.6)',
  70 + borderColor: 'rgba(147, 235, 248, .8)',
  71 + textStyle: {
  72 + color: '#FFF'
  73 + }
  74 + },
  75 + label: {
  76 + formatter: '{b}',
  77 + fontSize: 11,
  78 + offset: [0, 2],
  79 + position: 'bottom',
  80 + textBorderColor: '#fff',
  81 + textShadowColor: '#000',
  82 + textShadowBlur: 10,
  83 + textBorderWidth: 0,
  84 + color: '#FFFFFF',
  85 + show: true
  86 + },
  87 + itemStyle: {
  88 + color: '#FFFFFF',
  89 + borderColor: 'rgba(225,255,255,2)',
  90 + borderWidth: 4,
  91 + shadowColor: '#E1FFFF',
  92 + shadowBlur: 10
  93 + },
  94 + data: []
  95 + },
  96 + {
  97 + name: '区域',
  98 + type: 'map',
  99 + map: 'china',
  100 + data: [],
  101 + selectedMode: false,
  102 + zoom: 1,
  103 + geoIndex: 1,
  104 + tooltip: {
  105 + show: true,
  106 + backgroundColor: '#00000060',
  107 + borderColor: 'rgba(147, 235, 248, 0.8)',
  108 + textStyle: {
  109 + color: '#FFFFFF',
  110 + fontSize: 12
  111 + }
  112 + },
  113 + label: {
  114 + show: false,
  115 + color: '#FFFFFF',
  116 + fontSize: 12
  117 + },
  118 + emphasis: {
  119 + disabled: false,
  120 + label: {
  121 + color: '#FFFFFF',
  122 + fontSize: 12
  123 + },
  124 + itemStyle: {
  125 + areaColor: '#389BB7',
  126 + shadowColor: '#389BB7',
  127 + borderWidth: 1
  128 + }
  129 + },
  130 + itemStyle: {
  131 + borderColor: '#93EBF8',
  132 + borderWidth: 1,
  133 + areaColor: {
  134 + type: 'radial',
  135 + x: 0.5,
  136 + y: 0.5,
  137 + r: 0.8,
  138 + colorStops: [
  139 + {
  140 + offset: 0,
  141 + color: '#93ebf800' // 0% 处的颜色
  142 + },
  143 + {
  144 + offset: 1,
  145 + color: '#93ebf820' // 100% 处的颜色
  146 + }
  147 + ],
  148 + globalCoord: false
  149 + },
  150 + shadowColor: '#80D9F842',
  151 + shadowOffsetX: -2,
  152 + shadowOffsetY: 2,
  153 + shadowBlur: 10
  154 + }
  155 + }
  156 + ]
  157 +}
  158 +export const MapDefaultConfig = { ...option }
  159 +export default class Config extends PublicConfigClass implements CreateComponentType {
  160 + public key: string = OverrideMapBaseConfig.key
  161 + public attr = { ...chartInitConfig, w: 750, h: 800, zIndex: -1 }
  162 + public chartConfig = cloneDeep(OverrideMapBaseConfig)
  163 + public option = echartOptionProfixHandle(option, includes)
  164 +}
  1 +<template>
  2 + <!-- Echarts 全局设置 -->
  3 + <global-setting :optionData="optionData"></global-setting>
  4 + <CollapseItem name="地图" :expanded="true">
  5 + <SelectCity @submit="onHandleSelectValues" />
  6 + <SettingItemBox name="开启下钻">
  7 + <SettingItem name="">
  8 + <n-switch v-model:value="optionData.drillingIn" size="small"></n-switch>
  9 + </SettingItem>
  10 + </SettingItemBox>
  11 + <SettingItemBox name="区域颜色">
  12 + <SettingItem name="0%处颜色">
  13 + <n-color-picker
  14 + size="small"
  15 + :modes="['hex']"
  16 + v-model:value="seriesList[1].itemStyle.areaColor.colorStops[0].color"
  17 + ></n-color-picker>
  18 + </SettingItem>
  19 + <SettingItem name="100%处颜色">
  20 + <n-color-picker
  21 + size="small"
  22 + :modes="['hex']"
  23 + v-model:value="seriesList[1].itemStyle.areaColor.colorStops[1].color"
  24 + ></n-color-picker>
  25 + </SettingItem>
  26 + </SettingItemBox>
  27 + <SettingItemBox name="阴影">
  28 + <SettingItem name="颜色">
  29 + <n-color-picker
  30 + size="small"
  31 + :modes="['hex']"
  32 + v-model:value="seriesList[1].itemStyle.shadowColor"
  33 + ></n-color-picker>
  34 + </SettingItem>
  35 + <SettingItem name="模糊程度">
  36 + <n-input-number
  37 + v-model:value="seriesList[1].itemStyle.shadowBlur"
  38 + :min="0"
  39 + size="small"
  40 + placeholder="请输入模糊程度"
  41 + ></n-input-number>
  42 + </SettingItem>
  43 + <SettingItem name="水平偏移">
  44 + <n-input-number
  45 + v-model:value="seriesList[1].itemStyle.shadowOffsetX"
  46 + size="small"
  47 + placeholder="请输入水平偏移大小"
  48 + ></n-input-number>
  49 + </SettingItem>
  50 + <SettingItem name="垂直偏移">
  51 + <n-input-number
  52 + v-model:value="seriesList[1].itemStyle.shadowOffsetY"
  53 + size="small"
  54 + placeholder="请输入垂直偏移大小"
  55 + ></n-input-number>
  56 + </SettingItem>
  57 + </SettingItemBox>
  58 +
  59 + <SettingItemBox name="地理信息名称">
  60 + <SettingItem name="显示">
  61 + <n-space>
  62 + <n-switch v-model:value="seriesList[1].label.show" size="small"></n-switch>
  63 + </n-space>
  64 + </SettingItem>
  65 + <SettingItem name="字体颜色">
  66 + <n-color-picker size="small" :modes="['hex']" v-model:value="seriesList[1].label.color"></n-color-picker>
  67 + </SettingItem>
  68 + <SettingItem name="字体大小">
  69 + <n-input-number
  70 + v-model:value="seriesList[1].label.fontSize"
  71 + :min="1"
  72 + size="small"
  73 + placeholder="请输入字体大小"
  74 + ></n-input-number>
  75 + </SettingItem>
  76 + </SettingItemBox>
  77 +
  78 + <SettingItemBox name="悬浮 (预览可见)">
  79 + <SettingItem name="禁用">
  80 + <n-space>
  81 + <n-switch v-model:value="seriesList[1].emphasis.disabled" size="small"></n-switch>
  82 + </n-space>
  83 + </SettingItem>
  84 + <SettingItem name="颜色">
  85 + <n-color-picker
  86 + size="small"
  87 + :modes="['hex']"
  88 + v-model:value="seriesList[1].emphasis.itemStyle.areaColor"
  89 + ></n-color-picker>
  90 + </SettingItem>
  91 + <SettingItem name="字体大小">
  92 + <n-input-number
  93 + v-model:value="seriesList[1].emphasis.label.fontSize"
  94 + :min="1"
  95 + size="small"
  96 + placeholder="请输入字体大小"
  97 + ></n-input-number>
  98 + </SettingItem>
  99 + <SettingItem name="阴影">
  100 + <n-color-picker
  101 + size="small"
  102 + :modes="['hex']"
  103 + v-model:value="seriesList[1].emphasis.itemStyle.shadowColor"
  104 + ></n-color-picker>
  105 + </SettingItem>
  106 + <SettingItem name="边框大小">
  107 + <n-input-number
  108 + v-model:value="seriesList[1].emphasis.itemStyle.borderWidth"
  109 + :min="1"
  110 + size="small"
  111 + placeholder="请输入边框大小"
  112 + ></n-input-number>
  113 + </SettingItem>
  114 + <SettingItem name="文字颜色">
  115 + <n-color-picker
  116 + size="small"
  117 + :modes="['hex']"
  118 + v-model:value="seriesList[1].emphasis.label.color"
  119 + ></n-color-picker>
  120 + </SettingItem>
  121 + </SettingItemBox>
  122 +
  123 + <SettingItemBox name="悬浮弹窗">
  124 + <SettingItem name="显示">
  125 + <n-space>
  126 + <n-switch v-model:value="seriesList[1].tooltip.show" size="small"></n-switch>
  127 + </n-space>
  128 + </SettingItem>
  129 + <SettingItem name="字体大小">
  130 + <n-input-number
  131 + v-model:value="seriesList[1].tooltip.textStyle.fontSize"
  132 + :min="1"
  133 + size="small"
  134 + placeholder="请输入字体大小"
  135 + ></n-input-number>
  136 + </SettingItem>
  137 + <SettingItem name="字体颜色">
  138 + <n-color-picker
  139 + size="small"
  140 + :modes="['hex']"
  141 + v-model:value="seriesList[1].tooltip.textStyle.color"
  142 + ></n-color-picker>
  143 + </SettingItem>
  144 + <SettingItem name="背景颜色">
  145 + <n-color-picker
  146 + size="small"
  147 + :modes="['hex']"
  148 + v-model:value="seriesList[1].tooltip.backgroundColor"
  149 + ></n-color-picker>
  150 + </SettingItem>
  151 + </SettingItemBox>
  152 + <SettingItemBox name="区域边框">
  153 + <SettingItem name="颜色">
  154 + <n-color-picker
  155 + size="small"
  156 + :modes="['hex']"
  157 + v-model:value="seriesList[1].itemStyle.borderColor"
  158 + ></n-color-picker>
  159 + </SettingItem>
  160 + <SettingItem name="宽度大小">
  161 + <n-input-number
  162 + v-model:value="seriesList[1].itemStyle.borderWidth"
  163 + :min="1"
  164 + size="small"
  165 + placeholder="请输入边框大小"
  166 + ></n-input-number>
  167 + </SettingItem>
  168 + </SettingItemBox>
  169 + <SettingItemBox name="其他" v-if="mapRegion.adcode === 'china'">
  170 + <SettingItem>
  171 + <n-checkbox v-model:checked="mapRegion.showHainanIsLands" size="small">显示南海群岛</n-checkbox>
  172 + </SettingItem>
  173 + </SettingItemBox>
  174 + </CollapseItem>
  175 + <CollapseItem name="标记" :expanded="true">
  176 + <SettingItemBox name="样式">
  177 + <SettingItem name="大小">
  178 + <n-input-number v-model:value="seriesList[0].symbolSize" size="small" :min="0"></n-input-number>
  179 + </SettingItem>
  180 + <SettingItem name="颜色">
  181 + <n-color-picker size="small" :modes="['hex']" v-model:value="seriesList[0].itemStyle.color"></n-color-picker>
  182 + </SettingItem>
  183 + </SettingItemBox>
  184 +
  185 + <SettingItemBox name="文本">
  186 + <SettingItem name="显示">
  187 + <n-space>
  188 + <n-switch v-model:value="seriesList[0].label.show" size="small"></n-switch>
  189 + </n-space>
  190 + </SettingItem>
  191 + <SettingItem name="字体大小">
  192 + <n-input-number v-model:value="seriesList[0].label.fontSize" size="small" :min="0"></n-input-number>
  193 + </SettingItem>
  194 + <SettingItem name="字体颜色">
  195 + <n-color-picker size="small" :modes="['hex']" v-model:value="seriesList[0].label.color"></n-color-picker>
  196 + </SettingItem>
  197 + </SettingItemBox>
  198 +
  199 + <SettingItemBox name="涟漪">
  200 + <SettingItem name="涟漪大小">
  201 + <n-input-number
  202 + v-model:value="seriesList[0].rippleEffect.scale"
  203 + :min="1"
  204 + size="small"
  205 + placeholder="请输入涟漪大小"
  206 + ></n-input-number>
  207 + </SettingItem>
  208 + <SettingItem name="涟漪颜色">
  209 + <n-color-picker size="small" :modes="['hex']" v-model:value="seriesList[0].rippleEffect.color"></n-color-picker>
  210 + </SettingItem>
  211 + <SettingItem name="涟漪的绘制方式">
  212 + <n-select size="small" v-model:value="seriesList[0].rippleEffect.brushType" :options="rippleEffectOptions" />
  213 + </SettingItem>
  214 + </SettingItemBox>
  215 + </CollapseItem>
  216 +</template>
  217 +
  218 +<script setup lang="ts">
  219 +import { PropType, computed } from 'vue'
  220 +import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
  221 +import { GlobalThemeJsonType } from '@/settings/chartThemes/index'
  222 +import { GlobalSetting } from '@/components/Pages/ChartItemSetting'
  223 +import { ref } from 'vue'
  224 +import mapChinaJson from './mapGeojson/china.json'
  225 +import SelectCity from './components/SelectCity.vue'
  226 +
  227 +const mapRegionOptions = ref([
  228 + {
  229 + adcode: 'china',
  230 + name: '中国'
  231 + }
  232 +])
  233 +
  234 +const rippleEffectOptions = ref([
  235 + {
  236 + value: 'fill',
  237 + label: '实心'
  238 + },
  239 + {
  240 + value: 'stroke',
  241 + label: '空心'
  242 + }
  243 +])
  244 +
  245 +const props = defineProps({
  246 + optionData: {
  247 + type: Object as PropType<GlobalThemeJsonType>,
  248 + required: true
  249 + }
  250 +})
  251 +
  252 +const initMapRegionOptions = () => {
  253 + mapChinaJson.features.forEach((element: any) => {
  254 + if (element.properties.name) {
  255 + mapRegionOptions.value.push({ ...element.properties })
  256 + }
  257 + })
  258 +}
  259 +initMapRegionOptions()
  260 +
  261 +const seriesList = computed(() => {
  262 + return props.optionData.series
  263 +})
  264 +
  265 +const mapRegion = computed(() => {
  266 + return props.optionData.mapRegion
  267 +})
  268 +
  269 +const onHandleSelectValues = (values: any) => {
  270 + const { cityValue, countyValue, provinceValue } = values
  271 + props.optionData.mapRegion.adcode = countyValue
  272 + ? countyValue
  273 + : cityValue
  274 + ? cityValue
  275 + : provinceValue === 'china'
  276 + ? 'china'
  277 + : provinceValue
  278 +}
  279 +</script>
  1 +{
  2 + "point": [
  3 + {
  4 + "name": "北京",
  5 + "value": [116.405285, 39.904989, 200]
  6 + },
  7 + {
  8 + "name": "郑州",
  9 + "value": [113.665412, 34.757975, 888]
  10 + },
  11 + {
  12 + "name": "青海",
  13 + "value": [101.778916, 36.623178, 666]
  14 + },
  15 + {
  16 + "name": "宁夏回族自治区",
  17 + "value": [106.278179, 38.46637, 66]
  18 + },
  19 + {
  20 + "name": "哈尔滨市",
  21 + "value": [126.642464, 45.756967, 101]
  22 + }
  23 + ],
  24 + "map": [
  25 + {
  26 + "name": "北京市",
  27 + "value": 666
  28 + },
  29 + {
  30 + "name": "河北省",
  31 + "value": 98
  32 + },
  33 +
  34 + {
  35 + "name": "江苏省",
  36 + "value": 300
  37 + },
  38 + {
  39 + "name": "福建省",
  40 + "value": 1199
  41 + },
  42 + {
  43 + "name": "山东省",
  44 + "value": 86
  45 + },
  46 + {
  47 + "name": "河南省",
  48 + "value": 850
  49 + },
  50 + {
  51 + "name": "湖北省",
  52 + "value": 84
  53 + },
  54 + {
  55 + "name": "广西壮族自治区",
  56 + "value": 81
  57 + },
  58 + {
  59 + "name": "海南省",
  60 + "value": 900
  61 + },
  62 + {
  63 + "name": "青海省",
  64 + "value": 800
  65 + },
  66 + {
  67 + "name": "新疆维吾尔自治区",
  68 + "value": 7
  69 + }
  70 + ],
  71 + "pieces": [
  72 + { "gte": 1000, "label": ">1000" },
  73 + { "gte": 600, "lte": 999, "label": "600-999" },
  74 + { "gte": 200, "lte": 599, "label": "200-599" },
  75 + { "gte": 50, "lte": 199, "label": "49-199" },
  76 + { "gte": 10, "lte": 49, "label": "10-49" },
  77 + { "lte": 9, "label": "<9" }
  78 + ]
  79 +}
  1 +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
  2 +import { ChatCategoryEnum, ChatCategoryEnumName } from '@/packages/components/Charts/index.d'
  3 +import { useWidgetKey } from '@/packages/external/useWidgetKey'
  4 +
  5 +const { key, conKey, chartKey } = useWidgetKey('OverrideMapBase', true)
  6 +
  7 +export const OverrideMapBaseConfig: ConfigType = {
  8 + key,
  9 + chartKey,
  10 + conKey,
  11 + title: '地图(支持下钻)',
  12 + category: ChatCategoryEnum.MAP,
  13 + categoryName: ChatCategoryEnumName.MAP,
  14 + package: PackagesCategoryEnum.CHARTS,
  15 + chartFrame: ChartFrameEnum.COMMON,
  16 + image: 'map.png'
  17 +}
  1 +<template>
  2 + <v-chart
  3 + @click="handleVChartClick"
  4 + ref="vChartRef"
  5 + :init-options="initOptions"
  6 + :theme="themeColor"
  7 + :option="option.value"
  8 + :manual-update="isPreview()"
  9 + autoresize
  10 + >
  11 + </v-chart>
  12 +</template>
  13 +
  14 +<script setup lang="ts">
  15 +import { PropType, reactive, watch, ref, nextTick } from 'vue'
  16 +import config, { includes } from './config'
  17 +import VChart from 'vue-echarts'
  18 +import { useCanvasInitOptions } from '@/hooks/useCanvasInitOptions.hook'
  19 +import { use, registerMap } from 'echarts/core'
  20 +import { EffectScatterChart, MapChart } from 'echarts/charts'
  21 +import { CanvasRenderer } from 'echarts/renderers'
  22 +import { useChartDataFetch } from '@/hooks'
  23 +import { mergeTheme, setOption } from '@/packages/public/chart'
  24 +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
  25 +import { isPreview } from '@/utils'
  26 +import mapJsonWithoutHainanIsLands from './mapWithoutHainanIsLands.json'
  27 +import { DatasetComponent, GridComponent, TooltipComponent, GeoComponent, VisualMapComponent } from 'echarts/components'
  28 +import cityMap from './mapGeojson/china-main-city-map.json'
  29 +
  30 +const props = defineProps({
  31 + themeSetting: {
  32 + type: Object,
  33 + required: true
  34 + },
  35 + themeColor: {
  36 + type: Object,
  37 + required: true
  38 + },
  39 + chartConfig: {
  40 + type: Object as PropType<config>,
  41 + required: true
  42 + }
  43 +})
  44 +
  45 +const initOptions = useCanvasInitOptions(props.chartConfig.option, props.themeSetting)
  46 +
  47 +use([
  48 + MapChart,
  49 + DatasetComponent,
  50 + CanvasRenderer,
  51 + GridComponent,
  52 + TooltipComponent,
  53 + GeoComponent,
  54 + EffectScatterChart,
  55 + VisualMapComponent
  56 +])
  57 +
  58 +const saveSelectValue = ref('')
  59 +
  60 +const option = reactive({
  61 + value: mergeTheme(props.chartConfig.option, props.themeSetting, includes)
  62 +})
  63 +
  64 +const toolBoxOption = {
  65 + show: true,
  66 + right: 20,
  67 + feature: {
  68 + myFullButton: {
  69 + show: true,
  70 + title: '返回',
  71 + icon: 'path://M853.333333 245.333333H245.333333l93.866667-93.866666c12.8-12.8 12.8-34.133333 0-46.933334-12.8-12.8-34.133333-12.8-46.933333 0l-145.066667 145.066667c-12.8 12.8-12.8 34.133333 0 46.933333l145.066667 145.066667c6.4 6.4 14.933333 10.666667 23.466666 10.666667s17.066667-4.266667 23.466667-10.666667c12.8-12.8 12.8-34.133333 0-46.933333L256 311.466667h597.333333c6.4 0 10.666667 4.266667 10.666667 10.666666v426.666667c0 6.4-4.266667 10.666667-10.666667 10.666667H170.666667c-17.066667 0-32 14.933333-32 32s14.933333 32 32 32h682.666666c40.533333 0 74.666667-34.133333 74.666667-74.666667V320c0-40.533333-34.133333-74.666667-74.666667-74.666667z',
  72 + onclick: () => watchAdcode()
  73 + }
  74 + }
  75 +}
  76 +
  77 +props.chartConfig.option = {
  78 + ...props.chartConfig.option,
  79 + ...{ toolbox: toolBoxOption }
  80 +}
  81 +
  82 +const watchAdcode = () => {
  83 + if (props.chartConfig.option.drillingIn) {
  84 + const findCity = (cityMap as any)[saveSelectValue.value]
  85 + props.chartConfig.option.mapRegion.adcode = 'china'
  86 + }
  87 +}
  88 +
  89 +const vChartRef = ref<typeof VChart>()
  90 +
  91 +//动态获取json注册地图
  92 +const getGeojson = (regionId: string) => {
  93 + return new Promise<boolean>(resolve => {
  94 + import(`./mapGeojson/${regionId}.json`).then(data => {
  95 + registerMap(regionId, { geoJSON: data.default as any, specialAreas: {} })
  96 + resolve(true)
  97 + })
  98 + })
  99 +}
  100 +
  101 +//异步时先注册空的 保证初始化不报错
  102 +registerMap(`${props.chartConfig.option.mapRegion.adcode}`, { geoJSON: {} as any, specialAreas: {} })
  103 +
  104 +// 进行更换初始化地图 如果为china 单独处理
  105 +const registerMapInitAsync = async () => {
  106 + await nextTick()
  107 + const adCode = `${props.chartConfig.option.mapRegion.adcode}`
  108 + if (adCode !== 'china') {
  109 + await getGeojson(adCode)
  110 + } else {
  111 + await hainanLandsHandle(props.chartConfig.option.mapRegion.showHainanIsLands)
  112 + }
  113 + vEchartsSetOption()
  114 +}
  115 +registerMapInitAsync()
  116 +
  117 +// 手动触发渲染
  118 +const vEchartsSetOption = () => {
  119 + option.value = props.chartConfig.option
  120 + setOption(vChartRef.value, props.chartConfig.option)
  121 +}
  122 +
  123 +// 更新数据处理
  124 +const dataSetHandle = async (dataset: any) => {
  125 + props.chartConfig.option.series.forEach((item: any) => {
  126 + if (item.type === 'effectScatter' && dataset.point) item.data = dataset.point
  127 + else if (item.type === 'map' && dataset.map) item.data = dataset.map
  128 + })
  129 + if (dataset.pieces) props.chartConfig.option.visualMap.pieces = dataset.pieces
  130 +
  131 + isPreview() && vEchartsSetOption()
  132 +}
  133 +
  134 +// 处理海南群岛
  135 +const hainanLandsHandle = async (newData: boolean) => {
  136 + if (newData) {
  137 + await getGeojson('china')
  138 + } else {
  139 + registerMap('china', { geoJSON: mapJsonWithoutHainanIsLands as any, specialAreas: {} })
  140 + }
  141 +}
  142 +
  143 +//监听 dataset 数据发生变化
  144 +watch(
  145 + () => props.chartConfig.option.dataset,
  146 + newData => {
  147 + dataSetHandle(newData)
  148 + },
  149 + {
  150 + immediate: true,
  151 + deep: false
  152 + }
  153 +)
  154 +
  155 +//监听是否显示南海群岛
  156 +watch(
  157 + () => props.chartConfig.option.mapRegion.showHainanIsLands,
  158 + async newData => {
  159 + try {
  160 + await hainanLandsHandle(newData)
  161 + vEchartsSetOption()
  162 + } catch (error) {
  163 + console.log(error)
  164 + }
  165 + },
  166 + {
  167 + deep: false
  168 + }
  169 +)
  170 +
  171 +//监听地图展示区域发生变化
  172 +watch(
  173 + () => `${props.chartConfig.option.mapRegion.adcode}`,
  174 + async newData => {
  175 + try {
  176 + await getGeojson(newData)
  177 + props.chartConfig.option.geo.map = newData
  178 + props.chartConfig.option.series.forEach((item: any) => {
  179 + if (item.type === 'map') item.map = newData
  180 + })
  181 + vEchartsSetOption()
  182 + } catch (error) {
  183 + console.log(error)
  184 + }
  185 + },
  186 + {
  187 + deep: false
  188 + }
  189 +)
  190 +
  191 +// 预览
  192 +useChartDataFetch(props.chartConfig, useChartEditStore, (newData: any) => {
  193 + dataSetHandle(newData)
  194 +})
  195 +
  196 +//地图点击
  197 +const handleVChartClick = async (params: any) => {
  198 + if (props.chartConfig.option.drillingIn) {
  199 + const { name } = params
  200 + saveSelectValue.value = name
  201 + const findAdcode = (cityMap as any)[name]
  202 + props.chartConfig.option.mapRegion.adcode = findAdcode
  203 + }
  204 +}
  205 +</script>
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":110101,"name":"东城区","center":[116.418757,39.917544],"centroid":[116.416718,39.912934],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":0,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.44364,39.87284],[116.445648,39.879283],[116.444059,39.890038],[116.450939,39.890249],[116.450876,39.894088],[116.447154,39.894186],[116.446819,39.900042],[116.448722,39.903246],[116.436488,39.902042],[116.434983,39.913964],[116.434314,39.92868],[116.443682,39.928664],[116.443703,39.936663],[116.446338,39.946205],[116.440566,39.945295],[116.442239,39.9497],[116.435422,39.952121],[116.436698,39.949245],[116.429483,39.950155],[116.429002,39.957274],[116.424861,39.962279],[116.414196,39.962182],[116.411415,39.964928],[116.411101,39.97146],[116.407504,39.973995],[116.40788,39.962182],[116.389498,39.96314],[116.387658,39.96093],[116.38678,39.957014],[116.393346,39.957355],[116.394266,39.940629],[116.396169,39.94006],[116.396692,39.928306],[116.399474,39.923574],[116.392175,39.92242],[116.392259,39.907881],[116.395563,39.907995],[116.396086,39.89944],[116.397612,39.898675],[116.399097,39.872205],[116.38059,39.871148],[116.380632,39.866054],[116.387888,39.867372],[116.394956,39.862734],[116.3955,39.858682],[116.406856,39.859967],[116.41246,39.858942],[116.41589,39.863645],[116.413652,39.871148],[116.423209,39.872824],[116.442574,39.87188],[116.44364,39.87284]]]]}},{"type":"Feature","properties":{"adcode":110102,"name":"西城区","center":[116.366794,39.915309],"centroid":[116.36567,39.912028],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":1,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.325799,39.896789],[116.32582,39.891111],[116.320759,39.881512],[116.321324,39.875199],[116.326636,39.876859],[116.335273,39.875183],[116.341567,39.876159],[116.344286,39.873653],[116.349472,39.873588],[116.35058,39.86869],[116.38059,39.871148],[116.399097,39.872205],[116.397612,39.898675],[116.396086,39.89944],[116.395563,39.907995],[116.392259,39.907881],[116.392175,39.92242],[116.399474,39.923574],[116.396692,39.928306],[116.396169,39.94006],[116.394266,39.940629],[116.393346,39.957355],[116.38678,39.957014],[116.387658,39.96093],[116.390084,39.968406],[116.394162,39.969397],[116.394099,39.972858],[116.380903,39.972712],[116.380401,39.968178],[116.370384,39.967902],[116.371974,39.948594],[116.356206,39.944092],[116.352023,39.950854],[116.352421,39.943832],[116.341442,39.941979],[116.332889,39.944092],[116.327953,39.942369],[116.333056,39.938565],[116.334645,39.922664],[116.335356,39.898448],[116.337301,39.89739],[116.325799,39.896789]]]]}},{"type":"Feature","properties":{"adcode":110105,"name":"朝阳区","center":[116.486409,39.921489],"centroid":[116.513687,39.951064],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":2,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.595548,40.01751],[116.577814,40.027512],[116.578797,40.033097],[116.570474,40.032431],[116.564242,40.039655],[116.550753,40.045499],[116.54655,40.048956],[116.552761,40.05488],[116.551757,40.059765],[116.547784,40.062718],[116.543183,40.059408],[116.534379,40.066791],[116.525993,40.071334],[116.513948,40.070426],[116.506775,40.074352],[116.49933,40.080387],[116.486657,40.081036],[116.482935,40.083745],[116.473545,40.085562],[116.471015,40.08939],[116.466832,40.090185],[116.466247,40.08235],[116.461855,40.080825],[116.462608,40.076786],[116.458823,40.075796],[116.458635,40.070377],[116.462127,40.06731],[116.459408,40.059992],[116.45142,40.06129],[116.451629,40.058759],[116.442867,40.061323],[116.433268,40.06228],[116.415618,40.056],[116.409595,40.055626],[116.406124,40.049768],[116.408884,40.043291],[116.405266,40.038974],[116.395333,40.036766],[116.39297,40.041733],[116.390649,40.041279],[116.390251,40.036587],[116.395103,40.032854],[116.378708,40.031181],[116.350873,40.0267],[116.376554,39.992971],[116.381196,39.977976],[116.380903,39.972712],[116.394099,39.972858],[116.394162,39.969397],[116.390084,39.968406],[116.387658,39.96093],[116.389498,39.96314],[116.40788,39.962182],[116.407504,39.973995],[116.411101,39.97146],[116.411415,39.964928],[116.414196,39.962182],[116.424861,39.962279],[116.429002,39.957274],[116.429483,39.950155],[116.436698,39.949245],[116.435422,39.952121],[116.442239,39.9497],[116.440566,39.945295],[116.446338,39.946205],[116.443703,39.936663],[116.443682,39.928664],[116.434314,39.92868],[116.434983,39.913964],[116.436488,39.902042],[116.448722,39.903246],[116.446819,39.900042],[116.447154,39.894186],[116.450876,39.894088],[116.450939,39.890249],[116.444059,39.890038],[116.445648,39.879283],[116.44364,39.87284],[116.442971,39.866087],[116.446359,39.860862],[116.448178,39.863645],[116.454222,39.859381],[116.456062,39.86122],[116.463319,39.856224],[116.467794,39.856012],[116.460308,39.848622],[116.451148,39.852008],[116.450479,39.848704],[116.445983,39.848329],[116.446694,39.84426],[116.442323,39.843674],[116.440587,39.839653],[116.436739,39.841329],[116.432055,39.832929],[116.425217,39.831903],[116.430068,39.830112],[116.43699,39.830649],[116.436677,39.827425],[116.44592,39.826692],[116.443912,39.82096],[116.452737,39.823012],[116.462775,39.815945],[116.468463,39.814511],[116.474256,39.809772],[116.485256,39.81272],[116.485632,39.816889],[116.495357,39.818795],[116.498201,39.8157],[116.505813,39.817866],[116.502801,39.819006],[116.510142,39.821449],[116.510602,39.827637],[116.516164,39.829835],[116.525366,39.829754],[116.525868,39.826904],[116.534944,39.82482],[116.538143,39.828207],[116.533187,39.832733],[116.542681,39.830209],[116.543664,39.835078],[116.558596,39.834687],[116.569386,39.833498],[116.577145,39.830682],[116.577479,39.827539],[116.587015,39.828223],[116.583732,39.824917],[116.591595,39.823875],[116.59147,39.826367],[116.599228,39.825585],[116.598977,39.831659],[116.60224,39.831675],[116.601905,39.840727],[116.608367,39.846539],[116.604666,39.846132],[116.604185,39.850071],[116.613449,39.850185],[116.626958,39.860683],[116.619994,39.868951],[116.62493,39.87725],[116.624323,39.881155],[116.628987,39.881594],[116.627585,39.890477],[116.615603,39.889794],[116.61531,39.895503],[116.621019,39.898854],[116.623361,39.904271],[116.620245,39.90767],[116.623006,39.913818],[116.620956,39.923103],[116.630576,39.921672],[116.624156,39.929981],[116.6293,39.931314],[116.629677,39.938727],[116.633441,39.940906],[116.630492,39.946156],[116.632228,39.950545],[116.645277,39.945977],[116.643081,39.952983],[116.641827,39.969575],[116.639819,39.982606],[116.634026,39.981696],[116.63365,39.986197],[116.639129,39.986879],[116.640321,39.990177],[116.643751,39.989608],[116.642684,39.996755],[116.637582,40.002359],[116.63273,39.999825],[116.625766,40.003122],[116.628129,40.007653],[116.61989,40.011794],[116.60132,40.013873],[116.595548,40.01751]]],[[[116.603683,40.052949],[116.608409,40.054912],[116.603473,40.086811],[116.602909,40.093883],[116.598392,40.103874],[116.598705,40.09351],[116.595903,40.090218],[116.580365,40.088352],[116.578316,40.102739],[116.574071,40.107815],[116.574322,40.096138],[116.578149,40.076461],[116.581411,40.067846],[116.58139,40.073817],[116.586597,40.074336],[116.590131,40.056162],[116.587957,40.05053],[116.591198,40.051796],[116.591993,40.043129],[116.599814,40.041408],[116.599417,40.047171],[116.601633,40.047658],[116.598517,40.052543],[116.603683,40.052949]]]]}},{"type":"Feature","properties":{"adcode":110106,"name":"丰台区","center":[116.286968,39.863642],"centroid":[116.250342,39.835716],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":3,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.259089,39.896658],[116.252899,39.896382],[116.233534,39.89212],[116.234642,39.88955],[116.227783,39.889078],[116.22772,39.883839],[116.222952,39.883986],[116.219523,39.881334],[116.219105,39.876713],[116.210907,39.878079],[116.212099,39.874679],[116.208126,39.874125],[116.20457,39.879885],[116.199426,39.883286],[116.19035,39.881529],[116.179099,39.882684],[116.167033,39.888752],[116.163352,39.886881],[116.156137,39.889029],[116.150972,39.884051],[116.147605,39.885287],[116.13167,39.881268],[116.125898,39.877949],[116.119729,39.877477],[116.112242,39.873247],[116.105425,39.872547],[116.104149,39.868837],[116.095826,39.869032],[116.087169,39.866152],[116.078323,39.870318],[116.07046,39.868446],[116.067344,39.865761],[116.070188,39.860423],[116.070982,39.853717],[116.056553,39.85095],[116.05465,39.845953],[116.061488,39.841899],[116.068975,39.840792],[116.07619,39.837015],[116.078615,39.831593],[116.084366,39.828581],[116.085747,39.832163],[116.089741,39.829721],[116.088214,39.82692],[116.089594,39.816352],[116.086186,39.816401],[116.084826,39.811596],[116.087127,39.803289],[116.0856,39.795324],[116.091916,39.787927],[116.091581,39.784082],[116.094613,39.781557],[116.101368,39.78576],[116.107014,39.78532],[116.106366,39.788612],[116.119792,39.789654],[116.120754,39.784848],[116.125062,39.785353],[116.131503,39.783121],[116.132569,39.778624],[116.127467,39.779047],[116.124351,39.77675],[116.121486,39.779047],[116.117491,39.77336],[116.121465,39.761626],[116.12847,39.762409],[116.133803,39.76663],[116.148044,39.766483],[116.148902,39.768651],[116.15597,39.766923],[116.162704,39.769205],[116.16971,39.784278],[116.182989,39.783707],[116.183365,39.780204],[116.188008,39.781785],[116.194407,39.780579],[116.194449,39.778493],[116.200388,39.778151],[116.201852,39.788269],[116.201852,39.799657],[116.208063,39.806352],[116.207415,39.810814],[116.216762,39.816905],[116.214462,39.818974],[116.214127,39.824706],[116.227219,39.825048],[116.228306,39.827197],[116.23962,39.826872],[116.243007,39.825145],[116.244304,39.818567],[116.251644,39.81329],[116.25361,39.807231],[116.250933,39.801432],[116.251519,39.793059],[116.259298,39.797621],[116.262184,39.792782],[116.27423,39.796936],[116.287237,39.799103],[116.289182,39.795894],[116.296083,39.795568],[116.291148,39.793271],[116.295205,39.790958],[116.301541,39.774941],[116.307062,39.770085],[116.31068,39.772057],[116.317978,39.783447],[116.321784,39.783626],[116.322872,39.798386],[116.326824,39.798386],[116.328225,39.801416],[116.340124,39.802149],[116.341755,39.807589],[116.355704,39.805668],[116.356833,39.800471],[116.367039,39.79982],[116.368189,39.794819],[116.365742,39.794151],[116.367582,39.784962],[116.378478,39.785646],[116.379209,39.77939],[116.385609,39.778852],[116.390649,39.780465],[116.391903,39.765277],[116.398888,39.765864],[116.397905,39.781068],[116.396023,39.786738],[116.42024,39.787439],[116.421034,39.794134],[116.429274,39.794102],[116.429399,39.803583],[116.425719,39.805358],[116.422456,39.81044],[116.417772,39.81013],[116.415262,39.812525],[116.410013,39.811336],[116.41016,39.817052],[116.419759,39.815375],[116.418441,39.822915],[116.414426,39.824282],[116.415785,39.829428],[116.420072,39.826611],[116.425217,39.831903],[116.432055,39.832929],[116.436739,39.841329],[116.440587,39.839653],[116.442323,39.843674],[116.446694,39.84426],[116.445983,39.848329],[116.450479,39.848704],[116.451148,39.852008],[116.460308,39.848622],[116.467794,39.856012],[116.463319,39.856224],[116.456062,39.86122],[116.454222,39.859381],[116.448178,39.863645],[116.446359,39.860862],[116.442971,39.866087],[116.44364,39.87284],[116.442574,39.87188],[116.423209,39.872824],[116.413652,39.871148],[116.41589,39.863645],[116.41246,39.858942],[116.406856,39.859967],[116.3955,39.858682],[116.394956,39.862734],[116.387888,39.867372],[116.380632,39.866054],[116.38059,39.871148],[116.35058,39.86869],[116.349472,39.873588],[116.344286,39.873653],[116.341567,39.876159],[116.335273,39.875183],[116.326636,39.876859],[116.321324,39.875199],[116.320759,39.881512],[116.32582,39.891111],[116.325799,39.896789],[116.314026,39.896772],[116.302796,39.891925],[116.295016,39.886833],[116.294975,39.896496],[116.266199,39.896252],[116.259089,39.896658]]]]}},{"type":"Feature","properties":{"adcode":110107,"name":"石景山区","center":[116.195445,39.914601],"centroid":[116.176229,39.933205],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":4,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.167033,39.888752],[116.179099,39.882684],[116.19035,39.881529],[116.199426,39.883286],[116.20457,39.879885],[116.208126,39.874125],[116.212099,39.874679],[116.210907,39.878079],[116.219105,39.876713],[116.219523,39.881334],[116.222952,39.883986],[116.22772,39.883839],[116.227783,39.889078],[116.234642,39.88955],[116.233534,39.89212],[116.252899,39.896382],[116.259089,39.896658],[116.252983,39.896951],[116.252983,39.915558],[116.250975,39.919834],[116.237696,39.918452],[116.232426,39.91694],[116.230899,39.919525],[116.206787,39.916663],[116.207707,39.9259],[116.215696,39.927103],[116.213061,39.928891],[116.216198,39.931233],[116.213186,39.933232],[116.216281,39.936386],[116.215466,39.94375],[116.212831,39.948952],[116.20112,39.961109],[116.190747,39.965367],[116.190685,39.968259],[116.185812,39.970274],[116.18531,39.977976],[116.186586,39.983906],[116.178911,39.988292],[116.178012,39.982216],[116.171487,39.977001],[116.169229,39.979357],[116.166845,39.987561],[116.158124,39.984133],[116.156117,39.989137],[116.151579,39.993442],[116.144678,39.989186],[116.118934,39.986115],[116.113455,39.981518],[116.116592,39.971932],[116.122971,39.967561],[116.120712,39.96119],[116.115254,39.957745],[116.120043,39.950789],[116.114522,39.949196],[116.11195,39.942921],[116.119875,39.932761],[116.124769,39.934907],[116.127822,39.930338],[116.127341,39.926615],[116.13029,39.924518],[116.139282,39.922095],[116.146852,39.910077],[116.152792,39.906629],[116.153503,39.900985],[116.161094,39.896805],[116.167033,39.888752]]]]}},{"type":"Feature","properties":{"adcode":110108,"name":"海淀区","center":[116.310316,39.956074],"centroid":[116.23328,40.026927],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":5,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.325799,39.896789],[116.337301,39.89739],[116.335356,39.898448],[116.334645,39.922664],[116.333056,39.938565],[116.327953,39.942369],[116.332889,39.944092],[116.341442,39.941979],[116.352421,39.943832],[116.352023,39.950854],[116.356206,39.944092],[116.371974,39.948594],[116.370384,39.967902],[116.380401,39.968178],[116.380903,39.972712],[116.381196,39.977976],[116.376554,39.992971],[116.350873,40.0267],[116.378708,40.031181],[116.395103,40.032854],[116.390251,40.036587],[116.390649,40.041279],[116.38519,40.042853],[116.376888,40.042756],[116.376114,40.045466],[116.36959,40.04696],[116.367394,40.053436],[116.372999,40.054344],[116.372267,40.05785],[116.379272,40.059002],[116.382848,40.061582],[116.381928,40.066402],[116.373354,40.065623],[116.372538,40.06843],[116.363149,40.068965],[116.363023,40.065931],[116.357293,40.066012],[116.34667,40.063659],[116.346963,40.06043],[116.342676,40.059635],[116.343366,40.055448],[116.340271,40.055091],[116.338828,40.058921],[116.330756,40.063383],[116.331801,40.057168],[116.325946,40.054799],[116.318292,40.061663],[116.309446,40.060609],[116.305995,40.063043],[116.302942,40.060803],[116.290353,40.083145],[116.279897,40.079754],[116.2731,40.092699],[116.27333,40.09557],[116.265237,40.094694],[116.258273,40.101522],[116.263899,40.10402],[116.263334,40.110588],[116.258022,40.11195],[116.25957,40.106907],[116.255868,40.104474],[116.252732,40.106517],[116.245956,40.10535],[116.240498,40.108009],[116.243363,40.113279],[116.241836,40.118403],[116.245036,40.118825],[116.247043,40.136204],[116.233785,40.136577],[116.215445,40.143174],[116.212224,40.140548],[116.206285,40.143092],[116.205658,40.150175],[116.203211,40.153773],[116.202166,40.160984],[116.194282,40.160076],[116.192065,40.155669],[116.182696,40.158099],[116.183094,40.153335],[116.180417,40.14729],[116.174122,40.143595],[116.167681,40.141844],[116.168622,40.135442],[116.17178,40.127936],[116.167409,40.128455],[116.169563,40.124564],[116.152708,40.121776],[116.132925,40.121354],[116.132214,40.115079],[116.127676,40.116393],[116.113309,40.115598],[116.105864,40.118014],[116.102246,40.115987],[116.096056,40.121257],[116.089783,40.119327],[116.08445,40.120252],[116.077883,40.115047],[116.073847,40.115436],[116.072676,40.109258],[116.069456,40.104912],[116.062931,40.10282],[116.061969,40.09956],[116.055905,40.09643],[116.051848,40.091661],[116.048878,40.085303],[116.051325,40.084345],[116.054587,40.07823],[116.064019,40.073022],[116.064981,40.067456],[116.071129,40.062037],[116.068055,40.051926],[116.075123,40.039915],[116.078176,40.032756],[116.084241,40.030905],[116.095073,40.031782],[116.098398,40.033811],[116.105488,40.032204],[116.114522,40.033],[116.123598,40.029655],[116.129558,40.0311],[116.140098,40.02873],[116.149278,40.022154],[116.157309,40.021034],[116.163938,40.016796],[116.164774,40.014328],[116.175335,40.006403],[116.172115,40.000637],[116.161658,39.999987],[116.154527,39.997275],[116.151579,39.993442],[116.156117,39.989137],[116.158124,39.984133],[116.166845,39.987561],[116.169229,39.979357],[116.171487,39.977001],[116.178012,39.982216],[116.178911,39.988292],[116.186586,39.983906],[116.18531,39.977976],[116.185812,39.970274],[116.190685,39.968259],[116.190747,39.965367],[116.20112,39.961109],[116.212831,39.948952],[116.215466,39.94375],[116.216281,39.936386],[116.213186,39.933232],[116.216198,39.931233],[116.213061,39.928891],[116.215696,39.927103],[116.207707,39.9259],[116.206787,39.916663],[116.230899,39.919525],[116.232426,39.91694],[116.237696,39.918452],[116.250975,39.919834],[116.252983,39.915558],[116.252983,39.896951],[116.259089,39.896658],[116.266199,39.896252],[116.294975,39.896496],[116.295016,39.886833],[116.302796,39.891925],[116.314026,39.896772],[116.325799,39.896789]]]]}},{"type":"Feature","properties":{"adcode":110109,"name":"门头沟区","center":[116.105381,39.937183],"centroid":[115.791698,39.994115],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":6,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.151579,39.993442],[116.154527,39.997275],[116.161658,39.999987],[116.172115,40.000637],[116.175335,40.006403],[116.164774,40.014328],[116.163938,40.016796],[116.157309,40.021034],[116.149278,40.022154],[116.140098,40.02873],[116.129558,40.0311],[116.123598,40.029655],[116.114522,40.033],[116.105488,40.032204],[116.098398,40.033811],[116.095073,40.031782],[116.084241,40.030905],[116.078176,40.032756],[116.075123,40.039915],[116.068055,40.051926],[116.071129,40.062037],[116.064981,40.067456],[116.064019,40.073022],[116.054587,40.07823],[116.051325,40.084345],[116.048878,40.085303],[116.043775,40.083502],[116.037899,40.084524],[116.033926,40.079657],[116.030914,40.082188],[116.020856,40.074579],[116.007785,40.080614],[116.005129,40.079803],[115.99735,40.082074],[115.986434,40.083469],[115.979993,40.081669],[115.977232,40.079041],[115.968575,40.075488],[115.966588,40.084556],[115.960461,40.092456],[115.962092,40.094419],[115.962552,40.10235],[115.957449,40.100679],[115.956717,40.096041],[115.952681,40.10102],[115.943229,40.103339],[115.947913,40.107409],[115.933588,40.124824],[115.921438,40.134485],[115.906549,40.138181],[115.904457,40.136123],[115.900442,40.138716],[115.8816,40.139073],[115.874155,40.14387],[115.870768,40.144276],[115.865184,40.148635],[115.856547,40.147468],[115.853348,40.149332],[115.846384,40.147096],[115.834234,40.15024],[115.83576,40.145426],[115.829047,40.149981],[115.822272,40.152606],[115.806567,40.153254],[115.802091,40.156754],[115.789837,40.168939],[115.78693,40.170414],[115.787014,40.178708],[115.773023,40.176197],[115.768213,40.165553],[115.762212,40.16262],[115.754328,40.163252],[115.749539,40.152995],[115.75485,40.145459],[115.749246,40.137711],[115.741111,40.132216],[115.734126,40.129379],[115.724841,40.128812],[115.715891,40.133383],[115.708697,40.134291],[115.699746,40.132394],[115.704765,40.129655],[115.711039,40.128941],[115.712064,40.126899],[115.702172,40.128196],[115.697216,40.12672],[115.693096,40.131924],[115.68699,40.13053],[115.681197,40.13267],[115.678667,40.130935],[115.657734,40.128098],[115.654806,40.131276],[115.64458,40.126639],[115.641882,40.120819],[115.643722,40.117511],[115.635943,40.115793],[115.631468,40.117852],[115.625048,40.116295],[115.621388,40.118711],[115.616223,40.117138],[115.606979,40.120057],[115.599116,40.120008],[115.59485,40.116279],[115.594432,40.108982],[115.592403,40.110182],[115.590709,40.096397],[115.584038,40.094889],[115.578538,40.096365],[115.576196,40.100825],[115.567769,40.096543],[115.563419,40.097922],[115.553736,40.091661],[115.555472,40.082626],[115.552168,40.079252],[115.544263,40.07591],[115.537885,40.077775],[115.527324,40.076072],[115.514944,40.066937],[115.509695,40.065477],[115.510427,40.062913],[115.500954,40.052478],[115.488323,40.046132],[115.488992,40.043746],[115.478557,40.036165],[115.468414,40.031896],[115.460656,40.032172],[115.454528,40.029704],[115.452082,40.02079],[115.442169,40.010885],[115.442817,40.007345],[115.449196,40.001985],[115.450346,39.993247],[115.443905,39.994644],[115.436815,39.991427],[115.428513,39.984328],[115.427635,39.979471],[115.423411,39.969819],[115.426924,39.965302],[115.423745,39.955697],[115.42615,39.95035],[115.43577,39.950919],[115.438468,39.95256],[115.444595,39.951358],[115.447042,39.948806],[115.452312,39.948188],[115.456787,39.944271],[115.464462,39.940142],[115.472387,39.93876],[115.48069,39.93585],[115.487277,39.923835],[115.494994,39.917948],[115.50386,39.915818],[115.52013,39.902547],[115.523016,39.898919],[115.509026,39.884164],[115.51003,39.88148],[115.516659,39.880406],[115.526299,39.875655],[115.529185,39.875948],[115.527345,39.869862],[115.521929,39.868186],[115.522368,39.858779],[115.515948,39.847678],[115.510992,39.84509],[115.514505,39.83835],[115.526509,39.835241],[115.530482,39.829916],[115.534957,39.830714],[115.546396,39.825992],[115.548027,39.822703],[115.563461,39.816417],[115.569274,39.813274],[115.577367,39.812541],[115.587322,39.813762],[115.59117,39.818534],[115.596649,39.821498],[115.599325,39.829151],[115.604533,39.834443],[115.607586,39.84089],[115.613086,39.843755],[115.616369,39.857542],[115.621973,39.863271],[115.623103,39.866949],[115.630987,39.871977],[115.640021,39.871554],[115.644705,39.875964],[115.648867,39.875411],[115.654869,39.882505],[115.667541,39.883888],[115.671055,39.88597],[115.678144,39.886556],[115.682556,39.893047],[115.68929,39.896187],[115.691779,39.8997],[115.709178,39.905117],[115.719592,39.904612],[115.721621,39.906824],[115.731261,39.907865],[115.74889,39.9152],[115.749622,39.917655],[115.76148,39.920989],[115.769385,39.925233],[115.774257,39.920599],[115.792848,39.920859],[115.797344,39.92216],[115.806839,39.919656],[115.811084,39.913785],[115.8188,39.913948],[115.826914,39.910581],[115.835112,39.899586],[115.838772,39.900644],[115.845255,39.897049],[115.860897,39.901359],[115.868321,39.905572],[115.87311,39.912484],[115.87884,39.915964],[115.890112,39.917281],[115.903935,39.914029],[115.927858,39.914257],[115.935868,39.917753],[115.941159,39.917509],[115.945697,39.910972],[115.944965,39.901847],[115.935805,39.898236],[115.921856,39.884164],[115.92744,39.876192],[115.949837,39.871278],[115.954145,39.866786],[115.961318,39.867877],[115.967822,39.872059],[115.968742,39.867714],[115.976563,39.868251],[115.97627,39.870497],[115.990177,39.876338],[115.997245,39.875167],[115.992875,39.867356],[115.986789,39.864703],[115.98817,39.859837],[115.98428,39.849111],[115.991285,39.840222],[116.00789,39.849469],[116.016694,39.849225],[116.018367,39.841525],[116.021023,39.840662],[116.030308,39.843462],[116.033089,39.845904],[116.04181,39.844878],[116.045825,39.84732],[116.05465,39.845953],[116.056553,39.85095],[116.070982,39.853717],[116.070188,39.860423],[116.067344,39.865761],[116.07046,39.868446],[116.078323,39.870318],[116.087169,39.866152],[116.095826,39.869032],[116.104149,39.868837],[116.105425,39.872547],[116.112242,39.873247],[116.119729,39.877477],[116.125898,39.877949],[116.13167,39.881268],[116.147605,39.885287],[116.150972,39.884051],[116.156137,39.889029],[116.163352,39.886881],[116.167033,39.888752],[116.161094,39.896805],[116.153503,39.900985],[116.152792,39.906629],[116.146852,39.910077],[116.139282,39.922095],[116.13029,39.924518],[116.127341,39.926615],[116.127822,39.930338],[116.124769,39.934907],[116.119875,39.932761],[116.11195,39.942921],[116.114522,39.949196],[116.120043,39.950789],[116.115254,39.957745],[116.120712,39.96119],[116.122971,39.967561],[116.116592,39.971932],[116.113455,39.981518],[116.118934,39.986115],[116.144678,39.989186],[116.151579,39.993442]]]]}},{"type":"Feature","properties":{"adcode":110111,"name":"房山区","center":[116.139157,39.735535],"centroid":[115.853966,39.719216],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":7,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.05465,39.845953],[116.045825,39.84732],[116.04181,39.844878],[116.033089,39.845904],[116.030308,39.843462],[116.021023,39.840662],[116.018367,39.841525],[116.016694,39.849225],[116.00789,39.849469],[115.991285,39.840222],[115.98428,39.849111],[115.98817,39.859837],[115.986789,39.864703],[115.992875,39.867356],[115.997245,39.875167],[115.990177,39.876338],[115.97627,39.870497],[115.976563,39.868251],[115.968742,39.867714],[115.967822,39.872059],[115.961318,39.867877],[115.954145,39.866786],[115.949837,39.871278],[115.92744,39.876192],[115.921856,39.884164],[115.935805,39.898236],[115.944965,39.901847],[115.945697,39.910972],[115.941159,39.917509],[115.935868,39.917753],[115.927858,39.914257],[115.903935,39.914029],[115.890112,39.917281],[115.87884,39.915964],[115.87311,39.912484],[115.868321,39.905572],[115.860897,39.901359],[115.845255,39.897049],[115.838772,39.900644],[115.835112,39.899586],[115.826914,39.910581],[115.8188,39.913948],[115.811084,39.913785],[115.806839,39.919656],[115.797344,39.92216],[115.792848,39.920859],[115.774257,39.920599],[115.769385,39.925233],[115.76148,39.920989],[115.749622,39.917655],[115.74889,39.9152],[115.731261,39.907865],[115.721621,39.906824],[115.719592,39.904612],[115.709178,39.905117],[115.691779,39.8997],[115.68929,39.896187],[115.682556,39.893047],[115.678144,39.886556],[115.671055,39.88597],[115.667541,39.883888],[115.654869,39.882505],[115.648867,39.875411],[115.644705,39.875964],[115.640021,39.871554],[115.630987,39.871977],[115.623103,39.866949],[115.621973,39.863271],[115.616369,39.857542],[115.613086,39.843755],[115.607586,39.84089],[115.604533,39.834443],[115.599325,39.829151],[115.596649,39.821498],[115.59117,39.818534],[115.587322,39.813762],[115.577367,39.812541],[115.569274,39.813274],[115.566367,39.809788],[115.566577,39.804609],[115.56229,39.803713],[115.554866,39.795601],[115.539432,39.794754],[115.536275,39.792131],[115.513815,39.788693],[115.508712,39.784082],[115.497336,39.791088],[115.49238,39.796057],[115.483241,39.798679],[115.475859,39.791821],[115.45777,39.782143],[115.452751,39.781964],[115.443382,39.785646],[115.434076,39.782274],[115.431169,39.775756],[115.425209,39.77336],[115.427029,39.769775],[115.430918,39.772073],[115.435414,39.769938],[115.434411,39.763859],[115.439158,39.752678],[115.457728,39.744918],[115.46672,39.740451],[115.470568,39.742391],[115.482321,39.742473],[115.492108,39.73887],[115.488866,39.733163],[115.491229,39.714719],[115.493404,39.707494],[115.490247,39.701409],[115.492631,39.701719],[115.49926,39.696189],[115.499783,39.691278],[115.496395,39.685665],[115.494408,39.686481],[115.488783,39.681619],[115.489724,39.678012],[115.486733,39.673362],[115.491334,39.668694],[115.482593,39.66303],[115.477971,39.654216],[115.478515,39.650331],[115.494659,39.649237],[115.496771,39.652551],[115.506705,39.652127],[115.511493,39.644388],[115.515864,39.641237],[115.522452,39.639964],[115.520423,39.633416],[115.521699,39.622311],[115.523414,39.620384],[115.514358,39.613508],[115.512121,39.605129],[115.515948,39.591193],[115.518834,39.593072],[115.518311,39.597156],[115.524229,39.598937],[115.530586,39.602874],[115.533891,39.608608],[115.533263,39.611434],[115.539119,39.616285],[115.545978,39.618751],[115.551875,39.614064],[115.55451,39.609408],[115.564569,39.605619],[115.567267,39.599623],[115.573875,39.596552],[115.571867,39.591569],[115.586109,39.589412],[115.592445,39.59665],[115.598719,39.597761],[115.599785,39.600865],[115.605285,39.600032],[115.6125,39.601126],[115.618439,39.604067],[115.625947,39.599394],[115.632555,39.597695],[115.634688,39.603871],[115.641589,39.603332],[115.643576,39.598937],[115.650268,39.600996],[115.657273,39.600081],[115.665304,39.605325],[115.667583,39.609637],[115.667479,39.615256],[115.673271,39.608526],[115.685317,39.603675],[115.68929,39.599035],[115.689269,39.592941],[115.694226,39.587778],[115.693431,39.580327],[115.697906,39.579248],[115.698596,39.570586],[115.694393,39.56941],[115.692072,39.565781],[115.698722,39.563248],[115.710161,39.563019],[115.717104,39.560403],[115.72022,39.554747],[115.7216,39.543499],[115.726953,39.543908],[115.726765,39.548143],[115.739124,39.545363],[115.73879,39.539314],[115.741487,39.536289],[115.743934,39.526771],[115.752508,39.515453],[115.759451,39.513916],[115.765328,39.514848],[115.768736,39.508878],[115.770828,39.510971],[115.767419,39.515862],[115.776537,39.512722],[115.777917,39.513834],[115.785006,39.51035],[115.792681,39.510742],[115.821456,39.509499],[115.828692,39.507045],[115.829487,39.512885],[115.822146,39.514145],[115.819762,39.518528],[115.824447,39.518774],[115.824112,39.522405],[115.819804,39.524923],[115.819219,39.530762],[115.822753,39.530533],[115.824321,39.534212],[115.828399,39.535455],[115.828692,39.541309],[115.84216,39.54157],[115.846028,39.543287],[115.847555,39.550284],[115.851361,39.550448],[115.855481,39.554993],[115.862026,39.548551],[115.866041,39.549843],[115.866355,39.546361],[115.872315,39.546099],[115.873298,39.548829],[115.88296,39.54811],[115.883587,39.551102],[115.887686,39.55066],[115.888752,39.555614],[115.89306,39.556219],[115.893416,39.561875],[115.890028,39.567873],[115.896009,39.569916],[115.907866,39.566876],[115.91276,39.572842],[115.911777,39.574182],[115.915604,39.582958],[115.908744,39.58402],[115.909665,39.588284],[115.9068,39.590016],[115.910187,39.600832],[115.912488,39.599149],[115.923759,39.597287],[115.924178,39.59384],[115.930221,39.593382],[115.929991,39.589935],[115.934174,39.588072],[115.934969,39.581814],[115.938105,39.581699],[115.937938,39.577467],[115.943187,39.577385],[115.943083,39.574672],[115.949147,39.573299],[115.950423,39.56637],[115.954982,39.566092],[115.957554,39.560927],[115.963409,39.565503],[115.967592,39.564604],[115.968909,39.570995],[115.974576,39.570832],[115.978153,39.572842],[115.977086,39.590931],[115.978445,39.595686],[115.990993,39.593791],[115.990721,39.586471],[115.996953,39.583203],[115.995196,39.577075],[116.007618,39.577205],[116.010588,39.583023],[116.013703,39.583039],[116.014038,39.588072],[116.020667,39.585981],[116.02623,39.587402],[116.024766,39.575604],[116.032859,39.574607],[116.032964,39.572302],[116.039237,39.571943],[116.098817,39.575146],[116.102016,39.576143],[116.101368,39.580049],[116.105801,39.576568],[116.106282,39.570979],[116.11379,39.570668],[116.116634,39.574002],[116.121465,39.574917],[116.121528,39.570554],[116.130311,39.569459],[116.130373,39.567743],[116.138425,39.568887],[116.13878,39.571044],[116.149613,39.573087],[116.151788,39.583415],[116.165527,39.583562],[116.176924,39.585899],[116.177071,39.590016],[116.184432,39.590915],[116.190768,39.589396],[116.19058,39.587386],[116.196854,39.588987],[116.196394,39.586095],[116.201726,39.586373],[116.206243,39.583219],[116.208105,39.577728],[116.221175,39.578921],[116.225085,39.584085],[116.226089,39.591993],[116.222597,39.593938],[116.223141,39.597222],[116.21808,39.608102],[116.219502,39.618931],[116.218875,39.628011],[116.215487,39.64305],[116.216992,39.651572],[116.223162,39.664728],[116.221342,39.667486],[116.22565,39.67359],[116.221238,39.678453],[116.230941,39.692355],[116.23435,39.703823],[116.231945,39.706025],[116.236629,39.71286],[116.245036,39.718421],[116.245768,39.72408],[116.248466,39.728027],[116.248026,39.732641],[116.243948,39.741658],[116.251895,39.749092],[116.252481,39.758676],[116.254426,39.76324],[116.252481,39.771747],[116.253777,39.77952],[116.251602,39.782518],[116.251519,39.793059],[116.250933,39.801432],[116.25361,39.807231],[116.251644,39.81329],[116.244304,39.818567],[116.243007,39.825145],[116.23962,39.826872],[116.228306,39.827197],[116.227219,39.825048],[116.214127,39.824706],[116.214462,39.818974],[116.216762,39.816905],[116.207415,39.810814],[116.208063,39.806352],[116.201852,39.799657],[116.201852,39.788269],[116.200388,39.778151],[116.194449,39.778493],[116.194407,39.780579],[116.188008,39.781785],[116.183365,39.780204],[116.182989,39.783707],[116.16971,39.784278],[116.162704,39.769205],[116.15597,39.766923],[116.148902,39.768651],[116.148044,39.766483],[116.133803,39.76663],[116.12847,39.762409],[116.121465,39.761626],[116.117491,39.77336],[116.121486,39.779047],[116.124351,39.77675],[116.127467,39.779047],[116.132569,39.778624],[116.131503,39.783121],[116.125062,39.785353],[116.120754,39.784848],[116.119792,39.789654],[116.106366,39.788612],[116.107014,39.78532],[116.101368,39.78576],[116.094613,39.781557],[116.091581,39.784082],[116.091916,39.787927],[116.0856,39.795324],[116.087127,39.803289],[116.084826,39.811596],[116.086186,39.816401],[116.089594,39.816352],[116.088214,39.82692],[116.089741,39.829721],[116.085747,39.832163],[116.084366,39.828581],[116.078615,39.831593],[116.07619,39.837015],[116.068975,39.840792],[116.061488,39.841899],[116.05465,39.845953]]]]}},{"type":"Feature","properties":{"adcode":110112,"name":"通州区","center":[116.658603,39.902486],"centroid":[116.733003,39.803506],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":8,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.725518,39.624075],[116.730202,39.622932],[116.730516,39.619143],[116.737877,39.61537],[116.744004,39.616824],[116.748689,39.619943],[116.762616,39.613819],[116.774202,39.605439],[116.774892,39.599166],[116.778196,39.593382],[116.785055,39.593497],[116.785474,39.596209],[116.790702,39.596045],[116.789384,39.602596],[116.792835,39.602155],[116.790012,39.610535],[116.802078,39.6123],[116.809711,39.614521],[116.81954,39.618996],[116.823994,39.617183],[116.82504,39.613884],[116.835391,39.617004],[116.834116,39.621495],[116.838445,39.62223],[116.826357,39.633122],[116.82893,39.635163],[116.826901,39.638217],[116.834555,39.641841],[116.833572,39.644127],[116.840766,39.644241],[116.839135,39.647523],[116.85141,39.652845],[116.849946,39.667552],[116.860486,39.667258],[116.863979,39.670391],[116.87318,39.671387],[116.883239,39.675352],[116.891144,39.67408],[116.906661,39.677425],[116.905197,39.681651],[116.909024,39.682859],[116.902896,39.690576],[116.88991,39.687656],[116.887819,39.690952],[116.89336,39.693187],[116.893841,39.695879],[116.886376,39.707004],[116.887108,39.714311],[116.8828,39.71847],[116.887589,39.725515],[116.89976,39.726168],[116.90229,39.729413],[116.911533,39.731516],[116.916678,39.731353],[116.916364,39.73587],[116.912934,39.73569],[116.910718,39.740989],[116.914461,39.741755],[116.913185,39.745962],[116.907163,39.75597],[116.901558,39.755204],[116.901809,39.763615],[116.908292,39.766711],[116.910613,39.762278],[116.920902,39.769107],[116.91649,39.775935],[116.921718,39.780628],[116.933784,39.781801],[116.939284,39.781361],[116.945788,39.777369],[116.94974,39.778542],[116.948004,39.785369],[116.953797,39.78607],[116.950828,39.791528],[116.938301,39.793124],[116.934809,39.801139],[116.942881,39.801677],[116.92979,39.811368],[116.92818,39.814153],[116.92887,39.820912],[116.9259,39.835403],[116.917431,39.846913],[116.910383,39.850608],[116.902813,39.848248],[116.902896,39.841346],[116.907581,39.834117],[116.903357,39.830682],[116.897501,39.832587],[116.885665,39.844585],[116.878304,39.84522],[116.878638,39.842257],[116.871507,39.842062],[116.866049,39.843902],[116.865505,39.846913],[116.85829,39.84846],[116.85254,39.859056],[116.847249,39.858616],[116.839407,39.865777],[116.836897,39.864736],[116.827277,39.877071],[116.823681,39.879137],[116.817009,39.878649],[116.81312,39.881301],[116.812304,39.889712],[116.80831,39.889631],[116.808247,39.884913],[116.804253,39.88488],[116.804148,39.877933],[116.794738,39.881252],[116.787084,39.886833],[116.7847,39.89142],[116.78424,39.902221],[116.78217,39.910419],[116.782358,39.928273],[116.78332,39.936045],[116.782567,39.947554],[116.78058,39.949716],[116.762826,39.956006],[116.757326,39.961483],[116.759605,39.969933],[116.766443,39.976351],[116.766757,39.982281],[116.775373,39.992759],[116.775749,40.002943],[116.770459,40.011632],[116.771755,40.014474],[116.764791,40.016049],[116.75329,40.015919],[116.751763,40.019962],[116.747037,40.021976],[116.747058,40.025385],[116.737145,40.02761],[116.732335,40.025109],[116.732043,40.022219],[116.724828,40.024265],[116.724221,40.021278],[116.719725,40.022512],[116.717383,40.019605],[116.716337,40.023762],[116.708621,40.026587],[116.703936,40.020141],[116.697244,40.016098],[116.685575,40.016569],[116.688378,40.00918],[116.686286,40.00827],[116.683777,40.014458],[116.678465,40.015058],[116.668615,40.013938],[116.664705,40.019037],[116.660125,40.021651],[116.655629,40.018566],[116.651676,40.021911],[116.651195,40.025759],[116.636159,40.019703],[116.633504,40.023664],[116.627063,40.021505],[116.624239,40.023664],[116.620099,40.022512],[116.619388,40.026733],[116.614139,40.028178],[116.614055,40.03175],[116.610061,40.031214],[116.602762,40.028503],[116.600839,40.018858],[116.595548,40.01751],[116.60132,40.013873],[116.61989,40.011794],[116.628129,40.007653],[116.625766,40.003122],[116.63273,39.999825],[116.637582,40.002359],[116.642684,39.996755],[116.643751,39.989608],[116.640321,39.990177],[116.639129,39.986879],[116.63365,39.986197],[116.634026,39.981696],[116.639819,39.982606],[116.641827,39.969575],[116.643081,39.952983],[116.645277,39.945977],[116.632228,39.950545],[116.630492,39.946156],[116.633441,39.940906],[116.629677,39.938727],[116.6293,39.931314],[116.624156,39.929981],[116.630576,39.921672],[116.620956,39.923103],[116.623006,39.913818],[116.620245,39.90767],[116.623361,39.904271],[116.621019,39.898854],[116.61531,39.895503],[116.615603,39.889794],[116.627585,39.890477],[116.628987,39.881594],[116.624323,39.881155],[116.62493,39.87725],[116.619994,39.868951],[116.626958,39.860683],[116.613449,39.850185],[116.604185,39.850071],[116.604666,39.846132],[116.608367,39.846539],[116.601905,39.840727],[116.60224,39.831675],[116.598977,39.831659],[116.599228,39.825585],[116.59147,39.826367],[116.591595,39.823875],[116.583732,39.824917],[116.587015,39.828223],[116.577479,39.827539],[116.577145,39.830682],[116.569386,39.833498],[116.558596,39.834687],[116.543664,39.835078],[116.542681,39.830209],[116.533187,39.832733],[116.538143,39.828207],[116.534944,39.82482],[116.539586,39.821563],[116.533375,39.819658],[116.540527,39.811857],[116.541678,39.803159],[116.535111,39.800146],[116.537537,39.796676],[116.530929,39.79174],[116.532894,39.786542],[116.538081,39.78128],[116.530092,39.778836],[116.536136,39.769873],[116.544647,39.772301],[116.545797,39.768732],[116.536491,39.768406],[116.539879,39.766255],[116.540423,39.761072],[116.528294,39.761463],[116.52363,39.769922],[116.520075,39.765782],[116.525178,39.762392],[116.523003,39.749678],[116.531159,39.747559],[116.527562,39.743304],[116.53624,39.740663],[116.537997,39.738071],[116.532413,39.73962],[116.531849,39.730016],[116.53783,39.728043],[116.536972,39.72152],[116.534609,39.718079],[116.52936,39.719808],[116.527332,39.716578],[116.53256,39.71529],[116.530552,39.713268],[116.535676,39.711881],[116.544961,39.715045],[116.573276,39.714507],[116.573464,39.709125],[116.579884,39.710234],[116.581202,39.712517],[116.590152,39.713349],[116.590194,39.711522],[116.598371,39.711963],[116.604017,39.714752],[116.604561,39.718731],[116.609141,39.719367],[116.616251,39.725581],[116.621876,39.725825],[116.621646,39.728076],[116.628129,39.727749],[116.631203,39.722971],[116.637623,39.723934],[116.638502,39.717166],[116.644587,39.709647],[116.652994,39.708619],[116.653098,39.703823],[116.647912,39.703579],[116.64626,39.700447],[116.647097,39.694786],[116.651509,39.694459],[116.651321,39.687868],[116.658097,39.686155],[116.65818,39.68857],[116.666566,39.687101],[116.669577,39.683642],[116.666022,39.679693],[116.668574,39.674602],[116.675203,39.676234],[116.680786,39.674896],[116.685554,39.676886],[116.692706,39.676789],[116.693543,39.674944],[116.703769,39.674145],[116.704857,39.667192],[116.702138,39.657644],[116.702891,39.649923],[116.70609,39.642903],[116.710419,39.639686],[116.716003,39.640356],[116.723489,39.639033],[116.721398,39.629415],[116.725518,39.624075]]]]}},{"type":"Feature","properties":{"adcode":110113,"name":"顺义区","center":[116.653525,40.128936],"centroid":[116.726467,40.152366],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":9,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.771755,40.014474],[116.777485,40.027204],[116.77782,40.032448],[116.781542,40.034818],[116.790221,40.034477],[116.789531,40.032318],[116.800259,40.028844],[116.803375,40.032155],[116.815295,40.030905],[116.82,40.028357],[116.820816,40.038779],[116.823158,40.039834],[116.822739,40.046473],[116.831732,40.048485],[116.831502,40.051196],[116.849486,40.051926],[116.850197,40.054977],[116.857809,40.051894],[116.867826,40.041863],[116.873619,40.041522],[116.88075,40.046164],[116.890265,40.04597],[116.90137,40.047723],[116.906431,40.051423],[116.914252,40.052592],[116.917974,40.044704],[116.924164,40.047463],[116.928096,40.054929],[116.931693,40.052024],[116.938824,40.050887],[116.937632,40.046911],[116.945014,40.048631],[116.945265,40.041425],[116.961932,40.051358],[116.962288,40.063529],[116.970652,40.063805],[116.973476,40.066304],[116.978599,40.064893],[116.980816,40.071188],[116.982844,40.070685],[116.986274,40.078359],[116.981192,40.08149],[116.981862,40.089828],[116.979938,40.093867],[116.975462,40.095051],[116.967976,40.101214],[116.973329,40.103712],[116.976069,40.111188],[116.971301,40.114009],[116.969189,40.118776],[116.971594,40.124224],[116.96578,40.127823],[116.967829,40.129849],[116.970025,40.140321],[116.977763,40.151374],[116.972054,40.156301],[116.968749,40.163495],[116.961242,40.171937],[116.962037,40.175549],[116.951371,40.174788],[116.945349,40.1813],[116.945809,40.186224],[116.94997,40.186354],[116.945913,40.193141],[116.939556,40.192347],[116.930898,40.207084],[116.929685,40.211585],[116.938029,40.210549],[116.940978,40.223922],[116.935206,40.229847],[116.931065,40.230624],[116.92544,40.225768],[116.922031,40.220134],[116.915507,40.222271],[116.913917,40.220118],[116.908606,40.222401],[116.906598,40.228682],[116.900701,40.228763],[116.893946,40.233457],[116.901746,40.23684],[116.894343,40.240028],[116.892252,40.245709],[116.886585,40.251907],[116.886104,40.255256],[116.881273,40.259221],[116.879893,40.264139],[116.874247,40.268281],[116.876338,40.274348],[116.871737,40.281481],[116.871319,40.290943],[116.859462,40.290878],[116.857182,40.2929],[116.854547,40.303152],[116.848984,40.311204],[116.838382,40.310185],[116.828992,40.304413],[116.830101,40.299206],[116.827215,40.298333],[116.82458,40.290991],[116.825123,40.285347],[116.811823,40.282387],[116.809607,40.28601],[116.800572,40.289196],[116.794487,40.287417],[116.788025,40.289439],[116.787795,40.281449],[116.784073,40.279443],[116.782964,40.273248],[116.773512,40.269527],[116.771651,40.266501],[116.768597,40.270109],[116.762658,40.269058],[116.752788,40.275512],[116.74298,40.279087],[116.738337,40.278764],[116.741098,40.283001],[116.738965,40.284101],[116.738421,40.284392],[116.710837,40.256227],[116.704668,40.257101],[116.704585,40.251551],[116.696554,40.248072],[116.697265,40.243216],[116.69072,40.240886],[116.684007,40.234282],[116.678131,40.234379],[116.676311,40.238604],[116.670247,40.234865],[116.668783,40.238539],[116.673321,40.246777],[116.669494,40.253153],[116.666901,40.262085],[116.648519,40.260143],[116.643081,40.25715],[116.641492,40.259463],[116.637038,40.25846],[116.63526,40.261454],[116.623654,40.26058],[116.6238,40.252667],[116.622044,40.250467],[116.61324,40.251761],[116.603787,40.251324],[116.604624,40.256146],[116.600755,40.258978],[116.599647,40.265385],[116.590842,40.264139],[116.588396,40.269462],[116.585238,40.266226],[116.58254,40.268362],[116.570202,40.268863],[116.570516,40.273102],[116.565371,40.273377],[116.566187,40.27802],[116.552176,40.27383],[116.546236,40.276224],[116.540904,40.274946],[116.53693,40.277178],[116.540088,40.267165],[116.535717,40.261373],[116.526181,40.261324],[116.523965,40.257522],[116.509201,40.258056],[116.505959,40.261356],[116.503011,40.25969],[116.501024,40.251599],[116.493705,40.251179],[116.482098,40.245385],[116.481094,40.238248],[116.483771,40.225185],[116.477979,40.225201],[116.473712,40.221203],[116.472249,40.205092],[116.484503,40.196493],[116.488016,40.191796],[116.487975,40.184686],[116.490129,40.181316],[116.485151,40.176764],[116.483332,40.171742],[116.480802,40.171937],[116.476912,40.163576],[116.477916,40.159979],[116.484629,40.160465],[116.492303,40.156981],[116.490777,40.148992],[116.480781,40.14742],[116.482307,40.140629],[116.484754,40.140078],[116.487222,40.124678],[116.492199,40.111561],[116.489292,40.101668],[116.480885,40.096965],[116.473357,40.097516],[116.466498,40.094954],[116.466832,40.090185],[116.471015,40.08939],[116.473545,40.085562],[116.482935,40.083745],[116.486657,40.081036],[116.49933,40.080387],[116.506775,40.074352],[116.513948,40.070426],[116.525993,40.071334],[116.534379,40.066791],[116.543183,40.059408],[116.547784,40.062718],[116.551757,40.059765],[116.578149,40.076461],[116.574322,40.096138],[116.574071,40.107815],[116.578316,40.102739],[116.580365,40.088352],[116.595903,40.090218],[116.598705,40.09351],[116.598392,40.103874],[116.602909,40.093883],[116.603473,40.086811],[116.608409,40.054912],[116.603683,40.052949],[116.610061,40.031214],[116.614055,40.03175],[116.614139,40.028178],[116.619388,40.026733],[116.620099,40.022512],[116.624239,40.023664],[116.627063,40.021505],[116.633504,40.023664],[116.636159,40.019703],[116.651195,40.025759],[116.651676,40.021911],[116.655629,40.018566],[116.660125,40.021651],[116.664705,40.019037],[116.668615,40.013938],[116.678465,40.015058],[116.683777,40.014458],[116.686286,40.00827],[116.688378,40.00918],[116.685575,40.016569],[116.697244,40.016098],[116.703936,40.020141],[116.708621,40.026587],[116.716337,40.023762],[116.717383,40.019605],[116.719725,40.022512],[116.724221,40.021278],[116.724828,40.024265],[116.732043,40.022219],[116.732335,40.025109],[116.737145,40.02761],[116.747058,40.025385],[116.747037,40.021976],[116.751763,40.019962],[116.75329,40.015919],[116.764791,40.016049],[116.771755,40.014474]]],[[[116.578149,40.076461],[116.551757,40.059765],[116.552761,40.05488],[116.54655,40.048956],[116.550753,40.045499],[116.564242,40.039655],[116.570474,40.032431],[116.578797,40.033097],[116.577814,40.027512],[116.595548,40.01751],[116.600839,40.018858],[116.602762,40.028503],[116.610061,40.031214],[116.603683,40.052949],[116.598517,40.052543],[116.601633,40.047658],[116.599417,40.047171],[116.599814,40.041408],[116.591993,40.043129],[116.591198,40.051796],[116.587957,40.05053],[116.590131,40.056162],[116.586597,40.074336],[116.58139,40.073817],[116.581411,40.067846],[116.578149,40.076461]]]]}},{"type":"Feature","properties":{"adcode":110114,"name":"昌平区","center":[116.235906,40.218085],"centroid":[116.210616,40.215484],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":10,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.390649,40.041279],[116.39297,40.041733],[116.395333,40.036766],[116.405266,40.038974],[116.408884,40.043291],[116.406124,40.049768],[116.409595,40.055626],[116.415618,40.056],[116.433268,40.06228],[116.442867,40.061323],[116.451629,40.058759],[116.45142,40.06129],[116.459408,40.059992],[116.462127,40.06731],[116.458635,40.070377],[116.458823,40.075796],[116.462608,40.076786],[116.461855,40.080825],[116.466247,40.08235],[116.466832,40.090185],[116.466498,40.094954],[116.473357,40.097516],[116.480885,40.096965],[116.489292,40.101668],[116.492199,40.111561],[116.487222,40.124678],[116.484754,40.140078],[116.482307,40.140629],[116.480781,40.14742],[116.490777,40.148992],[116.492303,40.156981],[116.484629,40.160465],[116.477916,40.159979],[116.476912,40.163576],[116.480802,40.171937],[116.483332,40.171742],[116.485151,40.176764],[116.490129,40.181316],[116.487975,40.184686],[116.488016,40.191796],[116.484503,40.196493],[116.472249,40.205092],[116.473712,40.221203],[116.477979,40.225201],[116.483771,40.225185],[116.481094,40.238248],[116.482098,40.245385],[116.493705,40.251179],[116.501024,40.251599],[116.503011,40.25969],[116.505959,40.261356],[116.501839,40.262974],[116.493245,40.262489],[116.484273,40.267634],[116.484001,40.2759],[116.478794,40.280025],[116.472081,40.280122],[116.469634,40.283001],[116.460308,40.28711],[116.45533,40.284845],[116.449412,40.286722],[116.45096,40.293045],[116.448011,40.300484],[116.443766,40.302457],[116.44822,40.305982],[116.455184,40.316345],[116.449182,40.32113],[116.443745,40.322682],[116.438245,40.333221],[116.43423,40.329116],[116.427914,40.329213],[116.424359,40.331265],[116.417061,40.329843],[116.408989,40.333205],[116.408633,40.334886],[116.396358,40.334853],[116.391422,40.338393],[116.384563,40.339055],[116.375069,40.337375],[116.376135,40.334352],[116.365909,40.331702],[116.368231,40.334805],[116.369903,40.342401],[116.364508,40.349107],[116.367101,40.350351],[116.369673,40.356362],[116.363923,40.359028],[116.355641,40.356814],[116.348866,40.356427],[116.352797,40.364391],[116.357356,40.364084],[116.360033,40.366815],[116.355369,40.37137],[116.34506,40.373163],[116.337364,40.379769],[116.32398,40.387295],[116.32078,40.386859],[116.313106,40.389459],[116.302691,40.387473],[116.295581,40.384437],[116.293762,40.392415],[116.289872,40.391672],[116.290729,40.383177],[116.282845,40.375263],[116.270863,40.382693],[116.261264,40.380561],[116.258336,40.383193],[116.25338,40.381239],[116.252104,40.376297],[116.247796,40.374471],[116.24353,40.379818],[116.241962,40.377508],[116.23665,40.377427],[116.23184,40.374988],[116.226989,40.38111],[116.222221,40.382111],[116.211451,40.381756],[116.209129,40.376232],[116.192985,40.372775],[116.180354,40.367687],[116.177154,40.370934],[116.170713,40.369351],[116.168789,40.366718],[116.159295,40.366265],[116.148233,40.361807],[116.148651,40.35696],[116.145514,40.351046],[116.1507,40.349252],[116.155677,40.344906],[116.152603,40.337714],[116.144719,40.336631],[116.147543,40.340655],[116.144782,40.348541],[116.138404,40.345229],[116.140809,40.343047],[116.137567,40.340769],[116.137651,40.336534],[116.143904,40.336082],[116.13809,40.330974],[116.138383,40.324671],[116.141959,40.316879],[116.132737,40.31198],[116.122385,40.312805],[116.116237,40.321955],[116.116634,40.323668],[116.110381,40.330813],[116.102978,40.331524],[116.098649,40.330005],[116.086353,40.330813],[116.083342,40.33571],[116.077716,40.339346],[116.073429,40.339831],[116.06841,40.336971],[116.061802,40.336809],[116.053353,40.326853],[116.056971,40.322181],[116.051116,40.315812],[116.042479,40.316846],[116.040095,40.312724],[116.031144,40.312352],[116.026167,40.320484],[116.026481,40.324283],[116.01684,40.33466],[116.007597,40.33314],[115.999065,40.325463],[115.993398,40.328986],[115.982711,40.324202],[115.979658,40.320532],[115.973259,40.318997],[115.976417,40.311511],[115.975538,40.308698],[115.987919,40.303799],[115.990323,40.299498],[115.982732,40.297977],[115.978675,40.289633],[115.981227,40.28525],[115.978822,40.281627],[115.981812,40.276903],[115.976396,40.270983],[115.967006,40.265612],[115.968888,40.264269],[115.965605,40.259415],[115.960001,40.256648],[115.950276,40.256163],[115.942706,40.253557],[115.935826,40.25558],[115.916984,40.247068],[115.916628,40.242391],[115.911965,40.234477],[115.906695,40.23412],[115.898079,40.236419],[115.898476,40.234509],[115.891994,40.228147],[115.891366,40.225379],[115.883106,40.216119],[115.885072,40.212039],[115.883169,40.209594],[115.886326,40.206663],[115.877313,40.200849],[115.87633,40.193918],[115.873695,40.192687],[115.870308,40.186079],[115.863072,40.186095],[115.855502,40.188865],[115.848099,40.183843],[115.854205,40.179939],[115.846865,40.169458],[115.844418,40.168016],[115.84676,40.163171],[115.853557,40.154162],[115.853348,40.149332],[115.856547,40.147468],[115.865184,40.148635],[115.870768,40.144276],[115.874155,40.14387],[115.8816,40.139073],[115.900442,40.138716],[115.904457,40.136123],[115.906549,40.138181],[115.921438,40.134485],[115.933588,40.124824],[115.947913,40.107409],[115.943229,40.103339],[115.952681,40.10102],[115.956717,40.096041],[115.957449,40.100679],[115.962552,40.10235],[115.962092,40.094419],[115.960461,40.092456],[115.966588,40.084556],[115.968575,40.075488],[115.977232,40.079041],[115.979993,40.081669],[115.986434,40.083469],[115.99735,40.082074],[116.005129,40.079803],[116.007785,40.080614],[116.020856,40.074579],[116.030914,40.082188],[116.033926,40.079657],[116.037899,40.084524],[116.043775,40.083502],[116.048878,40.085303],[116.051848,40.091661],[116.055905,40.09643],[116.061969,40.09956],[116.062931,40.10282],[116.069456,40.104912],[116.072676,40.109258],[116.073847,40.115436],[116.077883,40.115047],[116.08445,40.120252],[116.089783,40.119327],[116.096056,40.121257],[116.102246,40.115987],[116.105864,40.118014],[116.113309,40.115598],[116.127676,40.116393],[116.132214,40.115079],[116.132925,40.121354],[116.152708,40.121776],[116.169563,40.124564],[116.167409,40.128455],[116.17178,40.127936],[116.168622,40.135442],[116.167681,40.141844],[116.174122,40.143595],[116.180417,40.14729],[116.183094,40.153335],[116.182696,40.158099],[116.192065,40.155669],[116.194282,40.160076],[116.202166,40.160984],[116.203211,40.153773],[116.205658,40.150175],[116.206285,40.143092],[116.212224,40.140548],[116.215445,40.143174],[116.233785,40.136577],[116.247043,40.136204],[116.245036,40.118825],[116.241836,40.118403],[116.243363,40.113279],[116.240498,40.108009],[116.245956,40.10535],[116.252732,40.106517],[116.255868,40.104474],[116.25957,40.106907],[116.258022,40.11195],[116.263334,40.110588],[116.263899,40.10402],[116.258273,40.101522],[116.265237,40.094694],[116.27333,40.09557],[116.2731,40.092699],[116.279897,40.079754],[116.290353,40.083145],[116.302942,40.060803],[116.305995,40.063043],[116.309446,40.060609],[116.318292,40.061663],[116.325946,40.054799],[116.331801,40.057168],[116.330756,40.063383],[116.338828,40.058921],[116.340271,40.055091],[116.343366,40.055448],[116.342676,40.059635],[116.346963,40.06043],[116.34667,40.063659],[116.357293,40.066012],[116.363023,40.065931],[116.363149,40.068965],[116.372538,40.06843],[116.373354,40.065623],[116.381928,40.066402],[116.382848,40.061582],[116.379272,40.059002],[116.372267,40.05785],[116.372999,40.054344],[116.367394,40.053436],[116.36959,40.04696],[116.376114,40.045466],[116.376888,40.042756],[116.38519,40.042853],[116.390649,40.041279]]]]}},{"type":"Feature","properties":{"adcode":110115,"name":"大兴区","center":[116.338033,39.728908],"centroid":[116.418968,39.647838],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":11,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.725518,39.624075],[116.721398,39.629415],[116.723489,39.639033],[116.716003,39.640356],[116.710419,39.639686],[116.70609,39.642903],[116.702891,39.649923],[116.702138,39.657644],[116.704857,39.667192],[116.703769,39.674145],[116.693543,39.674944],[116.692706,39.676789],[116.685554,39.676886],[116.680786,39.674896],[116.675203,39.676234],[116.668574,39.674602],[116.666022,39.679693],[116.669577,39.683642],[116.666566,39.687101],[116.65818,39.68857],[116.658097,39.686155],[116.651321,39.687868],[116.651509,39.694459],[116.647097,39.694786],[116.64626,39.700447],[116.647912,39.703579],[116.653098,39.703823],[116.652994,39.708619],[116.644587,39.709647],[116.638502,39.717166],[116.637623,39.723934],[116.631203,39.722971],[116.628129,39.727749],[116.621646,39.728076],[116.621876,39.725825],[116.616251,39.725581],[116.609141,39.719367],[116.604561,39.718731],[116.604017,39.714752],[116.598371,39.711963],[116.590194,39.711522],[116.590152,39.713349],[116.581202,39.712517],[116.579884,39.710234],[116.573464,39.709125],[116.573276,39.714507],[116.544961,39.715045],[116.535676,39.711881],[116.530552,39.713268],[116.53256,39.71529],[116.527332,39.716578],[116.52936,39.719808],[116.534609,39.718079],[116.536972,39.72152],[116.53783,39.728043],[116.531849,39.730016],[116.532413,39.73962],[116.537997,39.738071],[116.53624,39.740663],[116.527562,39.743304],[116.531159,39.747559],[116.523003,39.749678],[116.525178,39.762392],[116.520075,39.765782],[116.52363,39.769922],[116.528294,39.761463],[116.540423,39.761072],[116.539879,39.766255],[116.536491,39.768406],[116.545797,39.768732],[116.544647,39.772301],[116.536136,39.769873],[116.530092,39.778836],[116.538081,39.78128],[116.532894,39.786542],[116.530929,39.79174],[116.537537,39.796676],[116.535111,39.800146],[116.541678,39.803159],[116.540527,39.811857],[116.533375,39.819658],[116.539586,39.821563],[116.534944,39.82482],[116.525868,39.826904],[116.525366,39.829754],[116.516164,39.829835],[116.510602,39.827637],[116.510142,39.821449],[116.502801,39.819006],[116.505813,39.817866],[116.498201,39.8157],[116.495357,39.818795],[116.485632,39.816889],[116.485256,39.81272],[116.474256,39.809772],[116.468463,39.814511],[116.462775,39.815945],[116.452737,39.823012],[116.443912,39.82096],[116.44592,39.826692],[116.436677,39.827425],[116.43699,39.830649],[116.430068,39.830112],[116.425217,39.831903],[116.420072,39.826611],[116.415785,39.829428],[116.414426,39.824282],[116.418441,39.822915],[116.419759,39.815375],[116.41016,39.817052],[116.410013,39.811336],[116.415262,39.812525],[116.417772,39.81013],[116.422456,39.81044],[116.425719,39.805358],[116.429399,39.803583],[116.429274,39.794102],[116.421034,39.794134],[116.42024,39.787439],[116.396023,39.786738],[116.397905,39.781068],[116.398888,39.765864],[116.391903,39.765277],[116.390649,39.780465],[116.385609,39.778852],[116.379209,39.77939],[116.378478,39.785646],[116.367582,39.784962],[116.365742,39.794151],[116.368189,39.794819],[116.367039,39.79982],[116.356833,39.800471],[116.355704,39.805668],[116.341755,39.807589],[116.340124,39.802149],[116.328225,39.801416],[116.326824,39.798386],[116.322872,39.798386],[116.321784,39.783626],[116.317978,39.783447],[116.31068,39.772057],[116.307062,39.770085],[116.301541,39.774941],[116.295205,39.790958],[116.291148,39.793271],[116.296083,39.795568],[116.289182,39.795894],[116.287237,39.799103],[116.27423,39.796936],[116.262184,39.792782],[116.259298,39.797621],[116.251519,39.793059],[116.251602,39.782518],[116.253777,39.77952],[116.252481,39.771747],[116.254426,39.76324],[116.252481,39.758676],[116.251895,39.749092],[116.243948,39.741658],[116.248026,39.732641],[116.248466,39.728027],[116.245768,39.72408],[116.245036,39.718421],[116.236629,39.71286],[116.231945,39.706025],[116.23435,39.703823],[116.230941,39.692355],[116.221238,39.678453],[116.22565,39.67359],[116.221342,39.667486],[116.223162,39.664728],[116.216992,39.651572],[116.215487,39.64305],[116.218875,39.628011],[116.219502,39.618931],[116.21808,39.608102],[116.223141,39.597222],[116.222597,39.593938],[116.226089,39.591993],[116.225085,39.584085],[116.221175,39.578921],[116.225817,39.568151],[116.229373,39.565471],[116.236462,39.568396],[116.234684,39.563934],[116.240644,39.564098],[116.243007,39.55836],[116.246186,39.557167],[116.242505,39.552966],[116.246521,39.539788],[116.245601,39.53014],[116.248256,39.530271],[116.246479,39.525299],[116.24353,39.524236],[116.246709,39.520098],[116.245831,39.514897],[116.253861,39.510055],[116.25706,39.505491],[116.257939,39.500518],[116.269315,39.495495],[116.275631,39.495201],[116.279269,39.491306],[116.283201,39.493941],[116.305284,39.489179],[116.306957,39.485023],[116.312708,39.480556],[116.314779,39.476104],[116.319944,39.473436],[116.320048,39.468543],[116.325088,39.466153],[116.325611,39.462961],[116.334499,39.457019],[116.350162,39.45291],[116.351124,39.455529],[116.362187,39.454874],[116.367791,39.451633],[116.373563,39.452058],[116.388557,39.450732],[116.391903,39.452893],[116.399787,39.450044],[116.408947,39.450257],[116.425635,39.446885],[116.434397,39.442758],[116.437241,39.445951],[116.450353,39.448522],[116.450667,39.452648],[116.454682,39.453302],[116.453992,39.45751],[116.448638,39.465122],[116.448764,39.476284],[116.444059,39.47887],[116.444142,39.482192],[116.436258,39.482912],[116.433644,39.478183],[116.428333,39.476219],[116.425342,39.481259],[116.429964,39.481325],[116.427329,39.487788],[116.423544,39.485154],[116.412376,39.482077],[116.411582,39.485105],[116.415827,39.48823],[116.418504,39.496575],[116.422895,39.496608],[116.418734,39.506391],[116.40857,39.508011],[116.407253,39.512116],[116.40282,39.51439],[116.402652,39.526886],[116.405538,39.528194],[116.411247,39.524678],[116.421473,39.525103],[116.424046,39.522732],[116.423125,39.516337],[116.424631,39.509728],[116.431699,39.51053],[116.433017,39.507438],[116.443829,39.509875],[116.442741,39.516189],[116.440378,39.516271],[116.439876,39.523353],[116.437513,39.52651],[116.440985,39.527311],[116.45372,39.526477],[116.453846,39.528652],[116.464553,39.527638],[116.464595,39.531628],[116.468819,39.534359],[116.478188,39.535487],[116.47802,39.543205],[116.475134,39.545756],[116.470952,39.5546],[116.473378,39.553096],[116.48948,39.553472],[116.489773,39.550268],[116.508448,39.551053],[116.50805,39.560256],[116.510581,39.560502],[116.511564,39.565503],[116.519385,39.566484],[116.520389,39.57191],[116.527248,39.57294],[116.52614,39.577271],[116.520389,39.577156],[116.519699,39.581863],[116.52317,39.586242],[116.521267,39.590229],[116.525052,39.593807],[116.524446,39.596535],[116.530615,39.598774],[116.530866,39.596715],[116.541803,39.59348],[116.540883,39.60142],[116.544124,39.603609],[116.544187,39.596519],[116.549436,39.596143],[116.557132,39.601502],[116.562276,39.601714],[116.566605,39.604361],[116.566103,39.61114],[116.569637,39.61176],[116.565978,39.616138],[116.565936,39.61978],[116.579382,39.619666],[116.579194,39.623487],[116.591993,39.621299],[116.593561,39.618588],[116.600128,39.619649],[116.602177,39.624533],[116.607886,39.624696],[116.607781,39.619698],[116.611755,39.618882],[116.613177,39.613802],[116.616648,39.614096],[116.616857,39.607301],[116.620182,39.606893],[116.620517,39.601665],[116.628338,39.599558],[116.635407,39.599934],[116.635595,39.604818],[116.645549,39.60209],[116.646532,39.599117],[116.657678,39.60075],[116.6568,39.602776],[116.662384,39.60521],[116.670037,39.604916],[116.669975,39.603381],[116.6889,39.598496],[116.694087,39.601355],[116.696408,39.595392],[116.699127,39.595457],[116.700695,39.590964],[116.705108,39.587974],[116.727065,39.593055],[116.724953,39.598006],[116.718324,39.601077],[116.718282,39.603021],[116.702577,39.610421],[116.700737,39.62107],[116.705338,39.621462],[116.70929,39.618114],[116.716149,39.62156],[116.721858,39.621756],[116.725518,39.624075]]]]}},{"type":"Feature","properties":{"adcode":110116,"name":"怀柔区","center":[116.637122,40.324272],"centroid":[116.586079,40.63069],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":12,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.289872,40.391672],[116.293762,40.392415],[116.295581,40.384437],[116.302691,40.387473],[116.313106,40.389459],[116.32078,40.386859],[116.32398,40.387295],[116.337364,40.379769],[116.34506,40.373163],[116.355369,40.37137],[116.360033,40.366815],[116.357356,40.364084],[116.352797,40.364391],[116.348866,40.356427],[116.355641,40.356814],[116.363923,40.359028],[116.369673,40.356362],[116.367101,40.350351],[116.364508,40.349107],[116.369903,40.342401],[116.368231,40.334805],[116.365909,40.331702],[116.376135,40.334352],[116.375069,40.337375],[116.384563,40.339055],[116.391422,40.338393],[116.396358,40.334853],[116.408633,40.334886],[116.408989,40.333205],[116.417061,40.329843],[116.424359,40.331265],[116.427914,40.329213],[116.43423,40.329116],[116.438245,40.333221],[116.443745,40.322682],[116.449182,40.32113],[116.455184,40.316345],[116.44822,40.305982],[116.443766,40.302457],[116.448011,40.300484],[116.45096,40.293045],[116.449412,40.286722],[116.45533,40.284845],[116.460308,40.28711],[116.469634,40.283001],[116.472081,40.280122],[116.478794,40.280025],[116.484001,40.2759],[116.484273,40.267634],[116.493245,40.262489],[116.501839,40.262974],[116.505959,40.261356],[116.509201,40.258056],[116.523965,40.257522],[116.526181,40.261324],[116.535717,40.261373],[116.540088,40.267165],[116.53693,40.277178],[116.540904,40.274946],[116.546236,40.276224],[116.552176,40.27383],[116.566187,40.27802],[116.565371,40.273377],[116.570516,40.273102],[116.570202,40.268863],[116.58254,40.268362],[116.585238,40.266226],[116.588396,40.269462],[116.590842,40.264139],[116.599647,40.265385],[116.600755,40.258978],[116.604624,40.256146],[116.603787,40.251324],[116.61324,40.251761],[116.622044,40.250467],[116.6238,40.252667],[116.623654,40.26058],[116.63526,40.261454],[116.637038,40.25846],[116.641492,40.259463],[116.643081,40.25715],[116.648519,40.260143],[116.666901,40.262085],[116.669494,40.253153],[116.673321,40.246777],[116.668783,40.238539],[116.670247,40.234865],[116.676311,40.238604],[116.678131,40.234379],[116.684007,40.234282],[116.69072,40.240886],[116.697265,40.243216],[116.696554,40.248072],[116.704585,40.251551],[116.704668,40.257101],[116.710837,40.256227],[116.738421,40.284392],[116.738965,40.284101],[116.754461,40.303686],[116.756845,40.302586],[116.762888,40.310428],[116.773324,40.315973],[116.768639,40.317816],[116.762846,40.326707],[116.759689,40.326853],[116.758559,40.333884],[116.751491,40.335742],[116.744653,40.333706],[116.744046,40.339136],[116.73129,40.335031],[116.731185,40.339023],[116.722967,40.339152],[116.723887,40.344033],[116.727484,40.346522],[116.729031,40.355619],[116.725769,40.355619],[116.726773,40.361193],[116.718094,40.361338],[116.719872,40.369044],[116.714079,40.368608],[116.706509,40.373809],[116.707115,40.377007],[116.716254,40.384114],[116.711716,40.386908],[116.713849,40.395806],[116.713242,40.40157],[116.718512,40.402055],[116.723427,40.405316],[116.724389,40.409191],[116.728801,40.40982],[116.741139,40.414631],[116.733235,40.418312],[116.73244,40.420604],[116.72556,40.418053],[116.722339,40.423832],[116.723552,40.435065],[116.716421,40.441714],[116.72098,40.440988],[116.725811,40.443085],[116.719265,40.448636],[116.7196,40.455735],[116.723594,40.458542],[116.719223,40.460397],[116.716902,40.457074],[116.706174,40.459929],[116.698667,40.468043],[116.695571,40.466721],[116.693397,40.476108],[116.69348,40.481704],[116.704334,40.479043],[116.694149,40.485462],[116.693376,40.490783],[116.698353,40.493266],[116.699106,40.50444],[116.701071,40.510549],[116.711402,40.516465],[116.712239,40.522058],[116.717216,40.524798],[116.712573,40.529955],[116.706948,40.532582],[116.701469,40.539913],[116.702138,40.545456],[116.690699,40.549468],[116.68225,40.548904],[116.67698,40.554462],[116.665771,40.552432],[116.66872,40.557507],[116.682397,40.556766],[116.679636,40.562001],[116.686349,40.564497],[116.699336,40.563563],[116.709855,40.565512],[116.710503,40.568685],[116.71456,40.570682],[116.714351,40.58028],[116.708955,40.590054],[116.711611,40.59189],[116.708495,40.595206],[116.711235,40.600213],[116.705609,40.60303],[116.707993,40.606507],[116.70655,40.610998],[116.702598,40.612785],[116.697955,40.618402],[116.701322,40.621379],[116.704689,40.620076],[116.705128,40.626947],[116.70195,40.628444],[116.70149,40.632917],[116.712197,40.641268],[116.711151,40.648218],[116.712636,40.653896],[116.709855,40.662598],[116.714309,40.666104],[116.713221,40.669867],[116.714915,40.680014],[116.725413,40.68466],[116.725581,40.689114],[116.735807,40.69167],[116.74252,40.69593],[116.747518,40.697072],[116.748668,40.700544],[116.754963,40.702891],[116.756155,40.705687],[116.762867,40.706427],[116.769246,40.70281],[116.783989,40.700496],[116.787105,40.704482],[116.786687,40.7103],[116.789091,40.712454],[116.790472,40.728973],[116.786352,40.736026],[116.782818,40.747817],[116.780727,40.751512],[116.783759,40.757631],[116.793629,40.748267],[116.802977,40.745986],[116.810527,40.749118],[116.818662,40.75042],[116.826211,40.749343],[116.831795,40.751303],[116.840076,40.760682],[116.834785,40.770221],[116.850448,40.775006],[116.851264,40.778924],[116.856806,40.77955],[116.858039,40.78305],[116.867471,40.784559],[116.862577,40.792858],[116.871277,40.794785],[116.873326,40.798781],[116.878575,40.797545],[116.886961,40.801076],[116.880207,40.804367],[116.882172,40.814172],[116.876735,40.818456],[116.876171,40.8212],[116.870378,40.821601],[116.861448,40.825356],[116.860633,40.830457],[116.855425,40.835447],[116.848587,40.837147],[116.84819,40.839313],[116.839741,40.839024],[116.837775,40.841542],[116.831815,40.842585],[116.828009,40.841109],[116.823471,40.842681],[116.820732,40.848263],[116.813622,40.848423],[116.805947,40.840836],[116.802496,40.842392],[116.802413,40.851198],[116.796996,40.854886],[116.797226,40.860034],[116.776795,40.878376],[116.772362,40.87852],[116.769392,40.882961],[116.762135,40.880765],[116.758539,40.881983],[116.759501,40.889854],[116.750257,40.891665],[116.739759,40.896665],[116.730432,40.897771],[116.726145,40.901185],[116.723678,40.906313],[116.716881,40.910175],[116.713347,40.910431],[116.717111,40.921695],[116.722318,40.92743],[116.713891,40.929416],[116.712197,40.934846],[116.70722,40.934029],[116.702786,40.936512],[116.702368,40.940628],[116.696178,40.94452],[116.689298,40.951118],[116.687248,40.962551],[116.677921,40.970972],[116.677921,40.975983],[116.681267,40.980737],[116.685304,40.982641],[116.682543,40.986259],[116.683066,41.000486],[116.69095,41.007254],[116.690866,41.012982],[116.693836,41.013686],[116.698855,41.021253],[116.695739,41.025396],[116.69509,41.033265],[116.691347,41.037503],[116.692246,41.040813],[116.688629,41.044651],[116.682878,41.041789],[116.67698,41.042732],[116.673279,41.046378],[116.665207,41.046682],[116.657009,41.051303],[116.653914,41.05626],[116.647431,41.059393],[116.641158,41.058322],[116.637937,41.060497],[116.630848,41.0608],[116.624093,41.054437],[116.61646,41.053382],[116.617736,41.048649],[116.613491,41.040782],[116.614118,41.036096],[116.617589,41.034704],[116.621228,41.028978],[116.62288,41.020693],[116.621897,41.015749],[116.619179,41.01423],[116.614892,41.003574],[116.617067,40.998725],[116.614515,40.983314],[116.597764,40.97475],[116.589692,40.976703],[116.574928,40.986307],[116.569177,40.991636],[116.561231,40.993461],[116.558617,40.988627],[116.547826,40.988003],[116.541991,40.99026],[116.535634,40.988675],[116.533417,40.985698],[116.524718,40.981073],[116.519573,40.981569],[116.51629,40.975198],[116.504516,40.975919],[116.496737,40.978432],[116.493726,40.977919],[116.485612,40.982465],[116.47894,40.979104],[116.474193,40.978608],[116.464135,40.984498],[116.455519,40.980481],[116.451713,40.968667],[116.453302,40.964584],[116.447446,40.95384],[116.454829,40.949533],[116.455372,40.945433],[116.462315,40.935231],[116.461541,40.932684],[116.467209,40.931322],[116.468422,40.925091],[116.473608,40.91974],[116.477581,40.901746],[116.474047,40.896008],[116.464344,40.896329],[116.458676,40.900592],[116.45073,40.901345],[116.448492,40.899919],[116.436614,40.89939],[116.430905,40.903364],[116.418922,40.902339],[116.413715,40.899758],[116.404764,40.905736],[116.398533,40.906024],[116.396316,40.911264],[116.39274,40.913123],[116.384877,40.922848],[116.384019,40.928535],[116.379732,40.933228],[116.379941,40.935775],[116.370343,40.943655],[116.364801,40.942999],[116.358925,40.93608],[116.35012,40.936048],[116.339894,40.929416],[116.338828,40.925732],[116.334122,40.920829],[116.33544,40.910495],[116.334436,40.90463],[116.342236,40.899887],[116.344683,40.894694],[116.353864,40.887786],[116.360514,40.884885],[116.365972,40.880188],[116.366599,40.876645],[116.374881,40.871531],[116.38174,40.863465],[116.389707,40.861814],[116.391778,40.854838],[116.399306,40.850492],[116.406145,40.837933],[116.406458,40.833361],[116.414991,40.829318],[116.422477,40.822772],[116.436823,40.820735],[116.439897,40.815038],[116.440002,40.809133],[116.450981,40.801927],[116.452152,40.798059],[116.457233,40.7983],[116.461416,40.78854],[116.460663,40.78244],[116.465849,40.774525],[116.465452,40.772742],[116.471517,40.771233],[116.4803,40.771586],[116.485193,40.765179],[116.491404,40.7633],[116.495482,40.759735],[116.50025,40.760811],[116.502906,40.756635],[116.501819,40.746581],[116.506461,40.743432],[116.513697,40.741456],[116.509493,40.73548],[116.510748,40.72645],[116.506858,40.720039],[116.504119,40.720135],[116.503115,40.715893],[116.506064,40.710879],[116.501923,40.706796],[116.501066,40.70228],[116.502676,40.697361],[116.496653,40.696879],[116.488811,40.69196],[116.483374,40.679403],[116.487138,40.674338],[116.492826,40.673984],[116.501568,40.671186],[116.505938,40.673067],[116.513488,40.672344],[116.517273,40.665734],[116.520096,40.66411],[116.518381,40.660925],[116.527039,40.6584],[116.529507,40.654588],[116.540046,40.656679],[116.544103,40.653767],[116.545023,40.650116],[116.550335,40.647606],[116.551151,40.642828],[116.55389,40.642877],[116.563886,40.636908],[116.573903,40.63628],[116.574092,40.631678],[116.568989,40.625483],[116.561231,40.628557],[116.551674,40.625209],[116.545003,40.627076],[116.539294,40.625612],[116.538938,40.619673],[116.535634,40.615698],[116.532915,40.606459],[116.535948,40.59944],[116.530929,40.595883],[116.531577,40.59131],[116.525136,40.583002],[116.517796,40.579749],[116.513153,40.572792],[116.509577,40.57276],[116.505144,40.562581],[116.499999,40.560921],[116.496277,40.555106],[116.484587,40.552867],[116.479651,40.541396],[116.470617,40.535418],[116.467125,40.530068],[116.460956,40.524363],[116.46587,40.518802],[116.470345,40.518963],[116.476306,40.514192],[116.488581,40.515853],[116.492073,40.518093],[116.497762,40.518093],[116.500459,40.510904],[116.506398,40.508212],[116.51194,40.501135],[116.519155,40.496604],[116.519092,40.491799],[116.511543,40.486929],[116.508322,40.483172],[116.492157,40.481027],[116.487347,40.481737],[116.483541,40.484994],[116.468212,40.48493],[116.465577,40.48701],[116.457903,40.488445],[116.455937,40.480914],[116.443201,40.481801],[116.433142,40.478189],[116.420971,40.480301],[116.416664,40.483011],[116.413673,40.481527],[116.4065,40.481995],[116.393702,40.47256],[116.38609,40.475802],[116.387344,40.482043],[116.376825,40.485736],[116.378603,40.491525],[116.377537,40.49683],[116.369632,40.500312],[116.365909,40.499635],[116.357042,40.501941],[116.348636,40.499071],[116.34232,40.500457],[116.336653,40.498636],[116.330567,40.500748],[116.323227,40.500151],[116.31321,40.491799],[116.31022,40.491702],[116.303779,40.485817],[116.29717,40.486768],[116.291691,40.485317],[116.294786,40.47535],[116.301646,40.468108],[116.306853,40.466092],[116.300955,40.458429],[116.293824,40.452831],[116.294368,40.449975],[116.289788,40.440907],[116.290667,40.435856],[116.294452,40.429304],[116.296648,40.420701],[116.291942,40.416617],[116.289433,40.418021],[116.288513,40.413437],[116.291608,40.408448],[116.287864,40.404719],[116.289746,40.402539],[116.286003,40.396032],[116.289872,40.391672]]]]}},{"type":"Feature","properties":{"adcode":110117,"name":"平谷区","center":[117.112335,40.144783],"centroid":[117.145392,40.208997],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":13,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.961932,40.051358],[116.964902,40.047836],[116.969293,40.048583],[116.972095,40.036977],[116.985626,40.038828],[116.991837,40.036896],[117.00016,40.032253],[117.000683,40.029915],[117.011369,40.031246],[117.018061,40.030467],[117.020884,40.032448],[117.024836,40.03011],[117.023916,40.033746],[117.028517,40.033957],[117.027032,40.038828],[117.033159,40.04235],[117.038639,40.049378],[117.051437,40.051163],[117.053382,40.052884],[117.052022,40.059375],[117.061182,40.060105],[117.064382,40.062783],[117.070634,40.064179],[117.069652,40.06757],[117.081049,40.068819],[117.080986,40.065087],[117.085064,40.068592],[117.085608,40.075131],[117.103927,40.075585],[117.107775,40.071805],[117.119507,40.072421],[117.128896,40.06546],[117.139227,40.064049],[117.15625,40.069338],[117.160139,40.075553],[117.158466,40.077435],[117.172227,40.074157],[117.175593,40.071642],[117.183603,40.072081],[117.186426,40.076202],[117.181533,40.080095],[117.18538,40.083875],[117.189207,40.082853],[117.191842,40.072973],[117.198576,40.070101],[117.197572,40.067748],[117.205247,40.07028],[117.208175,40.076834],[117.203616,40.076704],[117.204285,40.079657],[117.213989,40.086243],[117.21104,40.090785],[117.211249,40.096608],[117.224487,40.094662],[117.224403,40.098619],[117.228606,40.100257],[117.229025,40.103533],[117.236009,40.108382],[117.238226,40.111755],[117.245357,40.113215],[117.249268,40.116474],[117.255541,40.113279],[117.260393,40.114155],[117.266834,40.112177],[117.269908,40.107198],[117.274362,40.105804],[117.276663,40.109307],[117.275659,40.113636],[117.285425,40.121322],[117.297094,40.118857],[117.297073,40.121273],[117.302991,40.125926],[117.307613,40.136982],[117.313761,40.139964],[117.318571,40.138522],[117.323276,40.14071],[117.33093,40.13575],[117.330617,40.133691],[117.349082,40.136528],[117.351404,40.139932],[117.35636,40.140904],[117.356883,40.145037],[117.350525,40.144827],[117.355272,40.148587],[117.351717,40.150564],[117.360626,40.156965],[117.357343,40.164273],[117.351111,40.171661],[117.353746,40.17367],[117.359413,40.173346],[117.364014,40.176683],[117.368844,40.17299],[117.372023,40.176538],[117.377021,40.176327],[117.381225,40.172455],[117.380597,40.17691],[117.393186,40.174901],[117.391618,40.177607],[117.401217,40.183617],[117.404751,40.183244],[117.4077,40.187504],[117.397704,40.192914],[117.388356,40.188249],[117.38409,40.187828],[117.384382,40.195278],[117.381455,40.194906],[117.379552,40.201319],[117.393145,40.203376],[117.385679,40.207894],[117.378443,40.21029],[117.377586,40.218612],[117.39373,40.221656],[117.390029,40.227969],[117.386829,40.227111],[117.373989,40.232777],[117.36027,40.23255],[117.355691,40.229556],[117.351613,40.229459],[117.348246,40.234574],[117.345464,40.234946],[117.343457,40.242909],[117.339881,40.246194],[117.342202,40.256502],[117.337622,40.263266],[117.337999,40.265903],[117.334005,40.285654],[117.331244,40.289665],[117.32336,40.284441],[117.316794,40.285104],[117.316835,40.281999],[117.304309,40.278181],[117.29632,40.2781],[117.292368,40.286236],[117.294647,40.290894],[117.293309,40.296748],[117.285739,40.302214],[117.274342,40.308552],[117.274697,40.314405],[117.271853,40.319853],[117.271288,40.325285],[117.274969,40.331944],[117.267127,40.335694],[117.259828,40.336195],[117.261125,40.338781],[117.257089,40.341463],[117.25437,40.351191],[117.254182,40.357105],[117.250188,40.358381],[117.247762,40.364101],[117.242283,40.369981],[117.237055,40.370627],[117.22618,40.369044],[117.223901,40.375538],[117.218527,40.377718],[117.211124,40.373825],[117.204536,40.373082],[117.199747,40.375861],[117.185799,40.377767],[117.179943,40.375021],[117.170491,40.374342],[117.16796,40.371467],[117.157609,40.374859],[117.155329,40.371402],[117.147466,40.369965],[117.142385,40.362824],[117.128122,40.358866],[117.125362,40.35641],[117.117457,40.353744],[117.100915,40.360546],[117.0946,40.358285],[117.085231,40.350432],[117.072705,40.345584],[117.072286,40.342999],[117.066933,40.342983],[117.060931,40.337795],[117.052817,40.337649],[117.048279,40.341528],[117.039266,40.340057],[117.032762,40.33752],[117.026133,40.338458],[117.020842,40.336179],[117.012686,40.32674],[117.01024,40.320726],[117.006998,40.319255],[117.007563,40.314599],[117.011306,40.307113],[117.002,40.299675],[117.004091,40.293918],[116.99834,40.29083],[116.990833,40.290603],[116.991042,40.287724],[116.983765,40.287886],[116.971343,40.281724],[116.970527,40.276531],[116.961995,40.273442],[116.960468,40.2704],[116.950953,40.261081],[116.954341,40.25715],[116.961786,40.252635],[116.969293,40.253962],[116.975881,40.249463],[116.974082,40.24456],[116.959924,40.23268],[116.956286,40.232615],[116.953567,40.236079],[116.946896,40.236095],[116.945641,40.233441],[116.936837,40.232259],[116.935206,40.229847],[116.940978,40.223922],[116.938029,40.210549],[116.929685,40.211585],[116.930898,40.207084],[116.939556,40.192347],[116.945913,40.193141],[116.94997,40.186354],[116.945809,40.186224],[116.945349,40.1813],[116.951371,40.174788],[116.962037,40.175549],[116.961242,40.171937],[116.968749,40.163495],[116.972054,40.156301],[116.977763,40.151374],[116.970025,40.140321],[116.967829,40.129849],[116.96578,40.127823],[116.971594,40.124224],[116.969189,40.118776],[116.971301,40.114009],[116.976069,40.111188],[116.973329,40.103712],[116.967976,40.101214],[116.975462,40.095051],[116.979938,40.093867],[116.981862,40.089828],[116.981192,40.08149],[116.986274,40.078359],[116.982844,40.070685],[116.980816,40.071188],[116.978599,40.064893],[116.973476,40.066304],[116.970652,40.063805],[116.962288,40.063529],[116.961932,40.051358]]]]}},{"type":"Feature","properties":{"adcode":110118,"name":"密云区","center":[116.843352,40.377362],"centroid":[116.995042,40.526881],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":14,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.223901,40.375538],[117.226661,40.378558],[117.229045,40.386843],[117.235382,40.389556],[117.23695,40.394078],[117.240694,40.394417],[117.240484,40.39763],[117.236616,40.400844],[117.237515,40.407786],[117.234085,40.417149],[117.243872,40.422848],[117.246737,40.426883],[117.257654,40.435372],[117.263342,40.442375],[117.252635,40.446038],[117.252154,40.450459],[117.243308,40.455428],[117.236532,40.456558],[117.233207,40.463204],[117.237243,40.468785],[117.230907,40.470463],[117.225783,40.47585],[117.22846,40.481301],[117.21792,40.494589],[117.212065,40.494685],[117.208426,40.498071],[117.208572,40.501102],[117.21449,40.50739],[117.212504,40.507906],[117.215013,40.513273],[117.219969,40.514321],[117.230405,40.511162],[117.239543,40.516723],[117.246821,40.511968],[117.255562,40.514934],[117.263133,40.513145],[117.264115,40.517271],[117.26146,40.51906],[117.255123,40.527973],[117.252007,40.53632],[117.247427,40.540236],[117.250606,40.542024],[117.24954,40.548179],[117.25964,40.552867],[117.268507,40.559842],[117.273191,40.561501],[117.279256,40.560342],[117.285592,40.565061],[117.299562,40.566801],[117.311837,40.578026],[117.325451,40.578155],[117.328442,40.575948],[117.334611,40.576464],[117.342767,40.581585],[117.350023,40.582197],[117.353014,40.578831],[117.365917,40.575965],[117.369221,40.57036],[117.375453,40.567799],[117.378422,40.56337],[117.389297,40.561244],[117.39465,40.567912],[117.400589,40.569345],[117.40358,40.574257],[117.413471,40.569893],[117.42123,40.569104],[117.429992,40.576126],[117.429804,40.579298],[117.423217,40.58144],[117.420623,40.590875],[117.421753,40.593178],[117.414747,40.600728],[117.412739,40.605123],[117.419954,40.617517],[117.430285,40.626014],[117.438002,40.625692],[117.442289,40.627977],[117.448876,40.62838],[117.45402,40.642844],[117.451448,40.646577],[117.456467,40.649167],[117.449106,40.651596],[117.462009,40.653076],[117.464309,40.648652],[117.467885,40.649521],[117.473093,40.644453],[117.475539,40.644421],[117.477986,40.635331],[117.486163,40.633496],[117.489948,40.636023],[117.500425,40.6362],[117.501972,40.644518],[117.505026,40.646142],[117.50283,40.653076],[117.513913,40.656196],[117.514583,40.660523],[117.502934,40.669674],[117.493357,40.67527],[117.484741,40.677087],[117.482399,40.679033],[117.471503,40.674338],[117.465188,40.673534],[117.453958,40.677618],[117.442226,40.676605],[117.437332,40.683599],[117.432711,40.681622],[117.426437,40.685304],[117.419348,40.68696],[117.414852,40.685947],[117.409226,40.687281],[117.397223,40.683776],[117.386996,40.684178],[117.378192,40.678808],[117.37058,40.679708],[117.359748,40.673919],[117.342411,40.673437],[117.336681,40.666956],[117.337622,40.664447],[117.331851,40.661504],[117.321164,40.658287],[117.290423,40.660185],[117.278608,40.664463],[117.278629,40.667551],[117.273401,40.670076],[117.267754,40.676669],[117.261397,40.681155],[117.256775,40.679467],[117.241635,40.676669],[117.234336,40.680577],[117.233207,40.683583],[117.218715,40.689484],[117.217335,40.69196],[117.210622,40.691976],[117.208405,40.694435],[117.202361,40.695577],[117.197802,40.694291],[117.193996,40.696268],[117.182453,40.697072],[117.180947,40.694082],[117.176639,40.693567],[117.169236,40.699097],[117.16474,40.699628],[117.159491,40.696332],[117.147571,40.698968],[117.142531,40.6972],[117.132493,40.698663],[117.128792,40.700913],[117.117792,40.700078],[117.110661,40.708243],[117.095144,40.705559],[117.086047,40.702055],[117.081153,40.702617],[117.076804,40.700029],[117.058338,40.70154],[117.054887,40.699804],[117.044494,40.700367],[117.036108,40.697265],[117.035585,40.694467],[117.031047,40.692136],[117.027848,40.694355],[117.018291,40.696011],[117.013418,40.694082],[117.005513,40.694853],[117.002481,40.697345],[116.990456,40.701203],[116.988177,40.703164],[116.979938,40.702826],[116.977533,40.705559],[116.969628,40.706362],[116.965111,40.709593],[116.96647,40.71525],[116.960134,40.721083],[116.946645,40.726916],[116.942714,40.729857],[116.940706,40.739786],[116.926548,40.744894],[116.923516,40.750596],[116.927908,40.757824],[116.923181,40.766897],[116.923391,40.773722],[116.904569,40.777286],[116.898589,40.77674],[116.895013,40.781733],[116.89495,40.790675],[116.896686,40.796438],[116.889073,40.798348],[116.886961,40.801076],[116.878575,40.797545],[116.873326,40.798781],[116.871277,40.794785],[116.862577,40.792858],[116.867471,40.784559],[116.858039,40.78305],[116.856806,40.77955],[116.851264,40.778924],[116.850448,40.775006],[116.834785,40.770221],[116.840076,40.760682],[116.831795,40.751303],[116.826211,40.749343],[116.818662,40.75042],[116.810527,40.749118],[116.802977,40.745986],[116.793629,40.748267],[116.783759,40.757631],[116.780727,40.751512],[116.782818,40.747817],[116.786352,40.736026],[116.790472,40.728973],[116.789091,40.712454],[116.786687,40.7103],[116.787105,40.704482],[116.783989,40.700496],[116.769246,40.70281],[116.762867,40.706427],[116.756155,40.705687],[116.754963,40.702891],[116.748668,40.700544],[116.747518,40.697072],[116.74252,40.69593],[116.735807,40.69167],[116.725581,40.689114],[116.725413,40.68466],[116.714915,40.680014],[116.713221,40.669867],[116.714309,40.666104],[116.709855,40.662598],[116.712636,40.653896],[116.711151,40.648218],[116.712197,40.641268],[116.70149,40.632917],[116.70195,40.628444],[116.705128,40.626947],[116.704689,40.620076],[116.701322,40.621379],[116.697955,40.618402],[116.702598,40.612785],[116.70655,40.610998],[116.707993,40.606507],[116.705609,40.60303],[116.711235,40.600213],[116.708495,40.595206],[116.711611,40.59189],[116.708955,40.590054],[116.714351,40.58028],[116.71456,40.570682],[116.710503,40.568685],[116.709855,40.565512],[116.699336,40.563563],[116.686349,40.564497],[116.679636,40.562001],[116.682397,40.556766],[116.66872,40.557507],[116.665771,40.552432],[116.67698,40.554462],[116.68225,40.548904],[116.690699,40.549468],[116.702138,40.545456],[116.701469,40.539913],[116.706948,40.532582],[116.712573,40.529955],[116.717216,40.524798],[116.712239,40.522058],[116.711402,40.516465],[116.701071,40.510549],[116.699106,40.50444],[116.698353,40.493266],[116.693376,40.490783],[116.694149,40.485462],[116.704334,40.479043],[116.69348,40.481704],[116.693397,40.476108],[116.695571,40.466721],[116.698667,40.468043],[116.706174,40.459929],[116.716902,40.457074],[116.719223,40.460397],[116.723594,40.458542],[116.7196,40.455735],[116.719265,40.448636],[116.725811,40.443085],[116.72098,40.440988],[116.716421,40.441714],[116.723552,40.435065],[116.722339,40.423832],[116.72556,40.418053],[116.73244,40.420604],[116.733235,40.418312],[116.741139,40.414631],[116.728801,40.40982],[116.724389,40.409191],[116.723427,40.405316],[116.718512,40.402055],[116.713242,40.40157],[116.713849,40.395806],[116.711716,40.386908],[116.716254,40.384114],[116.707115,40.377007],[116.706509,40.373809],[116.714079,40.368608],[116.719872,40.369044],[116.718094,40.361338],[116.726773,40.361193],[116.725769,40.355619],[116.729031,40.355619],[116.727484,40.346522],[116.723887,40.344033],[116.722967,40.339152],[116.731185,40.339023],[116.73129,40.335031],[116.744046,40.339136],[116.744653,40.333706],[116.751491,40.335742],[116.758559,40.333884],[116.759689,40.326853],[116.762846,40.326707],[116.768639,40.317816],[116.773324,40.315973],[116.762888,40.310428],[116.756845,40.302586],[116.754461,40.303686],[116.738965,40.284101],[116.741098,40.283001],[116.738337,40.278764],[116.74298,40.279087],[116.752788,40.275512],[116.762658,40.269058],[116.768597,40.270109],[116.771651,40.266501],[116.773512,40.269527],[116.782964,40.273248],[116.784073,40.279443],[116.787795,40.281449],[116.788025,40.289439],[116.794487,40.287417],[116.800572,40.289196],[116.809607,40.28601],[116.811823,40.282387],[116.825123,40.285347],[116.82458,40.290991],[116.827215,40.298333],[116.830101,40.299206],[116.828992,40.304413],[116.838382,40.310185],[116.848984,40.311204],[116.854547,40.303152],[116.857182,40.2929],[116.859462,40.290878],[116.871319,40.290943],[116.871737,40.281481],[116.876338,40.274348],[116.874247,40.268281],[116.879893,40.264139],[116.881273,40.259221],[116.886104,40.255256],[116.886585,40.251907],[116.892252,40.245709],[116.894343,40.240028],[116.901746,40.23684],[116.893946,40.233457],[116.900701,40.228763],[116.906598,40.228682],[116.908606,40.222401],[116.913917,40.220118],[116.915507,40.222271],[116.922031,40.220134],[116.92544,40.225768],[116.931065,40.230624],[116.935206,40.229847],[116.936837,40.232259],[116.945641,40.233441],[116.946896,40.236095],[116.953567,40.236079],[116.956286,40.232615],[116.959924,40.23268],[116.974082,40.24456],[116.975881,40.249463],[116.969293,40.253962],[116.961786,40.252635],[116.954341,40.25715],[116.950953,40.261081],[116.960468,40.2704],[116.961995,40.273442],[116.970527,40.276531],[116.971343,40.281724],[116.983765,40.287886],[116.991042,40.287724],[116.990833,40.290603],[116.99834,40.29083],[117.004091,40.293918],[117.002,40.299675],[117.011306,40.307113],[117.007563,40.314599],[117.006998,40.319255],[117.01024,40.320726],[117.012686,40.32674],[117.020842,40.336179],[117.026133,40.338458],[117.032762,40.33752],[117.039266,40.340057],[117.048279,40.341528],[117.052817,40.337649],[117.060931,40.337795],[117.066933,40.342983],[117.072286,40.342999],[117.072705,40.345584],[117.085231,40.350432],[117.0946,40.358285],[117.100915,40.360546],[117.117457,40.353744],[117.125362,40.35641],[117.128122,40.358866],[117.142385,40.362824],[117.147466,40.369965],[117.155329,40.371402],[117.157609,40.374859],[117.16796,40.371467],[117.170491,40.374342],[117.179943,40.375021],[117.185799,40.377767],[117.199747,40.375861],[117.204536,40.373082],[117.211124,40.373825],[117.218527,40.377718],[117.223901,40.375538]]]]}},{"type":"Feature","properties":{"adcode":110119,"name":"延庆区","center":[115.985006,40.465325],"centroid":[116.164004,40.540013],"childrenNum":0,"level":"district","parent":{"adcode":110000},"subFeatureIndex":15,"acroutes":[100000,110000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.967006,40.265612],[115.976396,40.270983],[115.981812,40.276903],[115.978822,40.281627],[115.981227,40.28525],[115.978675,40.289633],[115.982732,40.297977],[115.990323,40.299498],[115.987919,40.303799],[115.975538,40.308698],[115.976417,40.311511],[115.973259,40.318997],[115.979658,40.320532],[115.982711,40.324202],[115.993398,40.328986],[115.999065,40.325463],[116.007597,40.33314],[116.01684,40.33466],[116.026481,40.324283],[116.026167,40.320484],[116.031144,40.312352],[116.040095,40.312724],[116.042479,40.316846],[116.051116,40.315812],[116.056971,40.322181],[116.053353,40.326853],[116.061802,40.336809],[116.06841,40.336971],[116.073429,40.339831],[116.077716,40.339346],[116.083342,40.33571],[116.086353,40.330813],[116.098649,40.330005],[116.102978,40.331524],[116.110381,40.330813],[116.116634,40.323668],[116.116237,40.321955],[116.122385,40.312805],[116.132737,40.31198],[116.141959,40.316879],[116.138383,40.324671],[116.13809,40.330974],[116.143904,40.336082],[116.137651,40.336534],[116.137567,40.340769],[116.140809,40.343047],[116.138404,40.345229],[116.144782,40.348541],[116.147543,40.340655],[116.144719,40.336631],[116.152603,40.337714],[116.155677,40.344906],[116.1507,40.349252],[116.145514,40.351046],[116.148651,40.35696],[116.148233,40.361807],[116.159295,40.366265],[116.168789,40.366718],[116.170713,40.369351],[116.177154,40.370934],[116.180354,40.367687],[116.192985,40.372775],[116.209129,40.376232],[116.211451,40.381756],[116.222221,40.382111],[116.226989,40.38111],[116.23184,40.374988],[116.23665,40.377427],[116.241962,40.377508],[116.24353,40.379818],[116.247796,40.374471],[116.252104,40.376297],[116.25338,40.381239],[116.258336,40.383193],[116.261264,40.380561],[116.270863,40.382693],[116.282845,40.375263],[116.290729,40.383177],[116.289872,40.391672],[116.286003,40.396032],[116.289746,40.402539],[116.287864,40.404719],[116.291608,40.408448],[116.288513,40.413437],[116.289433,40.418021],[116.291942,40.416617],[116.296648,40.420701],[116.294452,40.429304],[116.290667,40.435856],[116.289788,40.440907],[116.294368,40.449975],[116.293824,40.452831],[116.300955,40.458429],[116.306853,40.466092],[116.301646,40.468108],[116.294786,40.47535],[116.291691,40.485317],[116.29717,40.486768],[116.303779,40.485817],[116.31022,40.491702],[116.31321,40.491799],[116.323227,40.500151],[116.330567,40.500748],[116.336653,40.498636],[116.34232,40.500457],[116.348636,40.499071],[116.357042,40.501941],[116.365909,40.499635],[116.369632,40.500312],[116.377537,40.49683],[116.378603,40.491525],[116.376825,40.485736],[116.387344,40.482043],[116.38609,40.475802],[116.393702,40.47256],[116.4065,40.481995],[116.413673,40.481527],[116.416664,40.483011],[116.420971,40.480301],[116.433142,40.478189],[116.443201,40.481801],[116.455937,40.480914],[116.457903,40.488445],[116.465577,40.48701],[116.468212,40.48493],[116.483541,40.484994],[116.487347,40.481737],[116.492157,40.481027],[116.508322,40.483172],[116.511543,40.486929],[116.519092,40.491799],[116.519155,40.496604],[116.51194,40.501135],[116.506398,40.508212],[116.500459,40.510904],[116.497762,40.518093],[116.492073,40.518093],[116.488581,40.515853],[116.476306,40.514192],[116.470345,40.518963],[116.46587,40.518802],[116.460956,40.524363],[116.467125,40.530068],[116.470617,40.535418],[116.479651,40.541396],[116.484587,40.552867],[116.496277,40.555106],[116.499999,40.560921],[116.505144,40.562581],[116.509577,40.57276],[116.513153,40.572792],[116.517796,40.579749],[116.525136,40.583002],[116.531577,40.59131],[116.530929,40.595883],[116.535948,40.59944],[116.532915,40.606459],[116.535634,40.615698],[116.538938,40.619673],[116.539294,40.625612],[116.545003,40.627076],[116.551674,40.625209],[116.561231,40.628557],[116.568989,40.625483],[116.574092,40.631678],[116.573903,40.63628],[116.563886,40.636908],[116.55389,40.642877],[116.551151,40.642828],[116.550335,40.647606],[116.545023,40.650116],[116.544103,40.653767],[116.540046,40.656679],[116.529507,40.654588],[116.527039,40.6584],[116.518381,40.660925],[116.520096,40.66411],[116.517273,40.665734],[116.513488,40.672344],[116.505938,40.673067],[116.501568,40.671186],[116.492826,40.673984],[116.487138,40.674338],[116.483374,40.679403],[116.488811,40.69196],[116.496653,40.696879],[116.502676,40.697361],[116.501066,40.70228],[116.501923,40.706796],[116.506064,40.710879],[116.503115,40.715893],[116.504119,40.720135],[116.506858,40.720039],[116.510748,40.72645],[116.509493,40.73548],[116.513697,40.741456],[116.506461,40.743432],[116.501819,40.746581],[116.502906,40.756635],[116.50025,40.760811],[116.495482,40.759735],[116.491404,40.7633],[116.485193,40.765179],[116.4803,40.771586],[116.471517,40.771233],[116.465452,40.772742],[116.45395,40.76587],[116.444414,40.76921],[116.437722,40.766865],[116.431846,40.768246],[116.424861,40.767443],[116.416496,40.76937],[116.4143,40.777912],[116.407838,40.780417],[116.403217,40.778635],[116.392635,40.778394],[116.379837,40.772325],[116.37097,40.772453],[116.367687,40.77088],[116.361204,40.772646],[116.353111,40.770221],[116.342947,40.773096],[116.33314,40.772694],[116.330149,40.77377],[116.31756,40.77218],[116.313168,40.770205],[116.30794,40.763734],[116.311119,40.75511],[116.30794,40.752122],[116.304762,40.755656],[116.29786,40.756812],[116.290918,40.763814],[116.281402,40.763926],[116.277366,40.76163],[116.273456,40.762883],[116.274167,40.766335],[116.26988,40.770703],[116.269587,40.777158],[116.261013,40.782938],[116.257834,40.787898],[116.247943,40.791831],[116.245224,40.78838],[116.235019,40.78313],[116.235625,40.775135],[116.231757,40.77149],[116.229979,40.762417],[116.23366,40.759896],[116.223308,40.753793],[116.220485,40.749183],[116.220359,40.744669],[116.213249,40.740139],[116.210551,40.741713],[116.204717,40.739946],[116.2057,40.733038],[116.197753,40.7269],[116.192274,40.724779],[116.184913,40.713675],[116.181128,40.712438],[116.177907,40.707889],[116.176213,40.700544],[116.171341,40.695979],[116.173683,40.689034],[116.171487,40.68167],[116.168413,40.67892],[116.167597,40.672633],[116.162683,40.662437],[116.151432,40.663338],[116.142858,40.666972],[116.13694,40.667648],[116.125229,40.654089],[116.113225,40.648845],[116.111531,40.646287],[116.112744,40.640946],[116.120419,40.633287],[116.122071,40.629989],[116.118349,40.627961],[116.1044,40.626996],[116.098879,40.630584],[116.088507,40.626626],[116.08583,40.623825],[116.076691,40.619883],[116.073492,40.612125],[116.069811,40.610258],[116.062722,40.610322],[116.058289,40.607006],[116.050907,40.606121],[116.04457,40.602032],[116.032357,40.599875],[116.030036,40.597364],[116.028509,40.607328],[116.025268,40.60654],[116.005109,40.584097],[115.996116,40.58392],[115.995238,40.579862],[115.982147,40.579008],[115.97512,40.590779],[115.971983,40.60237],[115.965877,40.601002],[115.967404,40.605896],[115.955107,40.609534],[115.948331,40.608809],[115.944672,40.611095],[115.935031,40.613316],[115.928297,40.612753],[115.920372,40.616632],[115.907803,40.617291],[115.897849,40.608101],[115.894733,40.606878],[115.888146,40.597026],[115.885406,40.595223],[115.867777,40.595786],[115.86623,40.593371],[115.854895,40.590151],[115.846175,40.593049],[115.827374,40.587027],[115.820662,40.568234],[115.82154,40.563305],[115.819804,40.559343],[115.815036,40.55741],[115.804915,40.55865],[115.79908,40.5577],[115.7922,40.561292],[115.784713,40.558376],[115.776327,40.552158],[115.773902,40.548582],[115.770179,40.548002],[115.763885,40.540574],[115.759577,40.538914],[115.75506,40.540042],[115.752968,40.536288],[115.755624,40.531019],[115.748702,40.526087],[115.743788,40.518464],[115.743098,40.513854],[115.73605,40.503988],[115.743077,40.494959],[115.744039,40.498249],[115.768088,40.498345],[115.774529,40.493911],[115.782204,40.492073],[115.776202,40.482704],[115.776683,40.477511],[115.771559,40.47285],[115.770367,40.46493],[115.772856,40.462301],[115.779527,40.464075],[115.7734,40.457397],[115.77547,40.45204],[115.77248,40.452831],[115.773546,40.44812],[115.77043,40.444166],[115.786679,40.437066],[115.78992,40.432483],[115.796884,40.432531],[115.796445,40.426834],[115.836555,40.38568],[115.837454,40.381255],[115.840633,40.381094],[115.846865,40.375085],[115.855962,40.37712],[115.861859,40.373422],[115.861922,40.364811],[115.85981,40.36213],[115.86441,40.36192],[115.864452,40.359335],[115.872754,40.359593],[115.876226,40.362146],[115.878066,40.359367],[115.883169,40.359545],[115.88526,40.357024],[115.890927,40.357897],[115.892997,40.355554],[115.909539,40.357622],[115.918301,40.35389],[115.920581,40.346473],[115.924094,40.341059],[115.921417,40.338668],[115.922881,40.332898],[115.92721,40.329601],[115.922672,40.325899],[115.926792,40.319611],[115.929239,40.32105],[115.935721,40.316717],[115.937185,40.313047],[115.943814,40.310945],[115.939757,40.304397],[115.945885,40.296199],[115.946115,40.289034],[115.950088,40.289228],[115.951698,40.282015],[115.955212,40.276984],[115.960231,40.274914],[115.961611,40.269219],[115.967006,40.265612]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"顺义区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.863170195313,40.2896681953126],[116.873267851563,40.2634804511719],[116.898316679688,40.2285353828125],[116.927345,40.223843],[116.934151640625,40.2196486640625],[116.927926054688,40.1996486640626],[116.944151640625,40.1896486640626],[116.940538359375,40.1780373359375],[116.970382109375,40.1596486640626],[116.960777617188,40.1288112617188],[116.973912382813,40.0888747382813],[116.970787382813,40.0788430000001],[116.974151640625,40.0680373359375],[116.961158476563,40.0600307441407],[116.957345,40.0438430000001],[116.927613554688,40.0511452460938],[116.912345,40.0477223945313],[116.902345,40.0499636054687],[116.872345,40.0432387519532],[116.83033328125,40.0526564765625],[116.813013945313,40.0275722480469],[116.802345,40.0299636054688],[116.792345,40.0277223945312],[116.7720715625,40.0322670722656],[116.767345,40.0138430000001],[116.733414335938,40.0220180488282],[116.712345,40.0178554511719],[116.702345,40.0198305488282],[116.677261992188,40.0148744941406],[116.6016028125,40.0299806953126],[116.597345,40.0138430000001],[116.5466028125,40.0430995917969],[116.51838015625,40.0758571601563],[116.457345,40.0838430000001],[116.46142703125,40.0897585273438],[116.486158476563,40.1068325019531],[116.475621367188,40.153843],[116.483565703125,40.1892897773437],[116.465953398438,40.2163381171876],[116.497345,40.263843],[116.512345,40.2583339667969],[116.550831328125,40.2724672675781],[116.604410429688,40.2578041816407],[116.622345,40.2592446113281],[116.637345,40.2580397773438],[116.653961210938,40.2593752265626],[116.676456328125,40.2332692695312],[116.737345,40.283843],[116.746568632813,40.27097190625],[116.762779570313,40.26776878125],[116.781519804688,40.2796681953125],[116.81666140625,40.2889394355469],[116.837345,40.3177956367188],[116.851519804688,40.2980178046876],[116.863170195313,40.2896681953126]],[[116.574132109375,40.0617617011719],[116.597345,40.0438430000001],[116.59297,40.0896742988281],[116.581832304688,40.0880287910156],[116.567506132813,40.1065908027344],[116.574132109375,40.0617617011719]]]]}},{"type":"Feature","properties":{"name":"昌平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.140767851563,40.3316506171876],[116.149537382813,40.3404201484375],[116.141793242188,40.3593959785156],[116.21209109375,40.3794960761719],[116.232345,40.376977765625],[116.257345,40.3800868964844],[116.281890898438,40.3770339179688],[116.287345,40.3838430000001],[116.33797,40.3775112128907],[116.364273710938,40.3342006660157],[116.417345,40.3275991035156],[116.44150515625,40.3306044746094],[116.443590117188,40.3138430000001],[116.440909453125,40.2923207832031],[116.481793242188,40.2682900214844],[116.497345,40.263843],[116.465953398438,40.2163381171876],[116.483565703125,40.1892897773437],[116.475621367188,40.153843],[116.486158476563,40.1068325019531],[116.46142703125,40.0897585273438],[116.457345,40.0838430000001],[116.453214140625,40.0510927558594],[116.427110625,40.0638417792969],[116.400704375,40.050483625],[116.393985625,40.037202375],[116.387345,40.033843],[116.382896757813,40.0393959785157],[116.360885039063,40.0486708808594],[116.38025515625,40.0641799140625],[116.327345,40.0575991035156],[116.29736453125,40.0613283515625],[116.282896757813,40.0793959785157],[116.266236601563,40.0927370429687],[116.252799101563,40.1095217109375],[116.241846953125,40.10815940625],[116.232896757813,40.1293959785156],[116.201793242188,40.1482900214844],[116.192545195313,40.1598378730469],[116.16138796875,40.1415248847657],[116.163404570313,40.1253383613282],[116.067164335938,40.1085903144531],[116.047345,40.0838430000001],[116.007642851563,40.0773207832032],[115.982345,40.081059796875],[115.961773710938,40.0780202460938],[115.95298953125,40.0994863105469],[115.909117460938,40.1333498359376],[115.847345,40.143843],[115.840396757813,40.1721401191407],[115.86326296875,40.1879274726563],[115.884346953125,40.2248671699219],[115.91978640625,40.2493361640625],[115.95326296875,40.2579274726563],[115.957345,40.263843],[115.981314726563,40.283755109375],[115.982896757813,40.299233625],[115.962808867188,40.3159181953125],[116.009464140625,40.3333303046875],[116.029420195313,40.3093056464844],[116.042808867188,40.3183803535156],[116.054298125,40.332212140625],[116.092345,40.3283339667969],[116.102735625,40.3293923164063],[116.119420195313,40.3093056464844],[116.132896757813,40.3184401679688],[116.130855742188,40.338452375],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"朝阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.617345,39.8938430000001],[116.630152617188,39.8888430000001],[116.617345,39.883843]]],[[[116.617345,39.8938430000001],[116.604537382813,39.8888430000001],[116.617345,39.883843],[116.613443632813,39.8577455878907],[116.601246367188,39.8499404121094],[116.5914465625,39.8220705390626],[116.536158476563,39.8376076484375],[116.527345,39.823843],[116.473433867188,39.8149867988282],[116.437838164063,39.8202480292969],[116.427345,39.833843],[116.454151640625,39.8484108710938],[116.437345,39.873843],[116.4308215625,39.9135451484376],[116.435811796875,39.9473073554688],[116.405264921875,39.9708876777344],[116.387345,39.9638430000001],[116.387345,39.9738430000001],[116.377345,39.9738430000001],[116.349678984375,40.0225026679688],[116.387345,40.033843],[116.393985625,40.037202375],[116.400704375,40.050483625],[116.427110625,40.0638417792969],[116.453214140625,40.0510927558594],[116.457345,40.0838430000001],[116.51838015625,40.0758571601563],[116.5466028125,40.0430995917969],[116.597345,40.0138430000001],[116.64142703125,40.0025295234375],[116.63326296875,39.9479274726563],[116.62142703125,39.9297585273438],[116.617345,39.8938430000001]]],[[[116.567506132813,40.1065908027344],[116.581832304688,40.0880287910156],[116.59297,40.0896742988281],[116.597345,40.0438430000001],[116.574132109375,40.0617617011719],[116.567506132813,40.1065908027344]]]]}},{"type":"Feature","properties":{"name":"大兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.417345,39.503843],[116.410499296875,39.5277809882813],[116.392896757813,39.5108327460938],[116.407345,39.4837270332032],[116.422345,39.47640159375],[116.43334109375,39.4817702460938],[116.447345,39.453843],[116.44005984375,39.4447475410156],[116.331793242188,39.4582900214844],[116.292896757813,39.4893959785156],[116.261793242188,39.4982900214844],[116.237345,39.5138430000001],[116.237345,39.563843],[116.217345,39.563843],[116.217345,39.573843],[116.2116028125,39.6088088203125],[116.213824492188,39.6238430000001],[116.210562773438,39.6458974433594],[116.24298953125,39.7481996894532],[116.247345,39.793843],[116.284703398438,39.7890627265625],[116.302413359375,39.7677419257813],[116.32748171875,39.8083803535157],[116.352808867188,39.7993056464844],[116.369420195313,39.7793056464844],[116.431300078125,39.7922487617188],[116.407515898438,39.8120082832032],[116.421881132813,39.8293056464844],[116.427345,39.833843],[116.437838164063,39.8202480292969],[116.473433867188,39.8149867988282],[116.527345,39.823843],[116.532882109375,39.8091078925782],[116.530816679688,39.788843],[116.532896757813,39.768452375],[116.515308867188,39.753843],[116.532896757813,39.7392336250001],[116.530011015625,39.7109609199219],[116.641480742188,39.7223220039063],[116.6428528125,39.7088430000001],[116.640968046875,39.6903578925781],[116.661881132813,39.6783803535156],[116.692808867188,39.6693056464844],[116.701881132813,39.6483803535157],[116.717345,39.6238430000001],[116.699390898438,39.6099831367187],[116.713160429688,39.5993544746094],[116.710972929688,39.5845546699219],[116.667174101563,39.6017726875],[116.638736601563,39.5975710273438],[116.58013796875,39.6206081367187],[116.54298953125,39.5981996894532],[116.52170046875,39.5894863105469],[116.512095976563,39.5660195136719],[116.471519804688,39.5494130683594],[116.4731653125,39.5383034492188],[116.44170046875,39.5194863105469],[116.43298953125,39.5081996894532],[116.417345,39.503843]]]]}},{"type":"Feature","properties":{"name":"房山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.773839140625,39.9269374824219],[115.84232546875,39.8984535957032],[115.898365507813,39.9185622382812],[115.94166140625,39.9066347480469],[115.912628203125,39.8806923652344],[115.952154570313,39.8685341621094],[115.982735625,39.8703566718751],[115.981436796875,39.8486074042969],[116.047345,39.843843],[116.072535429688,39.8290334296875],[116.085533476563,39.7879787421875],[116.122125273438,39.7894289375001],[116.122545195313,39.7788430000001],[116.1217590625,39.7590334296875],[116.152535429688,39.7686525703125],[116.162877226563,39.7798122382813],[116.192530546875,39.778637921875],[116.2157825,39.8279079414063],[116.247345,39.793843],[116.24298953125,39.7481996894532],[116.210562773438,39.6458974433594],[116.213824492188,39.6238430000001],[116.2116028125,39.6088088203125],[116.217345,39.573843],[116.163424101563,39.5856044746094],[116.131104765625,39.56757346875],[116.0123840625,39.5792482734376],[115.992667265625,39.5776638007813],[115.975640898438,39.5974306464844],[115.962345,39.5676381660156],[115.939742460938,39.5694533515626],[115.92271609375,39.5892153144532],[115.901168242188,39.5984706855469],[115.903526640625,39.5691664863281],[115.8780090625,39.54718284375],[115.843326445313,39.5499697089844],[115.820465117188,39.5372158027345],[115.822847929688,39.5075978828125],[115.773961210938,39.5115248847656],[115.767345,39.503843],[115.749595976563,39.5160964179688],[115.73326296875,39.5397585273438],[115.69142703125,39.5679274726563],[115.68326296875,39.5997585273438],[115.665211210938,39.6122206855469],[115.642789335938,39.5976222968751],[115.632345,39.5999636054688],[115.622345,39.5977223945313],[115.607345,39.6010842109375],[115.569581328125,39.5926186347657],[115.537345,39.6136110664062],[115.5080090625,39.5945082832032],[115.515709257813,39.6288430000001],[115.510079375,39.6539394355469],[115.475753203125,39.6462441230469],[115.493585234375,39.6887050605469],[115.478150664063,39.7385036445313],[115.434874296875,39.7496096015625],[115.42326296875,39.7776625800782],[115.4810559375,39.7924941230469],[115.507345,39.7866017890625],[115.552979765625,39.79683128125],[115.557345,39.8138430000001],[115.583902617188,39.8188002753907],[115.627891875,39.8680300117188],[115.672628203125,39.8885622382813],[115.692061796875,39.8991237617188],[115.722628203125,39.9085622382813],[115.773839140625,39.9269374824219]]]]}},{"type":"Feature","properties":{"name":"丰台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.317345,39.8938430000001],[116.321324492188,39.8769472480469],[116.35845828125,39.8653823066407],[116.377345,39.873843],[116.39634890625,39.8501113105469],[116.411793242188,39.8693959785156],[116.437345,39.873843],[116.454151640625,39.8484108710938],[116.427345,39.833843],[116.421881132813,39.8293056464844],[116.407515898438,39.8120082832032],[116.431300078125,39.7922487617188],[116.369420195313,39.7793056464844],[116.352808867188,39.7993056464844],[116.32748171875,39.8083803535157],[116.302413359375,39.7677419257813],[116.284703398438,39.7890627265625],[116.247345,39.793843],[116.2157825,39.8279079414063],[116.192530546875,39.778637921875],[116.162877226563,39.7798122382813],[116.152535429688,39.7686525703125],[116.1217590625,39.7590334296875],[116.122545195313,39.7788430000001],[116.122125273438,39.7894289375001],[116.085533476563,39.7879787421875],[116.072535429688,39.8290334296875],[116.047345,39.843843],[116.05388796875,39.8544655585938],[116.131158476563,39.8800307441406],[116.157345,39.883843],[116.210953398438,39.8771450019531],[116.231793242188,39.8893959785157],[116.247345,39.8938430000001],[116.292506132813,39.8882009101563],[116.317345,39.8938430000001]]]]}},{"type":"Feature","properties":{"name":"海淀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.232896757813,40.1293959785156],[116.241846953125,40.10815940625],[116.252799101563,40.1095217109375],[116.266236601563,40.0927370429687],[116.282896757813,40.0793959785157],[116.29736453125,40.0613283515625],[116.327345,40.0575991035156],[116.38025515625,40.0641799140625],[116.360885039063,40.0486708808594],[116.382896757813,40.0393959785157],[116.387345,40.033843],[116.349678984375,40.0225026679688],[116.377345,39.9738430000001],[116.377345,39.9638430000001],[116.367345,39.9638430000001],[116.367345,39.943843],[116.327345,39.943843],[116.327345,39.8938430000001],[116.317345,39.8938430000001],[116.292506132813,39.8882009101563],[116.247345,39.8938430000001],[116.243199492188,39.9201552558594],[116.199312773438,39.910317609375],[116.208101835938,39.9495131660157],[116.18142703125,39.9679274726563],[116.17326296875,39.9797585273438],[116.15142703125,39.9879274726563],[116.147345,39.993843],[116.16716921875,40.0075283027344],[116.130113554688,40.0286782050781],[116.07142703125,40.0379274726563],[116.06326296875,40.0597585273437],[116.047345,40.0838430000001],[116.067164335938,40.1085903144531],[116.163404570313,40.1253383613282],[116.16138796875,40.1415248847657],[116.192545195313,40.1598378730469],[116.201793242188,40.1482900214844],[116.232896757813,40.1293959785156]]]]}},{"type":"Feature","properties":{"name":"怀柔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.682413359375,41.0035353828125],[116.67326296875,40.9684670234375],[116.70326296875,40.9297585273438],[116.714508085938,40.8997035957032],[116.75326296875,40.8897585273438],[116.80142703125,40.8479274726563],[116.83326296875,40.8397585273438],[116.869464140625,40.8245522285157],[116.877345,40.793843],[116.861881132813,40.7893056464844],[116.831519804688,40.7719167304688],[116.8328528125,40.758843],[116.831685820313,40.7473818183595],[116.812345,40.7493520332032],[116.797345,40.7478237128906],[116.780748320313,40.7495156074219],[116.7844934375,40.7127577949219],[116.713394804688,40.6861269355469],[116.700079375,40.6260756660157],[116.705826445313,40.5696901679688],[116.6732434375,40.5555580878907],[116.706422148438,40.5279970527344],[116.685406523438,40.4720680976563],[116.712896757813,40.449233625],[116.711807890625,40.4385781074219],[116.723072539063,40.4086000800782],[116.708975859375,40.3968910957032],[116.714620390625,40.3415309882813],[116.761016875,40.3214076972656],[116.737345,40.283843],[116.676456328125,40.2332692695312],[116.653961210938,40.2593752265626],[116.637345,40.2580397773438],[116.622345,40.2592446113281],[116.604410429688,40.2578041816407],[116.550831328125,40.2724672675781],[116.512345,40.2583339667969],[116.497345,40.263843],[116.481793242188,40.2682900214844],[116.440909453125,40.2923207832031],[116.443590117188,40.3138430000001],[116.44150515625,40.3306044746094],[116.417345,40.3275991035156],[116.364273710938,40.3342006660157],[116.33797,40.3775112128907],[116.287345,40.3838430000001],[116.282110625,40.3987795234375],[116.29287234375,40.4605776191407],[116.291842070313,40.486577375],[116.34533328125,40.4993190742188],[116.363678007813,40.4985915351563],[116.38252078125,40.4782558417969],[116.407345,40.4792397285157],[116.427345,40.4784462714844],[116.497496367188,40.4812270332031],[116.512154570313,40.5028224921875],[116.452623320313,40.5216701484375],[116.492535429688,40.5586525703125],[116.502154570313,40.5690334296876],[116.521920195313,40.5873476386719],[116.535362578125,40.6158278632813],[116.5628528125,40.6288014960938],[116.517862578125,40.6617995429688],[116.474732695313,40.6821559882813],[116.492535429688,40.6986525703126],[116.50732546875,40.7299855781251],[116.489503203125,40.7636611152344],[116.457345,40.7738430000001],[116.451265898438,40.7935366035156],[116.406783476563,40.8332802558594],[116.387906523438,40.8544057441407],[116.323175078125,40.9122450996094],[116.352628203125,40.9385622382813],[116.357345,40.943843],[116.367725859375,40.934223859375],[116.399483671875,40.8999477363281],[116.437345,40.8984462714844],[116.452345,40.8990407539063],[116.46978640625,40.8983498359376],[116.442535429688,40.9760951972657],[116.453345976563,40.9793984199219],[116.472345,40.9786452460938],[116.482345,40.9790407539062],[116.509288359375,40.9779726386719],[116.562428007813,40.9890908027344],[116.60033328125,40.9690334296875],[116.612891875,41.0200930000001],[116.611363554688,41.0586525703125],[116.680499296875,41.0425014472656],[116.697345,41.013843],[116.682413359375,41.0035353828125]]]]}},{"type":"Feature","properties":{"name":"门头沟区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.909117460938,40.1333498359376],[115.95298953125,40.0994863105469],[115.961773710938,40.0780202460938],[115.982345,40.081059796875],[116.007642851563,40.0773207832032],[116.047345,40.0838430000001],[116.06326296875,40.0597585273437],[116.07142703125,40.0379274726563],[116.130113554688,40.0286782050781],[116.16716921875,40.0075283027344],[116.147345,39.993843],[116.111519804688,39.9794142890625],[116.113082304688,39.9688430000001],[116.111607695313,39.958843],[116.113082304688,39.948843],[116.111226835938,39.9362831855469],[116.13298953125,39.9194863105469],[116.157345,39.883843],[116.131158476563,39.8800307441406],[116.05388796875,39.8544655585938],[116.047345,39.843843],[115.981436796875,39.8486074042969],[115.982735625,39.8703566718751],[115.952154570313,39.8685341621094],[115.912628203125,39.8806923652344],[115.94166140625,39.9066347480469],[115.898365507813,39.9185622382812],[115.84232546875,39.8984535957032],[115.773839140625,39.9269374824219],[115.722628203125,39.9085622382813],[115.692061796875,39.8991237617188],[115.672628203125,39.8885622382813],[115.627891875,39.8680300117188],[115.583902617188,39.8188002753907],[115.557345,39.8138430000001],[115.510499296875,39.8389846015625],[115.513590117188,39.863843],[115.511099882813,39.883843],[115.513687773438,39.9046218085937],[115.436803007813,39.9513210273438],[115.417345,39.943843],[115.421793242188,39.9793959785156],[115.450982695313,40.0290554023438],[115.478912382813,40.0408242011719],[115.497345,40.063843],[115.51142703125,40.0697585273438],[115.54326296875,40.0779274726563],[115.55142703125,40.0897585273438],[115.58326296875,40.0979274726563],[115.59142703125,40.1097585273438],[115.63326296875,40.1179274726563],[115.676392851563,40.1312978339844],[115.692345,40.1277223945313],[115.707345,40.1310842109375],[115.72697390625,40.1266835761719],[115.74326296875,40.1379274726563],[115.753682890625,40.1657802558594],[115.772623320313,40.1700258613281],[115.815513945313,40.1520119453126],[115.847345,40.143843],[115.909117460938,40.1333498359376]]]]}},{"type":"Feature","properties":{"name":"平谷区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.217345,40.373843],[117.221676054688,40.3675722480469],[117.236475859375,40.3708901191406],[117.26326296875,40.3297585273438],[117.27142703125,40.3079274726563],[117.28326296875,40.2997585273438],[117.292345,40.2754799628906],[117.324664335938,40.2827260566406],[117.3423840625,40.2353823066406],[117.387345,40.223843],[117.38298953125,40.2181996894531],[117.369390898438,40.2077028632813],[117.401085234375,40.1832387519531],[117.35170046875,40.1694863105469],[117.34298953125,40.1381996894531],[117.296436796875,40.1283766914063],[117.262735625,40.1080458808594],[117.22978640625,40.1129152656251],[117.207345,40.0838430000001],[117.197345,40.0838430000001],[117.197345,40.063843],[117.187345,40.063843],[117.183360625,40.0807558417969],[117.132647734375,40.0640761542969],[117.097345,40.0750722480469],[117.052471953125,40.0610964179688],[117.023531523438,40.0376552558594],[116.988179960938,40.0300307441407],[116.957345,40.0438430000001],[116.961158476563,40.0600307441407],[116.974151640625,40.0680373359375],[116.970787382813,40.0788430000001],[116.973912382813,40.0888747382813],[116.960777617188,40.1288112617188],[116.970382109375,40.1596486640626],[116.940538359375,40.1780373359375],[116.944151640625,40.1896486640626],[116.927926054688,40.1996486640626],[116.934151640625,40.2196486640625],[116.927345,40.223843],[116.93197390625,40.2292153144531],[116.971959257813,40.2412538886719],[116.949932890625,40.2602272773438],[117.002979765625,40.3059291816407],[117.001202421875,40.3280568671876],[117.042139921875,40.3392604804688],[117.052584257813,40.3384218574219],[117.08197390625,40.3492153144531],[117.12271609375,40.3584706855469],[117.15197390625,40.3692153144532],[117.217345,40.373843]]]]}},{"type":"Feature","properties":{"name":"石景山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.208101835938,39.9495131660157],[116.199312773438,39.910317609375],[116.243199492188,39.9201552558594],[116.247345,39.8938430000001],[116.231793242188,39.8893959785157],[116.210953398438,39.8771450019531],[116.157345,39.883843],[116.13298953125,39.9194863105469],[116.111226835938,39.9362831855469],[116.113082304688,39.948843],[116.111607695313,39.958843],[116.113082304688,39.9688430000001],[116.111519804688,39.9794142890625],[116.147345,39.993843],[116.15142703125,39.9879274726563],[116.17326296875,39.9797585273438],[116.18142703125,39.9679274726563],[116.208101835938,39.9495131660157]]]]}},{"type":"Feature","properties":{"name":"通州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.604537382813,39.8888430000001],[116.617345,39.8938430000001],[116.617345,39.883843]]],[[[116.617345,39.883843],[116.630152617188,39.8888430000001],[116.617345,39.8938430000001],[116.62142703125,39.9297585273438],[116.63326296875,39.9479274726563],[116.64142703125,40.0025295234375],[116.597345,40.0138430000001],[116.6016028125,40.0299806953126],[116.677261992188,40.0148744941406],[116.702345,40.0198305488282],[116.712345,40.0178554511719],[116.733414335938,40.0220180488282],[116.767345,40.0138430000001],[116.763985625,39.9872023750001],[116.74927859375,39.9576137519532],[116.773985625,39.9504836250001],[116.780704375,39.887202375],[116.807345,39.883843],[116.812320585938,39.8773952460938],[116.858590117188,39.8430922675782],[116.892486601563,39.8380825019532],[116.917345,39.843843],[116.9286340625,39.799858625],[116.95142703125,39.7841188789063],[116.942843046875,39.7776100898438],[116.923013945313,39.782055890625],[116.91326296875,39.7679274726563],[116.90107546875,39.7595131660157],[116.906158476563,39.7368325019532],[116.873316679688,39.7141579414063],[116.89142703125,39.6879274726563],[116.897345,39.683843],[116.894801054688,39.6763869453125],[116.859644804688,39.6712636542969],[116.829888945313,39.6412990546876],[116.824801054688,39.6163869453125],[116.807345,39.613843],[116.79170046875,39.6094863105469],[116.779400664063,39.5935536933595],[116.75298953125,39.6094863105469],[116.717345,39.6238430000001],[116.701881132813,39.6483803535157],[116.692808867188,39.6693056464844],[116.661881132813,39.6783803535156],[116.640968046875,39.6903578925781],[116.6428528125,39.7088430000001],[116.641480742188,39.7223220039063],[116.530011015625,39.7109609199219],[116.532896757813,39.7392336250001],[116.515308867188,39.753843],[116.532896757813,39.768452375],[116.530816679688,39.788843],[116.532882109375,39.8091078925782],[116.527345,39.823843],[116.536158476563,39.8376076484375],[116.5914465625,39.8220705390626],[116.601246367188,39.8499404121094],[116.613443632813,39.8577455878907],[116.617345,39.883843]]]]}},{"type":"Feature","properties":{"name":"密云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.921793242188,40.7482900214844],[116.932896757813,40.7393959785156],[116.941793242188,40.7282900214844],[116.952896757813,40.7193959785157],[116.96736453125,40.7013283515626],[117.017345,40.6951113105469],[117.052345,40.6994643378907],[117.062345,40.6982216621094],[117.087345,40.7013307929687],[117.112345,40.6982216621094],[117.122369414063,40.6994680000001],[117.202896757813,40.6893959785157],[117.234508085938,40.6772463203125],[117.252706328125,40.6795095039063],[117.298331328125,40.65269065625],[117.361119414063,40.6768239570313],[117.410640898438,40.6829848457031],[117.501793242188,40.6682900214844],[117.507345,40.663843],[117.497345,40.643843],[117.486143828125,40.6298537421875],[117.452144804688,40.6498378730469],[117.434610625,40.6279396796875],[117.414410429688,40.6304518867188],[117.411099882813,40.603843],[117.415582304688,40.5678188300782],[117.402345,40.5694643378907],[117.376954375,40.5663063789063],[117.340284453125,40.5804018378907],[117.243448515625,40.5527150703125],[117.241676054688,40.5384828925781],[117.253472929688,40.5184145332031],[117.192999296875,40.5053298164063],[117.212896757813,40.4893959785157],[117.231793242188,40.4582900214844],[117.254327421875,40.4402443671876],[117.231793242188,40.4093959785156],[117.217345,40.373843],[117.15197390625,40.3692153144532],[117.12271609375,40.3584706855469],[117.08197390625,40.3492153144531],[117.052584257813,40.3384218574219],[117.042139921875,40.3392604804688],[117.001202421875,40.3280568671876],[117.002979765625,40.3059291816407],[116.949932890625,40.2602272773438],[116.971959257813,40.2412538886719],[116.93197390625,40.2292153144531],[116.927345,40.223843],[116.898316679688,40.2285353828125],[116.873267851563,40.2634804511719],[116.863170195313,40.2896681953126],[116.851519804688,40.2980178046876],[116.837345,40.3177956367188],[116.81666140625,40.2889394355469],[116.781519804688,40.2796681953125],[116.762779570313,40.26776878125],[116.746568632813,40.27097190625],[116.737345,40.283843],[116.761016875,40.3214076972656],[116.714620390625,40.3415309882813],[116.708975859375,40.3968910957032],[116.723072539063,40.4086000800782],[116.711807890625,40.4385781074219],[116.712896757813,40.449233625],[116.685406523438,40.4720680976563],[116.706422148438,40.5279970527344],[116.6732434375,40.5555580878907],[116.705826445313,40.5696901679688],[116.700079375,40.6260756660157],[116.713394804688,40.6861269355469],[116.7844934375,40.7127577949219],[116.780748320313,40.7495156074219],[116.797345,40.7478237128906],[116.812345,40.7493520332032],[116.831685820313,40.7473818183595],[116.8328528125,40.758843],[116.831519804688,40.7719167304688],[116.861881132813,40.7893056464844],[116.877345,40.793843],[116.882896757813,40.7893959785156],[116.891793242188,40.7782900214844],[116.912896757813,40.7693959785157],[116.921793242188,40.7482900214844]]]]}},{"type":"Feature","properties":{"name":"延庆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.149537382813,40.3404201484375],[116.140767851563,40.3316506171876],[116.137345,40.3438430000001]]],[[[116.137345,40.3438430000001],[116.130855742188,40.338452375],[116.132896757813,40.3184401679688],[116.119420195313,40.3093056464844],[116.102735625,40.3293923164063],[116.092345,40.3283339667969],[116.054298125,40.332212140625],[116.042808867188,40.3183803535156],[116.029420195313,40.3093056464844],[116.009464140625,40.3333303046875],[115.962808867188,40.3159181953125],[115.982896757813,40.299233625],[115.981314726563,40.283755109375],[115.957345,40.263843],[115.942061796875,40.2885622382813],[115.932628203125,40.3091237617187],[115.922061796875,40.3285622382813],[115.912628203125,40.3491237617187],[115.862423125,40.3608046699219],[115.76982546875,40.441567609375],[115.7726575,40.4891139960937],[115.742061796875,40.4985622382813],[115.737345,40.513843],[115.765655546875,40.5479250312501],[115.812808867188,40.5583803535157],[115.8257434375,40.5882118964844],[115.882808867188,40.5983803535157],[115.906553984375,40.6119814277344],[115.95650515625,40.606889875],[115.980391875,40.5781349921875],[115.995582304688,40.5796828437501],[116.011881132813,40.5993056464844],[116.062808867188,40.6083803535157],[116.071881132813,40.6193056464844],[116.084893828125,40.63011253125],[116.113018828125,40.6272450996095],[116.11068484375,40.6501125312501],[116.159781523438,40.6714052558594],[116.171881132813,40.6993056464844],[116.222808867188,40.7583803535157],[116.237784453125,40.7929189277344],[116.296436796875,40.7507094550782],[116.318980742188,40.7778493476563],[116.449610625,40.7645351386719],[116.457345,40.7738430000001],[116.489503203125,40.7636611152344],[116.50732546875,40.7299855781251],[116.492535429688,40.6986525703126],[116.474732695313,40.6821559882813],[116.517862578125,40.6617995429688],[116.5628528125,40.6288014960938],[116.535362578125,40.6158278632813],[116.521920195313,40.5873476386719],[116.502154570313,40.5690334296876],[116.492535429688,40.5586525703125],[116.452623320313,40.5216701484375],[116.512154570313,40.5028224921875],[116.497496367188,40.4812270332031],[116.427345,40.4784462714844],[116.407345,40.4792397285157],[116.38252078125,40.4782558417969],[116.363678007813,40.4985915351563],[116.34533328125,40.4993190742188],[116.291842070313,40.486577375],[116.29287234375,40.4605776191407],[116.282110625,40.3987795234375],[116.287345,40.3838430000001],[116.281890898438,40.3770339179688],[116.257345,40.3800868964844],[116.232345,40.376977765625],[116.21209109375,40.3794960761719],[116.141793242188,40.3593959785156],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"东城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.411793242188,39.8693959785156],[116.39634890625,39.8501113105469],[116.377345,39.873843],[116.39302859375,39.8783278632813],[116.384810820313,39.9444228339844],[116.377345,39.9638430000001],[116.387345,39.9638430000001],[116.405264921875,39.9708876777344],[116.435811796875,39.9473073554688],[116.4308215625,39.9135451484376],[116.437345,39.873843],[116.411793242188,39.8693959785156]]]]}},{"type":"Feature","properties":{"name":"西城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.377345,39.9638430000001],[116.384810820313,39.9444228339844],[116.39302859375,39.8783278632813],[116.377345,39.873843],[116.35845828125,39.8653823066407],[116.321324492188,39.8769472480469],[116.317345,39.8938430000001],[116.327345,39.8938430000001],[116.327345,39.943843],[116.367345,39.943843],[116.367345,39.9638430000001],[116.377345,39.9638430000001]]],[[[116.377345,39.9638430000001],[116.377345,39.9738430000001],[116.387345,39.9738430000001],[116.387345,39.9638430000001],[116.377345,39.9638430000001]]]]}}]}
  1 +{
  2 + "type": "FeatureCollection",
  3 + "features": [
  4 + {
  5 + "type": "Feature",
  6 + "geometry": {
  7 + "type": "MultiPolygon",
  8 + "coordinates": [
  9 + [
  10 + [
  11 + [117.222503, 39.117489],
  12 + [117.21414, 39.126438],
  13 + [117.213257, 39.132029],
  14 + [117.209768, 39.133528],
  15 + [117.198962, 39.130495],
  16 + [117.19421, 39.13467],
  17 + [117.190355, 39.136852],
  18 + [117.181164, 39.137091],
  19 + [117.179806, 39.121256],
  20 + [117.17929, 39.101991],
  21 + [117.190056, 39.10095],
  22 + [117.196315, 39.102315],
  23 + [117.213271, 39.113636],
  24 + [117.222503, 39.117489]
  25 + ]
  26 + ]
  27 + ]
  28 + },
  29 + "properties": {
  30 + "adcode": 120101,
  31 + "name": "和平区",
  32 + "center": [117.195907, 39.118327],
  33 + "centroid": [117.196207, 39.118993],
  34 + "childrenNum": 0,
  35 + "level": "district",
  36 + "parent": "{ \"adcode\": 120000 }",
  37 + "subFeatureIndex": 0,
  38 + "acroutes": [100000, 120000]
  39 + }
  40 + },
  41 + {
  42 + "type": "Feature",
  43 + "geometry": {
  44 + "type": "MultiPolygon",
  45 + "coordinates": [
  46 + [
  47 + [
  48 + [117.260624, 39.159004],
  49 + [117.248718, 39.158391],
  50 + [117.249926, 39.149548],
  51 + [117.229548, 39.149837],
  52 + [117.220928, 39.144811],
  53 + [117.215212, 39.151405],
  54 + [117.213651, 39.147963],
  55 + [117.206401, 39.145356],
  56 + [117.20351, 39.140686],
  57 + [117.211112, 39.135676],
  58 + [117.209768, 39.133528],
  59 + [117.213257, 39.132029],
  60 + [117.21414, 39.126438],
  61 + [117.222503, 39.117489],
  62 + [117.230404, 39.10835],
  63 + [117.241346, 39.098614],
  64 + [117.245025, 39.089252],
  65 + [117.248555, 39.086216],
  66 + [117.260149, 39.080912],
  67 + [117.266977, 39.079803],
  68 + [117.267873, 39.085295],
  69 + [117.272326, 39.090531],
  70 + [117.278843, 39.090599],
  71 + [117.279942, 39.086881],
  72 + [117.286092, 39.087154],
  73 + [117.286269, 39.089099],
  74 + [117.298189, 39.086472],
  75 + [117.300103, 39.082106],
  76 + [117.301949, 39.086267],
  77 + [117.304814, 39.085568],
  78 + [117.306918, 39.089371],
  79 + [117.30966, 39.10095],
  80 + [117.275815, 39.108061],
  81 + [117.269869, 39.12637],
  82 + [117.271756, 39.129319],
  83 + [117.286649, 39.131739],
  84 + [117.279942, 39.14735],
  85 + [117.29341, 39.150621],
  86 + [117.290314, 39.157147],
  87 + [117.276834, 39.162991],
  88 + [117.260624, 39.159004]
  89 + ]
  90 + ]
  91 + ]
  92 + },
  93 + "properties": {
  94 + "adcode": 120102,
  95 + "name": "河东区",
  96 + "center": [117.226568, 39.122125],
  97 + "centroid": [117.256682, 39.122406],
  98 + "childrenNum": 0,
  99 + "level": "district",
  100 + "parent": "{ \"adcode\": 120000 }",
  101 + "subFeatureIndex": 1,
  102 + "acroutes": [100000, 120000]
  103 + }
  104 + },
  105 + {
  106 + "type": "Feature",
  107 + "geometry": {
  108 + "type": "MultiPolygon",
  109 + "coordinates": [
  110 + [
  111 + [
  112 + [117.26729, 39.039453],
  113 + [117.266502, 39.041227],
  114 + [117.272476, 39.04278],
  115 + [117.267697, 39.050357],
  116 + [117.278042, 39.053548],
  117 + [117.280458, 39.048924],
  118 + [117.286825, 39.051023],
  119 + [117.283092, 39.058991],
  120 + [117.288468, 39.060202],
  121 + [117.285997, 39.070473],
  122 + [117.292446, 39.077432],
  123 + [117.266977, 39.079803],
  124 + [117.260149, 39.080912],
  125 + [117.248555, 39.086216],
  126 + [117.245025, 39.089252],
  127 + [117.241346, 39.098614],
  128 + [117.230404, 39.10835],
  129 + [117.222503, 39.117489],
  130 + [117.213271, 39.113636],
  131 + [117.196315, 39.102315],
  132 + [117.190056, 39.10095],
  133 + [117.17929, 39.101991],
  134 + [117.179725, 39.089337],
  135 + [117.183458, 39.072878],
  136 + [117.188535, 39.066924],
  137 + [117.203876, 39.071718],
  138 + [117.21414, 39.060185],
  139 + [117.21118, 39.058155],
  140 + [117.21771, 39.056227],
  141 + [117.217724, 39.034315],
  142 + [117.234572, 39.033377],
  143 + [117.251908, 39.036995],
  144 + [117.26729, 39.039453]
  145 + ]
  146 + ]
  147 + ]
  148 + },
  149 + "properties": {
  150 + "adcode": 120103,
  151 + "name": "河西区",
  152 + "center": [117.217536, 39.101897],
  153 + "centroid": [117.232522, 39.072613],
  154 + "childrenNum": 0,
  155 + "level": "district",
  156 + "parent": "{ \"adcode\": 120000 }",
  157 + "subFeatureIndex": 2,
  158 + "acroutes": [100000, 120000]
  159 + }
  160 + },
  161 + {
  162 + "type": "Feature",
  163 + "geometry": {
  164 + "type": "MultiPolygon",
  165 + "coordinates": [
  166 + [
  167 + [
  168 + [117.188535, 39.066924],
  169 + [117.183458, 39.072878],
  170 + [117.179725, 39.089337],
  171 + [117.17929, 39.101991],
  172 + [117.179806, 39.121256],
  173 + [117.181164, 39.137091],
  174 + [117.190355, 39.136852],
  175 + [117.19421, 39.13467],
  176 + [117.194441, 39.146992],
  177 + [117.189024, 39.145867],
  178 + [117.171688, 39.146464],
  179 + [117.171837, 39.141931],
  180 + [117.159877, 39.14159],
  181 + [117.144115, 39.144061],
  182 + [117.144319, 39.148577],
  183 + [117.136757, 39.146464],
  184 + [117.128475, 39.15224],
  185 + [117.126412, 39.147673],
  186 + [117.120941, 39.146498],
  187 + [117.122122, 39.142936],
  188 + [117.113569, 39.135898],
  189 + [117.109768, 39.1345],
  190 + [117.129643, 39.117165],
  191 + [117.131761, 39.114624],
  192 + [117.133824, 39.097165],
  193 + [117.136825, 39.091094],
  194 + [117.121402, 39.084528],
  195 + [117.132399, 39.079854],
  196 + [117.159062, 39.062369],
  197 + [117.164357, 39.063052],
  198 + [117.171443, 39.061448],
  199 + [117.188535, 39.066924]
  200 + ]
  201 + ]
  202 + ]
  203 + },
  204 + "properties": {
  205 + "adcode": 120104,
  206 + "name": "南开区",
  207 + "center": [117.164143, 39.120474],
  208 + "centroid": [117.155049, 39.108953],
  209 + "childrenNum": 0,
  210 + "level": "district",
  211 + "parent": "{ \"adcode\": 120000 }",
  212 + "subFeatureIndex": 3,
  213 + "acroutes": [100000, 120000]
  214 + }
  215 + },
  216 + {
  217 + "type": "Feature",
  218 + "geometry": {
  219 + "type": "MultiPolygon",
  220 + "coordinates": [
  221 + [
  222 + [
  223 + [117.233485, 39.193054],
  224 + [117.223982, 39.184965],
  225 + [117.221946, 39.184692],
  226 + [117.216122, 39.191283],
  227 + [117.210773, 39.192918],
  228 + [117.197265, 39.186106],
  229 + [117.191916, 39.19193],
  230 + [117.188603, 39.190227],
  231 + [117.171783, 39.18631],
  232 + [117.167547, 39.183994],
  233 + [117.173086, 39.181422],
  234 + [117.177661, 39.18195],
  235 + [117.180051, 39.168408],
  236 + [117.176127, 39.165018],
  237 + [117.177172, 39.162054],
  238 + [117.186486, 39.155103],
  239 + [117.194441, 39.146992],
  240 + [117.19421, 39.13467],
  241 + [117.198962, 39.130495],
  242 + [117.209768, 39.133528],
  243 + [117.211112, 39.135676],
  244 + [117.20351, 39.140686],
  245 + [117.206401, 39.145356],
  246 + [117.213651, 39.147963],
  247 + [117.215212, 39.151405],
  248 + [117.220928, 39.144811],
  249 + [117.229548, 39.149837],
  250 + [117.249926, 39.149548],
  251 + [117.248718, 39.158391],
  252 + [117.260624, 39.159004],
  253 + [117.260529, 39.167557],
  254 + [117.258655, 39.169959],
  255 + [117.251704, 39.168102],
  256 + [117.250781, 39.170913],
  257 + [117.240952, 39.170759],
  258 + [117.249967, 39.178458],
  259 + [117.233485, 39.193054]
  260 + ]
  261 + ]
  262 + ]
  263 + },
  264 + "properties": {
  265 + "adcode": 120105,
  266 + "name": "河北区",
  267 + "center": [117.201569, 39.156632],
  268 + "centroid": [117.213791, 39.167182],
  269 + "childrenNum": 0,
  270 + "level": "district",
  271 + "parent": "{ \"adcode\": 120000 }",
  272 + "subFeatureIndex": 4,
  273 + "acroutes": [100000, 120000]
  274 + }
  275 + },
  276 + {
  277 + "type": "Feature",
  278 + "geometry": {
  279 + "type": "MultiPolygon",
  280 + "coordinates": [
  281 + [
  282 + [
  283 + [117.194441, 39.146992],
  284 + [117.186486, 39.155103],
  285 + [117.177172, 39.162054],
  286 + [117.176127, 39.165018],
  287 + [117.180051, 39.168408],
  288 + [117.177661, 39.18195],
  289 + [117.173086, 39.181422],
  290 + [117.167547, 39.183994],
  291 + [117.159293, 39.190346],
  292 + [117.148568, 39.189103],
  293 + [117.141766, 39.19113],
  294 + [117.134313, 39.185356],
  295 + [117.131136, 39.178867],
  296 + [117.129901, 39.171901],
  297 + [117.126317, 39.158919],
  298 + [117.128475, 39.15224],
  299 + [117.136757, 39.146464],
  300 + [117.144319, 39.148577],
  301 + [117.144115, 39.144061],
  302 + [117.159877, 39.14159],
  303 + [117.171837, 39.141931],
  304 + [117.171688, 39.146464],
  305 + [117.189024, 39.145867],
  306 + [117.194441, 39.146992]
  307 + ]
  308 + ],
  309 + [
  310 + [
  311 + [117.130362, 39.18987],
  312 + [117.140775, 39.193224],
  313 + [117.14121, 39.197737],
  314 + [117.132032, 39.203458],
  315 + [117.125611, 39.200887],
  316 + [117.12857, 39.19566],
  317 + [117.12595, 39.194944],
  318 + [117.130362, 39.18987]
  319 + ]
  320 + ]
  321 + ]
  322 + },
  323 + "properties": {
  324 + "adcode": 120106,
  325 + "name": "红桥区",
  326 + "center": [117.163301, 39.175066],
  327 + "centroid": [117.155648, 39.164723],
  328 + "childrenNum": 0,
  329 + "level": "district",
  330 + "parent": "{ \"adcode\": 120000 }",
  331 + "subFeatureIndex": 5,
  332 + "acroutes": [100000, 120000]
  333 + }
  334 + },
  335 + {
  336 + "type": "Feature",
  337 + "geometry": {
  338 + "type": "MultiPolygon",
  339 + "coordinates": [
  340 + [
  341 + [
  342 + [117.266977, 39.079803],
  343 + [117.292446, 39.077432],
  344 + [117.305167, 39.076801],
  345 + [117.313366, 39.075095],
  346 + [117.328775, 39.068323],
  347 + [117.33764, 39.059503],
  348 + [117.347863, 39.053872],
  349 + [117.358751, 39.051603],
  350 + [117.371431, 39.052149],
  351 + [117.380242, 39.053633],
  352 + [117.384803, 39.05121],
  353 + [117.388428, 39.041944],
  354 + [117.393193, 39.033667],
  355 + [117.398773, 39.029007],
  356 + [117.412349, 39.022742],
  357 + [117.420399, 39.020745],
  358 + [117.437519, 39.020472],
  359 + [117.448732, 39.022794],
  360 + [117.459485, 39.02858],
  361 + [117.464345, 39.032847],
  362 + [117.468214, 39.03336],
  363 + [117.471798, 39.029075],
  364 + [117.469897, 39.018577],
  365 + [117.475328, 39.014155],
  366 + [117.481695, 39.013353],
  367 + [117.489705, 39.016511],
  368 + [117.495447, 39.015692],
  369 + [117.502765, 39.007531],
  370 + [117.508928, 38.996466],
  371 + [117.511766, 38.995305],
  372 + [117.523441, 39.004662],
  373 + [117.526984, 39.005994],
  374 + [117.52488, 39.015077],
  375 + [117.526346, 39.021257],
  376 + [117.525396, 39.026378],
  377 + [117.521988, 39.023767],
  378 + [117.517386, 39.026686],
  379 + [117.520576, 39.036824],
  380 + [117.518825, 39.037899],
  381 + [117.523712, 39.04674],
  382 + [117.52712, 39.046176],
  383 + [117.530134, 39.057865],
  384 + [117.538062, 39.056227],
  385 + [117.559539, 39.054913],
  386 + [117.557815, 39.065747],
  387 + [117.563775, 39.078507],
  388 + [117.552874, 39.078984],
  389 + [117.553362, 39.099706],
  390 + [117.536189, 39.099978],
  391 + [117.535496, 39.106543],
  392 + [117.517467, 39.106731],
  393 + [117.503226, 39.107907],
  394 + [117.509688, 39.1375],
  395 + [117.514331, 39.150144],
  396 + [117.518092, 39.15149],
  397 + [117.540791, 39.142732],
  398 + [117.552629, 39.14723],
  399 + [117.553091, 39.153927],
  400 + [117.555752, 39.159175],
  401 + [117.566164, 39.161747],
  402 + [117.56706, 39.173485],
  403 + [117.568798, 39.177505],
  404 + [117.549833, 39.181167],
  405 + [117.54743, 39.180315],
  406 + [117.537166, 39.182614],
  407 + [117.517739, 39.191385],
  408 + [117.51368, 39.192441],
  409 + [117.513734, 39.204769],
  410 + [117.509906, 39.207493],
  411 + [117.510693, 39.202556],
  412 + [117.502249, 39.199644],
  413 + [117.502792, 39.195387],
  414 + [117.491361, 39.198554],
  415 + [117.501828, 39.201364],
  416 + [117.503634, 39.208804],
  417 + [117.493004, 39.204837],
  418 + [117.486704, 39.204752],
  419 + [117.482985, 39.206778],
  420 + [117.487275, 39.211052],
  421 + [117.488008, 39.220449],
  422 + [117.472803, 39.229368],
  423 + [117.46577, 39.228994],
  424 + [117.45681, 39.23136],
  425 + [117.451285, 39.236431],
  426 + [117.447755, 39.231904],
  427 + [117.442026, 39.230594],
  428 + [117.426101, 39.231343],
  429 + [117.425355, 39.228517],
  430 + [117.417508, 39.223649],
  431 + [117.408181, 39.225964],
  432 + [117.410258, 39.236619],
  433 + [117.403144, 39.240312],
  434 + [117.395745, 39.239784],
  435 + [117.384627, 39.233589],
  436 + [117.386405, 39.230492],
  437 + [117.368295, 39.233436],
  438 + [117.347985, 39.234185],
  439 + [117.333567, 39.235819],
  440 + [117.326793, 39.234593],
  441 + [117.324526, 39.237929],
  442 + [117.299261, 39.244362],
  443 + [117.290314, 39.248514],
  444 + [117.282997, 39.244345],
  445 + [117.283689, 39.242013],
  446 + [117.292473, 39.243698],
  447 + [117.295052, 39.240363],
  448 + [117.297903, 39.223258],
  449 + [117.291482, 39.219342],
  450 + [117.27253, 39.215751],
  451 + [117.259728, 39.210933],
  452 + [117.247007, 39.20448],
  453 + [117.233485, 39.193054],
  454 + [117.249967, 39.178458],
  455 + [117.240952, 39.170759],
  456 + [117.250781, 39.170913],
  457 + [117.251704, 39.168102],
  458 + [117.258655, 39.169959],
  459 + [117.260529, 39.167557],
  460 + [117.260624, 39.159004],
  461 + [117.276834, 39.162991],
  462 + [117.290314, 39.157147],
  463 + [117.29341, 39.150621],
  464 + [117.279942, 39.14735],
  465 + [117.286649, 39.131739],
  466 + [117.271756, 39.129319],
  467 + [117.269869, 39.12637],
  468 + [117.275815, 39.108061],
  469 + [117.30966, 39.10095],
  470 + [117.306918, 39.089371],
  471 + [117.304814, 39.085568],
  472 + [117.301949, 39.086267],
  473 + [117.300103, 39.082106],
  474 + [117.298189, 39.086472],
  475 + [117.286269, 39.089099],
  476 + [117.286092, 39.087154],
  477 + [117.279942, 39.086881],
  478 + [117.278843, 39.090599],
  479 + [117.272326, 39.090531],
  480 + [117.267873, 39.085295],
  481 + [117.266977, 39.079803]
  482 + ]
  483 + ]
  484 + ]
  485 + },
  486 + "properties": {
  487 + "adcode": 120110,
  488 + "name": "东丽区",
  489 + "center": [117.313967, 39.087764],
  490 + "centroid": [117.409531, 39.133692],
  491 + "childrenNum": 0,
  492 + "level": "district",
  493 + "parent": "{ \"adcode\": 120000 }",
  494 + "subFeatureIndex": 6,
  495 + "acroutes": [100000, 120000]
  496 + }
  497 + },
  498 + {
  499 + "type": "Feature",
  500 + "geometry": {
  501 + "type": "MultiPolygon",
  502 + "coordinates": [
  503 + [
  504 + [
  505 + [117.128475, 39.15224],
  506 + [117.126317, 39.158919],
  507 + [117.129901, 39.171901],
  508 + [117.123792, 39.173894],
  509 + [117.104093, 39.176244],
  510 + [117.085603, 39.174115],
  511 + [117.073805, 39.169482],
  512 + [117.074552, 39.159822],
  513 + [117.067492, 39.159226],
  514 + [117.066746, 39.164729],
  515 + [117.064397, 39.165427],
  516 + [117.047929, 39.160027],
  517 + [117.03844, 39.159975],
  518 + [117.031977, 39.156687],
  519 + [117.029344, 39.171424],
  520 + [117.025678, 39.170998],
  521 + [117.026479, 39.164507],
  522 + [117.0228, 39.163451],
  523 + [117.023547, 39.157011],
  524 + [117.026534, 39.155273],
  525 + [117.012958, 39.15057],
  526 + [117.011654, 39.161798],
  527 + [117.008002, 39.160878],
  528 + [117.004255, 39.170674],
  529 + [116.993503, 39.168528],
  530 + [116.992309, 39.171424],
  531 + [116.973384, 39.167659],
  532 + [116.96798, 39.168408],
  533 + [116.967261, 39.1742],
  534 + [116.962401, 39.177113],
  535 + [116.958016, 39.168902],
  536 + [116.953821, 39.170367],
  537 + [116.949056, 39.166143],
  538 + [116.946503, 39.159328],
  539 + [116.940475, 39.160759],
  540 + [116.941562, 39.163281],
  541 + [116.928203, 39.160487],
  542 + [116.928854, 39.156176],
  543 + [116.938548, 39.154302],
  544 + [116.93833, 39.150655],
  545 + [116.923153, 39.149411],
  546 + [116.928352, 39.135318],
  547 + [116.923071, 39.13421],
  548 + [116.922162, 39.131211],
  549 + [116.926112, 39.119636],
  550 + [116.923696, 39.118614],
  551 + [116.919283, 39.109237],
  552 + [116.911097, 39.111044],
  553 + [116.909549, 39.103065],
  554 + [116.906047, 39.103099],
  555 + [116.901893, 39.090974],
  556 + [116.896707, 39.091674],
  557 + [116.894195, 39.084323],
  558 + [116.890638, 39.084852],
  559 + [116.886606, 39.077279],
  560 + [116.882818, 39.077944],
  561 + [116.881474, 39.071718],
  562 + [116.898186, 39.066668],
  563 + [116.897182, 39.062761],
  564 + [116.886769, 39.0594],
  565 + [116.888995, 39.055067],
  566 + [116.90101, 39.061328],
  567 + [116.905002, 39.057421],
  568 + [116.908667, 39.061175],
  569 + [116.921659, 39.060117],
  570 + [116.934706, 39.054435],
  571 + [116.940924, 39.050101],
  572 + [116.94558, 39.057046],
  573 + [116.948974, 39.054282],
  574 + [116.962387, 39.050767],
  575 + [116.960581, 39.046688],
  576 + [116.968388, 39.045494],
  577 + [116.970315, 39.038838],
  578 + [116.990218, 39.036636],
  579 + [117.015795, 39.030304],
  580 + [117.038209, 39.021206],
  581 + [117.033335, 39.01559],
  582 + [117.040517, 39.012738],
  583 + [117.037571, 39.010468],
  584 + [117.035317, 38.997388],
  585 + [117.057147, 38.995868],
  586 + [117.057975, 39.000872],
  587 + [117.063066, 39.005021],
  588 + [117.078611, 38.993973],
  589 + [117.108655, 38.981813],
  590 + [117.122529, 38.975031],
  591 + [117.13696, 38.963603],
  592 + [117.158736, 38.936176],
  593 + [117.168077, 38.925203],
  594 + [117.179005, 38.910363],
  595 + [117.193966, 38.894854],
  596 + [117.248799, 38.851729],
  597 + [117.258886, 38.847365],
  598 + [117.30423, 38.833417],
  599 + [117.312905, 38.831072],
  600 + [117.326929, 38.823728],
  601 + [117.331504, 38.824687],
  602 + [117.335998, 38.828744],
  603 + [117.33016, 38.830182],
  604 + [117.331314, 38.832732],
  605 + [117.327377, 38.836737],
  606 + [117.339256, 38.843532],
  607 + [117.336147, 38.850035],
  608 + [117.344523, 38.851763],
  609 + [117.342147, 38.86102],
  610 + [117.337912, 38.861054],
  611 + [117.337477, 38.864921],
  612 + [117.341089, 38.865023],
  613 + [117.336038, 38.869249],
  614 + [117.334002, 38.876468],
  615 + [117.32978, 38.875493],
  616 + [117.328639, 38.883772],
  617 + [117.324295, 38.88709],
  618 + [117.308018, 38.885961],
  619 + [117.269516, 38.919869],
  620 + [117.272489, 38.92375],
  621 + [117.261289, 38.929305],
  622 + [117.266041, 38.94332],
  623 + [117.245473, 38.952992],
  624 + [117.246573, 38.954],
  625 + [117.260379, 38.952069],
  626 + [117.268905, 38.963603],
  627 + [117.269951, 38.967464],
  628 + [117.273765, 38.970265],
  629 + [117.268566, 38.972981],
  630 + [117.273507, 38.978516],
  631 + [117.282305, 38.972828],
  632 + [117.284735, 38.968899],
  633 + [117.285916, 38.980702],
  634 + [117.292392, 38.988269],
  635 + [117.289799, 38.99165],
  636 + [117.294034, 38.994126],
  637 + [117.288536, 38.996227],
  638 + [117.295107, 38.998174],
  639 + [117.29121, 39.002835],
  640 + [117.28297, 38.999403],
  641 + [117.277607, 39.002631],
  642 + [117.274485, 39.014855],
  643 + [117.266611, 39.02054],
  644 + [117.262457, 39.018936],
  645 + [117.256904, 39.020762],
  646 + [117.259198, 39.022742],
  647 + [117.265253, 39.020694],
  648 + [117.262932, 39.025952],
  649 + [117.263719, 39.033598],
  650 + [117.26729, 39.039453],
  651 + [117.251908, 39.036995],
  652 + [117.234572, 39.033377],
  653 + [117.217724, 39.034315],
  654 + [117.21771, 39.056227],
  655 + [117.21118, 39.058155],
  656 + [117.21414, 39.060185],
  657 + [117.203876, 39.071718],
  658 + [117.188535, 39.066924],
  659 + [117.171443, 39.061448],
  660 + [117.164357, 39.063052],
  661 + [117.159062, 39.062369],
  662 + [117.132399, 39.079854],
  663 + [117.121402, 39.084528],
  664 + [117.136825, 39.091094],
  665 + [117.133824, 39.097165],
  666 + [117.131761, 39.114624],
  667 + [117.129643, 39.117165],
  668 + [117.109768, 39.1345],
  669 + [117.113569, 39.135898],
  670 + [117.122122, 39.142936],
  671 + [117.120941, 39.146498],
  672 + [117.126412, 39.147673],
  673 + [117.128475, 39.15224]
  674 + ]
  675 + ]
  676 + ]
  677 + },
  678 + "properties": {
  679 + "adcode": 120111,
  680 + "name": "西青区",
  681 + "center": [117.012247, 39.139446],
  682 + "centroid": [117.118438, 39.028602],
  683 + "childrenNum": 0,
  684 + "level": "district",
  685 + "parent": "{ \"adcode\": 120000 }",
  686 + "subFeatureIndex": 7,
  687 + "acroutes": [100000, 120000]
  688 + }
  689 + },
  690 + {
  691 + "type": "Feature",
  692 + "geometry": {
  693 + "type": "MultiPolygon",
  694 + "coordinates": [
  695 + [
  696 + [
  697 + [117.26729, 39.039453],
  698 + [117.263719, 39.033598],
  699 + [117.262932, 39.025952],
  700 + [117.265253, 39.020694],
  701 + [117.259198, 39.022742],
  702 + [117.256904, 39.020762],
  703 + [117.262457, 39.018936],
  704 + [117.266611, 39.02054],
  705 + [117.274485, 39.014855],
  706 + [117.277607, 39.002631],
  707 + [117.28297, 38.999403],
  708 + [117.29121, 39.002835],
  709 + [117.295107, 38.998174],
  710 + [117.288536, 38.996227],
  711 + [117.294034, 38.994126],
  712 + [117.289799, 38.99165],
  713 + [117.292392, 38.988269],
  714 + [117.285916, 38.980702],
  715 + [117.284735, 38.968899],
  716 + [117.282305, 38.972828],
  717 + [117.273507, 38.978516],
  718 + [117.268566, 38.972981],
  719 + [117.273765, 38.970265],
  720 + [117.269951, 38.967464],
  721 + [117.268905, 38.963603],
  722 + [117.260379, 38.952069],
  723 + [117.246573, 38.954],
  724 + [117.245473, 38.952992],
  725 + [117.266041, 38.94332],
  726 + [117.261289, 38.929305],
  727 + [117.272489, 38.92375],
  728 + [117.269516, 38.919869],
  729 + [117.308018, 38.885961],
  730 + [117.324295, 38.88709],
  731 + [117.328639, 38.883772],
  732 + [117.32978, 38.875493],
  733 + [117.334002, 38.876468],
  734 + [117.336038, 38.869249],
  735 + [117.341089, 38.865023],
  736 + [117.337477, 38.864921],
  737 + [117.337912, 38.861054],
  738 + [117.342147, 38.86102],
  739 + [117.344523, 38.851763],
  740 + [117.336147, 38.850035],
  741 + [117.339256, 38.843532],
  742 + [117.362946, 38.857529],
  743 + [117.387803, 38.87279],
  744 + [117.407529, 38.887278],
  745 + [117.437464, 38.858607],
  746 + [117.440587, 38.869745],
  747 + [117.448284, 38.879444],
  748 + [117.464494, 38.89075],
  749 + [117.486881, 38.905473],
  750 + [117.503294, 38.907765],
  751 + [117.497063, 38.94279],
  752 + [117.511508, 38.947456],
  753 + [117.512865, 38.945183],
  754 + [117.52169, 38.952035],
  755 + [117.529251, 38.95318],
  756 + [117.543615, 38.943047],
  757 + [117.550987, 38.943029],
  758 + [117.548679, 38.958716],
  759 + [117.550308, 38.959109],
  760 + [117.549357, 38.968164],
  761 + [117.555168, 38.981317],
  762 + [117.556974, 38.981591],
  763 + [117.560164, 38.988884],
  764 + [117.558005, 38.991975],
  765 + [117.549697, 38.991497],
  766 + [117.53999, 39.001111],
  767 + [117.531152, 39.005841],
  768 + [117.526984, 39.005994],
  769 + [117.523441, 39.004662],
  770 + [117.511766, 38.995305],
  771 + [117.508928, 38.996466],
  772 + [117.502765, 39.007531],
  773 + [117.495447, 39.015692],
  774 + [117.489705, 39.016511],
  775 + [117.481695, 39.013353],
  776 + [117.475328, 39.014155],
  777 + [117.469897, 39.018577],
  778 + [117.471798, 39.029075],
  779 + [117.468214, 39.03336],
  780 + [117.464345, 39.032847],
  781 + [117.459485, 39.02858],
  782 + [117.448732, 39.022794],
  783 + [117.437519, 39.020472],
  784 + [117.420399, 39.020745],
  785 + [117.412349, 39.022742],
  786 + [117.398773, 39.029007],
  787 + [117.393193, 39.033667],
  788 + [117.388428, 39.041944],
  789 + [117.384803, 39.05121],
  790 + [117.380242, 39.053633],
  791 + [117.371431, 39.052149],
  792 + [117.358751, 39.051603],
  793 + [117.347863, 39.053872],
  794 + [117.33764, 39.059503],
  795 + [117.328775, 39.068323],
  796 + [117.313366, 39.075095],
  797 + [117.305167, 39.076801],
  798 + [117.292446, 39.077432],
  799 + [117.285997, 39.070473],
  800 + [117.288468, 39.060202],
  801 + [117.283092, 39.058991],
  802 + [117.286825, 39.051023],
  803 + [117.280458, 39.048924],
  804 + [117.278042, 39.053548],
  805 + [117.267697, 39.050357],
  806 + [117.272476, 39.04278],
  807 + [117.266502, 39.041227],
  808 + [117.26729, 39.039453]
  809 + ]
  810 + ]
  811 + ]
  812 + },
  813 + "properties": {
  814 + "adcode": 120112,
  815 + "name": "津南区",
  816 + "center": [117.382549, 38.989577],
  817 + "centroid": [117.387949, 38.963139],
  818 + "childrenNum": 0,
  819 + "level": "district",
  820 + "parent": "{ \"adcode\": 120000 }",
  821 + "subFeatureIndex": 8,
  822 + "acroutes": [100000, 120000]
  823 + }
  824 + },
  825 + {
  826 + "type": "Feature",
  827 + "geometry": {
  828 + "type": "Polygon",
  829 + "coordinates": [
  830 + [
  831 + [116.949056, 39.166143],
  832 + [116.940815, 39.171287],
  833 + [116.94444, 39.173894],
  834 + [116.940421, 39.174439],
  835 + [116.938928, 39.180826],
  836 + [116.941399, 39.188592],
  837 + [116.957839, 39.189665],
  838 + [116.964614, 39.187775],
  839 + [116.964328, 39.192254],
  840 + [116.967207, 39.207919],
  841 + [116.971198, 39.208873],
  842 + [116.968143, 39.213844],
  843 + [116.97208, 39.216551],
  844 + [116.967695, 39.229419],
  845 + [116.977334, 39.231989],
  846 + [116.979954, 39.230764],
  847 + [116.98939, 39.239563],
  848 + [116.990096, 39.2454],
  849 + [116.996178, 39.24329],
  850 + [117.005817, 39.243017],
  851 + [117.010772, 39.248803],
  852 + [117.011505, 39.256698],
  853 + [117.023004, 39.256902],
  854 + [117.025393, 39.262618],
  855 + [117.024131, 39.270648],
  856 + [117.017641, 39.268232],
  857 + [117.01684, 39.272553],
  858 + [117.019651, 39.273029],
  859 + [117.015795, 39.280921],
  860 + [117.017709, 39.281007],
  861 + [117.016637, 39.287775],
  862 + [117.037245, 39.292197],
  863 + [117.035371, 39.289],
  864 + [117.04835, 39.291228],
  865 + [117.05359, 39.281092],
  866 + [117.06422, 39.281296],
  867 + [117.075611, 39.283081],
  868 + [117.071036, 39.284578],
  869 + [117.069854, 39.28769],
  870 + [117.076575, 39.289782],
  871 + [117.075095, 39.293897],
  872 + [117.088847, 39.299747],
  873 + [117.079602, 39.307823],
  874 + [117.10507, 39.312855],
  875 + [117.11999, 39.310764],
  876 + [117.127254, 39.311631],
  877 + [117.134544, 39.305902],
  878 + [117.140653, 39.304967],
  879 + [117.146708, 39.30614],
  880 + [117.146233, 39.308044],
  881 + [117.153048, 39.310203],
  882 + [117.157664, 39.315915],
  883 + [117.155505, 39.323242],
  884 + [117.160026, 39.324397],
  885 + [117.1608, 39.319145],
  886 + [117.165321, 39.32178],
  887 + [117.164438, 39.327559],
  888 + [117.159659, 39.326709],
  889 + [117.160623, 39.329938],
  890 + [117.167506, 39.332097],
  891 + [117.168199, 39.329021],
  892 + [117.172529, 39.329123],
  893 + [117.172991, 39.326233],
  894 + [117.179711, 39.326777],
  895 + [117.184218, 39.333626],
  896 + [117.192663, 39.333558],
  897 + [117.191386, 39.343772],
  898 + [117.195758, 39.345471],
  899 + [117.195432, 39.349413],
  900 + [117.199315, 39.346236],
  901 + [117.204908, 39.346321],
  902 + [117.204935, 39.35011],
  903 + [117.222679, 39.356141],
  904 + [117.233689, 39.353355],
  905 + [117.233065, 39.355445],
  906 + [117.238563, 39.357501],
  907 + [117.250944, 39.353814],
  908 + [117.254515, 39.348513],
  909 + [117.263665, 39.348071],
  910 + [117.265104, 39.344859],
  911 + [117.268742, 39.34542],
  912 + [117.269407, 39.351299],
  913 + [117.274254, 39.352166],
  914 + [117.279549, 39.347731],
  915 + [117.285522, 39.348852],
  916 + [117.292052, 39.347595],
  917 + [117.296356, 39.337263],
  918 + [117.304827, 39.336923],
  919 + [117.306171, 39.331961],
  920 + [117.301908, 39.32987],
  921 + [117.303985, 39.326437],
  922 + [117.316747, 39.328817],
  923 + [117.317928, 39.325281],
  924 + [117.3242, 39.329649],
  925 + [117.331952, 39.320828],
  926 + [117.334708, 39.323429],
  927 + [117.339079, 39.318941],
  928 + [117.338305, 39.313569],
  929 + [117.332495, 39.309642],
  930 + [117.337722, 39.306004],
  931 + [117.343139, 39.31039],
  932 + [117.352167, 39.302739],
  933 + [117.36243, 39.296023],
  934 + [117.356199, 39.2932],
  935 + [117.364629, 39.287367],
  936 + [117.369041, 39.291602],
  937 + [117.384056, 39.280054],
  938 + [117.397239, 39.284051],
  939 + [117.401515, 39.287622],
  940 + [117.405452, 39.282554],
  941 + [117.407108, 39.274475],
  942 + [117.400402, 39.259148],
  943 + [117.393994, 39.257276],
  944 + [117.393913, 39.248054],
  945 + [117.399913, 39.246387],
  946 + [117.403144, 39.240312],
  947 + [117.395745, 39.239784],
  948 + [117.384627, 39.233589],
  949 + [117.386405, 39.230492],
  950 + [117.368295, 39.233436],
  951 + [117.347985, 39.234185],
  952 + [117.333567, 39.235819],
  953 + [117.326793, 39.234593],
  954 + [117.324526, 39.237929],
  955 + [117.299261, 39.244362],
  956 + [117.290314, 39.248514],
  957 + [117.282997, 39.244345],
  958 + [117.283689, 39.242013],
  959 + [117.292473, 39.243698],
  960 + [117.295052, 39.240363],
  961 + [117.297903, 39.223258],
  962 + [117.291482, 39.219342],
  963 + [117.27253, 39.215751],
  964 + [117.259728, 39.210933],
  965 + [117.247007, 39.20448],
  966 + [117.233485, 39.193054],
  967 + [117.223982, 39.184965],
  968 + [117.221946, 39.184692],
  969 + [117.216122, 39.191283],
  970 + [117.210773, 39.192918],
  971 + [117.197265, 39.186106],
  972 + [117.191916, 39.19193],
  973 + [117.188603, 39.190227],
  974 + [117.171783, 39.18631],
  975 + [117.167547, 39.183994],
  976 + [117.159293, 39.190346],
  977 + [117.148568, 39.189103],
  978 + [117.141766, 39.19113],
  979 + [117.134313, 39.185356],
  980 + [117.131136, 39.178867],
  981 + [117.129901, 39.171901],
  982 + [117.123792, 39.173894],
  983 + [117.104093, 39.176244],
  984 + [117.085603, 39.174115],
  985 + [117.073805, 39.169482],
  986 + [117.074552, 39.159822],
  987 + [117.067492, 39.159226],
  988 + [117.066746, 39.164729],
  989 + [117.064397, 39.165427],
  990 + [117.047929, 39.160027],
  991 + [117.03844, 39.159975],
  992 + [117.031977, 39.156687],
  993 + [117.029344, 39.171424],
  994 + [117.025678, 39.170998],
  995 + [117.026479, 39.164507],
  996 + [117.0228, 39.163451],
  997 + [117.023547, 39.157011],
  998 + [117.026534, 39.155273],
  999 + [117.012958, 39.15057],
  1000 + [117.011654, 39.161798],
  1001 + [117.008002, 39.160878],
  1002 + [117.004255, 39.170674],
  1003 + [116.993503, 39.168528],
  1004 + [116.992309, 39.171424],
  1005 + [116.973384, 39.167659],
  1006 + [116.96798, 39.168408],
  1007 + [116.967261, 39.1742],
  1008 + [116.962401, 39.177113],
  1009 + [116.958016, 39.168902],
  1010 + [116.953821, 39.170367],
  1011 + [116.949056, 39.166143]
  1012 + ],
  1013 + [
  1014 + [117.130362, 39.18987],
  1015 + [117.140775, 39.193224],
  1016 + [117.14121, 39.197737],
  1017 + [117.132032, 39.203458],
  1018 + [117.125611, 39.200887],
  1019 + [117.12857, 39.19566],
  1020 + [117.12595, 39.194944],
  1021 + [117.130362, 39.18987]
  1022 + ]
  1023 + ]
  1024 + },
  1025 + "properties": {
  1026 + "adcode": 120113,
  1027 + "name": "北辰区",
  1028 + "center": [117.13482, 39.225555],
  1029 + "centroid": [117.173477, 39.253486],
  1030 + "childrenNum": 0,
  1031 + "level": "district",
  1032 + "parent": "{ \"adcode\": 120000 }",
  1033 + "subFeatureIndex": 9,
  1034 + "acroutes": [100000, 120000]
  1035 + }
  1036 + },
  1037 + {
  1038 + "type": "Feature",
  1039 + "geometry": {
  1040 + "type": "MultiPolygon",
  1041 + "coordinates": [
  1042 + [
  1043 + [
  1044 + [117.3242, 39.329649],
  1045 + [117.328015, 39.339914],
  1046 + [117.322775, 39.348717],
  1047 + [117.328504, 39.350076],
  1048 + [117.320752, 39.350552],
  1049 + [117.316312, 39.355819],
  1050 + [117.316625, 39.362665],
  1051 + [117.314928, 39.366386],
  1052 + [117.303089, 39.368917],
  1053 + [117.299519, 39.379023],
  1054 + [117.305628, 39.380568],
  1055 + [117.309253, 39.386411],
  1056 + [117.313461, 39.38945],
  1057 + [117.307922, 39.399825],
  1058 + [117.313326, 39.402508],
  1059 + [117.313041, 39.40609],
  1060 + [117.320331, 39.401727],
  1061 + [117.31896, 39.394273],
  1062 + [117.325083, 39.397499],
  1063 + [117.324241, 39.401303],
  1064 + [117.332386, 39.395105],
  1065 + [117.340179, 39.400997],
  1066 + [117.337179, 39.403951],
  1067 + [117.334463, 39.418517],
  1068 + [117.329888, 39.422777],
  1069 + [117.325626, 39.43218],
  1070 + [117.325463, 39.43666],
  1071 + [117.322286, 39.441819],
  1072 + [117.327241, 39.443804],
  1073 + [117.325327, 39.446248],
  1074 + [117.320725, 39.444687],
  1075 + [117.318865, 39.448012],
  1076 + [117.310312, 39.456071],
  1077 + [117.307502, 39.460991],
  1078 + [117.304406, 39.461941],
  1079 + [117.299519, 39.46988],
  1080 + [117.293532, 39.473136],
  1081 + [117.295161, 39.477411],
  1082 + [117.299505, 39.478377],
  1083 + [117.298189, 39.483465],
  1084 + [117.295188, 39.484856],
  1085 + [117.294509, 39.491452],
  1086 + [117.288699, 39.495827],
  1087 + [117.282359, 39.49564],
  1088 + [117.278816, 39.499506],
  1089 + [117.271865, 39.498506],
  1090 + [117.270276, 39.500863],
  1091 + [117.265552, 39.50049],
  1092 + [117.266312, 39.508339],
  1093 + [117.272028, 39.51078],
  1094 + [117.270426, 39.515713],
  1095 + [117.26357, 39.522612],
  1096 + [117.255139, 39.523646],
  1097 + [117.254392, 39.527052],
  1098 + [117.261927, 39.527866],
  1099 + [117.265647, 39.526256],
  1100 + [117.275938, 39.527612],
  1101 + [117.274879, 39.532781],
  1102 + [117.254067, 39.545422],
  1103 + [117.245527, 39.545049],
  1104 + [117.245229, 39.541389],
  1105 + [117.241848, 39.546387],
  1106 + [117.233092, 39.547878],
  1107 + [117.238712, 39.553469],
  1108 + [117.227661, 39.559771],
  1109 + [117.212212, 39.571171],
  1110 + [117.200143, 39.578945],
  1111 + [117.188983, 39.587107],
  1112 + [117.173833, 39.596539],
  1113 + [117.165606, 39.602769],
  1114 + [117.146708, 39.614348],
  1115 + [117.149681, 39.616616],
  1116 + [117.147875, 39.622608],
  1117 + [117.140083, 39.620949],
  1118 + [117.136078, 39.618072],
  1119 + [117.125109, 39.621914],
  1120 + [117.127064, 39.616971],
  1121 + [117.112659, 39.621372],
  1122 + [117.112374, 39.624402],
  1123 + [117.103278, 39.625163],
  1124 + [117.10093, 39.629648],
  1125 + [117.088277, 39.633489],
  1126 + [117.078597, 39.637906],
  1127 + [117.057066, 39.644572],
  1128 + [117.04087, 39.647956],
  1129 + [117.033131, 39.65068],
  1130 + [117.015768, 39.654063],
  1131 + [117.00788, 39.648582],
  1132 + [117.004405, 39.644505],
  1133 + [116.989919, 39.641493],
  1134 + [116.977036, 39.636366],
  1135 + [116.974565, 39.636789],
  1136 + [116.975352, 39.644843],
  1137 + [116.971388, 39.648887],
  1138 + [116.964369, 39.643591],
  1139 + [116.957744, 39.651069],
  1140 + [116.955341, 39.658665],
  1141 + [116.957513, 39.666243],
  1142 + [116.945689, 39.670792],
  1143 + [116.945471, 39.67661],
  1144 + [116.951458, 39.678149],
  1145 + [116.944141, 39.686807],
  1146 + [116.944575, 39.695143],
  1147 + [116.948377, 39.702818],
  1148 + [116.952667, 39.699657],
  1149 + [116.950848, 39.706825],
  1150 + [116.937679, 39.706402],
  1151 + [116.934828, 39.703545],
  1152 + [116.932425, 39.706672],
  1153 + [116.916921, 39.706385],
  1154 + [116.916867, 39.699352],
  1155 + [116.911287, 39.695379],
  1156 + [116.91259, 39.689225],
  1157 + [116.905952, 39.687923],
  1158 + [116.90902, 39.682867],
  1159 + [116.905205, 39.68165],
  1160 + [116.906658, 39.677422],
  1161 + [116.891154, 39.674073],
  1162 + [116.883226, 39.675359],
  1163 + [116.873166, 39.671384],
  1164 + [116.863826, 39.670336],
  1165 + [116.860486, 39.667258],
  1166 + [116.849951, 39.667545],
  1167 + [116.851404, 39.652845],
  1168 + [116.839145, 39.647533],
  1169 + [116.84076, 39.644251],
  1170 + [116.833565, 39.644116],
  1171 + [116.834556, 39.641848],
  1172 + [116.826899, 39.63821],
  1173 + [116.828922, 39.635148],
  1174 + [116.82637, 39.633134],
  1175 + [116.838439, 39.622218],
  1176 + [116.834121, 39.621491],
  1177 + [116.835398, 39.617005],
  1178 + [116.825039, 39.613874],
  1179 + [116.82398, 39.617175],
  1180 + [116.819527, 39.619002],
  1181 + [116.812386, 39.615922],
  1182 + [116.81574, 39.606561],
  1183 + [116.81206, 39.60453],
  1184 + [116.813948, 39.600145],
  1185 + [116.808164, 39.60045],
  1186 + [116.807255, 39.60458],
  1187 + [116.80982, 39.608677],
  1188 + [116.799869, 39.604005],
  1189 + [116.805232, 39.603378],
  1190 + [116.803671, 39.601381],
  1191 + [116.8083, 39.597402],
  1192 + [116.804485, 39.597893],
  1193 + [116.797901, 39.594371],
  1194 + [116.800277, 39.586091],
  1195 + [116.81164, 39.576963],
  1196 + [116.808463, 39.576489],
  1197 + [116.807227, 39.571476],
  1198 + [116.796883, 39.567885],
  1199 + [116.798104, 39.566716],
  1200 + [116.791561, 39.559754],
  1201 + [116.792375, 39.556231],
  1202 + [116.78909, 39.555756],
  1203 + [116.787502, 39.548742],
  1204 + [116.795267, 39.54576],
  1205 + [116.798471, 39.536458],
  1206 + [116.801919, 39.536712],
  1207 + [116.803019, 39.530374],
  1208 + [116.806209, 39.528849],
  1209 + [116.815672, 39.529578],
  1210 + [116.819609, 39.52851],
  1211 + [116.818373, 39.533001],
  1212 + [116.821998, 39.534458],
  1213 + [116.825636, 39.527171],
  1214 + [116.823098, 39.52734],
  1215 + [116.825677, 39.512306],
  1216 + [116.813988, 39.510289],
  1217 + [116.816405, 39.501609],
  1218 + [116.811015, 39.500829],
  1219 + [116.817274, 39.496573],
  1220 + [116.820722, 39.482397],
  1221 + [116.810716, 39.480311],
  1222 + [116.811232, 39.477546],
  1223 + [116.798498, 39.475579],
  1224 + [116.799109, 39.473408],
  1225 + [116.788859, 39.472017],
  1226 + [116.785099, 39.465894],
  1227 + [116.790149, 39.465385],
  1228 + [116.791629, 39.460838],
  1229 + [116.794425, 39.461195],
  1230 + [116.79805, 39.457344],
  1231 + [116.797969, 39.450625],
  1232 + [116.792335, 39.453883],
  1233 + [116.795973, 39.446842],
  1234 + [116.799883, 39.449641],
  1235 + [116.807431, 39.44562],
  1236 + [116.810323, 39.450795],
  1237 + [116.81574, 39.451728],
  1238 + [116.826763, 39.445671],
  1239 + [116.827075, 39.438612],
  1240 + [116.832506, 39.435489],
  1241 + [116.840244, 39.439647],
  1242 + [116.847263, 39.438663],
  1243 + [116.847181, 39.441395],
  1244 + [116.855504, 39.443346],
  1245 + [116.862848, 39.43683],
  1246 + [116.868903, 39.43722],
  1247 + [116.875881, 39.434556],
  1248 + [116.87098, 39.427377],
  1249 + [116.864314, 39.430517],
  1250 + [116.864599, 39.425204],
  1251 + [116.860771, 39.424237],
  1252 + [116.852517, 39.416853],
  1253 + [116.85196, 39.413849],
  1254 + [116.844303, 39.412542],
  1255 + [116.840081, 39.413645],
  1256 + [116.838153, 39.410436],
  1257 + [116.839226, 39.40463],
  1258 + [116.834108, 39.402678],
  1259 + [116.835099, 39.397041],
  1260 + [116.839728, 39.394035],
  1261 + [116.837923, 39.391115],
  1262 + [116.841167, 39.381519],
  1263 + [116.836959, 39.377885],
  1264 + [116.837597, 39.374097],
  1265 + [116.823749, 39.372942],
  1266 + [116.818143, 39.37352],
  1267 + [116.820627, 39.366623],
  1268 + [116.826872, 39.363617],
  1269 + [116.834922, 39.365961],
  1270 + [116.83351, 39.360423],
  1271 + [116.823138, 39.357891],
  1272 + [116.829193, 39.338861],
  1273 + [116.842932, 39.340713],
  1274 + [116.847127, 39.343755],
  1275 + [116.849164, 39.339473],
  1276 + [116.857757, 39.347612],
  1277 + [116.861586, 39.349549],
  1278 + [116.860242, 39.354188],
  1279 + [116.870749, 39.357484],
  1280 + [116.874605, 39.356328],
  1281 + [116.876071, 39.352675],
  1282 + [116.872664, 39.352777],
  1283 + [116.870967, 39.346881],
  1284 + [116.872378, 39.34124],
  1285 + [116.875772, 39.339184],
  1286 + [116.881597, 39.340662],
  1287 + [116.889606, 39.338164],
  1288 + [116.889851, 39.332692],
  1289 + [116.887068, 39.332182],
  1290 + [116.88943, 39.323106],
  1291 + [116.887081, 39.314334],
  1292 + [116.882085, 39.313722],
  1293 + [116.884217, 39.305392],
  1294 + [116.867939, 39.302518],
  1295 + [116.866907, 39.298029],
  1296 + [116.862549, 39.297485],
  1297 + [116.863215, 39.292673],
  1298 + [116.86688, 39.290768],
  1299 + [116.872392, 39.291279],
  1300 + [116.874754, 39.283166],
  1301 + [116.876329, 39.270342],
  1302 + [116.871645, 39.269287],
  1303 + [116.878759, 39.255371],
  1304 + [116.875772, 39.253839],
  1305 + [116.876628, 39.240924],
  1306 + [116.882425, 39.238661],
  1307 + [116.884923, 39.24055],
  1308 + [116.8859, 39.232738],
  1309 + [116.891941, 39.231155],
  1310 + [116.890502, 39.22753],
  1311 + [116.892634, 39.223939],
  1312 + [116.887855, 39.224449],
  1313 + [116.884651, 39.221232],
  1314 + [116.883551, 39.226202],
  1315 + [116.880307, 39.225624],
  1316 + [116.879397, 39.230049],
  1317 + [116.874591, 39.230066],
  1318 + [116.875623, 39.216483],
  1319 + [116.871659, 39.217691],
  1320 + [116.855789, 39.215682],
  1321 + [116.857051, 39.205382],
  1322 + [116.860771, 39.205604],
  1323 + [116.863174, 39.201364],
  1324 + [116.863201, 39.185816],
  1325 + [116.864328, 39.182052],
  1326 + [116.863106, 39.174967],
  1327 + [116.865713, 39.173468],
  1328 + [116.865808, 39.157522],
  1329 + [116.870071, 39.153654],
  1330 + [116.893964, 39.154728],
  1331 + [116.909251, 39.150758],
  1332 + [116.914002, 39.146157],
  1333 + [116.91536, 39.138266],
  1334 + [116.918998, 39.138573],
  1335 + [116.923804, 39.124],
  1336 + [116.918455, 39.12354],
  1337 + [116.919786, 39.119943],
  1338 + [116.926112, 39.119636],
  1339 + [116.922162, 39.131211],
  1340 + [116.923071, 39.13421],
  1341 + [116.928352, 39.135318],
  1342 + [116.923153, 39.149411],
  1343 + [116.93833, 39.150655],
  1344 + [116.938548, 39.154302],
  1345 + [116.928854, 39.156176],
  1346 + [116.928203, 39.160487],
  1347 + [116.941562, 39.163281],
  1348 + [116.940475, 39.160759],
  1349 + [116.946503, 39.159328],
  1350 + [116.949056, 39.166143],
  1351 + [116.940815, 39.171287],
  1352 + [116.94444, 39.173894],
  1353 + [116.940421, 39.174439],
  1354 + [116.938928, 39.180826],
  1355 + [116.941399, 39.188592],
  1356 + [116.957839, 39.189665],
  1357 + [116.964614, 39.187775],
  1358 + [116.964328, 39.192254],
  1359 + [116.967207, 39.207919],
  1360 + [116.971198, 39.208873],
  1361 + [116.968143, 39.213844],
  1362 + [116.97208, 39.216551],
  1363 + [116.967695, 39.229419],
  1364 + [116.977334, 39.231989],
  1365 + [116.979954, 39.230764],
  1366 + [116.98939, 39.239563],
  1367 + [116.990096, 39.2454],
  1368 + [116.996178, 39.24329],
  1369 + [117.005817, 39.243017],
  1370 + [117.010772, 39.248803],
  1371 + [117.011505, 39.256698],
  1372 + [117.023004, 39.256902],
  1373 + [117.025393, 39.262618],
  1374 + [117.024131, 39.270648],
  1375 + [117.017641, 39.268232],
  1376 + [117.01684, 39.272553],
  1377 + [117.019651, 39.273029],
  1378 + [117.015795, 39.280921],
  1379 + [117.017709, 39.281007],
  1380 + [117.016637, 39.287775],
  1381 + [117.037245, 39.292197],
  1382 + [117.035371, 39.289],
  1383 + [117.04835, 39.291228],
  1384 + [117.05359, 39.281092],
  1385 + [117.06422, 39.281296],
  1386 + [117.075611, 39.283081],
  1387 + [117.071036, 39.284578],
  1388 + [117.069854, 39.28769],
  1389 + [117.076575, 39.289782],
  1390 + [117.075095, 39.293897],
  1391 + [117.088847, 39.299747],
  1392 + [117.079602, 39.307823],
  1393 + [117.10507, 39.312855],
  1394 + [117.11999, 39.310764],
  1395 + [117.127254, 39.311631],
  1396 + [117.134544, 39.305902],
  1397 + [117.140653, 39.304967],
  1398 + [117.146708, 39.30614],
  1399 + [117.146233, 39.308044],
  1400 + [117.153048, 39.310203],
  1401 + [117.157664, 39.315915],
  1402 + [117.155505, 39.323242],
  1403 + [117.160026, 39.324397],
  1404 + [117.1608, 39.319145],
  1405 + [117.165321, 39.32178],
  1406 + [117.164438, 39.327559],
  1407 + [117.159659, 39.326709],
  1408 + [117.160623, 39.329938],
  1409 + [117.167506, 39.332097],
  1410 + [117.168199, 39.329021],
  1411 + [117.172529, 39.329123],
  1412 + [117.172991, 39.326233],
  1413 + [117.179711, 39.326777],
  1414 + [117.184218, 39.333626],
  1415 + [117.192663, 39.333558],
  1416 + [117.191386, 39.343772],
  1417 + [117.195758, 39.345471],
  1418 + [117.195432, 39.349413],
  1419 + [117.199315, 39.346236],
  1420 + [117.204908, 39.346321],
  1421 + [117.204935, 39.35011],
  1422 + [117.222679, 39.356141],
  1423 + [117.233689, 39.353355],
  1424 + [117.233065, 39.355445],
  1425 + [117.238563, 39.357501],
  1426 + [117.250944, 39.353814],
  1427 + [117.254515, 39.348513],
  1428 + [117.263665, 39.348071],
  1429 + [117.265104, 39.344859],
  1430 + [117.268742, 39.34542],
  1431 + [117.269407, 39.351299],
  1432 + [117.274254, 39.352166],
  1433 + [117.279549, 39.347731],
  1434 + [117.285522, 39.348852],
  1435 + [117.292052, 39.347595],
  1436 + [117.296356, 39.337263],
  1437 + [117.304827, 39.336923],
  1438 + [117.306171, 39.331961],
  1439 + [117.301908, 39.32987],
  1440 + [117.303985, 39.326437],
  1441 + [117.316747, 39.328817],
  1442 + [117.317928, 39.325281],
  1443 + [117.3242, 39.329649]
  1444 + ]
  1445 + ]
  1446 + ]
  1447 + },
  1448 + "properties": {
  1449 + "adcode": 120114,
  1450 + "name": "武清区",
  1451 + "center": [117.057959, 39.376925],
  1452 + "centroid": [117.0282, 39.451188],
  1453 + "childrenNum": 0,
  1454 + "level": "district",
  1455 + "parent": "{ \"adcode\": 120000 }",
  1456 + "subFeatureIndex": 10,
  1457 + "acroutes": [100000, 120000]
  1458 + }
  1459 + },
  1460 + {
  1461 + "type": "Feature",
  1462 + "geometry": {
  1463 + "type": "MultiPolygon",
  1464 + "coordinates": [
  1465 + [
  1466 + [
  1467 + [117.25723, 39.829794],
  1468 + [117.237382, 39.833911],
  1469 + [117.226236, 39.830958],
  1470 + [117.22067, 39.827195],
  1471 + [117.220113, 39.830637],
  1472 + [117.21247, 39.832308],
  1473 + [117.208438, 39.831397],
  1474 + [117.207352, 39.834991],
  1475 + [117.200672, 39.832595],
  1476 + [117.199858, 39.834586],
  1477 + [117.19216, 39.833084],
  1478 + [117.195079, 39.825491],
  1479 + [117.190531, 39.826368],
  1480 + [117.167153, 39.823736],
  1481 + [117.167194, 39.819213],
  1482 + [117.162524, 39.817829],
  1483 + [117.159089, 39.821862],
  1484 + [117.156333, 39.817491],
  1485 + [117.161669, 39.807027],
  1486 + [117.157148, 39.806757],
  1487 + [117.157501, 39.79673],
  1488 + [117.167764, 39.799667],
  1489 + [117.178734, 39.795345],
  1490 + [117.180621, 39.782463],
  1491 + [117.192242, 39.775793],
  1492 + [117.205899, 39.763852],
  1493 + [117.201745, 39.7599],
  1494 + [117.194957, 39.759832],
  1495 + [117.192825, 39.754984],
  1496 + [117.186934, 39.755795],
  1497 + [117.184734, 39.75191],
  1498 + [117.173072, 39.751876],
  1499 + [117.161872, 39.748126],
  1500 + [117.166122, 39.738022],
  1501 + [117.160365, 39.739019],
  1502 + [117.160501, 39.736468],
  1503 + [117.15374, 39.736316],
  1504 + [117.155288, 39.729236],
  1505 + [117.153184, 39.722729],
  1506 + [117.158858, 39.723389],
  1507 + [117.160705, 39.720803],
  1508 + [117.166312, 39.722189],
  1509 + [117.169203, 39.717592],
  1510 + [117.163569, 39.715817],
  1511 + [117.164289, 39.711828],
  1512 + [117.169149, 39.713535],
  1513 + [117.170697, 39.708295],
  1514 + [117.168294, 39.70816],
  1515 + [117.170357, 39.689259],
  1516 + [117.16771, 39.686875],
  1517 + [117.170113, 39.673363],
  1518 + [117.166135, 39.672974],
  1519 + [117.164655, 39.666699],
  1520 + [117.159605, 39.666852],
  1521 + [117.158899, 39.661236],
  1522 + [117.163461, 39.6588],
  1523 + [117.164017, 39.651746],
  1524 + [117.169258, 39.651797],
  1525 + [117.169068, 39.648159],
  1526 + [117.177675, 39.645621],
  1527 + [117.177892, 39.642965],
  1528 + [117.173005, 39.641205],
  1529 + [117.172828, 39.636755],
  1530 + [117.157949, 39.636603],
  1531 + [117.154989, 39.631374],
  1532 + [117.150278, 39.628633],
  1533 + [117.154161, 39.626043],
  1534 + [117.147875, 39.622608],
  1535 + [117.149681, 39.616616],
  1536 + [117.146708, 39.614348],
  1537 + [117.165606, 39.602769],
  1538 + [117.173833, 39.596539],
  1539 + [117.188983, 39.587107],
  1540 + [117.200143, 39.578945],
  1541 + [117.212212, 39.571171],
  1542 + [117.227661, 39.559771],
  1543 + [117.238712, 39.553469],
  1544 + [117.233092, 39.547878],
  1545 + [117.241848, 39.546387],
  1546 + [117.245229, 39.541389],
  1547 + [117.245527, 39.545049],
  1548 + [117.254067, 39.545422],
  1549 + [117.274879, 39.532781],
  1550 + [117.275938, 39.527612],
  1551 + [117.265647, 39.526256],
  1552 + [117.261927, 39.527866],
  1553 + [117.254392, 39.527052],
  1554 + [117.255139, 39.523646],
  1555 + [117.26357, 39.522612],
  1556 + [117.270426, 39.515713],
  1557 + [117.272028, 39.51078],
  1558 + [117.266312, 39.508339],
  1559 + [117.265552, 39.50049],
  1560 + [117.270276, 39.500863],
  1561 + [117.271865, 39.498506],
  1562 + [117.278816, 39.499506],
  1563 + [117.282359, 39.49564],
  1564 + [117.288699, 39.495827],
  1565 + [117.294509, 39.491452],
  1566 + [117.295188, 39.484856],
  1567 + [117.298189, 39.483465],
  1568 + [117.299505, 39.478377],
  1569 + [117.295161, 39.477411],
  1570 + [117.293532, 39.473136],
  1571 + [117.299519, 39.46988],
  1572 + [117.304406, 39.461941],
  1573 + [117.307502, 39.460991],
  1574 + [117.310312, 39.456071],
  1575 + [117.318865, 39.448012],
  1576 + [117.320725, 39.444687],
  1577 + [117.325327, 39.446248],
  1578 + [117.327241, 39.443804],
  1579 + [117.322286, 39.441819],
  1580 + [117.325463, 39.43666],
  1581 + [117.325626, 39.43218],
  1582 + [117.329888, 39.422777],
  1583 + [117.334463, 39.418517],
  1584 + [117.337179, 39.403951],
  1585 + [117.340179, 39.400997],
  1586 + [117.332386, 39.395105],
  1587 + [117.324241, 39.401303],
  1588 + [117.325083, 39.397499],
  1589 + [117.31896, 39.394273],
  1590 + [117.320331, 39.401727],
  1591 + [117.313041, 39.40609],
  1592 + [117.313326, 39.402508],
  1593 + [117.307922, 39.399825],
  1594 + [117.313461, 39.38945],
  1595 + [117.309253, 39.386411],
  1596 + [117.305628, 39.380568],
  1597 + [117.299519, 39.379023],
  1598 + [117.303089, 39.368917],
  1599 + [117.314928, 39.366386],
  1600 + [117.316625, 39.362665],
  1601 + [117.316312, 39.355819],
  1602 + [117.320752, 39.350552],
  1603 + [117.328504, 39.350076],
  1604 + [117.330214, 39.353593],
  1605 + [117.335088, 39.353831],
  1606 + [117.337708, 39.359267],
  1607 + [117.350483, 39.361493],
  1608 + [117.370589, 39.35976],
  1609 + [117.382427, 39.360304],
  1610 + [117.38445, 39.362665],
  1611 + [117.3895, 39.36044],
  1612 + [117.389487, 39.354408],
  1613 + [117.392555, 39.352658],
  1614 + [117.415716, 39.350535],
  1615 + [117.415186, 39.346525],
  1616 + [117.433894, 39.347119],
  1617 + [117.436514, 39.352319],
  1618 + [117.43312, 39.355377],
  1619 + [117.432903, 39.360049],
  1620 + [117.43855, 39.35784],
  1621 + [117.441727, 39.361646],
  1622 + [117.448855, 39.35886],
  1623 + [117.454801, 39.361969],
  1624 + [117.46163, 39.362444],
  1625 + [117.46539, 39.35959],
  1626 + [117.47321, 39.362071],
  1627 + [117.47135, 39.36523],
  1628 + [117.477418, 39.366572],
  1629 + [117.486093, 39.372297],
  1630 + [117.483867, 39.375065],
  1631 + [117.485645, 39.379532],
  1632 + [117.508032, 39.383608],
  1633 + [117.505874, 39.386139],
  1634 + [117.501081, 39.384865],
  1635 + [117.497619, 39.392337],
  1636 + [117.497891, 39.395513],
  1637 + [117.494986, 39.40497],
  1638 + [117.496995, 39.405394],
  1639 + [117.494986, 39.414647],
  1640 + [117.491225, 39.413679],
  1641 + [117.483256, 39.445654],
  1642 + [117.483392, 39.449064],
  1643 + [117.489148, 39.448623],
  1644 + [117.492461, 39.451847],
  1645 + [117.499344, 39.454426],
  1646 + [117.496995, 39.459397],
  1647 + [117.502928, 39.462009],
  1648 + [117.509512, 39.456326],
  1649 + [117.519287, 39.45921],
  1650 + [117.517983, 39.46318],
  1651 + [117.523156, 39.463638],
  1652 + [117.524378, 39.466403],
  1653 + [117.541334, 39.464384],
  1654 + [117.55138, 39.46776],
  1655 + [117.557055, 39.471627],
  1656 + [117.564943, 39.480769],
  1657 + [117.562227, 39.485704],
  1658 + [117.5581, 39.486585],
  1659 + [117.555887, 39.494555],
  1660 + [117.567223, 39.497692],
  1661 + [117.567549, 39.493962],
  1662 + [117.572396, 39.494928],
  1663 + [117.572857, 39.49096],
  1664 + [117.577405, 39.491774],
  1665 + [117.580188, 39.485093],
  1666 + [117.59667, 39.48745],
  1667 + [117.607503, 39.48974],
  1668 + [117.605752, 39.494199],
  1669 + [117.608902, 39.499744],
  1670 + [117.610626, 39.511899],
  1671 + [117.63065, 39.516001],
  1672 + [117.637099, 39.522069],
  1673 + [117.633365, 39.534797],
  1674 + [117.634153, 39.53717],
  1675 + [117.658291, 39.531137],
  1676 + [117.659811, 39.527612],
  1677 + [117.667672, 39.530255],
  1678 + [117.668446, 39.53234],
  1679 + [117.676646, 39.533187],
  1680 + [117.681112, 39.536593],
  1681 + [117.687941, 39.534899],
  1682 + [117.690751, 39.537542],
  1683 + [117.690398, 39.547455],
  1684 + [117.69462, 39.551097],
  1685 + [117.700879, 39.551741],
  1686 + [117.708712, 39.548217],
  1687 + [117.708441, 39.555079],
  1688 + [117.703689, 39.557501],
  1689 + [117.695774, 39.557315],
  1690 + [117.689597, 39.559517],
  1691 + [117.685674, 39.56443],
  1692 + [117.688796, 39.569223],
  1693 + [117.697295, 39.564785],
  1694 + [117.704069, 39.565378],
  1695 + [117.70825, 39.568732],
  1696 + [117.708576, 39.573796],
  1697 + [117.705861, 39.576489],
  1698 + [117.693602, 39.581045],
  1699 + [117.685877, 39.588191],
  1700 + [117.681642, 39.589986],
  1701 + [117.673795, 39.589021],
  1702 + [117.67165, 39.582044],
  1703 + [117.660816, 39.575388],
  1704 + [117.655657, 39.574914],
  1705 + [117.650702, 39.579233],
  1706 + [117.655711, 39.585329],
  1707 + [117.655779, 39.588174],
  1708 + [117.651014, 39.594168],
  1709 + [117.63938, 39.593118],
  1710 + [117.637153, 39.59769],
  1711 + [117.636827, 39.6037],
  1712 + [117.632198, 39.602346],
  1713 + [117.62651, 39.594287],
  1714 + [117.621935, 39.591679],
  1715 + [117.619056, 39.603209],
  1716 + [117.620034, 39.606476],
  1717 + [117.6245, 39.602684],
  1718 + [117.630324, 39.606121],
  1719 + [117.632144, 39.613738],
  1720 + [117.641348, 39.612841],
  1721 + [117.640113, 39.619713],
  1722 + [117.64462, 39.623691],
  1723 + [117.641986, 39.628413],
  1724 + [117.643805, 39.629699],
  1725 + [117.650892, 39.627939],
  1726 + [117.652928, 39.630003],
  1727 + [117.651503, 39.634843],
  1728 + [117.6532, 39.639158],
  1729 + [117.661997, 39.636332],
  1730 + [117.666477, 39.642914],
  1731 + [117.665337, 39.64618],
  1732 + [117.66774, 39.651526],
  1733 + [117.663586, 39.657751],
  1734 + [117.667536, 39.661574],
  1735 + [117.668324, 39.667088],
  1736 + [117.663857, 39.665854],
  1737 + [117.657028, 39.668644],
  1738 + [117.660205, 39.674462],
  1739 + [117.653214, 39.678217],
  1740 + [117.657436, 39.682816],
  1741 + [117.650797, 39.68192],
  1742 + [117.649915, 39.685404],
  1743 + [117.643968, 39.688684],
  1744 + [117.648978, 39.694838],
  1745 + [117.646969, 39.69964],
  1746 + [117.642597, 39.70133],
  1747 + [117.636909, 39.696783],
  1748 + [117.634479, 39.700959],
  1749 + [117.627134, 39.703646],
  1750 + [117.620957, 39.702953],
  1751 + [117.614902, 39.705979],
  1752 + [117.602439, 39.705371],
  1753 + [117.59352, 39.710746],
  1754 + [117.592339, 39.716747],
  1755 + [117.588443, 39.719485],
  1756 + [117.580053, 39.719451],
  1757 + [117.585171, 39.722087],
  1758 + [117.578166, 39.72327],
  1759 + [117.577623, 39.726938],
  1760 + [117.583447, 39.727326],
  1761 + [117.584003, 39.731669],
  1762 + [117.587845, 39.730841],
  1763 + [117.589936, 39.737938],
  1764 + [117.593411, 39.735201],
  1765 + [117.59743, 39.736586],
  1766 + [117.591524, 39.743024],
  1767 + [117.595896, 39.746132],
  1768 + [117.581424, 39.748937],
  1769 + [117.575016, 39.752113],
  1770 + [117.573536, 39.754917],
  1771 + [117.56759, 39.756792],
  1772 + [117.559824, 39.755542],
  1773 + [117.555453, 39.762552],
  1774 + [117.548774, 39.756809],
  1775 + [117.543316, 39.760626],
  1776 + [117.539162, 39.76044],
  1777 + [117.531912, 39.761386],
  1778 + [117.533053, 39.766251],
  1779 + [117.529346, 39.765812],
  1780 + [117.52378, 39.768598],
  1781 + [117.519938, 39.764663],
  1782 + [117.516151, 39.769071],
  1783 + [117.511576, 39.765727],
  1784 + [117.50719, 39.767197],
  1785 + [117.503525, 39.773884],
  1786 + [117.492257, 39.771419],
  1787 + [117.489881, 39.77863],
  1788 + [117.483378, 39.774948],
  1789 + [117.47021, 39.777802],
  1790 + [117.47302, 39.774357],
  1791 + [117.464141, 39.768717],
  1792 + [117.460394, 39.769122],
  1793 + [117.463544, 39.775354],
  1794 + [117.457272, 39.772922],
  1795 + [117.454597, 39.768345],
  1796 + [117.449289, 39.768885],
  1797 + [117.439935, 39.764444],
  1798 + [117.437193, 39.755542],
  1799 + [117.431233, 39.755897],
  1800 + [117.426753, 39.758295],
  1801 + [117.415648, 39.760288],
  1802 + [117.412322, 39.76267],
  1803 + [117.412417, 39.768176],
  1804 + [117.407299, 39.772246],
  1805 + [117.399099, 39.770861],
  1806 + [117.392514, 39.777177],
  1807 + [117.392786, 39.782125],
  1808 + [117.388795, 39.782361],
  1809 + [117.389908, 39.785485],
  1810 + [117.382875, 39.787545],
  1811 + [117.375544, 39.78763],
  1812 + [117.374757, 39.790601],
  1813 + [117.366258, 39.790854],
  1814 + [117.366204, 39.794062],
  1815 + [117.356185, 39.792847],
  1816 + [117.349126, 39.794721],
  1817 + [117.34565, 39.797557],
  1818 + [117.342799, 39.795447],
  1819 + [117.340125, 39.7983],
  1820 + [117.334151, 39.796763],
  1821 + [117.329305, 39.79158],
  1822 + [117.322897, 39.794028],
  1823 + [117.319191, 39.800477],
  1824 + [117.319625, 39.804596],
  1825 + [117.313557, 39.807162],
  1826 + [117.306063, 39.808073],
  1827 + [117.301827, 39.805187],
  1828 + [117.295921, 39.810977],
  1829 + [117.289609, 39.813762],
  1830 + [117.285631, 39.813103],
  1831 + [117.286147, 39.819432],
  1832 + [117.27796, 39.825373],
  1833 + [117.273345, 39.824866],
  1834 + [117.268824, 39.828342],
  1835 + [117.26619, 39.826756],
  1836 + [117.25723, 39.829794]
  1837 + ]
  1838 + ]
  1839 + ]
  1840 + },
  1841 + "properties": {
  1842 + "adcode": 120115,
  1843 + "name": "宝坻区",
  1844 + "center": [117.308094, 39.716965],
  1845 + "centroid": [117.405517, 39.60949],
  1846 + "childrenNum": 0,
  1847 + "level": "district",
  1848 + "parent": "{ \"adcode\": 120000 }",
  1849 + "subFeatureIndex": 11,
  1850 + "acroutes": [100000, 120000]
  1851 + }
  1852 + },
  1853 + {
  1854 + "type": "Feature",
  1855 + "geometry": {
  1856 + "type": "MultiPolygon",
  1857 + "coordinates": [
  1858 + [
  1859 + [
  1860 + [117.526984, 39.005994],
  1861 + [117.531152, 39.005841],
  1862 + [117.53999, 39.001111],
  1863 + [117.549697, 38.991497],
  1864 + [117.558005, 38.991975],
  1865 + [117.560164, 38.988884],
  1866 + [117.556974, 38.981591],
  1867 + [117.555168, 38.981317],
  1868 + [117.549357, 38.968164],
  1869 + [117.550308, 38.959109],
  1870 + [117.548679, 38.958716],
  1871 + [117.550987, 38.943029],
  1872 + [117.543615, 38.943047],
  1873 + [117.529251, 38.95318],
  1874 + [117.52169, 38.952035],
  1875 + [117.512865, 38.945183],
  1876 + [117.511508, 38.947456],
  1877 + [117.497063, 38.94279],
  1878 + [117.503294, 38.907765],
  1879 + [117.486881, 38.905473],
  1880 + [117.464494, 38.89075],
  1881 + [117.448284, 38.879444],
  1882 + [117.440587, 38.869745],
  1883 + [117.437464, 38.858607],
  1884 + [117.407529, 38.887278],
  1885 + [117.387803, 38.87279],
  1886 + [117.362946, 38.857529],
  1887 + [117.339256, 38.843532],
  1888 + [117.327377, 38.836737],
  1889 + [117.331314, 38.832732],
  1890 + [117.33016, 38.830182],
  1891 + [117.335998, 38.828744],
  1892 + [117.331504, 38.824687],
  1893 + [117.326929, 38.823728],
  1894 + [117.312905, 38.831072],
  1895 + [117.30423, 38.833417],
  1896 + [117.258886, 38.847365],
  1897 + [117.256388, 38.843121],
  1898 + [117.247238, 38.834803],
  1899 + [117.223154, 38.811607],
  1900 + [117.207501, 38.82027],
  1901 + [117.196735, 38.809656],
  1902 + [117.204786, 38.805187],
  1903 + [117.195201, 38.795922],
  1904 + [117.21361, 38.785287],
  1905 + [117.215905, 38.783043],
  1906 + [117.193654, 38.770744],
  1907 + [117.164411, 38.755873],
  1908 + [117.161886, 38.75834],
  1909 + [117.155057, 38.759471],
  1910 + [117.15408, 38.751092],
  1911 + [117.134734, 38.741512],
  1912 + [117.137028, 38.741152],
  1913 + [117.137164, 38.733714],
  1914 + [117.141698, 38.735736],
  1915 + [117.146355, 38.733011],
  1916 + [117.146477, 38.729069],
  1917 + [117.155994, 38.726652],
  1918 + [117.160216, 38.731366],
  1919 + [117.176792, 38.733268],
  1920 + [117.17705, 38.731246],
  1921 + [117.160488, 38.729566],
  1922 + [117.157813, 38.71508],
  1923 + [117.159048, 38.705702],
  1924 + [117.158709, 38.698054],
  1925 + [117.154555, 38.690251],
  1926 + [117.149382, 38.69164],
  1927 + [117.148323, 38.687764],
  1928 + [117.149858, 38.681812],
  1929 + [117.14736, 38.681623],
  1930 + [117.148025, 38.676134],
  1931 + [117.153822, 38.676683],
  1932 + [117.153862, 38.671554],
  1933 + [117.15875, 38.670027],
  1934 + [117.161098, 38.665687],
  1935 + [117.16065, 38.660505],
  1936 + [117.157107, 38.658772],
  1937 + [117.162347, 38.657966],
  1938 + [117.163013, 38.648391],
  1939 + [117.156442, 38.632739],
  1940 + [117.157609, 38.627607],
  1941 + [117.156428, 38.621204],
  1942 + [117.15112, 38.617719],
  1943 + [117.165334, 38.617238],
  1944 + [117.167113, 38.615126],
  1945 + [117.176602, 38.618234],
  1946 + [117.183852, 38.618182],
  1947 + [117.186092, 38.616534],
  1948 + [117.189309, 38.621358],
  1949 + [117.200238, 38.62189],
  1950 + [117.203795, 38.626439],
  1951 + [117.203225, 38.629684],
  1952 + [117.210284, 38.630044],
  1953 + [117.212972, 38.63969],
  1954 + [117.216909, 38.642917],
  1955 + [117.225109, 38.643861],
  1956 + [117.230336, 38.641698],
  1957 + [117.229671, 38.635657],
  1958 + [117.225055, 38.630782],
  1959 + [117.236608, 38.631211],
  1960 + [117.230689, 38.624002],
  1961 + [117.235115, 38.62395],
  1962 + [117.237246, 38.619212],
  1963 + [117.246532, 38.618663],
  1964 + [117.255967, 38.613804],
  1965 + [117.25894, 38.608327],
  1966 + [117.259538, 38.603056],
  1967 + [117.255126, 38.602455],
  1968 + [117.256673, 38.598351],
  1969 + [117.245351, 38.595311],
  1970 + [117.237816, 38.585264],
  1971 + [117.238359, 38.581039],
  1972 + [117.261303, 38.586724],
  1973 + [117.262348, 38.583735],
  1974 + [117.24231, 38.578737],
  1975 + [117.239432, 38.57872],
  1976 + [117.245079, 38.566935],
  1977 + [117.246491, 38.566867],
  1978 + [117.253184, 38.55618],
  1979 + [117.263543, 38.562279],
  1980 + [117.265389, 38.55673],
  1981 + [117.278938, 38.56008],
  1982 + [117.292215, 38.562417],
  1983 + [117.291591, 38.571677],
  1984 + [117.299926, 38.571471],
  1985 + [117.30408, 38.564616],
  1986 + [117.305628, 38.556609],
  1987 + [117.308289, 38.555578],
  1988 + [117.315403, 38.557692],
  1989 + [117.32492, 38.564616],
  1990 + [117.346424, 38.564925],
  1991 + [117.350483, 38.561523],
  1992 + [117.350782, 38.565819],
  1993 + [117.358045, 38.570543],
  1994 + [117.354746, 38.580747],
  1995 + [117.368865, 38.582464],
  1996 + [117.369041, 38.564753],
  1997 + [117.396302, 38.574563],
  1998 + [117.409213, 38.585144],
  1999 + [117.401203, 38.588012],
  2000 + [117.410041, 38.593937],
  2001 + [117.415553, 38.590623],
  2002 + [117.432428, 38.601321],
  2003 + [117.471513, 38.611246],
  2004 + [117.476061, 38.608894],
  2005 + [117.481505, 38.611538],
  2006 + [117.478925, 38.617238],
  2007 + [117.495393, 38.615521],
  2008 + [117.502914, 38.617908],
  2009 + [117.505358, 38.613993],
  2010 + [117.511603, 38.613942],
  2011 + [117.516436, 38.610353],
  2012 + [117.523821, 38.611624],
  2013 + [117.523224, 38.606353],
  2014 + [117.526903, 38.60661],
  2015 + [117.524201, 38.601253],
  2016 + [117.529143, 38.600772],
  2017 + [117.541443, 38.603571],
  2018 + [117.538565, 38.609735],
  2019 + [117.542271, 38.611796],
  2020 + [117.546887, 38.617856],
  2021 + [117.55453, 38.617015],
  2022 + [117.557802, 38.613804],
  2023 + [117.582143, 38.61856],
  2024 + [117.639027, 38.626714],
  2025 + [117.642231, 38.64326],
  2026 + [117.649222, 38.6545],
  2027 + [117.656716, 38.660488],
  2028 + [117.729062, 38.680062],
  2029 + [117.738783, 38.689102],
  2030 + [117.740751, 38.700026],
  2031 + [117.741267, 38.753936],
  2032 + [117.73638, 38.761373],
  2033 + [117.729076, 38.764782],
  2034 + [117.671527, 38.771995],
  2035 + [117.654463, 38.778299],
  2036 + [117.646439, 38.788849],
  2037 + [117.646086, 38.829103],
  2038 + [117.657734, 38.836172],
  2039 + [117.689217, 38.837097],
  2040 + [117.752196, 38.847502],
  2041 + [117.768677, 38.86398],
  2042 + [117.778479, 38.869078],
  2043 + [117.821949, 38.857238],
  2044 + [117.834072, 38.855254],
  2045 + [117.847377, 38.85563],
  2046 + [117.859908, 38.871695],
  2047 + [117.861075, 38.881514],
  2048 + [117.859514, 38.888988],
  2049 + [117.875574, 38.920365],
  2050 + [117.892422, 38.925066],
  2051 + [117.899088, 38.94156],
  2052 + [117.897907, 38.948618],
  2053 + [117.855346, 38.95764],
  2054 + [117.852536, 38.963022],
  2055 + [117.850717, 38.992914],
  2056 + [117.847418, 39.010724],
  2057 + [117.839055, 39.032865],
  2058 + [117.837385, 39.057012],
  2059 + [117.840426, 39.073782],
  2060 + [117.84644, 39.088416],
  2061 + [117.859039, 39.106509],
  2062 + [117.871651, 39.122586],
  2063 + [117.925697, 39.151405],
  2064 + [117.964605, 39.172684],
  2065 + [117.973267, 39.188797],
  2066 + [117.977421, 39.205944],
  2067 + [118.032838, 39.219887],
  2068 + [118.034875, 39.218593],
  2069 + [118.037074, 39.230526],
  2070 + [118.064742, 39.231206],
  2071 + [118.065611, 39.235427],
  2072 + [118.064782, 39.255932],
  2073 + [118.063656, 39.256834],
  2074 + [118.036829, 39.265034],
  2075 + [118.033408, 39.271566],
  2076 + [118.035309, 39.274679],
  2077 + [118.028426, 39.27769],
  2078 + [118.031698, 39.285394],
  2079 + [118.028412, 39.290411],
  2080 + [118.024733, 39.292435],
  2081 + [118.022222, 39.286959],
  2082 + [118.016846, 39.284119],
  2083 + [118.006406, 39.28951],
  2084 + [117.995708, 39.288796],
  2085 + [117.995206, 39.29354],
  2086 + [117.992137, 39.296669],
  2087 + [117.983761, 39.295513],
  2088 + [117.982675, 39.298676],
  2089 + [117.977625, 39.300665],
  2090 + [117.97252, 39.309965],
  2091 + [117.972276, 39.314351],
  2092 + [117.966044, 39.316425],
  2093 + [117.951654, 39.315405],
  2094 + [117.947377, 39.317785],
  2095 + [117.939476, 39.317598],
  2096 + [117.933421, 39.319043],
  2097 + [117.910315, 39.319519],
  2098 + [117.90574, 39.316136],
  2099 + [117.902618, 39.320471],
  2100 + [117.892164, 39.323072],
  2101 + [117.893019, 39.327372],
  2102 + [117.888553, 39.331893],
  2103 + [117.878534, 39.331808],
  2104 + [117.867266, 39.329853],
  2105 + [117.861347, 39.334187],
  2106 + [117.855319, 39.331995],
  2107 + [117.855753, 39.329225],
  2108 + [117.849644, 39.327372],
  2109 + [117.846875, 39.328494],
  2110 + [117.845137, 39.325757],
  2111 + [117.850676, 39.32229],
  2112 + [117.849888, 39.315524],
  2113 + [117.84587, 39.314793],
  2114 + [117.844187, 39.323667],
  2115 + [117.83915, 39.317241],
  2116 + [117.842829, 39.311971],
  2117 + [117.83767, 39.309727],
  2118 + [117.83691, 39.306055],
  2119 + [117.850744, 39.300393],
  2120 + [117.852658, 39.297876],
  2121 + [117.827325, 39.26056],
  2122 + [117.825995, 39.260322],
  2123 + [117.806092, 39.268692],
  2124 + [117.813736, 39.27951],
  2125 + [117.809093, 39.279187],
  2126 + [117.788702, 39.287809],
  2127 + [117.789923, 39.289578],
  2128 + [117.789693, 39.299152],
  2129 + [117.791308, 39.301158],
  2130 + [117.784575, 39.30427],
  2131 + [117.77404, 39.301991],
  2132 + [117.765772, 39.299016],
  2133 + [117.761061, 39.295139],
  2134 + [117.732076, 39.290462],
  2135 + [117.721691, 39.290836],
  2136 + [117.720632, 39.282435],
  2137 + [117.709282, 39.283166],
  2138 + [117.70897, 39.267977],
  2139 + [117.710436, 39.267603],
  2140 + [117.715826, 39.256919],
  2141 + [117.717998, 39.257242],
  2142 + [117.721541, 39.250096],
  2143 + [117.725438, 39.251219],
  2144 + [117.725478, 39.246063],
  2145 + [117.743249, 39.237878],
  2146 + [117.721134, 39.207834],
  2147 + [117.71588, 39.19457],
  2148 + [117.719668, 39.193514],
  2149 + [117.718785, 39.173263],
  2150 + [117.682728, 39.173365],
  2151 + [117.679985, 39.17173],
  2152 + [117.680094, 39.188797],
  2153 + [117.666572, 39.18878],
  2154 + [117.652562, 39.205008],
  2155 + [117.645747, 39.211392],
  2156 + [117.643656, 39.21507],
  2157 + [117.635157, 39.212618],
  2158 + [117.635117, 39.210507],
  2159 + [117.628383, 39.207493],
  2160 + [117.6174, 39.205042],
  2161 + [117.617807, 39.186719],
  2162 + [117.620658, 39.187264],
  2163 + [117.623238, 39.183057],
  2164 + [117.616368, 39.174353],
  2165 + [117.615242, 39.166211],
  2166 + [117.591823, 39.170197],
  2167 + [117.568798, 39.177505],
  2168 + [117.56706, 39.173485],
  2169 + [117.566164, 39.161747],
  2170 + [117.555752, 39.159175],
  2171 + [117.553091, 39.153927],
  2172 + [117.552629, 39.14723],
  2173 + [117.540791, 39.142732],
  2174 + [117.518092, 39.15149],
  2175 + [117.514331, 39.150144],
  2176 + [117.509688, 39.1375],
  2177 + [117.503226, 39.107907],
  2178 + [117.517467, 39.106731],
  2179 + [117.535496, 39.106543],
  2180 + [117.536189, 39.099978],
  2181 + [117.553362, 39.099706],
  2182 + [117.552874, 39.078984],
  2183 + [117.563775, 39.078507],
  2184 + [117.557815, 39.065747],
  2185 + [117.559539, 39.054913],
  2186 + [117.538062, 39.056227],
  2187 + [117.530134, 39.057865],
  2188 + [117.52712, 39.046176],
  2189 + [117.523712, 39.04674],
  2190 + [117.518825, 39.037899],
  2191 + [117.520576, 39.036824],
  2192 + [117.517386, 39.026686],
  2193 + [117.521988, 39.023767],
  2194 + [117.525396, 39.026378],
  2195 + [117.526346, 39.021257],
  2196 + [117.52488, 39.015077],
  2197 + [117.526984, 39.005994]
  2198 + ]
  2199 + ]
  2200 + ]
  2201 + },
  2202 + "properties": {
  2203 + "adcode": 120116,
  2204 + "name": "滨海新区",
  2205 + "center": [117.654173, 39.032846],
  2206 + "centroid": [117.59762, 38.911764],
  2207 + "childrenNum": 0,
  2208 + "level": "district",
  2209 + "parent": "{ \"adcode\": 120000 }",
  2210 + "subFeatureIndex": 12,
  2211 + "acroutes": [100000, 120000]
  2212 + }
  2213 + },
  2214 + {
  2215 + "type": "Feature",
  2216 + "geometry": {
  2217 + "type": "Polygon",
  2218 + "coordinates": [
  2219 + [
  2220 + [117.805291, 39.373299],
  2221 + [117.803377, 39.362037],
  2222 + [117.806771, 39.35694],
  2223 + [117.816451, 39.354341],
  2224 + [117.821012, 39.356107],
  2225 + [117.833204, 39.356311],
  2226 + [117.837032, 39.350823],
  2227 + [117.853228, 39.360729],
  2228 + [117.848096, 39.367116],
  2229 + [117.852074, 39.369613],
  2230 + [117.854749, 39.366555],
  2231 + [117.853242, 39.362971],
  2232 + [117.860668, 39.364806],
  2233 + [117.862935, 39.362274],
  2234 + [117.853337, 39.351656],
  2235 + [117.84997, 39.342361],
  2236 + [117.846155, 39.342854],
  2237 + [117.841933, 39.336414],
  2238 + [117.847974, 39.332233],
  2239 + [117.846875, 39.328494],
  2240 + [117.845137, 39.325757],
  2241 + [117.850676, 39.32229],
  2242 + [117.849888, 39.315524],
  2243 + [117.84587, 39.314793],
  2244 + [117.844187, 39.323667],
  2245 + [117.83915, 39.317241],
  2246 + [117.842829, 39.311971],
  2247 + [117.83767, 39.309727],
  2248 + [117.83691, 39.306055],
  2249 + [117.850744, 39.300393],
  2250 + [117.852658, 39.297876],
  2251 + [117.827325, 39.26056],
  2252 + [117.825995, 39.260322],
  2253 + [117.806092, 39.268692],
  2254 + [117.813736, 39.27951],
  2255 + [117.809093, 39.279187],
  2256 + [117.788702, 39.287809],
  2257 + [117.789923, 39.289578],
  2258 + [117.789693, 39.299152],
  2259 + [117.791308, 39.301158],
  2260 + [117.784575, 39.30427],
  2261 + [117.77404, 39.301991],
  2262 + [117.765772, 39.299016],
  2263 + [117.761061, 39.295139],
  2264 + [117.732076, 39.290462],
  2265 + [117.721691, 39.290836],
  2266 + [117.720632, 39.282435],
  2267 + [117.709282, 39.283166],
  2268 + [117.70897, 39.267977],
  2269 + [117.710436, 39.267603],
  2270 + [117.715826, 39.256919],
  2271 + [117.717998, 39.257242],
  2272 + [117.721541, 39.250096],
  2273 + [117.725438, 39.251219],
  2274 + [117.725478, 39.246063],
  2275 + [117.743249, 39.237878],
  2276 + [117.721134, 39.207834],
  2277 + [117.71588, 39.19457],
  2278 + [117.719668, 39.193514],
  2279 + [117.718785, 39.173263],
  2280 + [117.682728, 39.173365],
  2281 + [117.679985, 39.17173],
  2282 + [117.680094, 39.188797],
  2283 + [117.666572, 39.18878],
  2284 + [117.652562, 39.205008],
  2285 + [117.645747, 39.211392],
  2286 + [117.643656, 39.21507],
  2287 + [117.635157, 39.212618],
  2288 + [117.635117, 39.210507],
  2289 + [117.628383, 39.207493],
  2290 + [117.6174, 39.205042],
  2291 + [117.617807, 39.186719],
  2292 + [117.620658, 39.187264],
  2293 + [117.623238, 39.183057],
  2294 + [117.616368, 39.174353],
  2295 + [117.615242, 39.166211],
  2296 + [117.591823, 39.170197],
  2297 + [117.568798, 39.177505],
  2298 + [117.549833, 39.181167],
  2299 + [117.54743, 39.180315],
  2300 + [117.537166, 39.182614],
  2301 + [117.517739, 39.191385],
  2302 + [117.51368, 39.192441],
  2303 + [117.513734, 39.204769],
  2304 + [117.509906, 39.207493],
  2305 + [117.510693, 39.202556],
  2306 + [117.502249, 39.199644],
  2307 + [117.502792, 39.195387],
  2308 + [117.491361, 39.198554],
  2309 + [117.501828, 39.201364],
  2310 + [117.503634, 39.208804],
  2311 + [117.493004, 39.204837],
  2312 + [117.486704, 39.204752],
  2313 + [117.482985, 39.206778],
  2314 + [117.487275, 39.211052],
  2315 + [117.488008, 39.220449],
  2316 + [117.472803, 39.229368],
  2317 + [117.46577, 39.228994],
  2318 + [117.45681, 39.23136],
  2319 + [117.451285, 39.236431],
  2320 + [117.447755, 39.231904],
  2321 + [117.442026, 39.230594],
  2322 + [117.426101, 39.231343],
  2323 + [117.425355, 39.228517],
  2324 + [117.417508, 39.223649],
  2325 + [117.408181, 39.225964],
  2326 + [117.410258, 39.236619],
  2327 + [117.403144, 39.240312],
  2328 + [117.399913, 39.246387],
  2329 + [117.393913, 39.248054],
  2330 + [117.393994, 39.257276],
  2331 + [117.400402, 39.259148],
  2332 + [117.407108, 39.274475],
  2333 + [117.405452, 39.282554],
  2334 + [117.401515, 39.287622],
  2335 + [117.397239, 39.284051],
  2336 + [117.384056, 39.280054],
  2337 + [117.369041, 39.291602],
  2338 + [117.364629, 39.287367],
  2339 + [117.356199, 39.2932],
  2340 + [117.36243, 39.296023],
  2341 + [117.352167, 39.302739],
  2342 + [117.343139, 39.31039],
  2343 + [117.337722, 39.306004],
  2344 + [117.332495, 39.309642],
  2345 + [117.338305, 39.313569],
  2346 + [117.339079, 39.318941],
  2347 + [117.334708, 39.323429],
  2348 + [117.331952, 39.320828],
  2349 + [117.3242, 39.329649],
  2350 + [117.328015, 39.339914],
  2351 + [117.322775, 39.348717],
  2352 + [117.328504, 39.350076],
  2353 + [117.330214, 39.353593],
  2354 + [117.335088, 39.353831],
  2355 + [117.337708, 39.359267],
  2356 + [117.350483, 39.361493],
  2357 + [117.370589, 39.35976],
  2358 + [117.382427, 39.360304],
  2359 + [117.38445, 39.362665],
  2360 + [117.3895, 39.36044],
  2361 + [117.389487, 39.354408],
  2362 + [117.392555, 39.352658],
  2363 + [117.415716, 39.350535],
  2364 + [117.415186, 39.346525],
  2365 + [117.433894, 39.347119],
  2366 + [117.436514, 39.352319],
  2367 + [117.43312, 39.355377],
  2368 + [117.432903, 39.360049],
  2369 + [117.43855, 39.35784],
  2370 + [117.441727, 39.361646],
  2371 + [117.448855, 39.35886],
  2372 + [117.454801, 39.361969],
  2373 + [117.46163, 39.362444],
  2374 + [117.46539, 39.35959],
  2375 + [117.47321, 39.362071],
  2376 + [117.47135, 39.36523],
  2377 + [117.477418, 39.366572],
  2378 + [117.486093, 39.372297],
  2379 + [117.483867, 39.375065],
  2380 + [117.485645, 39.379532],
  2381 + [117.508032, 39.383608],
  2382 + [117.505874, 39.386139],
  2383 + [117.501081, 39.384865],
  2384 + [117.497619, 39.392337],
  2385 + [117.497891, 39.395513],
  2386 + [117.494986, 39.40497],
  2387 + [117.496995, 39.405394],
  2388 + [117.494986, 39.414647],
  2389 + [117.491225, 39.413679],
  2390 + [117.483256, 39.445654],
  2391 + [117.483392, 39.449064],
  2392 + [117.489148, 39.448623],
  2393 + [117.492461, 39.451847],
  2394 + [117.499344, 39.454426],
  2395 + [117.496995, 39.459397],
  2396 + [117.502928, 39.462009],
  2397 + [117.509512, 39.456326],
  2398 + [117.519287, 39.45921],
  2399 + [117.517983, 39.46318],
  2400 + [117.523156, 39.463638],
  2401 + [117.524378, 39.466403],
  2402 + [117.541334, 39.464384],
  2403 + [117.55138, 39.46776],
  2404 + [117.557055, 39.471627],
  2405 + [117.564943, 39.480769],
  2406 + [117.562227, 39.485704],
  2407 + [117.5581, 39.486585],
  2408 + [117.555887, 39.494555],
  2409 + [117.567223, 39.497692],
  2410 + [117.567549, 39.493962],
  2411 + [117.572396, 39.494928],
  2412 + [117.572857, 39.49096],
  2413 + [117.577405, 39.491774],
  2414 + [117.580188, 39.485093],
  2415 + [117.59667, 39.48745],
  2416 + [117.607503, 39.48974],
  2417 + [117.605752, 39.494199],
  2418 + [117.608902, 39.499744],
  2419 + [117.610626, 39.511899],
  2420 + [117.63065, 39.516001],
  2421 + [117.637099, 39.522069],
  2422 + [117.633365, 39.534797],
  2423 + [117.634153, 39.53717],
  2424 + [117.658291, 39.531137],
  2425 + [117.659811, 39.527612],
  2426 + [117.667672, 39.530255],
  2427 + [117.668446, 39.53234],
  2428 + [117.676646, 39.533187],
  2429 + [117.681112, 39.536593],
  2430 + [117.687941, 39.534899],
  2431 + [117.690751, 39.537542],
  2432 + [117.690398, 39.547455],
  2433 + [117.69462, 39.551097],
  2434 + [117.700879, 39.551741],
  2435 + [117.708712, 39.548217],
  2436 + [117.707192, 39.543405],
  2437 + [117.708848, 39.538085],
  2438 + [117.715948, 39.530086],
  2439 + [117.723496, 39.535119],
  2440 + [117.732945, 39.536102],
  2441 + [117.738036, 39.540423],
  2442 + [117.744878, 39.548624],
  2443 + [117.736081, 39.560822],
  2444 + [117.735783, 39.567631],
  2445 + [117.737737, 39.57405],
  2446 + [117.748177, 39.574423],
  2447 + [117.753133, 39.576015],
  2448 + [117.755155, 39.58113],
  2449 + [117.747879, 39.58941],
  2450 + [117.767713, 39.59901],
  2451 + [117.775424, 39.599129],
  2452 + [117.78934, 39.597199],
  2453 + [117.793928, 39.601059],
  2454 + [117.801952, 39.60177],
  2455 + [117.817374, 39.595489],
  2456 + [117.826565, 39.590816],
  2457 + [117.839354, 39.58963],
  2458 + [117.847051, 39.591137],
  2459 + [117.851395, 39.589258],
  2460 + [117.8535, 39.592306],
  2461 + [117.857342, 39.592035],
  2462 + [117.86827, 39.596843],
  2463 + [117.8841, 39.590121],
  2464 + [117.892585, 39.59151],
  2465 + [117.899821, 39.589512],
  2466 + [117.914849, 39.582942],
  2467 + [117.930068, 39.578149],
  2468 + [117.933992, 39.574152],
  2469 + [117.931127, 39.568173],
  2470 + [117.924787, 39.563312],
  2471 + [117.917931, 39.554621],
  2472 + [117.917117, 39.548319],
  2473 + [117.913302, 39.542151],
  2474 + [117.909813, 39.541965],
  2475 + [117.909813, 39.537983],
  2476 + [117.905387, 39.535102],
  2477 + [117.905292, 39.53012],
  2478 + [117.91041, 39.528001],
  2479 + [117.909446, 39.523171],
  2480 + [117.912691, 39.521425],
  2481 + [117.912284, 39.516154],
  2482 + [117.909053, 39.512001],
  2483 + [117.898585, 39.509695],
  2484 + [117.897038, 39.489299],
  2485 + [117.892395, 39.487043],
  2486 + [117.896522, 39.485721],
  2487 + [117.899726, 39.476885],
  2488 + [117.898192, 39.472509],
  2489 + [117.888322, 39.469167],
  2490 + [117.886313, 39.466776],
  2491 + [117.878072, 39.4672],
  2492 + [117.874081, 39.454918],
  2493 + [117.870334, 39.454952],
  2494 + [117.871854, 39.411557],
  2495 + [117.847078, 39.408077],
  2496 + [117.848137, 39.401948],
  2497 + [117.859378, 39.403289],
  2498 + [117.862501, 39.39716],
  2499 + [117.860491, 39.384661],
  2500 + [117.865704, 39.378276],
  2501 + [117.858034, 39.373486],
  2502 + [117.8524, 39.380772],
  2503 + [117.849305, 39.37904],
  2504 + [117.838973, 39.37729],
  2505 + [117.820999, 39.376917],
  2506 + [117.805291, 39.373299]
  2507 + ],
  2508 + [
  2509 + [117.765555, 39.400657],
  2510 + [117.737289, 39.410555],
  2511 + [117.699738, 39.407601],
  2512 + [117.702331, 39.388924],
  2513 + [117.673197, 39.386665],
  2514 + [117.670808, 39.405275],
  2515 + [117.669097, 39.412015],
  2516 + [117.663748, 39.412389],
  2517 + [117.655006, 39.40974],
  2518 + [117.656295, 39.407499],
  2519 + [117.64348, 39.405853],
  2520 + [117.64185, 39.400165],
  2521 + [117.635823, 39.398501],
  2522 + [117.635103, 39.404477],
  2523 + [117.631668, 39.404308],
  2524 + [117.630976, 39.408535],
  2525 + [117.614128, 39.407109],
  2526 + [117.614305, 39.411065],
  2527 + [117.611305, 39.413017],
  2528 + [117.611087, 39.417108],
  2529 + [117.60138, 39.419484],
  2530 + [117.601788, 39.416412],
  2531 + [117.597145, 39.415037],
  2532 + [117.590642, 39.405462],
  2533 + [117.575518, 39.404206],
  2534 + [117.571133, 39.404613],
  2535 + [117.571486, 39.400318],
  2536 + [117.56869, 39.397244],
  2537 + [117.560327, 39.396497],
  2538 + [117.560924, 39.393033],
  2539 + [117.553688, 39.392575],
  2540 + [117.557883, 39.385595],
  2541 + [117.552874, 39.382572],
  2542 + [117.543981, 39.381248],
  2543 + [117.545135, 39.377953],
  2544 + [117.538931, 39.377324],
  2545 + [117.535333, 39.374012],
  2546 + [117.537261, 39.363684],
  2547 + [117.534166, 39.36241],
  2548 + [117.529428, 39.366657],
  2549 + [117.526183, 39.365604],
  2550 + [117.528545, 39.36134],
  2551 + [117.520875, 39.357229],
  2552 + [117.529279, 39.347408],
  2553 + [117.533636, 39.348954],
  2554 + [117.536229, 39.338045],
  2555 + [117.569749, 39.342616],
  2556 + [117.595285, 39.349124],
  2557 + [117.597511, 39.34508],
  2558 + [117.606947, 39.346966],
  2559 + [117.609227, 39.34316],
  2560 + [117.616667, 39.344418],
  2561 + [117.617332, 39.338079],
  2562 + [117.635307, 39.343789],
  2563 + [117.642108, 39.344367],
  2564 + [117.642163, 39.339269],
  2565 + [117.637547, 39.335972],
  2566 + [117.642556, 39.331655],
  2567 + [117.646466, 39.322732],
  2568 + [117.650811, 39.32212],
  2569 + [117.650811, 39.315201],
  2570 + [117.66383, 39.316867],
  2571 + [117.669315, 39.324142],
  2572 + [117.670944, 39.35784],
  2573 + [117.687547, 39.359217],
  2574 + [117.692204, 39.357959],
  2575 + [117.706201, 39.35152],
  2576 + [117.744607, 39.354595],
  2577 + [117.784575, 39.377002],
  2578 + [117.782362, 39.39463],
  2579 + [117.765555, 39.400657]
  2580 + ]
  2581 + ]
  2582 + },
  2583 + "properties": {
  2584 + "adcode": 120117,
  2585 + "name": "宁河区",
  2586 + "center": [117.82828, 39.328886],
  2587 + "centroid": null,
  2588 + "childrenNum": 0,
  2589 + "level": "district",
  2590 + "parent": "{ \"adcode\": 120000 }",
  2591 + "subFeatureIndex": 13,
  2592 + "acroutes": [100000, 120000]
  2593 + }
  2594 + },
  2595 + {
  2596 + "type": "Feature",
  2597 + "geometry": {
  2598 + "type": "MultiPolygon",
  2599 + "coordinates": [
  2600 + [
  2601 + [
  2602 + [117.258886, 38.847365],
  2603 + [117.248799, 38.851729],
  2604 + [117.193966, 38.894854],
  2605 + [117.179005, 38.910363],
  2606 + [117.168077, 38.925203],
  2607 + [117.158736, 38.936176],
  2608 + [117.13696, 38.963603],
  2609 + [117.122529, 38.975031],
  2610 + [117.108655, 38.981813],
  2611 + [117.078611, 38.993973],
  2612 + [117.063066, 39.005021],
  2613 + [117.057975, 39.000872],
  2614 + [117.057147, 38.995868],
  2615 + [117.035317, 38.997388],
  2616 + [117.037571, 39.010468],
  2617 + [117.040517, 39.012738],
  2618 + [117.033335, 39.01559],
  2619 + [117.038209, 39.021206],
  2620 + [117.015795, 39.030304],
  2621 + [116.990218, 39.036636],
  2622 + [116.970315, 39.038838],
  2623 + [116.968388, 39.045494],
  2624 + [116.960581, 39.046688],
  2625 + [116.962387, 39.050767],
  2626 + [116.948974, 39.054282],
  2627 + [116.94558, 39.057046],
  2628 + [116.940924, 39.050101],
  2629 + [116.934706, 39.054435],
  2630 + [116.921659, 39.060117],
  2631 + [116.908667, 39.061175],
  2632 + [116.905002, 39.057421],
  2633 + [116.90101, 39.061328],
  2634 + [116.888995, 39.055067],
  2635 + [116.886769, 39.0594],
  2636 + [116.897182, 39.062761],
  2637 + [116.898186, 39.066668],
  2638 + [116.881474, 39.071718],
  2639 + [116.877809, 39.072588],
  2640 + [116.86988, 39.06991],
  2641 + [116.873722, 39.060544],
  2642 + [116.869921, 39.059622],
  2643 + [116.871645, 39.054674],
  2644 + [116.860309, 39.053531],
  2645 + [116.860445, 39.050562],
  2646 + [116.842145, 39.049385],
  2647 + [116.831474, 39.049521],
  2648 + [116.821984, 39.046757],
  2649 + [116.818984, 39.050937],
  2650 + [116.802679, 39.050903],
  2651 + [116.797073, 39.054418],
  2652 + [116.7878, 39.052678],
  2653 + [116.783347, 39.050187],
  2654 + [116.785017, 39.055698],
  2655 + [116.796136, 39.056329],
  2656 + [116.797181, 39.060253],
  2657 + [116.787325, 39.061925],
  2658 + [116.786809, 39.059332],
  2659 + [116.781596, 39.058462],
  2660 + [116.781379, 39.053446],
  2661 + [116.77884, 39.049419],
  2662 + [116.774835, 39.050425],
  2663 + [116.773016, 39.046876],
  2664 + [116.760743, 39.050562],
  2665 + [116.756616, 39.050306],
  2666 + [116.751742, 39.038958],
  2667 + [116.751715, 39.034503],
  2668 + [116.759359, 39.031636],
  2669 + [116.759087, 39.021189],
  2670 + [116.75496, 39.019123],
  2671 + [116.756331, 39.01308],
  2672 + [116.754607, 39.003228],
  2673 + [116.752394, 39.003467],
  2674 + [116.750521, 38.994007],
  2675 + [116.745457, 38.991411],
  2676 + [116.740366, 38.980839],
  2677 + [116.735329, 38.980617],
  2678 + [116.734895, 38.977867],
  2679 + [116.728609, 38.975356],
  2680 + [116.725364, 38.966456],
  2681 + [116.723043, 38.966592],
  2682 + [116.722622, 38.956529],
  2683 + [116.718359, 38.942978],
  2684 + [116.716228, 38.938962],
  2685 + [116.710186, 38.93903],
  2686 + [116.709996, 38.931937],
  2687 + [116.708136, 38.931852],
  2688 + [116.708028, 38.897026],
  2689 + [116.722337, 38.89706],
  2690 + [116.723124, 38.852533],
  2691 + [116.746027, 38.851455],
  2692 + [116.743081, 38.834923],
  2693 + [116.74376, 38.831568],
  2694 + [116.751199, 38.831277],
  2695 + [116.749082, 38.82443],
  2696 + [116.746244, 38.824636],
  2697 + [116.745253, 38.816744],
  2698 + [116.738479, 38.807053],
  2699 + [116.744018, 38.805324],
  2700 + [116.74076, 38.799228],
  2701 + [116.746095, 38.798594],
  2702 + [116.745769, 38.795751],
  2703 + [116.741425, 38.796214],
  2704 + [116.737338, 38.784482],
  2705 + [116.742769, 38.78402],
  2706 + [116.742321, 38.780834],
  2707 + [116.751308, 38.7802],
  2708 + [116.747018, 38.76288],
  2709 + [116.746299, 38.754245],
  2710 + [116.758938, 38.754879],
  2711 + [116.762807, 38.750544],
  2712 + [116.76635, 38.741941],
  2713 + [116.775025, 38.742798],
  2714 + [116.778867, 38.740621],
  2715 + [116.784515, 38.740518],
  2716 + [116.78404, 38.738342],
  2717 + [116.791221, 38.740055],
  2718 + [116.791221, 38.74506],
  2719 + [116.796543, 38.746688],
  2720 + [116.812916, 38.744323],
  2721 + [116.859115, 38.741307],
  2722 + [116.86035, 38.744974],
  2723 + [116.86745, 38.745882],
  2724 + [116.870138, 38.729892],
  2725 + [116.866487, 38.717],
  2726 + [116.87284, 38.716143],
  2727 + [116.875162, 38.712629],
  2728 + [116.871903, 38.701878],
  2729 + [116.875501, 38.693166],
  2730 + [116.875596, 38.682687],
  2731 + [116.877293, 38.680697],
  2732 + [116.896069, 38.680285],
  2733 + [116.903291, 38.681915],
  2734 + [116.910364, 38.685568],
  2735 + [116.921225, 38.686923],
  2736 + [116.917722, 38.679616],
  2737 + [116.92732, 38.680062],
  2738 + [116.926805, 38.687438],
  2739 + [116.930823, 38.685757],
  2740 + [116.945594, 38.685877],
  2741 + [116.947209, 38.689616],
  2742 + [116.951173, 38.689582],
  2743 + [116.994454, 38.695721],
  2744 + [116.992838, 38.692274],
  2745 + [117.002938, 38.690422],
  2746 + [117.014464, 38.689942],
  2747 + [117.015741, 38.700403],
  2748 + [117.042309, 38.70649],
  2749 + [117.045268, 38.70577],
  2750 + [117.041644, 38.701603],
  2751 + [117.039281, 38.694435],
  2752 + [117.039064, 38.688467],
  2753 + [117.045377, 38.692549],
  2754 + [117.04459, 38.68622],
  2755 + [117.052871, 38.686718],
  2756 + [117.054351, 38.684265],
  2757 + [117.063379, 38.682961],
  2758 + [117.063257, 38.68044],
  2759 + [117.068157, 38.680646],
  2760 + [117.06198, 38.674385],
  2761 + [117.056048, 38.654191],
  2762 + [117.056319, 38.644976],
  2763 + [117.051717, 38.6435],
  2764 + [117.055586, 38.639261],
  2765 + [117.060759, 38.639107],
  2766 + [117.060501, 38.635708],
  2767 + [117.064261, 38.635708],
  2768 + [117.070085, 38.616757],
  2769 + [117.071551, 38.607383],
  2770 + [117.086336, 38.60637],
  2771 + [117.087232, 38.599862],
  2772 + [117.096871, 38.600411],
  2773 + [117.097074, 38.595517],
  2774 + [117.093001, 38.594435],
  2775 + [117.097468, 38.590708],
  2776 + [117.098201, 38.586896],
  2777 + [117.109849, 38.584869],
  2778 + [117.109483, 38.589111],
  2779 + [117.119542, 38.589661],
  2780 + [117.12166, 38.597698],
  2781 + [117.124606, 38.599931],
  2782 + [117.136431, 38.598728],
  2783 + [117.138264, 38.603932],
  2784 + [117.147577, 38.606627],
  2785 + [117.150835, 38.609323],
  2786 + [117.15112, 38.617719],
  2787 + [117.156428, 38.621204],
  2788 + [117.157609, 38.627607],
  2789 + [117.156442, 38.632739],
  2790 + [117.163013, 38.648391],
  2791 + [117.162347, 38.657966],
  2792 + [117.157107, 38.658772],
  2793 + [117.16065, 38.660505],
  2794 + [117.161098, 38.665687],
  2795 + [117.15875, 38.670027],
  2796 + [117.153862, 38.671554],
  2797 + [117.153822, 38.676683],
  2798 + [117.148025, 38.676134],
  2799 + [117.14736, 38.681623],
  2800 + [117.149858, 38.681812],
  2801 + [117.148323, 38.687764],
  2802 + [117.149382, 38.69164],
  2803 + [117.154555, 38.690251],
  2804 + [117.158709, 38.698054],
  2805 + [117.159048, 38.705702],
  2806 + [117.157813, 38.71508],
  2807 + [117.160488, 38.729566],
  2808 + [117.17705, 38.731246],
  2809 + [117.176792, 38.733268],
  2810 + [117.160216, 38.731366],
  2811 + [117.155994, 38.726652],
  2812 + [117.146477, 38.729069],
  2813 + [117.146355, 38.733011],
  2814 + [117.141698, 38.735736],
  2815 + [117.137164, 38.733714],
  2816 + [117.137028, 38.741152],
  2817 + [117.134734, 38.741512],
  2818 + [117.15408, 38.751092],
  2819 + [117.155057, 38.759471],
  2820 + [117.161886, 38.75834],
  2821 + [117.164411, 38.755873],
  2822 + [117.193654, 38.770744],
  2823 + [117.215905, 38.783043],
  2824 + [117.21361, 38.785287],
  2825 + [117.195201, 38.795922],
  2826 + [117.204786, 38.805187],
  2827 + [117.196735, 38.809656],
  2828 + [117.207501, 38.82027],
  2829 + [117.223154, 38.811607],
  2830 + [117.247238, 38.834803],
  2831 + [117.256388, 38.843121],
  2832 + [117.258886, 38.847365]
  2833 + ]
  2834 + ]
  2835 + ]
  2836 + },
  2837 + "properties": {
  2838 + "adcode": 120118,
  2839 + "name": "静海区",
  2840 + "center": [116.925304, 38.935671],
  2841 + "centroid": [116.966349, 38.85579],
  2842 + "childrenNum": 0,
  2843 + "level": "district",
  2844 + "parent": "{ \"adcode\": 120000 }",
  2845 + "subFeatureIndex": 14,
  2846 + "acroutes": [100000, 120000]
  2847 + }
  2848 + },
  2849 + {
  2850 + "type": "Feature",
  2851 + "geometry": {
  2852 + "type": "MultiPolygon",
  2853 + "coordinates": [
  2854 + [
  2855 + [
  2856 + [117.539162, 39.76044],
  2857 + [117.546126, 39.763667],
  2858 + [117.550376, 39.762957],
  2859 + [117.554842, 39.771419],
  2860 + [117.54614, 39.776147],
  2861 + [117.548624, 39.781027],
  2862 + [117.553118, 39.784506],
  2863 + [117.554869, 39.788727],
  2864 + [117.554652, 39.795379],
  2865 + [117.560395, 39.795008],
  2866 + [117.568242, 39.799245],
  2867 + [117.56144, 39.800038],
  2868 + [117.558426, 39.811517],
  2869 + [117.548842, 39.824073],
  2870 + [117.540859, 39.82193],
  2871 + [117.537275, 39.835159],
  2872 + [117.544334, 39.833017],
  2873 + [117.543099, 39.838163],
  2874 + [117.548108, 39.839917],
  2875 + [117.548556, 39.845535],
  2876 + [117.545746, 39.848032],
  2877 + [117.544728, 39.844591],
  2878 + [117.53718, 39.85284],
  2879 + [117.534139, 39.851962],
  2880 + [117.529808, 39.860987],
  2881 + [117.521038, 39.871375],
  2882 + [117.518811, 39.891289],
  2883 + [117.516829, 39.895166],
  2884 + [117.510082, 39.893817],
  2885 + [117.50719, 39.904168],
  2886 + [117.503932, 39.904875],
  2887 + [117.507435, 39.909055],
  2888 + [117.514359, 39.906831],
  2889 + [117.512743, 39.910522],
  2890 + [117.513625, 39.916673],
  2891 + [117.504665, 39.915696],
  2892 + [117.503484, 39.918999],
  2893 + [117.514386, 39.921442],
  2894 + [117.521961, 39.920634],
  2895 + [117.522056, 39.924796],
  2896 + [117.525504, 39.929615],
  2897 + [117.512472, 39.933675],
  2898 + [117.511141, 39.941071],
  2899 + [117.514956, 39.946681],
  2900 + [117.519612, 39.948433],
  2901 + [117.524323, 39.946647],
  2902 + [117.527283, 39.952358],
  2903 + [117.532917, 39.952493],
  2904 + [117.534424, 39.961588],
  2905 + [117.536284, 39.961537],
  2906 + [117.538945, 39.970766],
  2907 + [117.547335, 39.976844],
  2908 + [117.546289, 39.981424],
  2909 + [117.537709, 39.989977],
  2910 + [117.537492, 39.997383],
  2911 + [117.544307, 39.994454],
  2912 + [117.547063, 39.998932],
  2913 + [117.563028, 39.995666],
  2914 + [117.562132, 39.992872],
  2915 + [117.566653, 39.990987],
  2916 + [117.570604, 39.995111],
  2917 + [117.57579, 39.996424],
  2918 + [117.578912, 39.993848],
  2919 + [117.584641, 39.994135],
  2920 + [117.589244, 39.996861],
  2921 + [117.592529, 39.994673],
  2922 + [117.599643, 39.993747],
  2923 + [117.603037, 39.987754],
  2924 + [117.610924, 39.982619],
  2925 + [117.615337, 39.982535],
  2926 + [117.615622, 39.978781],
  2927 + [117.611427, 39.975278],
  2928 + [117.620007, 39.970665],
  2929 + [117.631886, 39.968711],
  2930 + [117.638049, 39.972231],
  2931 + [117.657504, 39.972163],
  2932 + [117.663219, 39.974756],
  2933 + [117.674731, 39.974807],
  2934 + [117.68209, 39.979858],
  2935 + [117.68566, 39.979488],
  2936 + [117.688986, 39.984017],
  2937 + [117.695693, 39.985751],
  2938 + [117.706689, 39.98602],
  2939 + [117.711264, 39.984842],
  2940 + [117.719437, 39.979892],
  2941 + [117.723958, 39.979959],
  2942 + [117.727718, 39.972433],
  2943 + [117.733923, 39.971119],
  2944 + [117.74162, 39.973342],
  2945 + [117.752114, 39.966084],
  2946 + [117.756445, 39.965175],
  2947 + [117.763545, 39.972719],
  2948 + [117.769071, 39.969233],
  2949 + [117.772153, 39.970193],
  2950 + [117.7819, 39.966354],
  2951 + [117.787222, 39.973477],
  2952 + [117.786665, 39.981272],
  2953 + [117.791512, 39.993747],
  2954 + [117.796467, 39.996676],
  2955 + [117.792951, 40.005631],
  2956 + [117.797064, 40.010141],
  2957 + [117.791756, 40.012464],
  2958 + [117.791946, 40.015577],
  2959 + [117.785919, 40.017916],
  2960 + [117.784154, 40.015308],
  2961 + [117.782443, 40.02352],
  2962 + [117.770347, 40.023553],
  2963 + [117.76736, 40.018943],
  2964 + [117.760654, 40.020659],
  2965 + [117.757884, 40.018135],
  2966 + [117.758454, 40.012985],
  2967 + [117.755834, 40.010394],
  2968 + [117.744145, 40.018438],
  2969 + [117.744783, 40.027928],
  2970 + [117.743738, 40.031276],
  2971 + [117.746915, 40.034439],
  2972 + [117.747906, 40.047459],
  2973 + [117.758291, 40.044347],
  2974 + [117.767116, 40.047997],
  2975 + [117.772967, 40.051782],
  2976 + [117.776144, 40.05893],
  2977 + [117.769247, 40.061688],
  2978 + [117.767808, 40.066077],
  2979 + [117.758196, 40.065959],
  2980 + [117.7543, 40.068666],
  2981 + [117.753391, 40.073324],
  2982 + [117.758454, 40.07329],
  2983 + [117.755576, 40.079545],
  2984 + [117.751639, 40.081999],
  2985 + [117.744566, 40.07862],
  2986 + [117.733868, 40.077393],
  2987 + [117.730529, 40.080554],
  2988 + [117.722003, 40.079898],
  2989 + [117.711753, 40.085849],
  2990 + [117.707884, 40.094002],
  2991 + [117.703947, 40.092237],
  2992 + [117.696467, 40.094926],
  2993 + [117.690928, 40.094187],
  2994 + [117.688253, 40.082857],
  2995 + [117.67932, 40.085664],
  2996 + [117.674908, 40.082134],
  2997 + [117.674541, 40.092153],
  2998 + [117.668106, 40.100927],
  2999 + [117.663694, 40.096439],
  3000 + [117.660802, 40.097431],
  3001 + [117.657802, 40.092741],
  3002 + [117.649589, 40.091279],
  3003 + [117.644878, 40.096204],
  3004 + [117.648313, 40.098607],
  3005 + [117.650254, 40.105246],
  3006 + [117.657558, 40.109162],
  3007 + [117.653146, 40.110758],
  3008 + [117.648516, 40.126402],
  3009 + [117.650159, 40.128183],
  3010 + [117.636013, 40.132097],
  3011 + [117.63695, 40.136851],
  3012 + [117.632334, 40.140782],
  3013 + [117.630501, 40.147836],
  3014 + [117.621527, 40.14656],
  3015 + [117.618459, 40.15133],
  3016 + [117.618595, 40.157611],
  3017 + [117.613137, 40.157779],
  3018 + [117.609974, 40.160079],
  3019 + [117.60119, 40.171212],
  3020 + [117.588633, 40.168307],
  3021 + [117.584112, 40.171766],
  3022 + [117.579673, 40.177961],
  3023 + [117.576401, 40.178599],
  3024 + [117.57317, 40.190031],
  3025 + [117.575545, 40.191894],
  3026 + [117.572246, 40.194915],
  3027 + [117.57283, 40.200319],
  3028 + [117.56926, 40.204162],
  3029 + [117.563992, 40.205236],
  3030 + [117.564467, 40.211009],
  3031 + [117.569178, 40.213895],
  3032 + [117.571649, 40.219247],
  3033 + [117.569491, 40.225455],
  3034 + [117.564264, 40.229045],
  3035 + [117.554476, 40.229682],
  3036 + [117.550905, 40.228038],
  3037 + [117.546629, 40.23292],
  3038 + [117.527134, 40.228978],
  3039 + [117.524011, 40.229632],
  3040 + [117.514318, 40.227719],
  3041 + [117.505005, 40.227216],
  3042 + [117.499194, 40.230957],
  3043 + [117.488985, 40.232534],
  3044 + [117.484071, 40.235302],
  3045 + [117.481097, 40.241726],
  3046 + [117.474106, 40.241105],
  3047 + [117.472843, 40.243185],
  3048 + [117.461439, 40.248351],
  3049 + [117.458589, 40.248183],
  3050 + [117.45028, 40.252476],
  3051 + [117.438849, 40.252996],
  3052 + [117.434179, 40.248116],
  3053 + [117.42997, 40.246539],
  3054 + [117.426739, 40.248082],
  3055 + [117.41615, 40.248921],
  3056 + [117.412647, 40.24352],
  3057 + [117.415363, 40.236862],
  3058 + [117.411561, 40.235604],
  3059 + [117.405357, 40.230185],
  3060 + [117.403009, 40.233423],
  3061 + [117.397551, 40.235168],
  3062 + [117.390016, 40.227971],
  3063 + [117.393723, 40.221663],
  3064 + [117.377594, 40.21861],
  3065 + [117.378436, 40.210304],
  3066 + [117.385686, 40.207888],
  3067 + [117.393152, 40.20339],
  3068 + [117.383446, 40.20235],
  3069 + [117.382346, 40.204565],
  3070 + [117.379563, 40.198926],
  3071 + [117.381545, 40.194797],
  3072 + [117.384382, 40.195267],
  3073 + [117.384097, 40.187832],
  3074 + [117.388346, 40.188251],
  3075 + [117.397714, 40.192917],
  3076 + [117.407692, 40.187496],
  3077 + [117.404746, 40.183232],
  3078 + [117.40123, 40.183618],
  3079 + [117.391618, 40.177608],
  3080 + [117.393193, 40.174905],
  3081 + [117.380595, 40.176903],
  3082 + [117.381219, 40.172454],
  3083 + [117.377024, 40.176316],
  3084 + [117.372028, 40.176534],
  3085 + [117.368838, 40.172991],
  3086 + [117.364018, 40.176685],
  3087 + [117.362878, 40.172152],
  3088 + [117.353741, 40.17368],
  3089 + [117.351121, 40.171665],
  3090 + [117.357339, 40.16426],
  3091 + [117.360624, 40.156973],
  3092 + [117.351719, 40.150557],
  3093 + [117.355275, 40.148592],
  3094 + [117.350524, 40.144813],
  3095 + [117.356891, 40.145048],
  3096 + [117.356348, 40.140916],
  3097 + [117.351393, 40.139925],
  3098 + [117.349071, 40.136515],
  3099 + [117.330608, 40.133693],
  3100 + [117.330934, 40.135759],
  3101 + [117.323277, 40.140715],
  3102 + [117.318566, 40.138514],
  3103 + [117.31376, 40.139959],
  3104 + [117.30761, 40.136969],
  3105 + [117.302994, 40.125931],
  3106 + [117.297062, 40.121261],
  3107 + [117.297102, 40.118858],
  3108 + [117.285414, 40.121328],
  3109 + [117.275422, 40.113464],
  3110 + [117.276657, 40.109313],
  3111 + [117.274363, 40.105801],
  3112 + [117.269923, 40.107196],
  3113 + [117.266828, 40.11217],
  3114 + [117.260393, 40.114153],
  3115 + [117.255533, 40.113279],
  3116 + [117.249261, 40.116489],
  3117 + [117.245364, 40.113229],
  3118 + [117.238224, 40.11175],
  3119 + [117.235997, 40.108389],
  3120 + [117.229019, 40.103465],
  3121 + [117.228612, 40.100255],
  3122 + [117.22439, 40.098557],
  3123 + [117.22443, 40.094624],
  3124 + [117.211262, 40.096607],
  3125 + [117.211031, 40.090775],
  3126 + [117.215117, 40.085093],
  3127 + [117.209782, 40.082235],
  3128 + [117.213027, 40.07941],
  3129 + [117.215117, 40.073677],
  3130 + [117.219733, 40.071121],
  3131 + [117.22291, 40.066648],
  3132 + [117.217873, 40.064395],
  3133 + [117.209307, 40.065791],
  3134 + [117.202532, 40.064967],
  3135 + [117.192364, 40.066279],
  3136 + [117.192025, 40.061486],
  3137 + [117.184069, 40.062579],
  3138 + [117.181775, 40.059014],
  3139 + [117.183404, 40.053026],
  3140 + [117.188712, 40.047779],
  3141 + [117.186811, 40.041875],
  3142 + [117.188318, 40.032555],
  3143 + [117.187802, 40.025858],
  3144 + [117.194088, 40.021568],
  3145 + [117.193219, 40.016772],
  3146 + [117.197672, 40.010596],
  3147 + [117.195744, 40.003948],
  3148 + [117.19812, 39.992737],
  3149 + [117.190898, 39.986475],
  3150 + [117.191142, 39.981828],
  3151 + [117.188115, 39.978797],
  3152 + [117.178625, 39.977282],
  3153 + [117.17967, 39.965596],
  3154 + [117.175937, 39.959112],
  3155 + [117.172407, 39.96307],
  3156 + [117.164873, 39.963137],
  3157 + [117.166407, 39.955373],
  3158 + [117.16452, 39.952071],
  3159 + [117.158641, 39.950774],
  3160 + [117.151039, 39.944862],
  3161 + [117.146952, 39.947271],
  3162 + [117.156863, 39.938039],
  3163 + [117.155044, 39.934147],
  3164 + [117.150726, 39.936034],
  3165 + [117.146396, 39.933136],
  3166 + [117.149871, 39.92424],
  3167 + [117.137422, 39.921645],
  3168 + [117.136716, 39.919639],
  3169 + [117.142513, 39.918797],
  3170 + [117.144767, 39.911567],
  3171 + [117.158831, 39.909207],
  3172 + [117.157582, 39.904589],
  3173 + [117.150564, 39.902061],
  3174 + [117.149124, 39.896279],
  3175 + [117.15841, 39.889316],
  3176 + [117.152152, 39.877463],
  3177 + [117.153672, 39.875625],
  3178 + [117.157759, 39.878744],
  3179 + [117.16285, 39.876586],
  3180 + [117.164642, 39.872809],
  3181 + [117.168158, 39.873028],
  3182 + [117.17052, 39.877513],
  3183 + [117.173833, 39.873062],
  3184 + [117.166841, 39.868947],
  3185 + [117.168429, 39.866687],
  3186 + [117.175584, 39.866839],
  3187 + [117.177851, 39.870886],
  3188 + [117.181042, 39.869217],
  3189 + [117.180105, 39.86527],
  3190 + [117.185739, 39.866434],
  3191 + [117.192377, 39.862117],
  3192 + [117.199125, 39.862302],
  3193 + [117.211615, 39.859519],
  3194 + [117.213189, 39.856264],
  3195 + [117.220045, 39.856551],
  3196 + [117.227797, 39.852772],
  3197 + [117.230852, 39.856905],
  3198 + [117.236893, 39.855792],
  3199 + [117.239798, 39.860447],
  3200 + [117.247455, 39.861054],
  3201 + [117.259959, 39.843393],
  3202 + [117.25556, 39.842667],
  3203 + [117.252234, 39.834603],
  3204 + [117.25723, 39.829794],
  3205 + [117.26619, 39.826756],
  3206 + [117.268824, 39.828342],
  3207 + [117.273345, 39.824866],
  3208 + [117.27796, 39.825373],
  3209 + [117.286147, 39.819432],
  3210 + [117.285631, 39.813103],
  3211 + [117.289609, 39.813762],
  3212 + [117.295921, 39.810977],
  3213 + [117.301827, 39.805187],
  3214 + [117.306063, 39.808073],
  3215 + [117.313557, 39.807162],
  3216 + [117.319625, 39.804596],
  3217 + [117.319191, 39.800477],
  3218 + [117.322897, 39.794028],
  3219 + [117.329305, 39.79158],
  3220 + [117.334151, 39.796763],
  3221 + [117.340125, 39.7983],
  3222 + [117.342799, 39.795447],
  3223 + [117.34565, 39.797557],
  3224 + [117.349126, 39.794721],
  3225 + [117.356185, 39.792847],
  3226 + [117.366204, 39.794062],
  3227 + [117.366258, 39.790854],
  3228 + [117.374757, 39.790601],
  3229 + [117.375544, 39.78763],
  3230 + [117.382875, 39.787545],
  3231 + [117.389908, 39.785485],
  3232 + [117.388795, 39.782361],
  3233 + [117.392786, 39.782125],
  3234 + [117.392514, 39.777177],
  3235 + [117.399099, 39.770861],
  3236 + [117.407299, 39.772246],
  3237 + [117.412417, 39.768176],
  3238 + [117.412322, 39.76267],
  3239 + [117.415648, 39.760288],
  3240 + [117.426753, 39.758295],
  3241 + [117.431233, 39.755897],
  3242 + [117.437193, 39.755542],
  3243 + [117.439935, 39.764444],
  3244 + [117.449289, 39.768885],
  3245 + [117.454597, 39.768345],
  3246 + [117.457272, 39.772922],
  3247 + [117.463544, 39.775354],
  3248 + [117.460394, 39.769122],
  3249 + [117.464141, 39.768717],
  3250 + [117.47302, 39.774357],
  3251 + [117.47021, 39.777802],
  3252 + [117.483378, 39.774948],
  3253 + [117.489881, 39.77863],
  3254 + [117.492257, 39.771419],
  3255 + [117.503525, 39.773884],
  3256 + [117.50719, 39.767197],
  3257 + [117.511576, 39.765727],
  3258 + [117.516151, 39.769071],
  3259 + [117.519938, 39.764663],
  3260 + [117.52378, 39.768598],
  3261 + [117.529346, 39.765812],
  3262 + [117.533053, 39.766251],
  3263 + [117.531912, 39.761386],
  3264 + [117.539162, 39.76044]
  3265 + ]
  3266 + ]
  3267 + ]
  3268 + },
  3269 + "properties": {
  3270 + "adcode": 120119,
  3271 + "name": "蓟州区",
  3272 + "center": [117.407449, 40.045342],
  3273 + "centroid": [117.434984, 40.003468],
  3274 + "childrenNum": 0,
  3275 + "level": "district",
  3276 + "parent": "{ \"adcode\": 120000 }",
  3277 + "subFeatureIndex": 15,
  3278 + "acroutes": [100000, 120000]
  3279 + }
  3280 + }
  3281 + ]
  3282 +}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南开区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.177345,39.103843],[117.177345,39.063843],[117.13900515625,39.0703566718751],[117.12298953125,39.1094863105469],[117.109014921875,39.1326528144531],[117.117345,39.153843],[117.130704375,39.1472023750001],[117.187345,39.143843],[117.187345,39.1338430000001],[117.177345,39.1338430000001],[117.177345,39.103843]]]]}},{"type":"Feature","properties":{"name":"宝坻区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.40271609375,39.7692153144531],[117.414556914063,39.755473859375],[117.47373171875,39.7772048164063],[117.537345,39.753843],[117.5841028125,39.7479946113282],[117.579600859375,39.7117751289063],[117.639327421875,39.6946987128907],[117.658375273438,39.6451406074219],[117.621129179688,39.5985683417969],[117.642896757813,39.5893959785157],[117.657345,39.5713552070313],[117.677183867188,39.5961293769532],[117.693155546875,39.5689589667969],[117.687345,39.5538430000001],[117.681373320313,39.5323940253907],[117.652345,39.5281044746094],[117.632857695313,39.5309841132813],[117.62298953125,39.5181996894532],[117.61170046875,39.5094863105469],[117.592857695313,39.48507346875],[117.551256132813,39.4912209296875],[117.554351835938,39.4702602363282],[117.509190703125,39.4570925117187],[117.484835234375,39.4606911445313],[117.480865507813,39.4338430000001],[117.487745390625,39.3873146796876],[117.472608671875,39.3677053046875],[117.417345,39.3459804511719],[117.37990359375,39.36069846875],[117.362345,39.3581044746094],[117.346095,39.3605055976563],[117.317345,39.3538430000001],[117.301060820313,39.3678713203126],[117.302745390625,39.388843],[117.301842070313,39.4000881171876],[117.336080351563,39.3973378730469],[117.30197390625,39.4584706855469],[117.291715117188,39.4814638496094],[117.27197390625,39.4984706855469],[117.261300078125,39.5108571601562],[117.263204375,39.5345351386719],[117.23197390625,39.5484706855469],[117.19271609375,39.5792153144531],[117.137345,39.613843],[117.145513945313,39.6256740546875],[117.165557890625,39.6395131660157],[117.160103789063,39.6638430000001],[117.168570585938,39.7016066718751],[117.147823515625,39.733462140625],[117.196827421875,39.7672951484375],[117.18142703125,39.7779274726563],[117.17326296875,39.7897585273438],[117.151016875,39.7980812812501],[117.157345,39.823843],[117.19170046875,39.8294863105469],[117.247345,39.833843],[117.301304960938,39.8031667304688],[117.385513945313,39.7840358710938],[117.40271609375,39.7692153144531]]]]}},{"type":"Feature","properties":{"name":"北辰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.210816679688,39.3570326972657],[117.252345,39.3477223945313],[117.266246367188,39.3508388496094],[117.30142703125,39.3279274726562],[117.317345,39.3238430000001],[117.357081328125,39.2941823554687],[117.395953398438,39.2782729316406],[117.39156375,39.2485512519532],[117.397345,39.233843],[117.292418242188,39.2395876289063],[117.282535429688,39.2186525703125],[117.250074492188,39.2083754707032],[117.227345,39.183843],[117.202388945313,39.1899733710938],[117.192345,39.1877223945312],[117.181676054688,39.1901137519532],[117.177345,39.183843],[117.152388945313,39.1899733710938],[117.135933867188,39.1862856269532],[117.127345,39.1738430000001],[117.07142703125,39.1697585273438],[117.062935820313,39.1574599433594],[117.021754179688,39.1702260566407],[117.012691679688,39.15710471875],[116.990230742188,39.1717311835938],[116.972345,39.1677223945313],[116.962301054688,39.1699733710938],[116.937345,39.163843],[116.94142703125,39.1897585273438],[116.96170046875,39.2037538886719],[116.97142703125,39.2297585273438],[117.014478789063,39.2543300605469],[117.00724734375,39.2865798164063],[117.022345,39.2899636054688],[117.032345,39.2877223945313],[117.042345,39.2899636054688],[117.064522734375,39.2849916816406],[117.08326296875,39.2979274726563],[117.09435671875,39.3139968085938],[117.14033328125,39.3036891914062],[117.15142703125,39.3197585273438],[117.17326296875,39.3279274726562],[117.210816679688,39.3570326972657]]]]}},{"type":"Feature","properties":{"name":"东丽区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.397345,39.233843],[117.403267851563,39.2230397773438],[117.43806765625,39.2373830390625],[117.473077421875,39.2216323066406],[117.487735625,39.1948830390625],[117.5027746875,39.2010805488282],[117.520885039063,39.1873830390625],[117.553804960938,39.1803029609375],[117.557345,39.1738430000001],[117.540889921875,39.1435646796876],[117.506265898438,39.1513271308594],[117.49673953125,39.108843],[117.546685820313,39.0990895820313],[117.555767851563,39.0585707832031],[117.515577421875,39.0482570625],[117.511217070313,39.0288014960938],[117.517345,39.003843],[117.502003203125,38.9978115058594],[117.49298953125,39.0094863105469],[117.47170046875,39.0181996894532],[117.462857695313,39.0296572089844],[117.397974882813,39.0200698066407],[117.375714140625,39.048911359375],[117.33170046875,39.0581996894532],[117.31298953125,39.0694863105469],[117.277345,39.073843],[117.257345,39.073843],[117.257345,39.083843],[117.293624296875,39.0875649238282],[117.311065703125,39.0984194160156],[117.263883085938,39.1092067695313],[117.274351835938,39.1396889472656],[117.261065703125,39.1475649238282],[117.257345,39.153843],[117.270152617188,39.158843],[117.257345,39.163843],[117.253985625,39.170483625],[117.227345,39.183843],[117.250074492188,39.2083754707032],[117.282535429688,39.2186525703125],[117.292418242188,39.2395876289063],[117.397345,39.233843]]]]}},{"type":"Feature","properties":{"name":"和平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.203985625,39.107202375],[117.177345,39.103843],[117.177345,39.1338430000001],[117.187345,39.1338430000001],[117.197345,39.1338430000001],[117.21062625,39.1271242500001],[117.217345,39.113843],[117.203985625,39.107202375]]]]}},{"type":"Feature","properties":{"name":"河北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.181676054688,39.1901137519532],[117.192345,39.1877223945312],[117.202388945313,39.1899733710938],[117.227345,39.183843],[117.253985625,39.170483625],[117.257345,39.163843],[117.257345,39.153843],[117.24255984375,39.1472194648438],[117.232345,39.1504006171875],[117.201656523438,39.1408425117188],[117.197345,39.1338430000001],[117.187345,39.1338430000001],[117.187345,39.143843],[117.180704375,39.1572023750001],[117.177345,39.183843],[117.181676054688,39.1901137519532]]]]}},{"type":"Feature","properties":{"name":"河东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.257345,39.153843],[117.261065703125,39.1475649238282],[117.274351835938,39.1396889472656],[117.263883085938,39.1092067695313],[117.311065703125,39.0984194160156],[117.293624296875,39.0875649238282],[117.257345,39.083843],[117.240704375,39.087202375],[117.23062625,39.10712425],[117.217345,39.113843],[117.21062625,39.1271242500001],[117.197345,39.1338430000001],[117.201656523438,39.1408425117188],[117.232345,39.1504006171875],[117.24255984375,39.1472194648438],[117.257345,39.153843]]],[[[117.257345,39.153843],[117.257345,39.163843],[117.270152617188,39.158843],[117.257345,39.153843]]]]}},{"type":"Feature","properties":{"name":"河西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.257345,39.083843],[117.257345,39.073843],[117.277345,39.073843],[117.269112578125,39.0575722480469],[117.217345,39.0538430000001],[117.192550078125,39.0702284980469],[117.177345,39.063843],[117.177345,39.103843],[117.203985625,39.107202375],[117.217345,39.113843],[117.23062625,39.10712425],[117.240704375,39.087202375],[117.257345,39.083843]]]]}},{"type":"Feature","properties":{"name":"红桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.180704375,39.1572023750001],[117.187345,39.143843],[117.130704375,39.1472023750001],[117.117345,39.153843],[117.127345,39.1738430000001],[117.135933867188,39.1862856269532],[117.152388945313,39.1899733710938],[117.177345,39.183843],[117.180704375,39.1572023750001]]]]}},{"type":"Feature","properties":{"name":"津南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.375714140625,39.048911359375],[117.397974882813,39.0200698066407],[117.462857695313,39.0296572089844],[117.47170046875,39.0181996894532],[117.49298953125,39.0094863105469],[117.502003203125,38.9978115058594],[117.517345,39.003843],[117.555123320313,38.9941481757813],[117.5426184375,38.9454189277344],[117.520069609375,38.9504738593751],[117.491051054688,38.9396169257813],[117.4977746875,38.9096169257813],[117.47142703125,38.8997585273438],[117.428072539063,38.8636013007813],[117.397301054688,38.8836391425781],[117.34326296875,38.8479274726563],[117.327345,38.843843],[117.33312625,38.8585512519532],[117.330484648438,38.8764174628906],[117.288360625,38.8936586738282],[117.248409453125,38.9454164863281],[117.288604765625,38.9951503730469],[117.2660559375,39.0125551582031],[117.25298953125,39.0294863105469],[117.22170046875,39.0481996894532],[117.217345,39.0538430000001],[117.269112578125,39.0575722480469],[117.277345,39.073843],[117.31298953125,39.0694863105469],[117.33170046875,39.0581996894532],[117.375714140625,39.048911359375]]]]}},{"type":"Feature","properties":{"name":"武清区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.233843],[116.880767851563,39.2216506171876],[116.889537382813,39.2304201484376],[116.873170195313,39.2396681953125],[116.86123171875,39.2994618964844],[116.88459109375,39.3162050605469],[116.8694934375,39.3529457832031],[116.832633085938,39.337798078125],[116.819678984375,39.3403578925782],[116.823331328125,39.3588430000001],[116.821236601563,39.3694631171875],[116.833453398438,39.3782228828126],[116.828521757813,39.4031850410157],[116.863453398438,39.4282228828125],[116.860455351563,39.4434096503907],[116.822965117188,39.436001203125],[116.812965117188,39.4499538398438],[116.792095976563,39.4458303046875],[116.787345,39.463843],[116.79142703125,39.4697585273438],[116.814215117188,39.4854921699219],[116.810103789063,39.503843],[116.81361453125,39.5195131660156],[116.777379179688,39.5445326972657],[116.803580351563,39.5783376289063],[116.799698515625,39.5956410957031],[116.807345,39.613843],[116.824801054688,39.6163869453125],[116.829888945313,39.6412990546876],[116.859644804688,39.6712636542969],[116.894801054688,39.6763869453125],[116.897345,39.683843],[116.90326296875,39.6879274726563],[116.9170715625,39.7079274726562],[116.939478789063,39.6966200996094],[116.943468046875,39.678843],[116.939791289063,39.6624477363282],[116.971954375,39.6375221992188],[117.017257109375,39.6515651679688],[117.087428007813,39.6335561347656],[117.11142703125,39.6179274726563],[117.137345,39.613843],[117.19271609375,39.5792153144531],[117.23197390625,39.5484706855469],[117.263204375,39.5345351386719],[117.261300078125,39.5108571601562],[117.27197390625,39.4984706855469],[117.291715117188,39.4814638496094],[117.30197390625,39.4584706855469],[117.336080351563,39.3973378730469],[117.301842070313,39.4000881171876],[117.302745390625,39.388843],[117.301060820313,39.3678713203126],[117.317345,39.3538430000001],[117.317345,39.3238430000001],[117.30142703125,39.3279274726562],[117.266246367188,39.3508388496094],[117.252345,39.3477223945313],[117.210816679688,39.3570326972657],[117.17326296875,39.3279274726562],[117.15142703125,39.3197585273438],[117.14033328125,39.3036891914062],[117.09435671875,39.3139968085938],[117.08326296875,39.2979274726563],[117.064522734375,39.2849916816406],[117.042345,39.2899636054688],[117.032345,39.2877223945313],[117.022345,39.2899636054688],[117.00724734375,39.2865798164063],[117.014478789063,39.2543300605469],[116.97142703125,39.2297585273438],[116.96170046875,39.2037538886719],[116.94142703125,39.1897585273438],[116.937345,39.163843],[116.930704375,39.160483625],[116.917345,39.1338430000001],[116.907345,39.1338430000001],[116.907345,39.153843],[116.857345,39.153843],[116.851905546875,39.2091567207032],[116.86271609375,39.2184706855469],[116.87197390625,39.2292153144531],[116.877345,39.233843]]]]}},{"type":"Feature","properties":{"name":"西青区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.127345,39.1738430000001],[117.117345,39.153843],[117.109014921875,39.1326528144531],[117.12298953125,39.1094863105469],[117.13900515625,39.0703566718751],[117.177345,39.063843],[117.192550078125,39.0702284980469],[117.217345,39.0538430000001],[117.22170046875,39.0481996894532],[117.25298953125,39.0294863105469],[117.2660559375,39.0125551582031],[117.288604765625,38.9951503730469],[117.248409453125,38.9454164863281],[117.288360625,38.8936586738282],[117.330484648438,38.8764174628906],[117.33312625,38.8585512519532],[117.327345,38.843843],[117.322642851563,38.8238784003907],[117.273531523438,38.8400307441407],[117.247345,38.843843],[117.238453398438,38.8549489570313],[117.17736453125,38.9038649726563],[117.126539335938,38.9673378730469],[117.06658328125,39.0012355781251],[117.032345,38.9969777656251],[117.020845976563,39.0242641425782],[116.971793242188,39.0382900214844],[116.952896757813,39.0493959785157],[116.91000125,39.0616616035156],[116.881832304688,39.0581569648438],[116.877345,39.073843],[116.887423125,39.093764875],[116.913985625,39.107202375],[116.917345,39.1338430000001],[116.930704375,39.160483625],[116.937345,39.163843],[116.962301054688,39.1699733710938],[116.972345,39.1677223945313],[116.990230742188,39.1717311835938],[117.012691679688,39.15710471875],[117.021754179688,39.1702260566407],[117.062935820313,39.1574599433594],[117.07142703125,39.1697585273438],[117.127345,39.1738430000001]]]]}},{"type":"Feature","properties":{"name":"蓟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.439625273438,40.252602765625],[117.507515898438,40.2259133125],[117.547086210938,40.2317604804688],[117.563160429688,40.2193544746094],[117.56156375,40.2085512519532],[117.567345,40.1938430000001],[117.575050078125,40.1675893378906],[117.600386992188,40.1701723457032],[117.643800078125,40.1181154609376],[117.641090117188,40.09151878125],[117.677345,40.0878237128907],[117.700474882813,40.090180890625],[117.732081328125,40.0783058906251],[117.742735625,40.0793923164063],[117.751881132813,40.0683803535157],[117.7714465625,40.0521279121094],[117.732808867188,40.0353700996094],[117.742447539063,40.0173244453125],[117.78158328125,40.0213137031251],[117.784483671875,39.9928456855469],[117.777345,39.9738430000001],[117.76545046875,39.9595241523438],[117.702608671875,39.9831386542969],[117.6220715625,39.9682448554688],[117.5801965625,39.9983803535157],[117.531788359375,39.9892885566407],[117.533780546875,39.9697353339844],[117.511798125,39.9391909003907],[117.51375125,39.9200307441406],[117.5015246875,39.8986782050782],[117.512808867188,39.8893056464844],[117.521881132813,39.8583803535156],[117.532808867188,39.8493056464844],[117.541881132813,39.8283803535156],[117.555933867188,39.803843],[117.541803007813,39.779165265625],[117.542882109375,39.7685781074219],[117.537345,39.753843],[117.47373171875,39.7772048164063],[117.414556914063,39.755473859375],[117.40271609375,39.7692153144531],[117.385513945313,39.7840358710938],[117.301304960938,39.8031667304688],[117.247345,39.833843],[117.24287234375,39.8595302558594],[117.218194609375,39.8564614082031],[117.172564726563,39.8694924140626],[117.15634890625,39.8674758125],[117.142896757813,39.8993959785156],[117.1297278125,39.9218056464844],[117.186246367188,39.9924770332032],[117.178272734375,40.0565785957032],[117.187345,40.063843],[117.197345,40.063843],[117.21547,40.0675014472657],[117.207345,40.0838430000001],[117.22978640625,40.1129152656251],[117.262735625,40.1080458808594],[117.296436796875,40.1283766914063],[117.34298953125,40.1381996894531],[117.35170046875,40.1694863105469],[117.401085234375,40.1832387519531],[117.369390898438,40.2077028632813],[117.38298953125,40.2181996894531],[117.387345,40.223843],[117.396436796875,40.2356240058594],[117.439625273438,40.252602765625]]]]}},{"type":"Feature","properties":{"name":"静海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.073843],[116.881832304688,39.0581569648438],[116.91000125,39.0616616035156],[116.952896757813,39.0493959785157],[116.971793242188,39.0382900214844],[117.020845976563,39.0242641425782],[117.032345,38.9969777656251],[117.06658328125,39.0012355781251],[117.126539335938,38.9673378730469],[117.17736453125,38.9038649726563],[117.238453398438,38.8549489570313],[117.247345,38.843843],[117.230787382813,38.819858625],[117.191041289063,38.8096584296875],[117.19853640625,38.7762282539063],[117.12326296875,38.7353188300782],[117.142081328125,38.7276625800781],[117.156148710938,38.7308168769532],[117.151221953125,38.7088430000001],[117.153565703125,38.6983962226563],[117.14060671875,38.6784950996094],[117.15361453125,38.6695131660156],[117.151221953125,38.658843],[117.1546496875,38.6435732246094],[117.147345,38.613843],[117.14267703125,38.6070839667969],[117.11326296875,38.5879274726563],[117.097345,38.583843],[117.091793242188,38.5882900214844],[117.082896757813,38.5993959785157],[117.071793242188,38.6082900214844],[117.048980742188,38.6367787910157],[117.054156523438,38.6783901191407],[117.041793242188,38.6882900214844],[117.030987578125,38.7017836738282],[116.946763945313,38.6913075996094],[116.912628203125,38.6781862617188],[116.8740246875,38.6829872871094],[116.861085234375,38.7137026191407],[116.864273710938,38.7393386054688],[116.757345,38.7438430000001],[116.753804960938,38.7503029609375],[116.73990359375,38.7579213691407],[116.74646609375,38.773843],[116.7341028125,38.803843],[116.744405546875,38.8288430000001],[116.735733671875,38.849887921875],[116.717345,38.853843],[116.71298953125,38.8894863105469],[116.7014465625,38.8983950019531],[116.716202421875,38.9620705390625],[116.761383085938,39.0230080390625],[116.747345,39.033843],[116.751529570313,39.0501467109375],[116.771676054688,39.0456301093751],[116.781754179688,39.0602260566406],[116.822725859375,39.0475258613282],[116.86326296875,39.0579274726563],[116.87142703125,39.0697585273437],[116.877345,39.073843]]]]}},{"type":"Feature","properties":{"name":"宁河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.847345,39.3538430000001],[117.850767851563,39.3660353828125],[117.859537382813,39.3572658515625],[117.847345,39.3538430000001]]],[[[117.847345,39.3538430000001],[117.8354309375,39.3298708320313],[117.847345,39.3238430000001],[117.84271609375,39.3184706855469],[117.831539335938,39.308843],[117.847232695313,39.2953224921876],[117.816651640625,39.2598256660157],[117.777047148438,39.3057961250001],[117.692999296875,39.2804921699219],[117.7166028125,39.2530995917969],[117.733780546875,39.2382997871094],[117.711920195313,39.1991213203126],[117.714322539063,39.1692153144532],[117.672086210938,39.1812990546875],[117.627706328125,39.21276878125],[117.611163359375,39.1985195136719],[117.613511992188,39.1693386054688],[117.595640898438,39.1679018378907],[117.557345,39.1738430000001],[117.553804960938,39.1803029609375],[117.520885039063,39.1873830390625],[117.5027746875,39.2010805488282],[117.487735625,39.1948830390625],[117.473077421875,39.2216323066406],[117.43806765625,39.2373830390625],[117.403267851563,39.2230397773438],[117.397345,39.233843],[117.39156375,39.2485512519532],[117.395953398438,39.2782729316406],[117.357081328125,39.2941823554687],[117.317345,39.3238430000001],[117.317345,39.3538430000001],[117.346095,39.3605055976563],[117.362345,39.3581044746094],[117.37990359375,39.36069846875],[117.417345,39.3459804511719],[117.472608671875,39.3677053046875],[117.487745390625,39.3873146796876],[117.480865507813,39.4338430000001],[117.484835234375,39.4606911445313],[117.509190703125,39.4570925117187],[117.554351835938,39.4702602363282],[117.551256132813,39.4912209296875],[117.592857695313,39.48507346875],[117.61170046875,39.5094863105469],[117.62298953125,39.5181996894532],[117.632857695313,39.5309841132813],[117.652345,39.5281044746094],[117.681373320313,39.5323940253907],[117.687345,39.5538430000001],[117.6937121875,39.5502114082032],[117.704996367188,39.5304201484376],[117.736676054688,39.5423598457032],[117.727022734375,39.5679579902344],[117.7437121875,39.5774745917969],[117.757345,39.603843],[117.774215117188,39.597505109375],[117.798038359375,39.5999330878907],[117.892808867188,39.5893056464844],[117.927345,39.573843],[117.900553007813,39.5329140449219],[117.90341921875,39.5184096503907],[117.889761992188,39.4969020820313],[117.8939465625,39.4757411933594],[117.871519804688,39.4596681953125],[117.855011015625,39.3773281074219],[117.841026640625,39.3800917792969],[117.793170195313,39.3674648261719],[117.801519804688,39.3580178046875],[117.847345,39.3538430000001]]]]}},{"type":"Feature","properties":{"name":"滨海新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.767345,38.923843],[117.798179960938,38.9376552558594],[117.821158476563,38.9262441230469],[117.803687773438,38.9065688300782],[117.771158476563,38.9176552558594],[117.767345,38.923843]]],[[[117.787345,38.983843],[117.783985625,39.020483625],[117.767345,39.0538430000001],[117.808673125,39.0491432929688],[117.827110625,38.9740749335938],[117.787345,38.983843]]],[[[117.727345,39.0938430000001],[117.723922148438,39.1060353828126],[117.715152617188,39.0972658515625],[117.737423125,39.073921125],[117.763985625,39.060483625],[117.767345,39.0538430000001],[117.76170046875,39.049486310547],[117.748551054688,39.0324489570313],[117.780894804688,38.9888198066406],[117.787345,38.983843],[117.780733671875,38.9681032539063],[117.89142703125,38.9401039863281],[117.863199492188,38.9325807929687],[117.79326296875,38.9497585273438],[117.757345,38.953843],[117.757345,38.963843],[117.727345,38.963843],[117.727345,38.9738430000001],[117.717345,38.9738430000001],[117.717345,38.983843],[117.729537382813,38.9872658515625],[117.720767851563,38.9960353828126],[117.717345,38.983843],[117.704537382813,38.9788430000001],[117.717345,38.9738430000001],[117.717345,38.963843],[117.727345,38.963843],[117.727345,38.953843],[117.757345,38.953843],[117.763985625,38.940483625],[117.767345,38.923843],[117.74170046875,38.9094863105469],[117.732857695313,38.8980287910157],[117.722345,38.8995815253907],[117.690709257813,38.894907453125],[117.69312625,38.8785512519532],[117.679576445313,38.8440798164062],[117.6272278125,38.8518154121094],[117.569503203125,38.7688112617188],[117.60298953125,38.7594863105469],[117.61170046875,38.7234096503907],[117.559625273438,38.6922634101563],[117.563160429688,38.6683315253907],[117.541182890625,38.6513661933594],[117.547345,38.613843],[117.529386015625,38.6064638496094],[117.48187625,38.6158522773438],[117.40314578125,38.5919350410157],[117.393170195313,38.5780178046875],[117.374132109375,38.5643727851562],[117.357345,38.5877956367188],[117.343170195313,38.5680178046875],[117.302115507813,38.5571865058594],[117.29279421875,38.5701918769532],[117.259386015625,38.5564638496094],[117.235875273438,38.561108625],[117.245186796875,38.6082228828126],[117.231519804688,38.6180178046876],[117.220518828125,38.6465407539063],[117.183170195313,38.6180178046876],[117.147345,38.613843],[117.1546496875,38.6435732246094],[117.151221953125,38.658843],[117.15361453125,38.6695131660156],[117.14060671875,38.6784950996094],[117.153565703125,38.6983962226563],[117.151221953125,38.7088430000001],[117.156148710938,38.7308168769532],[117.142081328125,38.7276625800781],[117.12326296875,38.7353188300782],[117.19853640625,38.7762282539063],[117.191041289063,38.8096584296875],[117.230787382813,38.819858625],[117.247345,38.843843],[117.273531523438,38.8400307441407],[117.322642851563,38.8238784003907],[117.327345,38.843843],[117.34326296875,38.8479274726563],[117.397301054688,38.8836391425781],[117.428072539063,38.8636013007813],[117.47142703125,38.8997585273438],[117.4977746875,38.9096169257813],[117.491051054688,38.9396169257813],[117.520069609375,38.9504738593751],[117.5426184375,38.9454189277344],[117.555123320313,38.9941481757813],[117.517345,39.003843],[117.511217070313,39.0288014960938],[117.515577421875,39.0482570625],[117.555767851563,39.0585707832031],[117.546685820313,39.0990895820313],[117.49673953125,39.108843],[117.506265898438,39.1513271308594],[117.540889921875,39.1435646796876],[117.557345,39.1738430000001],[117.595640898438,39.1679018378907],[117.613511992188,39.1693386054688],[117.611163359375,39.1985195136719],[117.627706328125,39.21276878125],[117.672086210938,39.1812990546875],[117.714322539063,39.1692153144532],[117.711920195313,39.1991213203126],[117.733780546875,39.2382997871094],[117.7166028125,39.2530995917969],[117.692999296875,39.2804921699219],[117.777047148438,39.3057961250001],[117.816651640625,39.2598256660157],[117.847232695313,39.2953224921876],[117.831539335938,39.308843],[117.84271609375,39.3184706855469],[117.847345,39.3238430000001],[117.860494414063,39.3385622382813],[117.882628203125,39.3291237617188],[117.902061796875,39.3185622382813],[117.962628203125,39.3091237617188],[117.993678007813,39.2874330878907],[118.022613554688,39.2891567207032],[118.032061796875,39.2685622382812],[118.061221953125,39.2425075507813],[118.032061796875,39.2291237617188],[118.027345,39.223843],[117.9445715625,39.2153993964845],[117.871417265625,39.1953786445313],[117.873629179688,39.1678627753907],[117.840050078125,39.1801943183594],[117.81271609375,39.1484706855469],[117.79197390625,39.1392153144532],[117.74271609375,39.0984706855469],[117.727345,39.0938430000001]],[[117.734346953125,38.977895734375],[117.757345,38.9738430000001],[117.751910429688,38.9865395332032],[117.734346953125,38.977895734375]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":130100,"name":"石家庄市","center":[114.502461,38.045474],"centroid":[114.444982,38.133034],"childrenNum":22,"level":"city","parent":{"adcode":130000},"subFeatureIndex":0,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.839548,38.758413],[113.802899,38.763321],[113.78041,38.728355],[113.775669,38.709836],[113.745363,38.701538],[113.729024,38.71196],[113.709995,38.698284],[113.713839,38.663684],[113.702114,38.65166],[113.667067,38.646943],[113.632596,38.653122],[113.612862,38.646013],[113.604212,38.616107],[113.602803,38.586854],[113.562053,38.558321],[113.557248,38.504016],[113.546548,38.493031],[113.583517,38.465992],[113.573202,38.449205],[113.538026,38.418017],[113.525468,38.383016],[113.53431,38.365208],[113.557248,38.34346],[113.546035,38.293067],[113.544818,38.270495],[113.566282,38.252393],[113.570318,38.237427],[113.598894,38.227136],[113.636761,38.232682],[113.657072,38.225599],[113.679112,38.205413],[113.711725,38.213702],[113.715057,38.193713],[113.738507,38.189501],[113.720631,38.174656],[113.731139,38.168369],[113.756575,38.171713],[113.796876,38.162884],[113.828848,38.168971],[113.83359,38.147431],[113.822505,38.150442],[113.810075,38.112566],[113.824235,38.106676],[113.854733,38.077082],[113.856015,38.065898],[113.876261,38.055047],[113.878376,38.032402],[113.872353,37.990375],[113.90125,37.98481],[113.922842,37.952082],[113.929185,37.932022],[113.956864,37.911419],[113.971536,37.868786],[113.970191,37.833923],[113.982557,37.812823],[114.006648,37.813495],[114.018821,37.794876],[114.043873,37.777463],[114.041182,37.756817],[114.000817,37.735358],[113.993769,37.706893],[114.068029,37.721564],[114.088275,37.708845],[114.128256,37.69821],[114.139725,37.675927],[114.131139,37.648315],[114.115378,37.619884],[114.118325,37.590634],[114.059635,37.515906],[114.036762,37.494175],[114.028304,37.474598],[114.022666,37.435496],[114.06899,37.447384],[114.096477,37.490935],[114.113263,37.493837],[114.126526,37.481957],[114.133766,37.498899],[114.156191,37.505244],[114.166123,37.528186],[114.184575,37.530817],[114.215009,37.51125],[114.255439,37.504096],[114.27293,37.494445],[114.303621,37.507808],[114.310861,37.499979],[114.334632,37.502949],[114.358274,37.519212],[114.370192,37.513612],[114.37269,37.52967],[114.412095,37.549907],[114.433495,37.552537],[114.483471,37.576814],[114.519927,37.574656],[114.585217,37.55301],[114.64679,37.556247],[114.680171,37.565283],[114.698816,37.589353],[114.707338,37.615774],[114.725983,37.630665],[114.764618,37.624399],[114.797423,37.628239],[114.808571,37.659832],[114.841504,37.676129],[114.847783,37.69673],[114.871041,37.702114],[114.881357,37.716113],[114.895965,37.712547],[114.904038,37.729302],[114.931846,37.728899],[114.960165,37.720084],[114.987524,37.742691],[115.001748,37.734685],[115.012512,37.75157],[115.041024,37.733541],[115.070049,37.745651],[115.068703,37.773428],[115.085298,37.779211],[115.072291,37.794136],[115.097215,37.797498],[115.097471,37.807849],[115.122972,37.811479],[115.131173,37.799783],[115.150523,37.808521],[115.160262,37.780287],[115.152765,37.759507],[115.172564,37.749351],[115.227281,37.732599],[115.243235,37.722641],[115.261431,37.68818],[115.253807,37.671415],[115.255088,37.645621],[115.258356,37.639625],[115.297376,37.629587],[115.301412,37.660169],[115.316853,37.660102],[115.325567,37.682458],[115.317046,37.695383],[115.333768,37.71322],[115.380989,37.707432],[115.394316,37.712143],[115.386179,37.727082],[115.360294,37.731994],[115.344468,37.74814],[115.371635,37.770335],[115.352349,37.784052],[115.349722,37.805765],[115.360166,37.820215],[115.363049,37.849845],[115.388614,37.853003],[115.389831,37.874629],[115.360294,37.880068],[115.365484,37.906318],[115.385795,37.917191],[115.408668,37.918936],[115.412769,37.943293],[115.448585,37.936584],[115.457555,37.95074],[115.456017,37.974551],[115.444997,37.989168],[115.464219,37.99299],[115.438205,38.001102],[115.45134,38.017323],[115.466782,38.063554],[115.482992,38.08398],[115.468063,38.095161],[115.439871,38.082038],[115.420522,38.089671],[115.383232,38.0886],[115.364843,38.13793],[115.346903,38.13967],[115.342418,38.196254],[115.35094,38.210493],[115.323645,38.220586],[115.324734,38.248184],[115.302758,38.235289],[115.273605,38.2403],[115.263994,38.260543],[115.265788,38.287658],[115.252205,38.29093],[115.225871,38.269894],[115.210174,38.236491],[115.19422,38.236759],[115.168591,38.259608],[115.152317,38.256802],[115.108107,38.264551],[115.085874,38.276773],[115.073765,38.293134],[115.056722,38.288326],[115.066204,38.264684],[115.056465,38.258472],[115.031862,38.267089],[114.989062,38.258138],[114.990087,38.272165],[114.970096,38.281114],[114.927681,38.283385],[114.915059,38.263348],[114.886162,38.265286],[114.883343,38.284854],[114.902565,38.294936],[114.906986,38.309624],[114.922875,38.315631],[114.942994,38.343193],[114.932871,38.344194],[114.923388,38.388217],[114.910381,38.393751],[114.882254,38.424149],[114.853998,38.435879],[114.858163,38.448605],[114.840992,38.460797],[114.837852,38.435745],[114.819143,38.449871],[114.830868,38.46033],[114.81075,38.492365],[114.765259,38.496626],[114.731237,38.48191],[114.702084,38.489102],[114.6737,38.473452],[114.651851,38.504682],[114.635257,38.514801],[114.595724,38.568897],[114.58432,38.596429],[114.56324,38.590644],[114.527616,38.590644],[114.552284,38.612983],[114.536907,38.632324],[114.53633,38.649268],[114.522106,38.65372],[114.498463,38.678297],[114.452652,38.699413],[114.437787,38.692773],[114.413504,38.703928],[114.366411,38.6862],[114.341167,38.690184],[114.311502,38.706517],[114.212831,38.688192],[114.182205,38.67657],[114.129153,38.669596],[114.125053,38.659632],[114.086097,38.65837],[114.052139,38.686399],[114.028624,38.688524],[113.991655,38.676769],[113.964617,38.699811],[113.929697,38.702467],[113.932324,38.71362],[113.883245,38.74667],[113.864664,38.746006],[113.839548,38.758413]]]]}},{"type":"Feature","properties":{"adcode":130200,"name":"唐山市","center":[118.175393,39.635113],"centroid":[118.343325,39.71703],"childrenNum":14,"level":"city","parent":{"adcode":130000},"subFeatureIndex":1,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.319039,39.429554],[119.280403,39.422852],[119.257401,39.429752],[119.212295,39.463453],[119.185769,39.458986],[119.064545,39.473763],[119.048399,39.459052],[119.004894,39.467459],[119.015658,39.482103],[119.008098,39.509347],[118.961453,39.51591],[118.966067,39.529494],[118.983302,39.538942],[118.945243,39.544781],[118.938452,39.557572],[118.895139,39.547011],[118.882261,39.566557],[118.861309,39.574754],[118.844586,39.615004],[118.850097,39.622737],[118.824596,39.648681],[118.822225,39.668984],[118.804157,39.679985],[118.787242,39.71592],[118.774428,39.764198],[118.800185,39.775706],[118.797942,39.790415],[118.825429,39.799436],[118.816843,39.825836],[118.838179,39.847981],[118.835232,39.859018],[118.853556,39.88409],[118.859643,39.93362],[118.875149,39.941121],[118.884247,39.961794],[118.88508,40.005403],[118.865602,40.023777],[118.866307,40.061942],[118.900521,40.086549],[118.918269,40.092211],[118.92474,40.149653],[118.906736,40.169679],[118.888924,40.168768],[118.867652,40.180599],[118.849135,40.178974],[118.794482,40.204838],[118.775581,40.194182],[118.743609,40.191777],[118.746108,40.208087],[118.708562,40.216078],[118.665634,40.242577],[118.628472,40.249915],[118.571384,40.269845],[118.568949,40.287564],[118.533325,40.298854],[118.532364,40.319419],[118.539989,40.361048],[118.558377,40.36928],[118.550881,40.385482],[118.571512,40.414636],[118.548062,40.422667],[118.523458,40.40628],[118.503211,40.403365],[118.45599,40.414053],[118.430746,40.411851],[118.402683,40.416838],[118.387305,40.436719],[118.360011,40.428819],[118.356295,40.435295],[118.306575,40.419558],[118.277935,40.425711],[118.262942,40.452063],[118.239684,40.464686],[118.173818,40.423056],[118.156967,40.423768],[118.153123,40.409519],[118.165232,40.400449],[118.133837,40.375113],[118.121856,40.354695],[118.079312,40.353528],[118.061564,40.319095],[118.031643,40.302358],[118.000888,40.29256],[117.909457,40.285876],[117.897989,40.270429],[117.867554,40.26965],[117.844104,40.261406],[117.807775,40.261926],[117.75152,40.229718],[117.714551,40.241668],[117.694112,40.238161],[117.677069,40.22095],[117.64625,40.205163],[117.619532,40.206398],[117.609409,40.194897],[117.575451,40.192817],[117.576412,40.178584],[117.601208,40.171239],[117.630232,40.147833],[117.635999,40.132094],[117.650159,40.128191],[117.65317,40.110757],[117.644841,40.096181],[117.668099,40.100931],[117.67489,40.082123],[117.708272,40.093643],[117.721983,40.07991],[117.751648,40.081993],[117.758184,40.065978],[117.776188,40.059272],[117.758312,40.04436],[117.747932,40.047421],[117.744152,40.018434],[117.782467,40.023516],[117.797075,40.010225],[117.782019,39.968315],[117.756326,39.96512],[117.72775,39.972422],[117.70667,39.986046],[117.674698,39.974834],[117.634589,39.968901],[117.589226,39.996866],[117.537777,39.997452],[117.547323,39.976855],[117.532907,39.952469],[117.514967,39.946665],[117.525539,39.92964],[117.507406,39.909023],[117.518811,39.891271],[117.521374,39.870641],[117.548092,39.839882],[117.537264,39.835178],[117.561419,39.800024],[117.546106,39.776164],[117.559305,39.756088],[117.59589,39.746147],[117.596082,39.735222],[117.577629,39.726913],[117.602425,39.705384],[117.644777,39.701849],[117.643944,39.688692],[117.657014,39.668657],[117.668355,39.667085],[117.662012,39.636365],[117.641957,39.628438],[117.641189,39.612645],[117.619084,39.603207],[117.621967,39.59167],[117.636191,39.603731],[117.660795,39.57541],[117.68495,39.588916],[117.708913,39.572918],[117.688794,39.569246],[117.689563,39.559539],[117.710194,39.550422],[117.71596,39.530084],[117.744857,39.548585],[117.737745,39.574033],[117.753122,39.576],[117.747868,39.589375],[117.76773,39.599012],[117.801945,39.601765],[117.826548,39.590818],[117.851408,39.589244],[117.868259,39.596849],[117.892607,39.591539],[117.933997,39.574164],[117.905293,39.53015],[117.912277,39.516172],[117.898565,39.509675],[117.898181,39.472516],[117.878062,39.467196],[117.87031,39.45498],[117.871847,39.411547],[117.859353,39.403265],[117.852369,39.38078],[117.805277,39.373284],[117.803354,39.362037],[117.837056,39.350789],[117.862877,39.362169],[117.842054,39.336512],[117.84955,39.327366],[117.888314,39.332038],[117.891774,39.32322],[117.972248,39.314401],[117.97763,39.300643],[118.016842,39.284117],[118.024787,39.292414],[118.036512,39.265151],[118.064768,39.256061],[118.064768,39.231222],[118.037089,39.230497],[118.026196,39.20176],[118.050864,39.200112],[118.07047,39.214021],[118.07771,39.202024],[118.125316,39.182771],[118.16299,39.136596],[118.182596,39.094155],[118.225011,39.034839],[118.267107,39.021555],[118.290813,39.022216],[118.309907,39.011773],[118.373594,39.012037],[118.371031,38.984137],[118.378015,38.97177],[118.406463,38.960525],[118.491038,38.909041],[118.525252,38.90487],[118.539732,38.909835],[118.604445,38.971505],[118.570487,38.999212],[118.532877,39.091051],[118.551394,39.088278],[118.560107,39.09904],[118.588619,39.107623],[118.578752,39.130921],[118.59272,39.142601],[118.637314,39.157379],[118.692992,39.148077],[118.719646,39.136992],[118.760716,39.133495],[118.814409,39.138642],[118.857913,39.162854],[118.876366,39.14999],[118.897253,39.151508],[118.920447,39.171758],[118.951074,39.178485],[118.896549,39.139698],[118.890013,39.118844],[118.926278,39.123464],[118.977984,39.163381],[119.023988,39.186925],[119.038276,39.21178],[119.096068,39.241963],[119.121505,39.281549],[119.185577,39.342039],[119.239269,39.352368],[119.272779,39.363616],[119.317052,39.410759],[119.319039,39.429554]]],[[[117.784581,39.377032],[117.782147,39.394785],[117.737296,39.410562],[117.69975,39.407604],[117.702313,39.388934],[117.673224,39.386698],[117.669124,39.412008],[117.643495,39.405829],[117.61415,39.407078],[117.6014,39.4195],[117.590636,39.405435],[117.571158,39.404646],[117.557895,39.38558],[117.535342,39.374007],[117.520862,39.357236],[117.536239,39.338026],[117.595249,39.349144],[117.637536,39.335986],[117.650799,39.315191],[117.669316,39.324141],[117.670982,39.357828],[117.706221,39.351513],[117.744601,39.354604],[117.784581,39.377032]]],[[[118.630522,39.054726],[118.640005,39.042306],[118.653652,39.056973],[118.638852,39.076061],[118.620847,39.068268],[118.630522,39.054726]]],[[[118.869446,39.142733],[118.842664,39.117788],[118.820239,39.108745],[118.820495,39.093693],[118.857465,39.098842],[118.871753,39.115082],[118.869446,39.142733]]],[[[118.83914,39.153817],[118.815177,39.132373],[118.825749,39.122672],[118.841511,39.135475],[118.83914,39.153817]]]]}},{"type":"Feature","properties":{"adcode":130300,"name":"秦皇岛市","center":[119.586579,39.942531],"centroid":[119.193332,40.088346],"childrenNum":7,"level":"city","parent":{"adcode":130000},"subFeatureIndex":2,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.319039,39.429554],[119.304238,39.459972],[119.270024,39.498582],[119.31276,39.605894],[119.334928,39.656148],[119.358122,39.721744],[119.3735,39.739671],[119.395925,39.74425],[119.396886,39.761124],[119.464738,39.809239],[119.506641,39.816493],[119.53778,39.810154],[119.537652,39.831259],[119.520352,39.838183],[119.541048,39.888138],[119.559564,39.901518],[119.587948,39.909936],[119.612936,39.898907],[119.637027,39.923182],[119.666436,39.92018],[119.674317,39.933424],[119.683543,39.921942],[119.726279,39.941056],[119.787212,39.950382],[119.816877,39.978224],[119.836739,39.985786],[119.835522,39.964468],[119.862432,39.951556],[119.872363,39.960621],[119.841032,40.011789],[119.854231,40.03231],[119.835009,40.050286],[119.817069,40.052826],[119.795285,40.040387],[119.770873,40.048788],[119.76043,40.065653],[119.771578,40.082253],[119.736723,40.104836],[119.76248,40.144776],[119.755496,40.153165],[119.745949,40.207957],[119.716797,40.196066],[119.676239,40.224522],[119.671562,40.23959],[119.625174,40.224132],[119.633503,40.249395],[119.651892,40.272377],[119.642153,40.291327],[119.621458,40.30359],[119.598136,40.334206],[119.599801,40.356575],[119.586667,40.375437],[119.600442,40.406863],[119.593458,40.435683],[119.604927,40.454976],[119.553542,40.501762],[119.555464,40.516833],[119.568855,40.520778],[119.571033,40.540887],[119.534256,40.554203],[119.520288,40.547416],[119.503886,40.553945],[119.491007,40.536167],[119.477809,40.533322],[119.441864,40.539852],[119.361839,40.537331],[119.338068,40.531253],[119.302188,40.530283],[119.25612,40.543279],[119.220624,40.569133],[119.232862,40.589421],[119.230812,40.603891],[119.178209,40.609316],[119.162575,40.600015],[119.158474,40.614418],[119.105487,40.603632],[119.086394,40.588775],[119.063392,40.606151],[119.013095,40.577081],[118.998359,40.578955],[118.983366,40.56364],[118.952676,40.558469],[118.966003,40.536102],[118.919038,40.53093],[118.886938,40.542438],[118.864,40.527244],[118.821328,40.531964],[118.794867,40.510753],[118.792112,40.492382],[118.772954,40.479765],[118.723491,40.473746],[118.702795,40.491411],[118.657176,40.450574],[118.624179,40.437626],[118.618349,40.425193],[118.643785,40.380946],[118.640197,40.354566],[118.608225,40.328305],[118.596949,40.308456],[118.580098,40.305861],[118.568949,40.287564],[118.571384,40.269845],[118.628472,40.249915],[118.665634,40.242577],[118.708562,40.216078],[118.746108,40.208087],[118.743609,40.191777],[118.775581,40.194182],[118.794482,40.204838],[118.849135,40.178974],[118.867652,40.180599],[118.888924,40.168768],[118.906736,40.169679],[118.92474,40.149653],[118.918269,40.092211],[118.900521,40.086549],[118.866307,40.061942],[118.865602,40.023777],[118.88508,40.005403],[118.884247,39.961794],[118.875149,39.941121],[118.859643,39.93362],[118.853556,39.88409],[118.835232,39.859018],[118.838179,39.847981],[118.816843,39.825836],[118.825429,39.799436],[118.797942,39.790415],[118.800185,39.775706],[118.774428,39.764198],[118.787242,39.71592],[118.804157,39.679985],[118.822225,39.668984],[118.824596,39.648681],[118.850097,39.622737],[118.844586,39.615004],[118.861309,39.574754],[118.882261,39.566557],[118.895139,39.547011],[118.938452,39.557572],[118.945243,39.544781],[118.983302,39.538942],[118.966067,39.529494],[118.961453,39.51591],[119.008098,39.509347],[119.015658,39.482103],[119.004894,39.467459],[119.048399,39.459052],[119.064545,39.473763],[119.185769,39.458986],[119.212295,39.463453],[119.257401,39.429752],[119.280403,39.422852],[119.319039,39.429554]]]]}},{"type":"Feature","properties":{"adcode":130400,"name":"邯郸市","center":[114.490686,36.612273],"centroid":[114.548854,36.553496],"childrenNum":18,"level":"city","parent":{"adcode":130000},"subFeatureIndex":3,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.478314,36.754699],[115.463386,36.752177],[115.423661,36.766081],[115.390664,36.76315],[115.362921,36.771056],[115.349786,36.786796],[115.335691,36.775826],[115.323004,36.815474],[115.307499,36.837129],[115.325567,36.869667],[115.283344,36.862589],[115.200563,36.868374],[115.176856,36.854353],[115.158916,36.852038],[115.170449,36.881509],[115.16622,36.901512],[115.143219,36.899131],[115.125086,36.90607],[115.106505,36.923958],[115.125022,36.936471],[115.111631,36.958431],[115.096702,36.964549],[115.0589,36.957004],[115.02161,36.961422],[114.985602,36.950477],[114.949593,36.948778],[114.892441,36.969647],[114.862712,36.969715],[114.836314,36.958024],[114.838172,36.950885],[114.787492,36.91396],[114.772691,36.928447],[114.74341,36.932323],[114.734568,36.942931],[114.718166,36.938103],[114.707145,36.918041],[114.671073,36.917429],[114.64884,36.89845],[114.56702,36.891307],[114.551707,36.884094],[114.555231,36.845979],[114.507754,36.827936],[114.478921,36.833248],[114.462327,36.847681],[114.421193,36.839444],[114.353533,36.852038],[114.336105,36.846728],[114.304518,36.857007],[114.299969,36.845435],[114.252684,36.856531],[114.225902,36.843052],[114.182653,36.843937],[114.100449,36.839035],[114.081548,36.845094],[114.090005,36.861023],[114.063672,36.879331],[114.028176,36.881236],[113.991078,36.914913],[113.984415,36.941503],[113.941743,36.983376],[113.901185,36.99683],[113.883886,37.010893],[113.859475,37.015037],[113.828784,37.012048],[113.794954,36.994995],[113.777463,36.96856],[113.761701,36.956052],[113.79284,36.894709],[113.786945,36.870076],[113.772337,36.871165],[113.742095,36.851085],[113.731908,36.859118],[113.731587,36.87865],[113.710508,36.88736],[113.696924,36.882257],[113.676293,36.855646],[113.68411,36.824804],[113.673923,36.807505],[113.68097,36.790134],[113.65579,36.785706],[113.599984,36.752927],[113.569165,36.758107],[113.549303,36.752313],[113.536232,36.732339],[113.499391,36.740589],[113.47767,36.726407],[113.465369,36.70779],[113.477542,36.697287],[113.507015,36.704858],[113.502018,36.681528],[113.47703,36.655189],[113.486833,36.635189],[113.535463,36.62925],[113.545266,36.616892],[113.539756,36.594082],[113.569678,36.585885],[113.58813,36.562725],[113.588707,36.548101],[113.547317,36.534362],[113.559939,36.52862],[113.554428,36.494706],[113.582108,36.482942],[113.587233,36.460982],[113.6292,36.454687],[113.670206,36.425122],[113.708329,36.423342],[113.729601,36.381642],[113.73242,36.357599],[113.755166,36.365956],[113.764392,36.355612],[113.797581,36.347184],[113.818212,36.331149],[113.855951,36.329367],[113.85358,36.35013],[113.881515,36.353899],[113.901121,36.336974],[113.911181,36.314767],[113.93162,36.319497],[113.934439,36.336151],[113.957248,36.33622],[113.952763,36.358147],[113.964232,36.352597],[113.983005,36.317166],[113.993833,36.314561],[113.994474,36.344169],[113.979802,36.344101],[113.985824,36.357599],[114.010684,36.342456],[114.023691,36.354995],[114.032276,36.347527],[114.026254,36.325117],[114.055727,36.329983],[114.061557,36.317989],[114.04272,36.297011],[114.060532,36.276507],[114.085328,36.270129],[114.092632,36.27781],[114.12108,36.272735],[114.130627,36.279662],[114.17663,36.263132],[114.168878,36.243443],[114.203028,36.24557],[114.211037,36.273009],[114.223723,36.270883],[114.235577,36.252774],[114.256464,36.264024],[114.290102,36.247148],[114.328353,36.248177],[114.345139,36.255792],[114.356096,36.230337],[114.39236,36.221141],[114.408442,36.224573],[114.417541,36.205904],[114.466171,36.197735],[114.480267,36.177823],[114.53287,36.171505],[114.55805,36.150763],[114.586883,36.140939],[114.58259,36.121356],[114.610845,36.128297],[114.630387,36.124243],[114.655183,36.140252],[114.691128,36.138397],[114.692409,36.146229],[114.720665,36.140046],[114.73444,36.155777],[114.771345,36.124517],[114.77865,36.133175],[114.825166,36.123693],[114.857458,36.127747],[114.858675,36.144305],[114.879435,36.147809],[114.912432,36.140458],[114.90705,36.117233],[114.926463,36.089464],[114.914674,36.051988],[114.920184,36.048205],[114.954591,36.067806],[114.998416,36.069732],[115.045893,36.112216],[115.048456,36.162027],[115.06268,36.178235],[115.104583,36.172192],[115.110414,36.199382],[115.142834,36.209679],[115.170705,36.191006],[115.189222,36.195538],[115.20178,36.212768],[115.242146,36.191212],[115.260406,36.171574],[115.279307,36.137847],[115.302181,36.127678],[115.297247,36.109123],[115.313073,36.088227],[115.341393,36.087608],[115.369264,36.102731],[115.377914,36.128503],[115.39265,36.12919],[115.404632,36.15564],[115.415716,36.137572],[115.431286,36.149183],[115.449674,36.150144],[115.451276,36.16972],[115.463898,36.171299],[115.469985,36.152892],[115.483568,36.148976],[115.475944,36.193066],[115.47652,36.246531],[115.465372,36.250373],[115.462681,36.276096],[115.436347,36.27637],[115.417062,36.29276],[115.422956,36.32217],[115.394637,36.322581],[115.366637,36.30894],[115.359782,36.318743],[115.368688,36.342593],[115.349594,36.363079],[115.339983,36.398078],[115.29744,36.413484],[115.312048,36.433541],[115.317046,36.454003],[115.300259,36.465908],[115.291417,36.460572],[115.272836,36.497373],[115.296479,36.508862],[115.288341,36.528484],[115.307435,36.527458],[115.33127,36.550219],[115.334281,36.58247],[115.355104,36.627407],[115.366061,36.621945],[115.388229,36.647203],[115.386756,36.656827],[115.406426,36.663242],[115.420586,36.686781],[115.446663,36.694626],[115.450507,36.713656],[115.478314,36.754699]]]]}},{"type":"Feature","properties":{"adcode":130500,"name":"邢台市","center":[114.508851,37.0682],"centroid":[114.822676,37.213788],"childrenNum":18,"level":"city","parent":{"adcode":130000},"subFeatureIndex":4,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.255088,37.645621],[115.253807,37.671415],[115.261431,37.68818],[115.243235,37.722641],[115.227281,37.732599],[115.172564,37.749351],[115.152765,37.759507],[115.160262,37.780287],[115.150523,37.808521],[115.131173,37.799783],[115.122972,37.811479],[115.097471,37.807849],[115.097215,37.797498],[115.072291,37.794136],[115.085298,37.779211],[115.068703,37.773428],[115.070049,37.745651],[115.041024,37.733541],[115.012512,37.75157],[115.001748,37.734685],[114.987524,37.742691],[114.960165,37.720084],[114.931846,37.728899],[114.904038,37.729302],[114.895965,37.712547],[114.881357,37.716113],[114.871041,37.702114],[114.847783,37.69673],[114.841504,37.676129],[114.808571,37.659832],[114.797423,37.628239],[114.764618,37.624399],[114.725983,37.630665],[114.707338,37.615774],[114.698816,37.589353],[114.680171,37.565283],[114.64679,37.556247],[114.585217,37.55301],[114.519927,37.574656],[114.483471,37.576814],[114.433495,37.552537],[114.412095,37.549907],[114.37269,37.52967],[114.370192,37.513612],[114.358274,37.519212],[114.334632,37.502949],[114.310861,37.499979],[114.303621,37.507808],[114.27293,37.494445],[114.255439,37.504096],[114.215009,37.51125],[114.184575,37.530817],[114.166123,37.528186],[114.156191,37.505244],[114.133766,37.498899],[114.126526,37.481957],[114.113263,37.493837],[114.096477,37.490935],[114.06899,37.447384],[114.022666,37.435496],[113.973907,37.403133],[113.959811,37.348982],[113.921176,37.33072],[113.902147,37.30995],[113.899007,37.279495],[113.886897,37.25993],[113.886449,37.23914],[113.853067,37.215093],[113.836601,37.18948],[113.831924,37.167518],[113.77317,37.151857],[113.767339,37.144601],[113.77349,37.106956],[113.758177,37.075672],[113.768749,37.062504],[113.788227,37.059788],[113.790149,37.04295],[113.771888,37.016803],[113.794954,36.994995],[113.828784,37.012048],[113.859475,37.015037],[113.883886,37.010893],[113.901185,36.99683],[113.941743,36.983376],[113.984415,36.941503],[113.991078,36.914913],[114.028176,36.881236],[114.063672,36.879331],[114.090005,36.861023],[114.081548,36.845094],[114.100449,36.839035],[114.182653,36.843937],[114.225902,36.843052],[114.252684,36.856531],[114.299969,36.845435],[114.304518,36.857007],[114.336105,36.846728],[114.353533,36.852038],[114.421193,36.839444],[114.462327,36.847681],[114.478921,36.833248],[114.507754,36.827936],[114.555231,36.845979],[114.551707,36.884094],[114.56702,36.891307],[114.64884,36.89845],[114.671073,36.917429],[114.707145,36.918041],[114.718166,36.938103],[114.734568,36.942931],[114.74341,36.932323],[114.772691,36.928447],[114.787492,36.91396],[114.838172,36.950885],[114.836314,36.958024],[114.862712,36.969715],[114.892441,36.969647],[114.949593,36.948778],[114.985602,36.950477],[115.02161,36.961422],[115.0589,36.957004],[115.096702,36.964549],[115.111631,36.958431],[115.125022,36.936471],[115.106505,36.923958],[115.125086,36.90607],[115.143219,36.899131],[115.16622,36.901512],[115.170449,36.881509],[115.158916,36.852038],[115.176856,36.854353],[115.200563,36.868374],[115.283344,36.862589],[115.325567,36.869667],[115.307499,36.837129],[115.323004,36.815474],[115.335691,36.775826],[115.349786,36.786796],[115.362921,36.771056],[115.390664,36.76315],[115.423661,36.766081],[115.463386,36.752177],[115.478314,36.754699],[115.502918,36.77017],[115.523613,36.763832],[115.538734,36.784139],[115.572116,36.775349],[115.637405,36.797492],[115.66502,36.812477],[115.684177,36.812954],[115.688598,36.83958],[115.71128,36.882393],[115.740561,36.90641],[115.757796,36.903008],[115.772789,36.936811],[115.796816,36.968763],[115.784322,36.970735],[115.776441,36.992073],[115.80963,37.011436],[115.812385,37.028961],[115.853904,37.059245],[115.827378,37.106006],[115.786564,37.123916],[115.76997,37.14155],[115.756322,37.209876],[115.698465,37.257153],[115.675784,37.258914],[115.67258,37.275839],[115.63292,37.277058],[115.623437,37.297905],[115.599859,37.301965],[115.590632,37.312453],[115.599218,37.332884],[115.577177,37.316107],[115.52938,37.326864],[115.520089,37.353648],[115.506634,37.368997],[115.468768,37.382788],[115.428595,37.387926],[115.391049,37.42793],[115.345109,37.448195],[115.360038,37.461431],[115.404183,37.462039],[115.431478,37.469602],[115.410719,37.476421],[115.417638,37.487762],[115.397968,37.497347],[115.402069,37.51017],[115.426096,37.506256],[115.421675,37.495727],[115.455313,37.501802],[115.430965,37.506796],[115.410078,37.523261],[115.405785,37.535944],[115.377914,37.541138],[115.359461,37.558675],[115.360871,37.523935],[115.307179,37.563935],[115.282575,37.576005],[115.237276,37.575465],[115.201908,37.555977],[115.188325,37.563125],[115.200563,37.572498],[115.172756,37.600543],[115.191593,37.608833],[115.202934,37.637133],[115.227858,37.648921],[115.255088,37.645621]]]]}},{"type":"Feature","properties":{"adcode":130600,"name":"保定市","center":[115.482331,38.867657],"centroid":[115.177642,39.025137],"childrenNum":24,"level":"city","parent":{"adcode":130000},"subFeatureIndex":5,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.324734,38.248184],[115.34953,38.248117],[115.356194,38.271764],[115.369072,38.283451],[115.393611,38.285588],[115.383104,38.299076],[115.381822,38.327578],[115.402453,38.320103],[115.420906,38.337922],[115.462104,38.327311],[115.478122,38.341658],[115.495101,38.342993],[115.494781,38.362006],[115.516822,38.357337],[115.516437,38.318168],[115.547704,38.318168],[115.550908,38.332917],[115.575768,38.326377],[115.57942,38.342859],[115.590504,38.332784],[115.644965,38.32611],[115.650155,38.340791],[115.699811,38.349932],[115.705321,38.367543],[115.731462,38.392618],[115.715957,38.438411],[115.718584,38.449205],[115.745686,38.481311],[115.770418,38.48817],[115.79137,38.512005],[115.816101,38.52545],[115.875047,38.510141],[115.869345,38.524652],[115.878507,38.535566],[115.890809,38.52585],[115.940721,38.530508],[115.934058,38.546678],[115.960583,38.584394],[115.96321,38.613182],[115.951101,38.627938],[115.973398,38.635514],[115.973526,38.668467],[115.959879,38.679891],[115.955009,38.702932],[115.966286,38.708973],[115.944053,38.735456],[115.95187,38.746736],[115.995118,38.77798],[115.999731,38.796812],[116.023054,38.812524],[116.04093,38.812259],[116.035548,38.829492],[116.048746,38.8607],[116.04157,38.878451],[116.045543,38.897786],[116.085524,38.91063],[116.112754,38.909703],[116.125633,38.920823],[116.121083,38.934391],[116.15203,38.948352],[116.209503,38.921618],[116.230262,38.92453],[116.228083,38.942199],[116.243653,38.949345],[116.253007,38.932074],[116.291386,38.948683],[116.298755,38.975076],[116.316182,38.962708],[116.33534,38.984004],[116.3215,38.998088],[116.299588,38.993658],[116.293757,39.007344],[116.307148,39.032196],[116.318617,39.037416],[116.317592,39.077911],[116.305354,39.098116],[116.28184,39.107623],[116.263131,39.127292],[116.262426,39.138114],[116.221804,39.147813],[116.207837,39.168526],[116.206555,39.207429],[116.186116,39.222457],[116.201109,39.251911],[116.208734,39.330195],[116.198226,39.351315],[116.13582,39.351842],[116.116791,39.376243],[116.133001,39.4055],[116.132104,39.429423],[116.151325,39.471005],[116.179901,39.486568],[116.182144,39.49635],[116.220843,39.511644],[116.222766,39.501995],[116.244678,39.517354],[116.246152,39.557178],[116.221164,39.578951],[116.19688,39.588982],[116.151774,39.583409],[116.149595,39.573049],[116.121468,39.574951],[116.036188,39.571672],[116.026193,39.587409],[115.995182,39.577049],[115.991018,39.593768],[115.978459,39.595669],[115.978139,39.572852],[115.959558,39.560851],[115.937966,39.577442],[115.923742,39.597308],[115.910223,39.600847],[115.915605,39.58295],[115.907852,39.566885],[115.89004,39.567869],[115.882992,39.548126],[115.855506,39.555014],[115.846023,39.543272],[115.819241,39.53074],[115.82033,39.509741],[115.752542,39.515385],[115.738574,39.546289],[115.71711,39.560392],[115.692058,39.56577],[115.697889,39.579344],[115.685331,39.603666],[115.667134,39.615594],[115.664507,39.604649],[115.633176,39.597701],[115.61844,39.604059],[115.587044,39.589965],[115.545974,39.61874],[115.515925,39.591211],[115.513041,39.611727],[115.523421,39.620378],[115.52246,39.639969],[115.506698,39.652153],[115.478507,39.650319],[115.491065,39.66846],[115.499266,39.69622],[115.482351,39.742483],[115.466717,39.740456],[115.439871,39.752099],[115.434105,39.782309],[115.457171,39.781982],[115.483761,39.798717],[115.505289,39.784597],[115.55488,39.795579],[115.569168,39.814206],[115.514323,39.837726],[115.526625,39.875538],[115.51003,39.881479],[115.523037,39.898907],[115.487285,39.923834],[115.480685,39.935838],[115.438462,39.952534],[115.426801,39.950056],[115.40162,39.903802],[115.399891,39.891336],[115.364523,39.885331],[115.365676,39.867507],[115.343251,39.837857],[115.345237,39.821851],[115.330052,39.80656],[115.342867,39.79205],[115.312945,39.783551],[115.283216,39.745165],[115.250859,39.73882],[115.215043,39.708067],[115.177625,39.700475],[115.179163,39.679592],[115.168847,39.672651],[115.138734,39.688627],[115.095293,39.704795],[115.050058,39.709245],[115.03199,39.702373],[115.011487,39.674746],[114.987396,39.67802],[114.961895,39.666103],[114.936331,39.66368],[114.891032,39.634728],[114.838429,39.589179],[114.821642,39.61022],[114.783775,39.609499],[114.760645,39.617036],[114.716756,39.618674],[114.712079,39.594358],[114.680748,39.588064],[114.654991,39.599209],[114.633527,39.555866],[114.604887,39.567869],[114.58432,39.585835],[114.563432,39.558162],[114.557345,39.531987],[114.536586,39.512891],[114.532678,39.486174],[114.502308,39.477112],[114.496798,39.438556],[114.470913,39.408787],[114.469503,39.355196],[114.47969,39.351118],[114.46662,39.329669],[114.438236,39.319139],[114.425101,39.285105],[114.437018,39.25942],[114.415939,39.242885],[114.436314,39.229641],[114.467389,39.225884],[114.475974,39.215867],[114.469695,39.193321],[114.453165,39.192662],[114.443618,39.174132],[114.417989,39.171626],[114.388196,39.176968],[114.360773,39.133957],[114.369679,39.107557],[114.349176,39.076788],[114.320215,39.070712],[114.300097,39.079231],[114.22635,39.066485],[114.197005,39.050432],[114.180923,39.049111],[114.157217,39.061134],[114.126654,39.050895],[114.108714,39.052282],[114.096797,39.083722],[114.078793,39.095343],[114.065274,39.093494],[114.050793,39.13587],[114.006456,39.12287],[113.995115,39.095475],[113.961733,39.100823],[113.942896,39.08742],[113.930274,39.063446],[113.898046,39.067607],[113.884399,39.051688],[113.830514,39.011773],[113.806808,38.989691],[113.776758,38.98698],[113.767532,38.959665],[113.775156,38.919103],[113.776181,38.885669],[113.801297,38.85487],[113.83564,38.842547],[113.855566,38.828962],[113.853644,38.810138],[113.836537,38.79595],[113.839548,38.758413],[113.864664,38.746006],[113.883245,38.74667],[113.932324,38.71362],[113.929697,38.702467],[113.964617,38.699811],[113.991655,38.676769],[114.028624,38.688524],[114.052139,38.686399],[114.086097,38.65837],[114.125053,38.659632],[114.129153,38.669596],[114.182205,38.67657],[114.212831,38.688192],[114.311502,38.706517],[114.341167,38.690184],[114.366411,38.6862],[114.413504,38.703928],[114.437787,38.692773],[114.452652,38.699413],[114.498463,38.678297],[114.522106,38.65372],[114.53633,38.649268],[114.536907,38.632324],[114.552284,38.612983],[114.527616,38.590644],[114.56324,38.590644],[114.58432,38.596429],[114.595724,38.568897],[114.635257,38.514801],[114.651851,38.504682],[114.6737,38.473452],[114.702084,38.489102],[114.731237,38.48191],[114.765259,38.496626],[114.81075,38.492365],[114.830868,38.46033],[114.819143,38.449871],[114.837852,38.435745],[114.840992,38.460797],[114.858163,38.448605],[114.853998,38.435879],[114.882254,38.424149],[114.910381,38.393751],[114.923388,38.388217],[114.932871,38.344194],[114.942994,38.343193],[114.922875,38.315631],[114.906986,38.309624],[114.902565,38.294936],[114.883343,38.284854],[114.886162,38.265286],[114.915059,38.263348],[114.927681,38.283385],[114.970096,38.281114],[114.990087,38.272165],[114.989062,38.258138],[115.031862,38.267089],[115.056465,38.258472],[115.066204,38.264684],[115.056722,38.288326],[115.073765,38.293134],[115.085874,38.276773],[115.108107,38.264551],[115.152317,38.256802],[115.168591,38.259608],[115.19422,38.236759],[115.210174,38.236491],[115.225871,38.269894],[115.252205,38.29093],[115.265788,38.287658],[115.263994,38.260543],[115.273605,38.2403],[115.302758,38.235289],[115.324734,38.248184]]]]}},{"type":"Feature","properties":{"adcode":130700,"name":"张家口市","center":[114.884091,40.811901],"centroid":[115.038685,40.874645],"childrenNum":16,"level":"city","parent":{"adcode":130000},"subFeatureIndex":6,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.365069,40.943216],[116.341747,40.964804],[116.333546,40.984458],[116.29837,40.986641],[116.264733,41.038252],[116.296128,41.062118],[116.277419,41.083154],[116.268769,41.102645],[116.245447,41.114183],[116.233273,41.130845],[116.245895,41.16358],[116.22347,41.174275],[116.221356,41.185928],[116.235195,41.211853],[116.213603,41.233288],[116.198995,41.259578],[116.191627,41.288158],[116.209503,41.307715],[116.203352,41.326117],[116.17484,41.356328],[116.141586,41.373439],[116.08751,41.376951],[116.07713,41.384866],[116.036124,41.397694],[116.03023,41.416645],[116.004473,41.432911],[116.000052,41.454402],[115.97673,41.470913],[115.982112,41.485127],[115.97391,41.529659],[115.958789,41.550353],[115.924767,41.568623],[115.929252,41.596113],[115.909967,41.642921],[115.972885,41.680101],[116.014404,41.715355],[116.056307,41.733705],[116.081039,41.776352],[116.083986,41.781745],[116.03401,41.782633],[116.016646,41.77705],[115.994926,41.828608],[115.978588,41.840841],[115.946936,41.885634],[115.916374,41.945141],[115.853071,41.927738],[115.828852,41.936978],[115.815461,41.928687],[115.810976,41.912356],[115.795855,41.911153],[115.756707,41.886774],[115.727874,41.888421],[115.724415,41.868025],[115.68815,41.867708],[115.659382,41.848319],[115.653871,41.829052],[115.630806,41.824995],[115.598641,41.808003],[115.574102,41.805403],[115.548345,41.783902],[115.519769,41.767787],[115.488758,41.760934],[115.430068,41.728753],[115.366317,41.712561],[115.347031,41.712307],[115.319032,41.691473],[115.336844,41.675145],[115.355489,41.672158],[115.360935,41.661355],[115.345494,41.635673],[115.377594,41.602475],[115.365099,41.595795],[115.311535,41.592677],[115.290328,41.622955],[115.273477,41.622764],[115.26425,41.611889],[115.266429,41.592868],[115.257587,41.581097],[115.204215,41.571423],[115.205753,41.591723],[115.195053,41.602093],[115.167246,41.605973],[115.142386,41.616087],[115.113489,41.615769],[115.099137,41.623973],[115.087796,41.613415],[115.055953,41.602284],[115.025006,41.61526],[114.977849,41.611571],[114.938317,41.613225],[114.89808,41.607182],[114.877449,41.590896],[114.860726,41.600948],[114.895581,41.636436],[114.902885,41.689313],[114.895068,41.736561],[114.896157,41.76766],[114.8663,41.804578],[114.922363,41.825121],[114.939214,41.846165],[114.92153,41.875943],[114.925438,41.899566],[114.916148,41.936978],[114.933255,41.943559],[114.915507,41.958934],[114.916853,41.981008],[114.901796,42.015528],[114.89148,42.012115],[114.889622,42.030316],[114.860854,42.05483],[114.861302,42.101997],[114.823051,42.140867],[114.828369,42.147679],[114.793963,42.149193],[114.78935,42.130963],[114.754879,42.115756],[114.710221,42.115377],[114.704647,42.121435],[114.675494,42.120426],[114.647751,42.109634],[114.624813,42.112222],[114.585537,42.131215],[114.560293,42.132414],[114.510957,42.110897],[114.500706,42.085963],[114.5025,42.067398],[114.479883,42.064304],[114.466107,42.037962],[114.46835,42.025577],[114.485969,42.015338],[114.484752,41.999155],[114.501411,41.99277],[114.510701,41.973292],[114.487443,41.96722],[114.476295,41.953936],[114.421705,41.942167],[114.374036,41.956783],[114.348087,41.947609],[114.343217,41.926915],[114.326751,41.9297],[114.330403,41.916977],[114.287026,41.868658],[114.243457,41.832792],[114.202964,41.793416],[114.200401,41.778509],[114.215266,41.756492],[114.206744,41.738402],[114.232501,41.717705],[114.237563,41.698651],[114.219302,41.700239],[114.215394,41.685057],[114.259347,41.6234],[114.227632,41.620221],[114.237242,41.59624],[114.221673,41.582242],[114.231604,41.547043],[114.231027,41.513671],[114.101218,41.537746],[114.083982,41.528958],[114.032148,41.529595],[113.977559,41.506664],[113.952827,41.483533],[113.930659,41.485573],[113.92124,41.457271],[113.884911,41.438141],[113.8712,41.413327],[113.918229,41.40382],[113.943985,41.390802],[113.93399,41.376823],[113.937514,41.356647],[113.923354,41.33934],[113.926622,41.326309],[113.89952,41.316214],[113.922585,41.291162],[113.936297,41.294805],[113.951226,41.282916],[113.952956,41.254269],[113.971536,41.239814],[113.976854,41.266676],[113.985824,41.270385],[114.007032,41.250752],[114.016259,41.232073],[114.000625,41.224011],[113.996781,41.192458],[113.973651,41.174275],[113.920407,41.172034],[113.877927,41.115593],[113.863383,41.106042],[113.820327,41.101619],[113.823402,41.093093],[113.868445,41.068853],[113.90567,41.034081],[113.922585,41.024391],[113.972946,40.982981],[113.97647,40.961206],[113.991142,40.940195],[114.000753,40.947521],[114.011773,40.935311],[114.057457,40.925092],[114.041375,40.917378],[114.052203,40.893395],[114.052844,40.870304],[114.073539,40.857308],[114.069694,40.846948],[114.044771,40.831115],[114.081163,40.790486],[114.104421,40.797571],[114.104165,40.768068],[114.134727,40.737263],[114.147285,40.73346],[114.18323,40.671675],[114.200081,40.662189],[114.216163,40.63437],[114.209307,40.629721],[114.236153,40.606991],[114.258258,40.610672],[114.282926,40.590778],[114.273379,40.553815],[114.293433,40.551424],[114.296381,40.535973],[114.285617,40.525822],[114.282605,40.495164],[114.267228,40.474199],[114.275429,40.458019],[114.299648,40.440086],[114.28709,40.423444],[114.314449,40.369604],[114.344435,40.36954],[114.382237,40.362085],[114.390374,40.351259],[114.446565,40.372845],[114.470784,40.349703],[114.499296,40.354047],[114.530627,40.3451],[114.526463,40.32357],[114.510957,40.303006],[114.469951,40.268093],[114.406392,40.246149],[114.362567,40.250109],[114.335144,40.245434],[114.293113,40.230108],[114.255247,40.236213],[114.240126,40.221924],[114.235833,40.198341],[114.180026,40.191517],[114.145107,40.177349],[114.123963,40.178129],[114.123387,40.188723],[114.097758,40.193597],[114.068029,40.179754],[114.089108,40.121491],[114.101218,40.10874],[114.091159,40.075288],[114.043809,40.056863],[114.019462,40.102819],[113.989476,40.112383],[113.973843,40.097157],[113.981019,40.073205],[113.975573,40.051068],[113.954878,40.030812],[113.922457,40.026578],[113.914641,40.005924],[113.932004,40.009443],[113.960452,40.000906],[114.021256,39.991782],[114.029457,39.985395],[114.02824,39.959316],[114.047397,39.916135],[114.067772,39.922334],[114.089941,39.910197],[114.102884,39.912873],[114.174132,39.897602],[114.211998,39.918745],[114.229426,39.899495],[114.19944,39.87939],[114.224877,39.851704],[114.276967,39.874494],[114.286065,39.858235],[114.328929,39.865548],[114.349432,39.862806],[114.395436,39.867246],[114.406712,39.83348],[114.390695,39.818584],[114.408827,39.782375],[114.408122,39.651956],[114.431636,39.614021],[114.474757,39.613759],[114.495836,39.608188],[114.515378,39.564983],[114.557025,39.581442],[114.568942,39.573967],[114.563432,39.558162],[114.58432,39.585835],[114.604887,39.567869],[114.633527,39.555866],[114.654991,39.599209],[114.680748,39.588064],[114.712079,39.594358],[114.716756,39.618674],[114.760645,39.617036],[114.783775,39.609499],[114.821642,39.61022],[114.838429,39.589179],[114.891032,39.634728],[114.936331,39.66368],[114.961895,39.666103],[114.987396,39.67802],[115.011487,39.674746],[115.03199,39.702373],[115.050058,39.709245],[115.095293,39.704795],[115.138734,39.688627],[115.168847,39.672651],[115.179163,39.679592],[115.177625,39.700475],[115.215043,39.708067],[115.250859,39.73882],[115.283216,39.745165],[115.312945,39.783551],[115.342867,39.79205],[115.330052,39.80656],[115.345237,39.821851],[115.343251,39.837857],[115.365676,39.867507],[115.364523,39.885331],[115.399891,39.891336],[115.40162,39.903802],[115.426801,39.950056],[115.428531,39.984352],[115.450123,39.99289],[115.442178,40.010876],[115.454544,40.029705],[115.478571,40.036153],[115.528034,40.07633],[115.555457,40.082644],[115.553727,40.091691],[115.575576,40.100997],[115.590697,40.096376],[115.59909,40.119995],[115.641762,40.115897],[115.644581,40.12663],[115.715893,40.133395],[115.734858,40.129492],[115.754849,40.145427],[115.754336,40.163243],[115.773045,40.176179],[115.806555,40.15323],[115.847817,40.147052],[115.844421,40.168053],[115.855506,40.188853],[115.870306,40.186058],[115.886324,40.206657],[115.883121,40.216143],[115.898498,40.234524],[115.911953,40.23446],[115.930085,40.254524],[115.960007,40.256667],[115.968913,40.264263],[115.93976,40.304434],[115.943156,40.311375],[115.922653,40.325905],[115.918296,40.353917],[115.864476,40.359363],[115.861849,40.373428],[115.846856,40.375113],[115.796431,40.426812],[115.770418,40.444165],[115.769841,40.468051],[115.782207,40.492058],[115.736012,40.503832],[115.755041,40.540046],[115.792203,40.561313],[115.819818,40.559374],[115.827378,40.587031],[115.846151,40.593039],[115.885427,40.595235],[115.907788,40.617324],[115.971988,40.602341],[115.981407,40.579665],[116.005113,40.584124],[116.0285,40.607314],[116.030037,40.597367],[116.062714,40.610285],[116.099363,40.630561],[116.121724,40.62914],[116.112562,40.648507],[116.136909,40.667674],[116.162025,40.662383],[116.171316,40.695996],[116.191947,40.724241],[116.218857,40.742807],[116.235003,40.783143],[116.247946,40.791839],[116.269602,40.777152],[116.273446,40.762913],[116.290938,40.763815],[116.307917,40.752152],[116.317015,40.772256],[116.379806,40.77232],[116.414276,40.777925],[116.416519,40.769357],[116.453937,40.765877],[116.465854,40.774511],[116.456564,40.798665],[116.43683,40.820751],[116.40646,40.833368],[116.399988,40.84978],[116.334443,40.904648],[116.334571,40.921749],[116.365069,40.943216]]]]}},{"type":"Feature","properties":{"adcode":130800,"name":"承德市","center":[117.939152,40.976204],"centroid":[117.551533,41.356206],"childrenNum":11,"level":"city","parent":{"adcode":130000},"subFeatureIndex":7,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.158474,40.614418],[119.146557,40.63579],[119.173211,40.654316],[119.185833,40.67574],[119.176222,40.690191],[119.153349,40.688707],[119.115098,40.666513],[119.095107,40.663351],[119.081588,40.671869],[119.05423,40.664964],[119.048719,40.681482],[119.027063,40.692448],[119.010725,40.687868],[118.987723,40.697931],[118.960813,40.720566],[118.949344,40.747834],[118.91167,40.756083],[118.895459,40.754021],[118.910965,40.776766],[118.878544,40.783207],[118.861501,40.802658],[118.849135,40.800919],[118.846252,40.822103],[118.855094,40.840577],[118.873034,40.848042],[118.891743,40.903362],[118.903468,40.961784],[118.917052,40.968594],[118.946461,40.958122],[119.000601,40.967052],[119.005086,40.984265],[119.0204,40.997878],[119.013544,41.007637],[118.951971,41.018421],[118.936209,41.037482],[118.93685,41.052624],[118.964657,41.079307],[119.008354,41.068596],[119.037507,41.067378],[119.050834,41.080333],[119.073771,41.084244],[119.080627,41.095978],[119.081204,41.131422],[119.126374,41.138662],[119.158603,41.169664],[119.184295,41.182727],[119.188909,41.198156],[119.166483,41.21294],[119.169623,41.222923],[119.209796,41.225803],[119.20954,41.244483],[119.231004,41.256444],[119.248367,41.27665],[119.239461,41.314489],[119.212103,41.308099],[119.200698,41.28234],[119.154951,41.297682],[119.093121,41.293655],[119.035136,41.298768],[119.006752,41.307076],[118.974716,41.306565],[118.949536,41.318003],[118.934671,41.304584],[118.890718,41.300749],[118.868421,41.312636],[118.844907,41.34247],[118.846124,41.373823],[118.770007,41.353071],[118.763343,41.328928],[118.741879,41.324073],[118.695171,41.337999],[118.676974,41.350453],[118.629946,41.34643],[118.57997,41.354029],[118.539796,41.3509],[118.528135,41.355051],[118.500841,41.345791],[118.47329,41.345663],[118.412422,41.33193],[118.399607,41.311102],[118.380193,41.312124],[118.349119,41.342789],[118.348286,41.373886],[118.361741,41.386717],[118.343993,41.404139],[118.34867,41.428318],[118.327078,41.450831],[118.272168,41.471296],[118.269605,41.478881],[118.295426,41.485127],[118.315801,41.512525],[118.302923,41.552709],[118.313302,41.561494],[118.301577,41.569641],[118.279152,41.56544],[118.270823,41.573524],[118.230522,41.582178],[118.215337,41.595668],[118.20989,41.61774],[118.215208,41.633002],[118.206879,41.65074],[118.169013,41.67076],[118.153699,41.691156],[118.155173,41.712624],[118.130698,41.742275],[118.140372,41.783965],[118.165873,41.813265],[118.219117,41.815358],[118.236032,41.807559],[118.246988,41.774005],[118.270823,41.762203],[118.292287,41.772863],[118.319838,41.83146],[118.331755,41.840651],[118.340213,41.872459],[118.324515,41.880187],[118.286649,41.91109],[118.270182,41.917357],[118.268901,41.930143],[118.306511,41.940269],[118.306255,41.975127],[118.314007,41.987774],[118.294722,42.005224],[118.256278,42.010724],[118.237634,42.022859],[118.283061,42.03158],[118.297284,42.048765],[118.272232,42.083311],[118.252498,42.091014],[118.226613,42.090256],[118.212581,42.081101],[118.220206,42.058619],[118.204188,42.034866],[118.189067,42.030569],[118.141846,42.031327],[118.116538,42.037204],[118.115256,42.045859],[118.136913,42.052871],[118.155173,42.081164],[118.136528,42.094486],[118.097765,42.10509],[118.088859,42.117144],[118.104172,42.148878],[118.10635,42.171958],[118.089051,42.183874],[118.033629,42.199127],[118.020366,42.213432],[117.977438,42.229875],[117.971095,42.248014],[118.023249,42.267155],[118.047468,42.280563],[118.059962,42.29831],[118.016265,42.333286],[118.009153,42.358248],[118.021263,42.371636],[118.019405,42.395201],[117.99762,42.416684],[117.954564,42.445003],[117.940148,42.462766],[117.87409,42.510194],[117.849614,42.546619],[117.829624,42.56498],[117.797588,42.585277],[117.792334,42.598367],[117.801496,42.612706],[117.779904,42.618591],[117.707247,42.588033],[117.66733,42.582459],[117.6442,42.589787],[117.610883,42.592355],[117.600311,42.603001],[117.539955,42.605443],[117.524898,42.590727],[117.473512,42.602437],[117.455957,42.589411],[117.435197,42.585403],[117.44436,42.577447],[117.433147,42.555769],[117.39637,42.536339],[117.387015,42.517405],[117.408415,42.519976],[117.416296,42.512326],[117.412836,42.472493],[117.390732,42.462076],[117.330056,42.461887],[117.321406,42.468791],[117.275466,42.481905],[117.252208,42.473685],[117.222287,42.475442],[117.175963,42.465527],[117.135726,42.469167],[117.094912,42.483661],[117.079535,42.460632],[117.046922,42.454105],[117.016744,42.45649],[117.006685,42.432948],[116.965102,42.421583],[116.914421,42.402677],[116.911858,42.391431],[116.886806,42.366608],[116.897442,42.297618],[116.918522,42.229875],[116.917433,42.207698],[116.903401,42.19087],[116.858166,42.197236],[116.789225,42.200261],[116.825169,42.155563],[116.850221,42.15632],[116.865022,42.124085],[116.877324,42.121057],[116.890651,42.092655],[116.881681,42.05224],[116.87963,42.018372],[116.868161,42.002885],[116.831961,42.005351],[116.821133,41.988723],[116.796209,41.978099],[116.766479,41.990304],[116.744631,41.982146],[116.72746,41.951089],[116.669154,41.947735],[116.634812,41.929953],[116.597073,41.935586],[116.566383,41.928751],[116.533706,41.938876],[116.514164,41.970067],[116.496416,41.97968],[116.482641,41.975886],[116.453873,41.945964],[116.432088,41.939383],[116.393133,41.94299],[116.41402,41.98221],[116.409087,41.994034],[116.373719,42.009965],[116.327267,42.005667],[116.306507,41.991379],[116.29837,41.968106],[116.28421,41.959376],[116.233401,41.941408],[116.230518,41.926282],[116.211361,41.906848],[116.212578,41.885128],[116.193164,41.861816],[116.171124,41.868912],[116.134731,41.863844],[116.106667,41.849587],[116.105706,41.834757],[116.129221,41.806607],[116.098658,41.776479],[116.081039,41.776352],[116.056307,41.733705],[116.014404,41.715355],[115.972885,41.680101],[115.909967,41.642921],[115.929252,41.596113],[115.924767,41.568623],[115.958789,41.550353],[115.97391,41.529659],[115.982112,41.485127],[115.97673,41.470913],[116.000052,41.454402],[116.004473,41.432911],[116.03023,41.416645],[116.036124,41.397694],[116.07713,41.384866],[116.08751,41.376951],[116.141586,41.373439],[116.17484,41.356328],[116.203352,41.326117],[116.209503,41.307715],[116.191627,41.288158],[116.198995,41.259578],[116.213603,41.233288],[116.235195,41.211853],[116.221356,41.185928],[116.22347,41.174275],[116.245895,41.16358],[116.233273,41.130845],[116.245447,41.114183],[116.268769,41.102645],[116.277419,41.083154],[116.296128,41.062118],[116.264733,41.038252],[116.29837,40.986641],[116.333546,40.984458],[116.341747,40.964804],[116.365069,40.943216],[116.37641,40.939681],[116.398515,40.905999],[116.41402,40.899762],[116.458678,40.900597],[116.474184,40.896032],[116.473607,40.919757],[116.447466,40.953818],[116.455539,40.980476],[116.516791,40.975274],[116.536333,40.988889],[116.569715,40.991265],[116.597778,40.97476],[116.614309,40.982916],[116.622958,41.02086],[116.614116,41.03607],[116.630839,41.060771],[116.64769,41.059296],[116.665182,41.046658],[116.688632,41.044669],[116.698884,41.021246],[116.683058,41.000511],[116.67774,40.971227],[116.689465,40.950669],[116.722334,40.927406],[116.713236,40.911978],[116.730471,40.897768],[116.759496,40.889858],[116.79512,40.863614],[116.805051,40.840706],[116.813636,40.848428],[116.847723,40.839354],[116.87617,40.821202],[116.880207,40.804332],[116.896353,40.79712],[116.894623,40.781597],[116.923391,40.773738],[116.926531,40.744869],[116.979967,40.702833],[117.031032,40.692126],[117.058327,40.701543],[117.0771,40.700059],[117.110673,40.70825],[117.117785,40.700059],[117.20236,40.695609],[117.241636,40.676643],[117.261371,40.681159],[117.290395,40.660189],[117.32115,40.658317],[117.342678,40.673611],[117.359208,40.673869],[117.409248,40.687288],[117.442245,40.676643],[117.492862,40.675417],[117.514583,40.660511],[117.501256,40.636759],[117.477997,40.635338],[117.46198,40.65309],[117.448909,40.628366],[117.430264,40.626041],[117.412708,40.605118],[117.430008,40.576112],[117.402072,40.573139],[117.387464,40.560861],[117.365936,40.575982],[117.342742,40.581604],[117.311859,40.57805],[117.269444,40.560473],[117.247403,40.54024],[117.264126,40.517285],[117.247147,40.511788],[117.219019,40.514375],[117.208575,40.501115],[117.237215,40.468763],[117.236511,40.45653],[117.263357,40.442352],[117.234076,40.417162],[117.240675,40.394424],[117.228502,40.386389],[117.226195,40.369021],[117.242277,40.369993],[117.260217,40.335762],[117.275018,40.33239],[117.274377,40.308521],[117.293342,40.296713],[117.296354,40.278088],[117.331465,40.28977],[117.339859,40.246213],[117.350943,40.229978],[117.386375,40.22712],[117.415335,40.236862],[117.419115,40.249785],[117.450062,40.252512],[117.484084,40.235304],[117.514326,40.227705],[117.54617,40.232901],[117.571671,40.219261],[117.56238,40.206073],[117.575451,40.192817],[117.609409,40.194897],[117.619532,40.206398],[117.64625,40.205163],[117.677069,40.22095],[117.694112,40.238161],[117.714551,40.241668],[117.75152,40.229718],[117.807775,40.261926],[117.844104,40.261406],[117.867554,40.26965],[117.897989,40.270429],[117.909457,40.285876],[118.000888,40.29256],[118.031643,40.302358],[118.061564,40.319095],[118.079312,40.353528],[118.121856,40.354695],[118.133837,40.375113],[118.165232,40.400449],[118.153123,40.409519],[118.156967,40.423768],[118.173818,40.423056],[118.239684,40.464686],[118.262942,40.452063],[118.277935,40.425711],[118.306575,40.419558],[118.356295,40.435295],[118.360011,40.428819],[118.387305,40.436719],[118.402683,40.416838],[118.430746,40.411851],[118.45599,40.414053],[118.503211,40.403365],[118.523458,40.40628],[118.548062,40.422667],[118.571512,40.414636],[118.550881,40.385482],[118.558377,40.36928],[118.539989,40.361048],[118.532364,40.319419],[118.533325,40.298854],[118.568949,40.287564],[118.580098,40.305861],[118.596949,40.308456],[118.608225,40.328305],[118.640197,40.354566],[118.643785,40.380946],[118.618349,40.425193],[118.624179,40.437626],[118.657176,40.450574],[118.702795,40.491411],[118.723491,40.473746],[118.772954,40.479765],[118.792112,40.492382],[118.794867,40.510753],[118.821328,40.531964],[118.864,40.527244],[118.886938,40.542438],[118.919038,40.53093],[118.966003,40.536102],[118.952676,40.558469],[118.983366,40.56364],[118.998359,40.578955],[119.013095,40.577081],[119.063392,40.606151],[119.086394,40.588775],[119.105487,40.603632],[119.158474,40.614418]]]]}},{"type":"Feature","properties":{"adcode":130900,"name":"沧州市","center":[116.857461,38.310582],"centroid":[116.771341,38.270959],"childrenNum":16,"level":"city","parent":{"adcode":130000},"subFeatureIndex":8,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.335916,37.581263],[116.343541,37.566025],[116.367696,37.566295],[116.376858,37.546602],[116.368913,37.526364],[116.402167,37.509833],[116.434139,37.473383],[116.456115,37.513679],[116.486421,37.524205],[116.517048,37.557191],[116.538512,37.568453],[116.545816,37.582477],[116.574648,37.609978],[116.604506,37.62514],[116.640834,37.666432],[116.641027,37.682323],[116.663964,37.687776],[116.67979,37.728764],[116.699332,37.730648],[116.724512,37.744305],[116.723167,37.766703],[116.744182,37.757355],[116.753793,37.770536],[116.753665,37.792993],[116.786149,37.82633],[116.788136,37.843396],[116.812739,37.843598],[116.84375,37.834461],[116.883795,37.844337],[116.919355,37.845882],[116.947675,37.840037],[116.976635,37.841045],[117.027188,37.832378],[117.074345,37.848771],[117.093759,37.849509],[117.150142,37.839567],[117.185317,37.849778],[117.208832,37.843732],[117.271366,37.839903],[117.320124,37.861399],[117.34428,37.862675],[117.381954,37.854547],[117.406301,37.843531],[117.438593,37.853876],[117.481137,37.914842],[117.512789,37.943428],[117.527974,37.996275],[117.56033,38.040978],[117.556486,38.05719],[117.58378,38.070653],[117.616713,38.069046],[117.666048,38.072528],[117.679504,38.07956],[117.704492,38.076078],[117.729223,38.093822],[117.743191,38.123409],[117.76882,38.131908],[117.766962,38.15867],[117.801625,38.173786],[117.789195,38.180741],[117.808544,38.228406],[117.8475,38.25393],[117.860891,38.274569],[117.895682,38.301613],[117.916698,38.32344],[117.948349,38.346462],[117.958024,38.376147],[117.937457,38.38775],[117.846411,38.36801],[117.804764,38.367076],[117.781186,38.373812],[117.730505,38.424949],[117.725123,38.457333],[117.710899,38.467791],[117.678799,38.477049],[117.647852,38.508677],[117.645161,38.527647],[117.685975,38.532438],[117.68527,38.539425],[117.643367,38.54029],[117.638562,38.570028],[117.645033,38.593836],[117.63901,38.626742],[117.557831,38.613781],[117.541429,38.60361],[117.478895,38.617237],[117.432442,38.601349],[117.391949,38.572689],[117.369075,38.564773],[117.368883,38.582465],[117.358055,38.57056],[117.305644,38.556591],[117.292189,38.562445],[117.253169,38.556192],[117.238369,38.581002],[117.259512,38.603078],[117.255988,38.613781],[117.23068,38.624017],[117.23036,38.641694],[117.186086,38.616506],[117.151103,38.617702],[117.13611,38.598756],[117.098179,38.586921],[117.086326,38.606402],[117.071526,38.607399],[117.064285,38.635713],[117.051727,38.643488],[117.06813,38.680621],[117.039041,38.688457],[117.042309,38.706517],[117.015719,38.700409],[117.014502,38.690184],[116.994447,38.695695],[116.87726,38.680688],[116.866496,38.717005],[116.867457,38.745873],[116.859127,38.741295],[116.796529,38.74667],[116.766351,38.741959],[116.758855,38.732071],[116.77404,38.652258],[116.763212,38.633853],[116.738224,38.631327],[116.733739,38.614047],[116.71503,38.609327],[116.702792,38.619098],[116.680559,38.605936],[116.680303,38.592706],[116.662234,38.581268],[116.671653,38.566503],[116.643333,38.564773],[116.652431,38.551202],[116.672678,38.546545],[116.668257,38.530042],[116.647114,38.50648],[116.621228,38.514335],[116.627315,38.501087],[116.610593,38.479646],[116.589897,38.483908],[116.569715,38.470988],[116.559399,38.496759],[116.519482,38.48817],[116.465726,38.494096],[116.449772,38.518262],[116.452655,38.534501],[116.431127,38.539558],[116.432152,38.552533],[116.455475,38.557656],[116.454834,38.580337],[116.425425,38.587187],[116.41921,38.599288],[116.381984,38.619165],[116.366863,38.67305],[116.370836,38.692508],[116.406331,38.703596],[116.435804,38.733199],[116.42299,38.770419],[116.390313,38.789784],[116.338287,38.80689],[116.271973,38.816634],[116.278764,38.836451],[116.247497,38.848907],[116.248907,38.85964],[116.23212,38.871894],[116.212194,38.870238],[116.202198,38.887258],[116.20002,38.915727],[116.209503,38.921618],[116.15203,38.948352],[116.121083,38.934391],[116.125633,38.920823],[116.112754,38.909703],[116.085524,38.91063],[116.045543,38.897786],[116.04157,38.878451],[116.048746,38.8607],[116.035548,38.829492],[116.04093,38.812259],[116.023054,38.812524],[115.999731,38.796812],[115.995118,38.77798],[115.95187,38.746736],[115.944053,38.735456],[115.966286,38.708973],[115.955009,38.702932],[115.959879,38.679891],[115.973526,38.668467],[115.973398,38.635514],[115.951101,38.627938],[115.96321,38.613182],[115.960583,38.584394],[115.934058,38.546678],[115.940721,38.530508],[115.890809,38.52585],[115.878507,38.535566],[115.869345,38.524652],[115.875047,38.510141],[115.816101,38.52545],[115.79137,38.512005],[115.770418,38.48817],[115.745686,38.481311],[115.718584,38.449205],[115.715957,38.438411],[115.731462,38.392618],[115.705321,38.367543],[115.734025,38.359205],[115.738767,38.369544],[115.783297,38.358338],[115.804633,38.345462],[115.841538,38.346062],[115.850188,38.309423],[115.833016,38.298008],[115.837181,38.272499],[115.864476,38.255266],[115.856467,38.240901],[115.871267,38.217579],[115.899523,38.20314],[115.887542,38.171312],[115.900804,38.158536],[115.935403,38.167232],[115.938671,38.144354],[115.968913,38.138533],[115.986725,38.125885],[116.049771,38.146026],[116.055218,38.131306],[116.048554,38.11424],[116.031831,38.100718],[116.031511,38.082774],[116.055474,38.071725],[116.05227,38.052434],[116.070595,38.041112],[116.049515,38.038365],[116.042467,38.026706],[116.062394,38.005057],[116.071876,37.980318],[116.100645,37.948929],[116.120571,37.948996],[116.093981,37.922627],[116.091034,37.910949],[116.153952,37.914573],[116.170867,37.933565],[116.170163,37.959594],[116.188039,37.968314],[116.209118,37.966369],[116.226354,37.95121],[116.256595,37.965229],[116.266206,37.961405],[116.266975,37.981458],[116.278252,37.962479],[116.306764,37.979312],[116.329189,38.008141],[116.343925,38.017256],[116.3709,38.018597],[116.417224,38.009481],[116.479309,38.011492],[116.483474,38.02503],[116.496352,38.013704],[116.563243,38.01987],[116.565166,37.980116],[116.53377,37.907727],[116.515382,37.892892],[116.51346,37.863951],[116.473415,37.865495],[116.481424,37.830026],[116.466623,37.805564],[116.47303,37.777059],[116.460664,37.778875],[116.451182,37.7587],[116.438367,37.758902],[116.434331,37.734618],[116.424784,37.735829],[116.386533,37.696393],[116.378909,37.659698],[116.36539,37.648719],[116.374936,37.63949],[116.375192,37.617256],[116.3281,37.605058],[116.335916,37.581263]]]]}},{"type":"Feature","properties":{"adcode":131000,"name":"廊坊市","center":[116.704441,39.523927],"centroid":[116.540212,39.111215],"childrenNum":10,"level":"city","parent":{"adcode":130000},"subFeatureIndex":9,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.244678,39.517354],[116.222766,39.501995],[116.220843,39.511644],[116.182144,39.49635],[116.179901,39.486568],[116.151325,39.471005],[116.132104,39.429423],[116.133001,39.4055],[116.116791,39.376243],[116.13582,39.351842],[116.198226,39.351315],[116.208734,39.330195],[116.201109,39.251911],[116.186116,39.222457],[116.206555,39.207429],[116.207837,39.168526],[116.221804,39.147813],[116.262426,39.138114],[116.263131,39.127292],[116.28184,39.107623],[116.305354,39.098116],[116.317592,39.077911],[116.318617,39.037416],[116.307148,39.032196],[116.293757,39.007344],[116.299588,38.993658],[116.3215,38.998088],[116.33534,38.984004],[116.316182,38.962708],[116.298755,38.975076],[116.291386,38.948683],[116.253007,38.932074],[116.243653,38.949345],[116.228083,38.942199],[116.230262,38.92453],[116.209503,38.921618],[116.20002,38.915727],[116.202198,38.887258],[116.212194,38.870238],[116.23212,38.871894],[116.248907,38.85964],[116.247497,38.848907],[116.278764,38.836451],[116.271973,38.816634],[116.338287,38.80689],[116.390313,38.789784],[116.42299,38.770419],[116.435804,38.733199],[116.406331,38.703596],[116.370836,38.692508],[116.366863,38.67305],[116.381984,38.619165],[116.41921,38.599288],[116.425425,38.587187],[116.454834,38.580337],[116.455475,38.557656],[116.432152,38.552533],[116.431127,38.539558],[116.452655,38.534501],[116.449772,38.518262],[116.465726,38.494096],[116.519482,38.48817],[116.559399,38.496759],[116.569715,38.470988],[116.589897,38.483908],[116.610593,38.479646],[116.627315,38.501087],[116.621228,38.514335],[116.647114,38.50648],[116.668257,38.530042],[116.672678,38.546545],[116.652431,38.551202],[116.643333,38.564773],[116.671653,38.566503],[116.662234,38.581268],[116.680303,38.592706],[116.680559,38.605936],[116.702792,38.619098],[116.71503,38.609327],[116.733739,38.614047],[116.738224,38.631327],[116.763212,38.633853],[116.77404,38.652258],[116.758855,38.732071],[116.766351,38.741959],[116.746297,38.754233],[116.751294,38.780168],[116.737327,38.784479],[116.73848,38.807022],[116.75123,38.831282],[116.74604,38.851491],[116.723103,38.852551],[116.722334,38.897058],[116.708046,38.897058],[116.70811,38.931876],[116.716183,38.93889],[116.728613,38.975341],[116.754626,39.003245],[116.756612,39.0503],[116.773015,39.046865],[116.787303,39.061927],[116.80268,39.050895],[116.860473,39.050564],[116.869891,39.069919],[116.881488,39.071702],[116.91109,39.111055],[116.924096,39.119372],[116.909232,39.150782],[116.870084,39.153685],[116.863164,39.201365],[116.855796,39.215669],[116.875594,39.21646],[116.874569,39.230036],[116.892637,39.223973],[116.878733,39.255336],[116.867969,39.302552],[116.884243,39.305383],[116.889626,39.338157],[116.875786,39.33921],[116.870724,39.357499],[116.849196,39.339473],[116.829206,39.338881],[116.818121,39.373547],[116.837599,39.374073],[116.834139,39.402674],[116.875914,39.434548],[116.855475,39.443352],[116.832473,39.435468],[116.815751,39.451761],[116.807421,39.445586],[116.785124,39.465883],[116.820748,39.482431],[116.813957,39.510266],[116.826194,39.513088],[116.819595,39.52851],[116.806204,39.528838],[116.787687,39.554555],[116.81165,39.576983],[116.797875,39.594358],[116.812355,39.615922],[116.789994,39.610548],[116.790699,39.596062],[116.748667,39.619919],[116.700742,39.621033],[116.7026,39.610417],[116.727075,39.593047],[116.705099,39.587999],[116.662363,39.605239],[116.646537,39.599143],[116.620524,39.601699],[116.607773,39.619723],[116.565934,39.619788],[116.566575,39.604387],[116.541779,39.593505],[116.524416,39.596521],[116.519354,39.566491],[116.508462,39.551078],[116.470916,39.55462],[116.478861,39.539204],[116.464573,39.527657],[116.437534,39.526541],[116.443813,39.509872],[116.424656,39.509741],[116.424079,39.522735],[116.402679,39.526869],[116.402807,39.5144],[116.418761,39.506393],[116.412354,39.482103],[116.444134,39.482169],[116.454706,39.453338],[116.434395,39.442761],[116.408958,39.45025],[116.350461,39.453009],[116.320027,39.46851],[116.306443,39.488997],[116.279277,39.491295],[116.257941,39.500551],[116.244678,39.517354]]],[[[117.209793,40.082253],[117.204347,40.06982],[117.160073,40.076199],[117.13925,40.064025],[117.119515,40.072424],[117.085621,40.075158],[117.085173,40.068583],[117.052048,40.059402],[117.028533,40.033939],[117.000662,40.0299],[116.972086,40.037],[116.960489,40.051133],[116.928133,40.05491],[116.867841,40.041885],[116.857782,40.051914],[116.822734,40.046444],[116.819979,40.028337],[116.781536,40.034851],[116.770452,40.011658],[116.775385,39.99276],[116.757317,39.961468],[116.780575,39.94973],[116.784676,39.891401],[116.804154,39.877954],[116.827284,39.87704],[116.866047,39.843866],[116.885653,39.844585],[116.907566,39.834133],[116.902824,39.848242],[116.92589,39.835374],[116.928453,39.813095],[116.952608,39.789827],[116.949725,39.778583],[116.924288,39.781263],[116.920893,39.769167],[116.901799,39.763609],[116.916664,39.731362],[116.88277,39.718472],[116.893854,39.695893],[116.912563,39.689216],[116.91692,39.706365],[116.950878,39.706824],[116.944599,39.695173],[116.963629,39.643441],[116.974585,39.636824],[117.004378,39.644489],[117.015783,39.654052],[117.057045,39.644554],[117.127076,39.61697],[117.152641,39.623523],[117.157959,39.636627],[117.177693,39.645602],[117.159624,39.666823],[117.170132,39.673371],[117.169235,39.717622],[117.153153,39.722726],[117.161867,39.747389],[117.205884,39.763871],[117.18064,39.78244],[117.178718,39.795318],[117.15751,39.796756],[117.156357,39.817473],[117.195056,39.82551],[117.192173,39.833088],[117.252208,39.834591],[117.259961,39.843409],[117.247467,39.861043],[117.227797,39.852749],[117.166865,39.868944],[117.149117,39.896297],[117.158856,39.909218],[117.137456,39.921616],[117.156869,39.938055],[117.151039,39.944839],[117.175963,39.959121],[117.178654,39.977311],[117.198132,39.99276],[117.187752,40.026187],[117.1841,40.062593],[117.222863,40.065523],[117.209793,40.082253]]]]}},{"type":"Feature","properties":{"adcode":131100,"name":"衡水市","center":[115.665993,37.735097],"centroid":[115.828761,37.7648],"childrenNum":11,"level":"city","parent":{"adcode":130000},"subFeatureIndex":10,"acroutes":[100000,130000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.853904,37.059245],[115.864988,37.070785],[115.885427,37.128731],[115.879981,37.151992],[115.911825,37.176195],[115.904841,37.189344],[115.912017,37.207098],[115.940721,37.227558],[115.953215,37.223697],[115.969425,37.239479],[115.964171,37.250721],[115.976217,37.276178],[115.968272,37.287076],[115.98461,37.316175],[115.975897,37.334508],[116.00947,37.343165],[116.024527,37.359937],[116.05195,37.357502],[116.056179,37.369065],[116.08751,37.373324],[116.106539,37.368794],[116.168817,37.38414],[116.195471,37.365684],[116.236028,37.361559],[116.285236,37.40266],[116.263067,37.42239],[116.227379,37.424755],[116.243076,37.448195],[116.229878,37.459676],[116.224431,37.479729],[116.241346,37.491475],[116.276458,37.466901],[116.271781,37.478176],[116.290233,37.484049],[116.278444,37.524745],[116.291386,37.5238],[116.287863,37.5493],[116.335916,37.581263],[116.3281,37.605058],[116.375192,37.617256],[116.374936,37.63949],[116.36539,37.648719],[116.378909,37.659698],[116.386533,37.696393],[116.424784,37.735829],[116.434331,37.734618],[116.438367,37.758902],[116.451182,37.7587],[116.460664,37.778875],[116.47303,37.777059],[116.466623,37.805564],[116.481424,37.830026],[116.473415,37.865495],[116.51346,37.863951],[116.515382,37.892892],[116.53377,37.907727],[116.565166,37.980116],[116.563243,38.01987],[116.496352,38.013704],[116.483474,38.02503],[116.479309,38.011492],[116.417224,38.009481],[116.3709,38.018597],[116.343925,38.017256],[116.329189,38.008141],[116.306764,37.979312],[116.278252,37.962479],[116.266975,37.981458],[116.266206,37.961405],[116.256595,37.965229],[116.226354,37.95121],[116.209118,37.966369],[116.188039,37.968314],[116.170163,37.959594],[116.170867,37.933565],[116.153952,37.914573],[116.091034,37.910949],[116.093981,37.922627],[116.120571,37.948996],[116.100645,37.948929],[116.071876,37.980318],[116.062394,38.005057],[116.042467,38.026706],[116.049515,38.038365],[116.070595,38.041112],[116.05227,38.052434],[116.055474,38.071725],[116.031511,38.082774],[116.031831,38.100718],[116.048554,38.11424],[116.055218,38.131306],[116.049771,38.146026],[115.986725,38.125885],[115.968913,38.138533],[115.938671,38.144354],[115.935403,38.167232],[115.900804,38.158536],[115.887542,38.171312],[115.899523,38.20314],[115.871267,38.217579],[115.856467,38.240901],[115.864476,38.255266],[115.837181,38.272499],[115.833016,38.298008],[115.850188,38.309423],[115.841538,38.346062],[115.804633,38.345462],[115.783297,38.358338],[115.738767,38.369544],[115.734025,38.359205],[115.705321,38.367543],[115.699811,38.349932],[115.650155,38.340791],[115.644965,38.32611],[115.590504,38.332784],[115.57942,38.342859],[115.575768,38.326377],[115.550908,38.332917],[115.547704,38.318168],[115.516437,38.318168],[115.516822,38.357337],[115.494781,38.362006],[115.495101,38.342993],[115.478122,38.341658],[115.462104,38.327311],[115.420906,38.337922],[115.402453,38.320103],[115.381822,38.327578],[115.383104,38.299076],[115.393611,38.285588],[115.369072,38.283451],[115.356194,38.271764],[115.34953,38.248117],[115.324734,38.248184],[115.323645,38.220586],[115.35094,38.210493],[115.342418,38.196254],[115.346903,38.13967],[115.364843,38.13793],[115.383232,38.0886],[115.420522,38.089671],[115.439871,38.082038],[115.468063,38.095161],[115.482992,38.08398],[115.466782,38.063554],[115.45134,38.017323],[115.438205,38.001102],[115.464219,37.99299],[115.444997,37.989168],[115.456017,37.974551],[115.457555,37.95074],[115.448585,37.936584],[115.412769,37.943293],[115.408668,37.918936],[115.385795,37.917191],[115.365484,37.906318],[115.360294,37.880068],[115.389831,37.874629],[115.388614,37.853003],[115.363049,37.849845],[115.360166,37.820215],[115.349722,37.805765],[115.352349,37.784052],[115.371635,37.770335],[115.344468,37.74814],[115.360294,37.731994],[115.386179,37.727082],[115.394316,37.712143],[115.380989,37.707432],[115.333768,37.71322],[115.317046,37.695383],[115.325567,37.682458],[115.316853,37.660102],[115.301412,37.660169],[115.297376,37.629587],[115.258356,37.639625],[115.255088,37.645621],[115.227858,37.648921],[115.202934,37.637133],[115.191593,37.608833],[115.172756,37.600543],[115.200563,37.572498],[115.188325,37.563125],[115.201908,37.555977],[115.237276,37.575465],[115.282575,37.576005],[115.307179,37.563935],[115.360871,37.523935],[115.359461,37.558675],[115.377914,37.541138],[115.405785,37.535944],[115.410078,37.523261],[115.430965,37.506796],[115.455313,37.501802],[115.421675,37.495727],[115.426096,37.506256],[115.402069,37.51017],[115.397968,37.497347],[115.417638,37.487762],[115.410719,37.476421],[115.431478,37.469602],[115.404183,37.462039],[115.360038,37.461431],[115.345109,37.448195],[115.391049,37.42793],[115.428595,37.387926],[115.468768,37.382788],[115.506634,37.368997],[115.520089,37.353648],[115.52938,37.326864],[115.577177,37.316107],[115.599218,37.332884],[115.590632,37.312453],[115.599859,37.301965],[115.623437,37.297905],[115.63292,37.277058],[115.67258,37.275839],[115.675784,37.258914],[115.698465,37.257153],[115.756322,37.209876],[115.76997,37.14155],[115.786564,37.123916],[115.827378,37.106006],[115.853904,37.059245]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"高邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.467345,37.583843],[114.467345,37.5738430000001],[114.457345,37.5738430000001],[114.457345,37.583843],[114.467345,37.583843]]],[[[114.697345,37.6438430000001],[114.700767851563,37.6560353828125],[114.709537382813,37.6472658515625],[114.697345,37.6438430000001]]],[[[114.697345,37.6438430000001],[114.697345,37.633843],[114.727345,37.633843],[114.727345,37.623843],[114.701158476563,37.6100307441407],[114.6898840625,37.5917372871094],[114.6960559375,37.5719240546875],[114.654678984375,37.5578224921875],[114.601158476563,37.5500307441407],[114.597345,37.543843],[114.580704375,37.5472023750001],[114.513985625,37.5804836250001],[114.467345,37.583843],[114.4966028125,37.6345864082032],[114.51271609375,37.6484706855469],[114.517345,37.673843],[114.542584257813,37.6676430488282],[114.572066679688,37.6800258613282],[114.583013945313,37.6775722480469],[114.59142703125,37.6897585273438],[114.637345,37.693843],[114.631314726563,37.6784987617188],[114.64298953125,37.6694863105469],[114.657564726563,37.6506008125001],[114.697345,37.6438430000001]]]]}},{"type":"Feature","properties":{"name":"长安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.527345,38.123843],[114.649439726563,38.1036000800782],[114.657345,38.113843],[114.689722929688,38.1055336738282],[114.697496367188,38.0708534980469],[114.68142703125,38.0597585273438],[114.67326296875,38.0479274726563],[114.667345,38.043843],[114.594620390625,38.0529286933594],[114.582896757813,38.0382900214844],[114.507345,38.033843],[114.510704375,38.070483625],[114.529185820313,38.0798329902344],[114.517432890625,38.10390159375],[114.527345,38.123843]]]]}},{"type":"Feature","properties":{"name":"晋州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.073585234375,38.1331288886719],[115.112345,38.1210561347657],[115.157345,38.1350722480469],[115.182345,38.1272853828125],[115.19255984375,38.1304665351563],[115.207345,38.123843],[115.202808867188,38.0983803535157],[115.187642851563,38.0719020820313],[115.21935671875,38.0455580878907],[115.180816679688,38.0288430000001],[115.2114465625,38.0155580878906],[115.191881132813,37.9993056464845],[115.182808867188,37.9883803535157],[115.171881132813,37.9793056464844],[115.158189726563,37.9477370429688],[115.132808867188,37.9503249335938],[115.141881132813,37.9383803535157],[115.156783476563,37.9260036445312],[115.142808867188,37.8783803535156],[115.119288359375,37.858843],[115.142896757813,37.839233625],[115.1418371875,37.8288430000001],[115.142882109375,37.8185781074219],[115.137345,37.8038430000001],[115.10466921875,37.8118691230469],[115.08326296875,37.7979274726563],[115.067345,37.7938430000001],[115.034937773438,37.8031081367188],[114.99400515625,37.8705019355469],[114.977345,37.883843],[114.954932890625,37.9031508613282],[114.973526640625,37.9191664863282],[114.971138945313,37.9488430000001],[114.973551054688,37.978843],[114.970719023438,38.0141030097656],[114.977345,38.093843],[114.992974882813,38.0983119941407],[115.048453398438,38.1427370429688],[115.061793242188,38.1593959785156],[115.087345,38.163843],[115.073585234375,38.1331288886719]]]]}},{"type":"Feature","properties":{"name":"井陉矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.002545195313,38.026157453125],[114.007345,38.003843],[113.983804960938,38.0167470527344],[114.002545195313,38.026157453125]]],[[[114.05197390625,38.0292153144532],[114.047345,38.0238430000001],[113.98271609375,38.0611037421876],[113.995072050781,38.0986269355469],[114.033919707031,38.1203005195313],[114.083565703125,38.1090224433594],[114.081917753906,38.0885195136719],[114.093284941406,38.0787245917969],[114.07197390625,38.0692153144532],[114.06271609375,38.0384706855469],[114.05197390625,38.0292153144532]]],[[[114.093922148438,38.1360353828125],[114.097345,38.123843],[114.085152617188,38.1272658515626],[114.093922148438,38.1360353828125]]]]}},{"type":"Feature","properties":{"name":"井陉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.02923953125,38.2181618476563],[114.082078886719,38.198305890625],[114.092345,38.1993520332032],[114.102345,38.1983339667969],[114.130211210938,38.2011733222657],[114.161883574219,38.1783803535156],[114.177345,38.1738430000001],[114.25197390625,38.1662306953125],[114.240548125,38.1319655585938],[114.19716921875,38.1126088691407],[114.21271609375,38.0992153144531],[114.22197390625,38.0784706855469],[114.27197390625,38.0471535468751],[114.261519804688,38.0260549140626],[114.23312625,38.0015920234375],[114.277345,37.9980397773438],[114.30197390625,38.0000185371094],[114.284320097656,37.9398525214844],[114.27197390625,37.9292153144532],[114.267345,37.923843],[114.235328398438,37.91866721875],[114.220416289063,37.8442836738281],[114.170301542969,37.8541872382813],[114.174971953125,37.8305434394531],[114.205308867188,37.818843],[114.201356230469,37.7988430000001],[114.205186796875,37.7794631171876],[114.197345,37.773843],[114.178795195313,37.7686769843751],[114.142689238281,37.721899640625],[114.13298953125,37.6981996894531],[114.127345,37.693843],[114.09298953125,37.7094863105469],[114.047662382813,37.7221083808594],[113.997345,37.713843],[113.991610136719,37.7181081367188],[113.983079863281,37.7372646308594],[114.029034453125,37.7497231269532],[114.041610136719,37.7757924628907],[113.999764433594,37.8069216132812],[113.957178984375,37.823843],[113.964928007813,37.8688430000001],[113.960094023438,37.8969216132813],[113.923055449219,37.9244728828125],[113.913079863281,37.9495778632813],[113.890035429688,37.9868141914063],[113.861373320313,37.9982021308594],[113.870933867188,38.053734357422],[113.851610136719,38.0681081367188],[113.834547148438,38.0910463691407],[113.811610136719,38.1081081367188],[113.807345,38.113843],[113.823985625,38.147202375],[113.827345,38.163843],[113.843114042969,38.1914638496094],[113.902174101563,38.1783156562501],[113.922345,38.1803713203125],[113.988831816406,38.1735951972657],[114.001883574219,38.1893056464844],[114.012806425781,38.1983803535157],[114.02923953125,38.2181618476563]],[[114.085152617188,38.1272658515626],[114.097345,38.123843],[114.093922148438,38.1360353828125],[114.085152617188,38.1272658515626]],[[113.98271609375,38.0611037421876],[114.047345,38.0238430000001],[114.05197390625,38.0292153144532],[114.06271609375,38.0384706855469],[114.07197390625,38.0692153144532],[114.093284941406,38.0787245917969],[114.081917753906,38.0885195136719],[114.083565703125,38.1090224433594],[114.033919707031,38.1203005195313],[113.995072050781,38.0986269355469],[113.98271609375,38.0611037421876]],[[114.007345,38.003843],[114.002545195313,38.026157453125],[113.983804960938,38.0167470527344],[114.007345,38.003843]]]]}},{"type":"Feature","properties":{"name":"灵寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.067337675781,38.6763393378907],[114.081890898438,38.6581642890625],[114.092345,38.6594643378907],[114.102628203125,38.6581862617187],[114.131790800781,38.6693959785157],[114.167345,38.6738430000001],[114.174129667969,38.6494814277344],[114.241207304688,38.5977053046875],[114.27170046875,38.5581996894532],[114.28298953125,38.5494863105469],[114.291832304688,38.5380287910157],[114.319351835938,38.542094953125],[114.340362578125,38.5072634101563],[114.344486113281,38.4793544746094],[114.32298953125,38.4627614570313],[114.34170046875,38.4481996894532],[114.38843875,38.4383364082031],[114.416058378906,38.4025551582031],[114.4386340625,38.3851308417969],[114.45170046875,38.3681996894532],[114.477345,38.353843],[114.450308867188,38.3176210761719],[114.45373171875,38.2944509101563],[114.439136992188,38.2587856269531],[114.387345,38.2538430000001],[114.37697390625,38.2688649726563],[114.339329863281,38.2779274726563],[114.293260527344,38.2479274726563],[114.277345,38.243843],[114.259383574219,38.2826332832031],[114.276178007813,38.3379238105469],[114.236673613281,38.3608278632813],[114.223170195313,38.3796681953126],[114.195028105469,38.3905214667969],[114.183170195313,38.4496681953125],[114.169913359375,38.4933034492188],[114.141636992188,38.4877150703125],[114.133170195313,38.5096681953125],[114.111070585938,38.5255068183594],[114.066571074219,38.51671409375],[114.047213164063,38.4897084785157],[114.023194609375,38.4796681953125],[114.013170195313,38.5296681953126],[113.951519804688,38.5380178046875],[113.943170195313,38.5496681953125],[113.921217070313,38.5581349921875],[113.925235625,38.5784706855469],[113.891519804688,38.5980178046875],[113.879503203125,38.6579616523438],[113.851519804688,38.6780178046875],[113.83093875,38.7067311835938],[113.83443484375,38.724419171875],[113.827345,38.7538430000001],[113.841790800781,38.7482900214844],[113.882899199219,38.7393959785157],[113.9611340625,38.6896230292969],[114.067337675781,38.6763393378907]]]]}},{"type":"Feature","properties":{"name":"鹿泉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.41062625,38.0171242500001],[114.420704375,37.997202375],[114.453985625,37.990483625],[114.460704375,37.9772023750001],[114.467345,37.973843],[114.487345,37.973843],[114.497345,37.973843],[114.497345,37.963843],[114.510396757813,37.93647971875],[114.487345,37.923843],[114.457613554688,37.9165407539063],[114.441842070313,37.9200771308594],[114.413260527344,37.8979274726563],[114.379691191406,37.8853664375],[114.332491484375,37.8999965644531],[114.317345,37.8966017890625],[114.302345,37.8999636054688],[114.282345,37.8954799628907],[114.257747832031,37.9009938789063],[114.267345,37.923843],[114.27197390625,37.9292153144532],[114.284320097656,37.9398525214844],[114.30197390625,38.0000185371094],[114.277345,37.9980397773438],[114.23312625,38.0015920234375],[114.261519804688,38.0260549140626],[114.27197390625,38.0471535468751],[114.22197390625,38.0784706855469],[114.21271609375,38.0992153144531],[114.19716921875,38.1126088691407],[114.240548125,38.1319655585938],[114.25197390625,38.1662306953125],[114.177345,38.1738430000001],[114.201429472656,38.2097585273438],[114.233648710938,38.2180275703126],[114.230819121094,38.2306545234375],[114.271429472656,38.2397585273438],[114.277345,38.243843],[114.293260527344,38.2479274726563],[114.339329863281,38.2779274726563],[114.37697390625,38.2688649726563],[114.387345,38.2538430000001],[114.397567167969,38.2171364570313],[114.437345,38.163843],[114.431158476563,38.1600307441407],[114.423531523438,38.1476552558594],[114.411158476563,38.1400307441406],[114.400990019531,38.1101967597657],[114.37048953125,38.0998024726562],[114.373968535156,38.0886293769532],[114.367345,38.073843],[114.390704375,38.027202375],[114.41062625,38.0171242500001]]]]}},{"type":"Feature","properties":{"name":"平山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.727345,38.1738430000001],[113.723922148438,38.1616506171876],[113.715152617188,38.1704201484375],[113.727345,38.1738430000001]]],[[[113.727345,38.1738430000001],[113.72298953125,38.1894863105469],[113.71170046875,38.1981996894531],[113.702857695313,38.2096572089844],[113.683922148438,38.2068593574219],[113.6471496875,38.2290407539063],[113.56170046875,38.2381996894531],[113.55298953125,38.2494863105469],[113.54170046875,38.2581996894532],[113.53298953125,38.3050429511719],[113.554456816406,38.3406337714844],[113.53170046875,38.3581996894531],[113.519427519531,38.3741005683594],[113.525775175781,38.4170619941406],[113.55298953125,38.4281996894531],[113.56170046875,38.4494863105469],[113.586009550781,38.4594362617188],[113.553033476563,38.4848891425781],[113.537345,38.5238430000001],[113.54298953125,38.5281996894532],[113.55170046875,38.5594863105469],[113.590560332031,38.5894814277344],[113.606651640625,38.6472621894531],[113.642345,38.6525368476563],[113.678695097656,38.6471657539063],[113.702413359375,38.665473859375],[113.712042265625,38.7111037421876],[113.761204863281,38.7038393378906],[113.785064726563,38.7621352363281],[113.81263796875,38.7580605292969],[113.827345,38.763843],[113.827345,38.7538430000001],[113.83443484375,38.724419171875],[113.83093875,38.7067311835938],[113.851519804688,38.6780178046875],[113.879503203125,38.6579616523438],[113.891519804688,38.5980178046875],[113.925235625,38.5784706855469],[113.921217070313,38.5581349921875],[113.943170195313,38.5496681953125],[113.951519804688,38.5380178046875],[114.013170195313,38.5296681953126],[114.023194609375,38.4796681953125],[114.047213164063,38.4897084785157],[114.066571074219,38.51671409375],[114.111070585938,38.5255068183594],[114.133170195313,38.5096681953125],[114.141636992188,38.4877150703125],[114.169913359375,38.4933034492188],[114.183170195313,38.4496681953125],[114.195028105469,38.3905214667969],[114.223170195313,38.3796681953126],[114.236673613281,38.3608278632813],[114.276178007813,38.3379238105469],[114.259383574219,38.2826332832031],[114.277345,38.243843],[114.271429472656,38.2397585273438],[114.230819121094,38.2306545234375],[114.233648710938,38.2180275703126],[114.201429472656,38.2097585273438],[114.177345,38.1738430000001],[114.161883574219,38.1783803535156],[114.130211210938,38.2011733222657],[114.102345,38.1983339667969],[114.092345,38.1993520332032],[114.082078886719,38.198305890625],[114.02923953125,38.2181618476563],[114.012806425781,38.1983803535157],[114.001883574219,38.1893056464844],[113.988831816406,38.1735951972657],[113.922345,38.1803713203125],[113.902174101563,38.1783156562501],[113.843114042969,38.1914638496094],[113.827345,38.163843],[113.76170046875,38.1681996894531],[113.727345,38.1738430000001]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,37.973843],[114.467345,37.973843],[114.48142703125,38.0297585273438],[114.487345,38.043843],[114.49312625,38.0790224433594],[114.481392851563,38.1192507148438],[114.49298953125,38.1281996894531],[114.497345,38.1338430000001],[114.513985625,38.130483625],[114.527345,38.123843],[114.517432890625,38.10390159375],[114.529185820313,38.0798329902344],[114.510704375,38.070483625],[114.507345,38.033843],[114.504801054688,38.0163869453125],[114.489888945313,38.0012990546876],[114.487345,37.973843]]]]}},{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.48142703125,38.0297585273438],[114.467345,37.973843],[114.460704375,37.9772023750001],[114.453985625,37.990483625],[114.420704375,37.997202375],[114.41062625,38.0171242500001],[114.390704375,38.027202375],[114.367345,38.073843],[114.418631621094,38.0651308417969],[114.43170046875,38.0481996894531],[114.487345,38.043843],[114.48142703125,38.0297585273438]]]]}},{"type":"Feature","properties":{"name":"深泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.256046171875,38.2790444160157],[115.273267851563,38.2330165839844],[115.317345,38.243843],[115.322281523438,38.2234865546875],[115.346344023438,38.2080800605469],[115.34093875,38.188843],[115.34375125,38.1788430000001],[115.333580351563,38.1426552558594],[115.353443632813,38.1299404121094],[115.357345,38.123843],[115.351676054688,38.115630109375],[115.332345,38.1199636054688],[115.322301054688,38.1177126289063],[115.272388945313,38.1299733710938],[115.252345,38.1254799628907],[115.225548125,38.1314882636719],[115.207345,38.123843],[115.19255984375,38.1304665351563],[115.182345,38.1272853828125],[115.157345,38.1350722480469],[115.112345,38.1210561347657],[115.073585234375,38.1331288886719],[115.087345,38.163843],[115.091793242188,38.1693959785157],[115.10322390625,38.17855003125],[115.08912234375,38.2152284980469],[115.137345,38.2538430000001],[115.15455203125,38.2606081367188],[115.20548953125,38.2298805976563],[115.22170046875,38.2694863105469],[115.23298953125,38.2781996894531],[115.237345,38.283843],[115.256046171875,38.2790444160157]]]]}},{"type":"Feature","properties":{"name":"无极县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.133804960938,38.2603029609375],[115.137345,38.2538430000001],[115.08912234375,38.2152284980469],[115.10322390625,38.17855003125],[115.091793242188,38.1693959785157],[115.087345,38.163843],[115.061793242188,38.1593959785156],[115.048453398438,38.1427370429688],[114.992974882813,38.0983119941407],[114.977345,38.093843],[114.96197390625,38.0892153144531],[114.94271609375,38.0784706855469],[114.85150515625,38.0438588691407],[114.81271609375,38.0626247382813],[114.832999296875,38.0989736152344],[114.803980742188,38.1239723945313],[114.7914075,38.1521535468751],[114.793526640625,38.1785195136719],[114.781763945313,38.1886501289063],[114.795621367188,38.2263808417969],[114.827213164063,38.2404787421876],[114.847345,38.263843],[114.872994414063,38.2575429511719],[114.877345,38.263843],[114.903804960938,38.2673830390626],[114.925440703125,38.2837490058594],[114.947345,38.2747206855469],[114.9635559375,38.2814028144531],[114.983804960938,38.2703029609375],[114.991422148438,38.2564028144532],[115.017345,38.2670864082031],[115.048404570313,38.2542836738282],[115.05646609375,38.273843],[115.047784453125,38.2949025703125],[115.063267851563,38.3012831855469],[115.070885039063,38.2873830390625],[115.083804960938,38.2803029609376],[115.090885039063,38.2673830390626],[115.133804960938,38.2603029609375]]]]}},{"type":"Feature","properties":{"name":"辛集市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.225548125,38.1314882636719],[115.252345,38.1254799628907],[115.272388945313,38.1299733710938],[115.322301054688,38.1177126289063],[115.332345,38.1199636054688],[115.351676054688,38.115630109375],[115.357345,38.123843],[115.3637121875,38.1202114082031],[115.381431914063,38.0866139960938],[115.402345,38.0944972968751],[115.439693632813,38.0804201484376],[115.447345,38.093843],[115.478428984375,38.0858657050781],[115.46142703125,38.0597585273438],[115.45326296875,38.0379274726563],[115.44107546875,38.0295131660156],[115.44361453125,38.0181728339844],[115.430103789063,38.008843],[115.44361453125,37.9995131660157],[115.440103789063,37.9838430000001],[115.451397734375,37.9334499335937],[115.412345,37.9422060371094],[115.40326296875,37.9179274726562],[115.35326296875,37.8992189765625],[115.36142703125,37.8779274726562],[115.39142703125,37.8667018867188],[115.38326296875,37.8579274726563],[115.360303984375,37.8493361640625],[115.348980742188,37.7988430000001],[115.355235625,37.7709572578125],[115.336261015625,37.7418202949219],[115.367345,37.733843],[115.367345,37.7238430000001],[115.387345,37.7238430000001],[115.37521609375,37.7008144355469],[115.33853640625,37.7172927070313],[115.3091028125,37.691059796875],[115.31865359375,37.6698000312501],[115.300797148438,37.6603932929688],[115.284991484375,37.6303932929688],[115.250797148438,37.6372927070313],[115.247345,37.6438430000001],[115.254444609375,37.6870705390626],[115.236549101563,37.7167372871094],[115.211690703125,37.7359242988282],[115.150445585938,37.7609914375001],[115.15478640625,37.7903786445313],[115.137345,37.8038430000001],[115.142882109375,37.8185781074219],[115.1418371875,37.8288430000001],[115.142896757813,37.839233625],[115.119288359375,37.858843],[115.142808867188,37.8783803535156],[115.156783476563,37.9260036445312],[115.141881132813,37.9383803535157],[115.132808867188,37.9503249335938],[115.158189726563,37.9477370429688],[115.171881132813,37.9793056464844],[115.182808867188,37.9883803535157],[115.191881132813,37.9993056464845],[115.2114465625,38.0155580878906],[115.180816679688,38.0288430000001],[115.21935671875,38.0455580878907],[115.187642851563,38.0719020820313],[115.202808867188,38.0983803535157],[115.207345,38.123843],[115.225548125,38.1314882636719]]]]}},{"type":"Feature","properties":{"name":"新华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.49312625,38.0790224433594],[114.487345,38.043843],[114.43170046875,38.0481996894531],[114.418631621094,38.0651308417969],[114.367345,38.073843],[114.373968535156,38.0886293769532],[114.37048953125,38.0998024726562],[114.400990019531,38.1101967597657],[114.411158476563,38.1400307441406],[114.423531523438,38.1476552558594],[114.431158476563,38.1600307441407],[114.437345,38.163843],[114.49271609375,38.1392153144531],[114.497345,38.1338430000001],[114.49298953125,38.1281996894531],[114.481392851563,38.1192507148438],[114.49312625,38.0790224433594]]]]}},{"type":"Feature","properties":{"name":"新乐市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,38.303843],[114.580152617188,38.308843],[114.567345,38.313843],[114.574913359375,38.3290724921875],[114.562974882813,38.347202375],[114.553985625,38.3206008125],[114.567345,38.313843],[114.530318632813,38.3101332832032],[114.535220976563,38.343296125],[114.497345,38.353843],[114.50920046875,38.3710170722657],[114.55548953125,38.3566689277344],[114.57509890625,38.38507346875],[114.602345,38.3673305488281],[114.62142703125,38.3797585273438],[114.653648710938,38.3880275703125],[114.64709109375,38.4172817207032],[114.688936796875,38.4411672187501],[114.667345,38.473843],[114.684586210938,38.4790334296876],[114.703038359375,38.5004494453125],[114.729049101563,38.4702553535157],[114.741998320313,38.4992739082032],[114.807345,38.493843],[114.82353640625,38.4591640449219],[114.82037234375,38.4450380683595],[114.843013945313,38.4501137519531],[114.85142703125,38.4379274726563],[114.86326296875,38.4297585273438],[114.871676054688,38.417572248047],[114.888741484375,38.4213979316407],[114.92076296875,38.3800795722657],[114.935308867188,38.3331508613282],[114.9005871875,38.3091762519532],[114.88142703125,38.2797585273438],[114.877345,38.263843],[114.872994414063,38.2575429511719],[114.847345,38.263843],[114.84326296875,38.2697585273437],[114.803682890625,38.2970839667969],[114.748297148438,38.3112978339844],[114.732345,38.3077223945313],[114.722301054688,38.3099733710938],[114.697345,38.303843],[114.675562773438,38.2940859199219],[114.635201445313,38.3267787910156],[114.6460559375,38.2919240546875],[114.597965117188,38.2755348945312],[114.572115507813,38.2835866523438],[114.567345,38.303843]]]]}},{"type":"Feature","properties":{"name":"行唐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.312669707031,38.7101430488281],[114.359329863281,38.6797585273438],[114.383260527344,38.6879274726563],[114.391429472656,38.6997585273438],[114.407345,38.703843],[114.413316679688,38.6969118476563],[114.4593371875,38.7006093574219],[114.530279570313,38.6430825019532],[114.542764921875,38.6090810371094],[114.5419153125,38.5984889960938],[114.575670195313,38.5883266425782],[114.62197390625,38.5284706855469],[114.667345,38.473843],[114.688936796875,38.4411672187501],[114.64709109375,38.4172817207032],[114.653648710938,38.3880275703125],[114.62142703125,38.3797585273438],[114.602345,38.3673305488281],[114.57509890625,38.38507346875],[114.55548953125,38.3566689277344],[114.50920046875,38.3710170722657],[114.497345,38.353843],[114.477345,38.353843],[114.45170046875,38.3681996894532],[114.4386340625,38.3851308417969],[114.416058378906,38.4025551582031],[114.38843875,38.4383364082031],[114.34170046875,38.4481996894532],[114.32298953125,38.4627614570313],[114.344486113281,38.4793544746094],[114.340362578125,38.5072634101563],[114.319351835938,38.542094953125],[114.291832304688,38.5380287910157],[114.28298953125,38.5494863105469],[114.27170046875,38.5581996894532],[114.241207304688,38.5977053046875],[114.174129667969,38.6494814277344],[114.167345,38.6738430000001],[114.197523222656,38.6865175605469],[114.257074003906,38.7011452460938],[114.272491484375,38.6976894355469],[114.312669707031,38.7101430488281]],[[114.515152617188,38.5872658515625],[114.527345,38.583843],[114.523922148438,38.5960353828125],[114.515152617188,38.5872658515625]]]]}},{"type":"Feature","properties":{"name":"裕华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.647550078125,38.0037990546876],[114.667345,37.973843],[114.651793242188,37.9782900214844],[114.618546171875,37.9978322578125],[114.600987578125,37.9759023261719],[114.572183867188,37.9794850898438],[114.522506132813,37.9682009101563],[114.512061796875,37.9694997382813],[114.497345,37.963843],[114.497345,37.973843],[114.487345,37.973843],[114.489888945313,38.0012990546876],[114.504801054688,38.0163869453125],[114.507345,38.033843],[114.582896757813,38.0382900214844],[114.594620390625,38.0529286933594],[114.667345,38.043843],[114.66326296875,38.0279274726563],[114.647550078125,38.0037990546876]]]]}},{"type":"Feature","properties":{"name":"元氏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.517345,37.883843],[114.520767851563,37.8960353828126],[114.529537382813,37.8872658515625],[114.517345,37.883843]]],[[[114.517345,37.883843],[114.521881132813,37.8783803535156],[114.5514465625,37.8655580878906],[114.522808867188,37.8417678046876],[114.57556765625,37.8166237617188],[114.612345,37.8203713203125],[114.621881132813,37.7983803535156],[114.627345,37.7938430000001],[114.623531523438,37.7776552558594],[114.607486601563,37.76776878125],[114.621158476563,37.7276552558594],[114.633531523438,37.7200307441406],[114.637345,37.693843],[114.59142703125,37.6897585273438],[114.583013945313,37.6775722480469],[114.572066679688,37.6800258613282],[114.542584257813,37.6676430488282],[114.517345,37.673843],[114.501519804688,37.6780178046875],[114.490220976563,37.7073159003907],[114.439244414063,37.6972426582032],[114.423170195313,37.7196681953125],[114.401519804688,37.7280178046875],[114.392345,37.7518068671875],[114.351798125,37.743794171875],[114.312633085938,37.759887921875],[114.302345,37.7578554511719],[114.283914824219,37.7614968085937],[114.252701445313,37.7376589179688],[114.202899199219,37.7527883125001],[114.197345,37.773843],[114.205186796875,37.7794631171876],[114.201356230469,37.7988430000001],[114.205308867188,37.818843],[114.174971953125,37.8305434394531],[114.170301542969,37.8541872382813],[114.220416289063,37.8442836738281],[114.235328398438,37.91866721875],[114.267345,37.923843],[114.257747832031,37.9009938789063],[114.282345,37.8954799628907],[114.302345,37.8999636054688],[114.317345,37.8966017890625],[114.332491484375,37.8999965644531],[114.379691191406,37.8853664375],[114.413260527344,37.8979274726563],[114.441842070313,37.9200771308594],[114.457613554688,37.9165407539063],[114.487345,37.923843],[114.490845976563,37.885669171875],[114.502359648438,37.8912917304688],[114.517345,37.883843]]]]}},{"type":"Feature","properties":{"name":"赞皇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.202899199219,37.7527883125001],[114.252701445313,37.7376589179688],[114.283914824219,37.7614968085937],[114.302345,37.7578554511719],[114.312633085938,37.759887921875],[114.351798125,37.743794171875],[114.392345,37.7518068671875],[114.401519804688,37.7280178046875],[114.423170195313,37.7196681953125],[114.439244414063,37.6972426582032],[114.490220976563,37.7073159003907],[114.501519804688,37.6780178046875],[114.517345,37.673843],[114.51271609375,37.6484706855469],[114.4966028125,37.6345864082032],[114.467345,37.583843],[114.457345,37.583843],[114.457345,37.5738430000001],[114.450943632813,37.5655471015625],[114.375794707031,37.5347914863282],[114.358377714844,37.5122267890626],[114.263316679688,37.4966103339844],[114.22170046875,37.5081996894531],[114.190765410156,37.5268593574219],[114.152916289063,37.5324526191406],[114.135562773438,37.4900575996094],[114.117345,37.4873647285157],[114.090877714844,37.4912770820313],[114.07170046875,37.4594863105469],[114.067345,37.443843],[114.042105742188,37.4376430488282],[114.027345,37.443843],[114.033856230469,37.4936061835938],[114.06271609375,37.5184706855469],[114.114241972656,37.5902284980469],[114.111219511719,37.6278627753906],[114.12271609375,37.6484706855469],[114.127345,37.693843],[114.13298953125,37.6981996894531],[114.142689238281,37.721899640625],[114.178795195313,37.7686769843751],[114.197345,37.773843],[114.202899199219,37.7527883125001]]]]}},{"type":"Feature","properties":{"name":"赵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.697345,37.6438430000001],[114.709537382813,37.6472658515625],[114.700767851563,37.6560353828125],[114.657564726563,37.6506008125001],[114.64298953125,37.6694863105469],[114.631314726563,37.6784987617188],[114.637345,37.693843],[114.633531523438,37.7200307441406],[114.621158476563,37.7276552558594],[114.607486601563,37.76776878125],[114.623531523438,37.7776552558594],[114.627345,37.7938430000001],[114.632735625,37.8003322578125],[114.665982695313,37.7969435859375],[114.753331328125,37.8341860175781],[114.750836210938,37.8586586738282],[114.782808867188,37.8783803535156],[114.787345,37.883843],[114.822310820313,37.8780995917969],[114.837345,37.8803212714844],[114.874010039063,37.8749025703125],[114.911793242188,37.8521120429688],[114.962345,37.8595815253906],[114.972955351563,37.8580141425782],[114.977345,37.883843],[114.99400515625,37.8705019355469],[115.034937773438,37.8031081367188],[115.067345,37.7938430000001],[115.0600403125,37.7641127753907],[115.064830351563,37.7427626777344],[115.037345,37.7366017890626],[115.010592070313,37.7425991035156],[114.96326296875,37.7279274726562],[114.895089140625,37.7189211250001],[114.84142703125,37.6897585273438],[114.83326296875,37.6779274726563],[114.809595976563,37.6615895820313],[114.789176054688,37.6320119453126],[114.757345,37.623843],[114.727345,37.623843],[114.727345,37.633843],[114.697345,37.633843],[114.697345,37.6438430000001]]]]}},{"type":"Feature","properties":{"name":"正定县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,38.303843],[114.567345,38.313843],[114.580152617188,38.308843],[114.567345,38.303843]]],[[[114.567345,38.313843],[114.553985625,38.3206008125],[114.562974882813,38.347202375],[114.574913359375,38.3290724921875],[114.567345,38.313843]]],[[[114.567345,38.303843],[114.572115507813,38.2835866523438],[114.597965117188,38.2755348945312],[114.6460559375,38.2919240546875],[114.635201445313,38.3267787910156],[114.675562773438,38.2940859199219],[114.697345,38.303843],[114.70099734375,38.2857436347657],[114.717486601563,38.2937953925781],[114.725269804688,38.2778530097657],[114.709420195313,38.2698329902344],[114.715269804688,38.2578530097656],[114.700704375,38.250483625],[114.693985625,38.2372023750001],[114.680704375,38.2304836250001],[114.673985625,38.147202375],[114.659420195313,38.1398329902344],[114.664796171875,38.1288283515625],[114.657345,38.113843],[114.649439726563,38.1036000800782],[114.527345,38.123843],[114.513985625,38.130483625],[114.497345,38.1338430000001],[114.49271609375,38.1392153144531],[114.437345,38.163843],[114.397567167969,38.2171364570313],[114.387345,38.2538430000001],[114.439136992188,38.2587856269531],[114.45373171875,38.2944509101563],[114.450308867188,38.3176210761719],[114.477345,38.353843],[114.497345,38.353843],[114.535220976563,38.343296125],[114.530318632813,38.3101332832032],[114.567345,38.303843]]]]}},{"type":"Feature","properties":{"name":"藁城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.748297148438,38.3112978339844],[114.803682890625,38.2970839667969],[114.84326296875,38.2697585273437],[114.847345,38.263843],[114.827213164063,38.2404787421876],[114.795621367188,38.2263808417969],[114.781763945313,38.1886501289063],[114.793526640625,38.1785195136719],[114.7914075,38.1521535468751],[114.803980742188,38.1239723945313],[114.832999296875,38.0989736152344],[114.81271609375,38.0626247382813],[114.85150515625,38.0438588691407],[114.94271609375,38.0784706855469],[114.96197390625,38.0892153144531],[114.977345,38.093843],[114.970719023438,38.0141030097656],[114.973551054688,37.978843],[114.971138945313,37.9488430000001],[114.973526640625,37.9191664863282],[114.954932890625,37.9031508613282],[114.977345,37.883843],[114.972955351563,37.8580141425782],[114.962345,37.8595815253906],[114.911793242188,37.8521120429688],[114.874010039063,37.8749025703125],[114.837345,37.8803212714844],[114.822310820313,37.8780995917969],[114.787345,37.883843],[114.779693632813,37.8972658515626],[114.744928007813,37.8841616035157],[114.75814578125,37.9192287421876],[114.7209778125,37.9274745917969],[114.681871367188,37.9457448554687],[114.667345,37.973843],[114.647550078125,38.0037990546876],[114.66326296875,38.0279274726563],[114.667345,38.043843],[114.67326296875,38.0479274726563],[114.68142703125,38.0597585273438],[114.697496367188,38.0708534980469],[114.689722929688,38.1055336738282],[114.657345,38.113843],[114.664796171875,38.1288283515625],[114.659420195313,38.1398329902344],[114.673985625,38.147202375],[114.680704375,38.2304836250001],[114.693985625,38.2372023750001],[114.700704375,38.250483625],[114.715269804688,38.2578530097656],[114.709420195313,38.2698329902344],[114.725269804688,38.2778530097657],[114.717486601563,38.2937953925781],[114.70099734375,38.2857436347657],[114.697345,38.303843],[114.722301054688,38.3099733710938],[114.732345,38.3077223945313],[114.748297148438,38.3112978339844]]]]}},{"type":"Feature","properties":{"name":"栾城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.517345,37.883843],[114.529537382813,37.8872658515625],[114.520767851563,37.8960353828126],[114.502359648438,37.8912917304688],[114.490845976563,37.885669171875],[114.487345,37.923843],[114.510396757813,37.93647971875],[114.497345,37.963843],[114.512061796875,37.9694997382813],[114.522506132813,37.9682009101563],[114.572183867188,37.9794850898438],[114.600987578125,37.9759023261719],[114.618546171875,37.9978322578125],[114.651793242188,37.9782900214844],[114.667345,37.973843],[114.681871367188,37.9457448554687],[114.7209778125,37.9274745917969],[114.75814578125,37.9192287421876],[114.744928007813,37.8841616035157],[114.779693632813,37.8972658515626],[114.787345,37.883843],[114.782808867188,37.8783803535156],[114.750836210938,37.8586586738282],[114.753331328125,37.8341860175781],[114.665982695313,37.7969435859375],[114.632735625,37.8003322578125],[114.627345,37.7938430000001],[114.621881132813,37.7983803535156],[114.612345,37.8203713203125],[114.57556765625,37.8166237617188],[114.522808867188,37.8417678046876],[114.5514465625,37.8655580878906],[114.521881132813,37.8783803535156],[114.517345,37.883843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"路北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.187345,39.7038430000001],[118.19138796875,39.6871694160156],[118.226011992188,39.696899640625],[118.218131132813,39.6688430000001],[118.226344023438,39.6396059394532],[118.211246367188,39.6299404121094],[118.207345,39.6238430000001],[118.127345,39.6238430000001],[118.127345,39.5838430000001],[118.117345,39.5838430000001],[118.077345,39.5838430000001],[118.071671171875,39.62925315625],[118.112896757813,39.6782900214844],[118.121846953125,39.69952659375],[118.152799101563,39.6956764960938],[118.167345,39.713843],[118.187345,39.7038430000001]]],[[[118.187345,39.7038430000001],[118.190767851563,39.7160353828126],[118.199537382813,39.7072658515625],[118.187345,39.7038430000001]]]]}},{"type":"Feature","properties":{"name":"路南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.237345,39.563843],[118.219923125,39.5571450019532],[118.128409453125,39.5700283027344],[118.117345,39.5838430000001],[118.127345,39.5838430000001],[118.127345,39.6238430000001],[118.207345,39.6238430000001],[118.225094023438,39.6115895820313],[118.237345,39.563843]]]]}},{"type":"Feature","properties":{"name":"丰润区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.927345,39.803843],[117.915152617188,39.8072658515625],[117.923922148438,39.8160353828125],[117.927345,39.803843]]],[[[117.927345,39.803843],[117.956221953125,39.8081618476563],[117.941246367188,39.8177455878907],[117.933443632813,39.8299404121094],[117.913580351563,39.8426552558594],[117.925870390625,39.886391828125],[117.905440703125,39.9162233710938],[117.917345,39.923843],[117.9351965625,39.9169814277344],[118.028175078125,39.9305129218751],[118.051871367188,39.9695241523438],[118.079210234375,39.9661232734375],[118.102345,39.979720685547],[118.12267703125,39.96776878125],[118.13560671875,39.9984438300782],[118.217345,40.063843],[118.291265898438,40.0591542792969],[118.30158328125,40.0077040839844],[118.328360625,40.0129958320313],[118.34341921875,39.9892763496094],[118.341236601563,39.9782228828126],[118.347345,39.9738430000001],[118.35412234375,39.9427614570313],[118.281060820313,39.8798146796876],[118.282769804688,39.8585366035157],[118.241612578125,39.8087807441407],[118.247345,39.803843],[118.240811796875,39.7886244941407],[118.259420195313,39.7607619453125],[118.213062773438,39.7724416328125],[118.203350859375,39.757837140625],[118.172374296875,39.74659690625],[118.167345,39.713843],[118.152799101563,39.6956764960938],[118.121846953125,39.69952659375],[118.112896757813,39.6782900214844],[118.071671171875,39.62925315625],[118.077345,39.5838430000001],[118.067535429688,39.5512685371095],[118.014586210938,39.5470143867188],[117.99271609375,39.5592153144532],[117.927345,39.573843],[117.892808867188,39.5893056464844],[117.798038359375,39.5999330878907],[117.774215117188,39.597505109375],[117.757345,39.603843],[117.76170046875,39.6194863105469],[117.800142851563,39.6491579414063],[117.84298953125,39.6581996894532],[117.854019804688,39.6724941230469],[117.850699492188,39.6949831367188],[117.883170195313,39.7082729316407],[117.880128203125,39.728843],[117.883824492188,39.753843],[117.881519804688,39.7694362617188],[117.91298953125,39.7781996894532],[117.927345,39.803843]]]]}},{"type":"Feature","properties":{"name":"古冶区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.58170046875,39.7270607734375],[118.556783476563,39.7017153144531],[118.522857695313,39.6967018867188],[118.503077421875,39.7223281074219],[118.444488554688,39.6983498359375],[118.43845828125,39.6575295234375],[118.468194609375,39.6619240546875],[118.4730871875,39.6288088203125],[118.467345,39.593843],[118.450704375,39.590483625],[118.437345,39.5838430000001],[118.419595976563,39.5960964179688],[118.40326296875,39.6197585273438],[118.39142703125,39.6279274726563],[118.381329375,39.6425551582032],[118.337345,39.653843],[118.34142703125,39.6697585273438],[118.380860625,39.6845119453125],[118.36142703125,39.6979274726563],[118.353116484375,39.7201369453125],[118.342345,39.7177223945313],[118.319859648438,39.7227626777344],[118.32572390625,39.7489150214844],[118.365094023438,39.7760964179687],[118.377345,39.793843],[118.427452421875,39.8166591621094],[118.44170046875,39.7981996894531],[118.46298953125,39.7894863105469],[118.48170046875,39.7781996894532],[118.530943632813,39.7644875312501],[118.54170046875,39.7381996894532],[118.58170046875,39.7270607734375]]]]}},{"type":"Feature","properties":{"name":"开平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.187345,39.7038430000001],[118.199537382813,39.7072658515625],[118.190767851563,39.7160353828126],[118.167345,39.713843],[118.172374296875,39.74659690625],[118.203350859375,39.757837140625],[118.213062773438,39.7724416328125],[118.259420195313,39.7607619453125],[118.240811796875,39.7886244941407],[118.247345,39.803843],[118.284190703125,39.7872072578126],[118.307345,39.7900868964844],[118.322799101563,39.7881642890625],[118.331890898438,39.7995217109375],[118.377345,39.793843],[118.365094023438,39.7760964179687],[118.32572390625,39.7489150214844],[118.319859648438,39.7227626777344],[118.342345,39.7177223945313],[118.353116484375,39.7201369453125],[118.36142703125,39.6979274726563],[118.380860625,39.6845119453125],[118.34142703125,39.6697585273438],[118.337345,39.653843],[118.294957304688,39.6486623359375],[118.28146609375,39.5692348457032],[118.237345,39.563843],[118.225094023438,39.6115895820313],[118.207345,39.6238430000001],[118.211246367188,39.6299404121094],[118.226344023438,39.6396059394532],[118.218131132813,39.6688430000001],[118.226011992188,39.696899640625],[118.19138796875,39.6871694160156],[118.187345,39.7038430000001]]]]}},{"type":"Feature","properties":{"name":"乐亭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.827345,39.153843],[118.841612578125,39.1432314277344],[118.814034453125,39.1207265449219],[118.827345,39.153843]]],[[[119.263922148438,39.3760353828126],[119.267345,39.3638430000001],[119.255152617188,39.3672658515625],[119.263922148438,39.3760353828126]]],[[[118.727345,39.4338430000001],[118.723922148438,39.4216506171876],[118.715152617188,39.4304201484375],[118.727345,39.4338430000001]]],[[[119.297345,39.423843],[119.297345,39.4338430000001],[119.310152617188,39.428843],[119.297345,39.423843]]],[[[119.297345,39.423843],[119.29271609375,39.4184706855469],[119.281539335938,39.408843],[119.300548125,39.3924684882813],[119.197345,39.383843],[119.193922148438,39.3960353828125],[119.185152617188,39.3872658515625],[119.197345,39.383843],[119.19298953125,39.3781996894531],[119.18170046875,39.3694863105469],[119.119478789063,39.2870497871094],[119.101832304688,39.2896572089844],[119.09298953125,39.2781996894532],[119.087345,39.273843],[119.083922148438,39.2860353828125],[119.075152617188,39.2772658515625],[119.087345,39.273843],[119.08326296875,39.2679274726563],[119.061051054688,39.2596169257813],[119.064503203125,39.2442116523437],[119.053013945313,39.2275722480469],[119.041842070313,39.2300771308594],[119.004249296875,39.2009426093751],[118.9656653125,39.1847365546875],[118.941900664063,39.190063703125],[118.90888796875,39.1685671210938],[118.83142703125,39.1597585273438],[118.827345,39.153843],[118.752857695313,39.1375966621094],[118.732345,39.1392446113282],[118.717345,39.1380397773437],[118.693526640625,39.1399538398438],[118.687345,39.1738430000001],[118.690885039063,39.2103029609375],[118.704581328125,39.2284133125],[118.69822390625,39.2438430000001],[118.7105871875,39.273843],[118.69654421875,39.3079213691406],[118.713804960938,39.3173830390625],[118.717345,39.333843],[118.722808867188,39.3383803535157],[118.741881132813,39.3666957832031],[118.711373320313,39.4090859199219],[118.7414465625,39.4221279121094],[118.727345,39.4338430000001],[118.731793242188,39.4493959785156],[118.747076445313,39.4616347480469],[118.79455203125,39.443384015625],[118.82963015625,39.4640041328125],[118.807906523438,39.4814003730469],[118.7820325,39.4781825996094],[118.772896757813,39.4822743964844],[118.8040246875,39.5072011542969],[118.857345,39.573843],[118.8919153125,39.548040998047],[118.924810820313,39.5529018378907],[118.973170195313,39.5394362617188],[118.970167265625,39.5191164375001],[119.00588015625,39.4977577949219],[119.000924101563,39.4642250800782],[119.042735625,39.4580458808595],[119.065889921875,39.4720131660156],[119.122345,39.4636708808594],[119.16263796875,39.4696254707031],[119.19170046875,39.4581996894531],[119.22298953125,39.4494863105469],[119.25170046875,39.4281996894532],[119.277345,39.423843],[119.287345,39.423843],[119.297345,39.423843]]]]}},{"type":"Feature","properties":{"name":"滦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.347345,39.9738430000001],[118.387047148438,39.9673207832032],[118.410767851563,39.9708266425782],[118.43170046875,39.9581996894531],[118.447345,39.953843],[118.460299101563,39.943843],[118.440865507813,39.9288430000001],[118.455811796875,39.9173073554688],[118.449429960938,39.8741005683594],[118.466954375,39.8513967109375],[118.527642851563,39.8603652167969],[118.61172,39.8465541816406],[118.627838164063,39.8674379707031],[118.651832304688,39.8709841132813],[118.668424101563,39.8494863105469],[118.68298953125,39.8581996894532],[118.691773710938,39.8796657539063],[118.713433867188,39.8764650703125],[118.710518828125,39.8962026191407],[118.754327421875,39.9316091132813],[118.7886340625,39.9051308417969],[118.81041140625,39.8769118476563],[118.827345,39.863843],[118.823985625,39.847202375],[118.807432890625,39.81390159375],[118.815391875,39.7976076484375],[118.789298125,39.7900783515625],[118.794796171875,39.7788283515625],[118.787345,39.763843],[118.768033476563,39.7588869453126],[118.7855871875,39.7022585273438],[118.81326296875,39.6597585273438],[118.817345,39.643843],[118.778609648438,39.6388869453126],[118.7342590625,39.6134828925782],[118.712589140625,39.6395705390625],[118.67834109375,39.6267031074219],[118.643531523438,39.6302504707032],[118.622808867188,39.6183803535157],[118.517960234375,39.6066225410157],[118.502808867188,39.5883803535157],[118.484508085938,39.5731801582032],[118.467345,39.593843],[118.4730871875,39.6288088203125],[118.468194609375,39.6619240546875],[118.43845828125,39.6575295234375],[118.444488554688,39.6983498359375],[118.503077421875,39.7223281074219],[118.522857695313,39.6967018867188],[118.556783476563,39.7017153144531],[118.58170046875,39.7270607734375],[118.54170046875,39.7381996894532],[118.530943632813,39.7644875312501],[118.48170046875,39.7781996894532],[118.46298953125,39.7894863105469],[118.44170046875,39.7981996894531],[118.427452421875,39.8166591621094],[118.377345,39.793843],[118.331890898438,39.7995217109375],[118.322799101563,39.7881642890625],[118.307345,39.7900868964844],[118.284190703125,39.7872072578126],[118.247345,39.803843],[118.241612578125,39.8087807441407],[118.282769804688,39.8585366035157],[118.281060820313,39.8798146796876],[118.35412234375,39.9427614570313],[118.347345,39.9738430000001]]]]}},{"type":"Feature","properties":{"name":"迁安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.73298953125,40.2094863105469],[118.74490359375,40.1940492988281],[118.797086210938,40.2017604804687],[118.81298953125,40.1894863105469],[118.823883085938,40.1753749824219],[118.860767851563,40.1808266425781],[118.88170046875,40.1681996894532],[118.917345,40.153843],[118.911143828125,40.1286025214844],[118.92392703125,40.0981764960938],[118.899176054688,40.0889150214844],[118.860474882813,40.0621938300782],[118.863468046875,40.0488430000001],[118.859454375,40.0309572578126],[118.88142703125,39.9972145820313],[118.87326296875,39.9379274726562],[118.86142703125,39.9297585273438],[118.841827421875,39.873843],[118.827345,39.863843],[118.81041140625,39.8769118476563],[118.7886340625,39.9051308417969],[118.754327421875,39.9316091132813],[118.710518828125,39.8962026191407],[118.713433867188,39.8764650703125],[118.691773710938,39.8796657539063],[118.68298953125,39.8581996894532],[118.668424101563,39.8494863105469],[118.651832304688,39.8709841132813],[118.627838164063,39.8674379707031],[118.61172,39.8465541816406],[118.527642851563,39.8603652167969],[118.466954375,39.8513967109375],[118.449429960938,39.8741005683594],[118.455811796875,39.9173073554688],[118.440865507813,39.9288430000001],[118.460299101563,39.943843],[118.447345,39.953843],[118.45310671875,39.9787001777344],[118.450128203125,39.998843],[118.45375125,40.0233498359376],[118.488492460938,40.0501650214844],[118.521798125,40.1096620917969],[118.532345,40.1081044746094],[118.544405546875,40.1098867011719],[118.540621367188,40.1354982734376],[118.583375273438,40.1684987617188],[118.571314726563,40.1991872382813],[118.58968875,40.2133718085938],[118.617345,40.253843],[118.657921171875,40.242544171875],[118.695343046875,40.2199697089844],[118.73298953125,40.2094863105469]]]]}},{"type":"Feature","properties":{"name":"迁西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.267139921875,40.4316091132812],[118.3024621875,40.418032453125],[118.327222929688,40.4325893378906],[118.362345,40.4282216621094],[118.38095828125,40.4305361152344],[118.404581328125,40.4166493964845],[118.513970976563,40.4030434394532],[118.546763945313,40.4223171210938],[118.56334109375,40.4090419746094],[118.550650664063,40.38745628125],[118.553023710938,40.3683901191406],[118.534830351563,40.3538210273438],[118.529405546875,40.3102016425782],[118.542896757813,40.2993959785157],[118.551793242188,40.2882900214844],[118.567345,40.283843],[118.570704375,40.267202375],[118.603985625,40.260483625],[118.617345,40.253843],[118.58968875,40.2133718085938],[118.571314726563,40.1991872382813],[118.583375273438,40.1684987617188],[118.540621367188,40.1354982734376],[118.544405546875,40.1098867011719],[118.532345,40.1081044746094],[118.521798125,40.1096620917969],[118.488492460938,40.0501650214844],[118.45375125,40.0233498359376],[118.450128203125,39.998843],[118.45310671875,39.9787001777344],[118.447345,39.953843],[118.43170046875,39.9581996894531],[118.410767851563,39.9708266425782],[118.387047148438,39.9673207832032],[118.347345,39.9738430000001],[118.341236601563,39.9782228828126],[118.34341921875,39.9892763496094],[118.328360625,40.0129958320313],[118.30158328125,40.0077040839844],[118.291265898438,40.0591542792969],[118.217345,40.063843],[118.209830351563,40.0976003242188],[118.2231653125,40.1086782050781],[118.20818484375,40.1348403144532],[118.163267851563,40.1721498847656],[118.182808867188,40.1883803535157],[118.191881132813,40.2117678046875],[118.151475859375,40.2453298164063],[118.153780546875,40.2679506660157],[118.131588164063,40.2987905097656],[118.14310671875,40.3189015937501],[118.117345,40.3538430000001],[118.130704375,40.380483625],[118.143985625,40.387202375],[118.150704375,40.420483625],[118.179771757813,40.428872296875],[118.187345,40.443843],[118.212896757813,40.4482900214844],[118.24416140625,40.4603066230469],[118.267139921875,40.4316091132812]]]]}},{"type":"Feature","properties":{"name":"玉田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.927345,39.803843],[117.923922148438,39.8160353828125],[117.915152617188,39.8072658515625],[117.91298953125,39.7781996894532],[117.881519804688,39.7694362617188],[117.883824492188,39.753843],[117.880128203125,39.728843],[117.883170195313,39.7082729316407],[117.850699492188,39.6949831367188],[117.854019804688,39.6724941230469],[117.84298953125,39.6581996894532],[117.800142851563,39.6491579414063],[117.76170046875,39.6194863105469],[117.757345,39.603843],[117.7437121875,39.5774745917969],[117.727022734375,39.5679579902344],[117.736676054688,39.5423598457032],[117.704996367188,39.5304201484376],[117.6937121875,39.5502114082032],[117.687345,39.5538430000001],[117.693155546875,39.5689589667969],[117.677183867188,39.5961293769532],[117.657345,39.5713552070313],[117.642896757813,39.5893959785157],[117.621129179688,39.5985683417969],[117.658375273438,39.6451406074219],[117.639327421875,39.6946987128907],[117.579600859375,39.7117751289063],[117.5841028125,39.7479946113282],[117.537345,39.753843],[117.542882109375,39.7685781074219],[117.541803007813,39.779165265625],[117.555933867188,39.803843],[117.541881132813,39.8283803535156],[117.532808867188,39.8493056464844],[117.521881132813,39.8583803535156],[117.512808867188,39.8893056464844],[117.5015246875,39.8986782050782],[117.51375125,39.9200307441406],[117.511798125,39.9391909003907],[117.533780546875,39.9697353339844],[117.531788359375,39.9892885566407],[117.5801965625,39.9983803535157],[117.6220715625,39.9682448554688],[117.702608671875,39.9831386542969],[117.76545046875,39.9595241523438],[117.777345,39.9738430000001],[117.813111601563,39.9826284003907],[117.891329375,39.9625551582031],[117.90142703125,39.9479274726563],[117.91326296875,39.9397585273438],[117.917345,39.923843],[117.905440703125,39.9162233710938],[117.925870390625,39.886391828125],[117.913580351563,39.8426552558594],[117.933443632813,39.8299404121094],[117.941246367188,39.8177455878907],[117.956221953125,39.8081618476563],[117.927345,39.803843]]]]}},{"type":"Feature","properties":{"name":"遵化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.131588164063,40.2987905097656],[118.153780546875,40.2679506660157],[118.151475859375,40.2453298164063],[118.191881132813,40.2117678046875],[118.182808867188,40.1883803535157],[118.163267851563,40.1721498847656],[118.20818484375,40.1348403144532],[118.2231653125,40.1086782050781],[118.209830351563,40.0976003242188],[118.217345,40.063843],[118.13560671875,39.9984438300782],[118.12267703125,39.96776878125],[118.102345,39.979720685547],[118.079210234375,39.9661232734375],[118.051871367188,39.9695241523438],[118.028175078125,39.9305129218751],[117.9351965625,39.9169814277344],[117.917345,39.923843],[117.91326296875,39.9397585273438],[117.90142703125,39.9479274726563],[117.891329375,39.9625551582031],[117.813111601563,39.9826284003907],[117.777345,39.9738430000001],[117.784483671875,39.9928456855469],[117.78158328125,40.0213137031251],[117.742447539063,40.0173244453125],[117.732808867188,40.0353700996094],[117.7714465625,40.0521279121094],[117.751881132813,40.0683803535157],[117.742735625,40.0793923164063],[117.732081328125,40.0783058906251],[117.700474882813,40.090180890625],[117.677345,40.0878237128907],[117.641090117188,40.09151878125],[117.643800078125,40.1181154609376],[117.600386992188,40.1701723457032],[117.575050078125,40.1675893378906],[117.567345,40.1938430000001],[117.646783476563,40.2037795234376],[117.661851835938,40.2395436835938],[117.742686796875,40.2281642890625],[117.761793242188,40.2393959785157],[117.782896757813,40.2482900214844],[117.801983671875,40.2595095039063],[117.812418242188,40.2582118964844],[117.882271757813,40.2694741035157],[117.892799101563,40.2681642890625],[117.906261015625,40.2849770332031],[117.942345,40.2894643378907],[117.953917265625,40.2880251289062],[118.032095976563,40.3016310859375],[118.061632109375,40.3252834296876],[118.071793242188,40.3493959785157],[118.117345,40.3538430000001],[118.14310671875,40.3189015937501],[118.131588164063,40.2987905097656]]]]}},{"type":"Feature","properties":{"name":"丰南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.137345,39.193843],[118.147345,39.193843],[118.157345,39.1738430000001],[118.147345,39.1738430000001],[118.137345,39.1738430000001],[118.137345,39.193843]]],[[[118.137345,39.193843],[118.082896757813,39.2093959785157],[118.027345,39.223843],[118.032061796875,39.2291237617188],[118.061221953125,39.2425075507813],[118.032061796875,39.2685622382812],[118.022613554688,39.2891567207032],[117.993678007813,39.2874330878907],[117.962628203125,39.3091237617188],[117.902061796875,39.3185622382813],[117.882628203125,39.3291237617188],[117.860494414063,39.3385622382813],[117.847345,39.3238430000001],[117.8354309375,39.3298708320313],[117.847345,39.3538430000001],[117.859537382813,39.3572658515625],[117.850767851563,39.3660353828125],[117.847345,39.3538430000001],[117.801519804688,39.3580178046875],[117.793170195313,39.3674648261719],[117.841026640625,39.3800917792969],[117.855011015625,39.3773281074219],[117.871519804688,39.4596681953125],[117.8939465625,39.4757411933594],[117.889761992188,39.4969020820313],[117.90341921875,39.5184096503907],[117.900553007813,39.5329140449219],[117.927345,39.573843],[117.99271609375,39.5592153144532],[118.014586210938,39.5470143867188],[118.067535429688,39.5512685371095],[118.077345,39.5838430000001],[118.117345,39.5838430000001],[118.128409453125,39.5700283027344],[118.219923125,39.5571450019532],[118.237345,39.563843],[118.28146609375,39.5692348457032],[118.294957304688,39.6486623359375],[118.337345,39.653843],[118.381329375,39.6425551582032],[118.39142703125,39.6279274726563],[118.40326296875,39.6197585273438],[118.419595976563,39.5960964179688],[118.437345,39.5838430000001],[118.415811796875,39.5303774238282],[118.401529570313,39.5193544746094],[118.403082304688,39.5088430000001],[118.401573515625,39.4986318183594],[118.415792265625,39.4498757148438],[118.381104765625,39.4291298652344],[118.397345,39.4038430000001],[118.391158476563,39.4000307441407],[118.3798840625,39.3817372871094],[118.390347929688,39.3481557441407],[118.397345,39.343843],[118.397345,39.333843],[118.369058867188,39.3232143378907],[118.322203398438,39.3569374824219],[118.312808867188,39.3993056464844],[118.291793242188,39.4084194160156],[118.2928528125,39.418843],[118.2918371875,39.428843],[118.293941679688,39.4495156074219],[118.267345,39.4468044257813],[118.232735625,39.4503322578126],[118.202808867188,39.4142250800782],[118.239283476563,39.3505397773438],[118.253370390625,39.3388393378907],[118.229420195313,39.3193056464844],[118.212808867188,39.3393056464844],[118.196182890625,39.3531142402344],[118.162808867188,39.3442250800782],[118.182886992188,39.309165265625],[118.173673125,39.218755109375],[118.151881132813,39.2093056464844],[118.147345,39.2038430000001],[118.137345,39.2038430000001],[118.137345,39.193843]]]]}},{"type":"Feature","properties":{"name":"滦南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.209713164063,39.1121034980469],[118.266959257813,39.0742726875],[118.292789335938,39.0800637031251],[118.31142703125,39.0679274726563],[118.36326296875,39.0597585273438],[118.377345,39.0538430000001],[118.36931765625,39.0438210273438],[118.332345,39.0220864082031],[118.302896757813,39.0393959785157],[118.235650664063,39.0491835761719],[118.2028528125,39.0754470039062],[118.171793242188,39.1282900214844],[118.157345,39.163843],[118.157345,39.1738430000001],[118.190948515625,39.1685463691406],[118.215318632813,39.13710471875],[118.209713164063,39.1121034980469]]],[[[118.637345,39.263843],[118.660343046875,39.259790265625],[118.642779570313,39.2511464667969],[118.637345,39.263843]]],[[[118.637345,39.263843],[118.627345,39.263843],[118.627345,39.273843],[118.637345,39.273843],[118.637345,39.263843]]],[[[118.727345,39.4338430000001],[118.715152617188,39.4304201484375],[118.723922148438,39.4216506171876],[118.7414465625,39.4221279121094],[118.711373320313,39.4090859199219],[118.741881132813,39.3666957832031],[118.722808867188,39.3383803535157],[118.717345,39.333843],[118.637564726563,39.3257045722656],[118.617457304688,39.3023635078125],[118.632926054688,39.2890358710938],[118.627345,39.273843],[118.47427859375,39.2919496894531],[118.462281523438,39.3298317695313],[118.414224882813,39.3279262519532],[118.397345,39.333843],[118.397345,39.343843],[118.42326296875,39.3579274726563],[118.44142703125,39.3742812324219],[118.397345,39.4038430000001],[118.381104765625,39.4291298652344],[118.415792265625,39.4498757148438],[118.401573515625,39.4986318183594],[118.403082304688,39.5088430000001],[118.401529570313,39.5193544746094],[118.415811796875,39.5303774238282],[118.437345,39.5838430000001],[118.450704375,39.590483625],[118.467345,39.593843],[118.484508085938,39.5731801582032],[118.502808867188,39.5883803535157],[118.517960234375,39.6066225410157],[118.622808867188,39.6183803535157],[118.643531523438,39.6302504707032],[118.67834109375,39.6267031074219],[118.712589140625,39.6395705390625],[118.7342590625,39.6134828925782],[118.778609648438,39.6388869453126],[118.817345,39.643843],[118.844815703125,39.6248744941407],[118.84115359375,39.6085219550782],[118.857345,39.573843],[118.8040246875,39.5072011542969],[118.772896757813,39.4822743964844],[118.7820325,39.4781825996094],[118.807906523438,39.4814003730469],[118.82963015625,39.4640041328125],[118.79455203125,39.443384015625],[118.747076445313,39.4616347480469],[118.731793242188,39.4493959785156],[118.727345,39.4338430000001]]]]}},{"type":"Feature","properties":{"name":"曹妃甸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.451910429688,38.9665395332031],[118.457345,38.953843],[118.434346953125,38.9578957343751],[118.451910429688,38.9665395332031]]],[[[118.157345,39.1738430000001],[118.157345,39.163843],[118.147345,39.163843],[118.147345,39.1738430000001],[118.157345,39.1738430000001]]],[[[118.42326296875,39.3579274726563],[118.397345,39.343843],[118.390347929688,39.3481557441407],[118.3798840625,39.3817372871094],[118.391158476563,39.4000307441407],[118.397345,39.4038430000001],[118.44142703125,39.3742812324219],[118.42326296875,39.3579274726563]]],[[[118.627345,39.273843],[118.627345,39.263843],[118.637345,39.263843],[118.642779570313,39.2511464667969],[118.660343046875,39.259790265625],[118.637345,39.263843],[118.637345,39.273843],[118.632926054688,39.2890358710938],[118.617457304688,39.3023635078125],[118.637564726563,39.3257045722656],[118.717345,39.333843],[118.713804960938,39.3173830390625],[118.69654421875,39.3079213691406],[118.7105871875,39.273843],[118.69822390625,39.2438430000001],[118.704581328125,39.2284133125],[118.690885039063,39.2103029609375],[118.687345,39.1738430000001],[118.666402617188,39.1665016914063],[118.602203398438,39.1690468574219],[118.539986601563,39.1527443671876],[118.552550078125,39.1290065742188],[118.551988554688,39.1148110175782],[118.502139921875,39.0990285468751],[118.50295046875,39.0786208320313],[118.471510039063,39.0798671699219],[118.487198515625,39.0502211738281],[118.541685820313,39.0329701972657],[118.511470976563,39.0187111640625],[118.561065703125,38.9466371894531],[118.501412382813,38.9090334296875],[118.4758215625,38.9632631660156],[118.462535429688,39.0190334296875],[118.452154570313,39.0286525703126],[118.447345,39.033843],[118.467345,39.033843],[118.467345,39.043843],[118.479537382813,39.0472658515625],[118.470767851563,39.0560353828125],[118.467345,39.043843],[118.447345,39.043843],[118.447345,39.033843],[118.419049101563,39.0268923164063],[118.40326296875,39.0497585273438],[118.377345,39.0538430000001],[118.36326296875,39.0597585273438],[118.31142703125,39.0679274726563],[118.292789335938,39.0800637031251],[118.266959257813,39.0742726875],[118.209713164063,39.1121034980469],[118.215318632813,39.13710471875],[118.190948515625,39.1685463691406],[118.157345,39.1738430000001],[118.147345,39.193843],[118.147345,39.2038430000001],[118.151881132813,39.2093056464844],[118.173673125,39.218755109375],[118.182886992188,39.309165265625],[118.162808867188,39.3442250800782],[118.196182890625,39.3531142402344],[118.212808867188,39.3393056464844],[118.229420195313,39.3193056464844],[118.253370390625,39.3388393378907],[118.239283476563,39.3505397773438],[118.202808867188,39.4142250800782],[118.232735625,39.4503322578126],[118.267345,39.4468044257813],[118.293941679688,39.4495156074219],[118.2918371875,39.428843],[118.2928528125,39.418843],[118.291793242188,39.4084194160156],[118.312808867188,39.3993056464844],[118.322203398438,39.3569374824219],[118.369058867188,39.3232143378907],[118.397345,39.333843],[118.414224882813,39.3279262519532],[118.462281523438,39.3298317695313],[118.47427859375,39.2919496894531],[118.627345,39.273843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北戴河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.527345,39.883843],[119.5188684375,39.849341046875],[119.525836210938,39.8182680488281],[119.46142703125,39.8097585273438],[119.437345,39.803843],[119.40599734375,39.8086562324219],[119.413604765625,39.838843],[119.403922148438,39.8772634101563],[119.443062773438,39.8674025703125],[119.451339140625,39.879848859375],[119.467345,39.883843],[119.4824621875,39.8602272773437],[119.511246367188,39.8799404121094],[119.527345,39.883843]]]]}},{"type":"Feature","properties":{"name":"昌黎县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.287345,39.4338430000001],[119.297345,39.4338430000001],[119.297345,39.423843],[119.287345,39.423843],[119.287345,39.4338430000001]]],[[[119.293922148438,39.4760353828125],[119.297345,39.463843],[119.285152617188,39.4672658515625],[119.293922148438,39.4760353828125]]],[[[119.247345,39.4738430000001],[119.235152617188,39.4704201484375],[119.243922148438,39.4616506171876],[119.267345,39.4738430000001],[119.267345,39.463843],[119.255152617188,39.4604201484375],[119.263922148438,39.4516506171876],[119.267345,39.463843],[119.295289335938,39.4498293281251],[119.287345,39.4338430000001],[119.277345,39.4338430000001],[119.273922148438,39.4460353828125],[119.265152617188,39.4372658515625],[119.277345,39.4338430000001],[119.277345,39.423843],[119.25170046875,39.4281996894532],[119.22298953125,39.4494863105469],[119.19170046875,39.4581996894531],[119.16263796875,39.4696254707031],[119.122345,39.4636708808594],[119.065889921875,39.4720131660156],[119.042735625,39.4580458808595],[119.000924101563,39.4642250800782],[119.00588015625,39.4977577949219],[118.970167265625,39.5191164375001],[118.973170195313,39.5394362617188],[118.924810820313,39.5529018378907],[118.8919153125,39.548040998047],[118.857345,39.573843],[118.84115359375,39.6085219550782],[118.844815703125,39.6248744941407],[118.817345,39.643843],[118.81326296875,39.6597585273438],[118.7855871875,39.7022585273438],[118.768033476563,39.7588869453126],[118.787345,39.763843],[118.83463015625,39.7260182929688],[118.862799101563,39.7295217109375],[118.873702421875,39.7159023261719],[118.922345,39.7219521308594],[118.965206328125,39.7166213203125],[118.995904570313,39.7295571113281],[119.011793242188,39.7493959785156],[119.089273710938,39.7661611152344],[119.111793242188,39.7793959785157],[119.127345,39.7838430000001],[119.162310820313,39.7895864082031],[119.181832304688,39.7867018867188],[119.198424101563,39.8081996894531],[119.2172278125,39.7969509101563],[119.238795195313,39.7690090156251],[119.27298953125,39.7594863105469],[119.313253203125,39.729634015625],[119.347345,39.723843],[119.33170046875,39.6894863105469],[119.30298953125,39.6181996894531],[119.257877226563,39.5212660957032],[119.25170046875,39.4794863105469],[119.247345,39.4738430000001]]]]}},{"type":"Feature","properties":{"name":"抚宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,40.2338430000001],[119.615152617188,40.2304201484375],[119.623922148438,40.2216506171876],[119.64205203125,40.2280605292969],[119.66111453125,40.2308779121094],[119.706485625,40.1972377753906],[119.740748320313,40.2023012519531],[119.756256132813,40.1353871894531],[119.74298953125,40.1181996894532],[119.737345,40.113843],[119.722359648438,40.1063942695313],[119.711353789063,40.1117690253907],[119.699771757813,40.088872296875],[119.670704375,40.080483625],[119.667345,40.063843],[119.58111453125,40.0591677070312],[119.582745390625,40.038843],[119.581734648438,40.0262404609375],[119.56197390625,40.0092153144532],[119.55271609375,39.9984706855469],[119.46287234375,39.9847805000001],[119.482769804688,39.9491213203125],[119.481734648438,39.9362404609376],[119.46000125,39.9175148750001],[119.467345,39.883843],[119.451339140625,39.879848859375],[119.443062773438,39.8674025703125],[119.403922148438,39.8772634101563],[119.413604765625,39.838843],[119.40599734375,39.8086562324219],[119.437345,39.803843],[119.43326296875,39.7979274726563],[119.42142703125,39.7897585273438],[119.41326296875,39.7779274726563],[119.359859648438,39.7419667792969],[119.347345,39.723843],[119.313253203125,39.729634015625],[119.27298953125,39.7594863105469],[119.238795195313,39.7690090156251],[119.2172278125,39.7969509101563],[119.198424101563,39.8081996894531],[119.181832304688,39.7867018867188],[119.162310820313,39.7895864082031],[119.127345,39.7838430000001],[119.133678007813,39.8014907050781],[119.13123171875,39.8424990058594],[119.102061796875,39.8685622382813],[119.092628203125,39.8791237617188],[119.0720325,39.8885768867188],[119.073389921875,39.9113747382813],[119.0926575,39.9285903144532],[119.091851835938,39.9421511054688],[119.06611453125,39.9895119453125],[119.141148710938,39.9850405097657],[119.111910429688,40.038843],[119.1226575,40.0586171699219],[119.122047148438,40.068843],[119.122652617188,40.0790016914063],[119.117345,40.103843],[119.15170046875,40.1294863105469],[119.18298953125,40.1381996894531],[119.20170046875,40.1494863105469],[119.26298953125,40.1581996894532],[119.288511992188,40.1735964179688],[119.330084257813,40.1565822578126],[119.345264921875,40.1194948554688],[119.376143828125,40.0794863105469],[119.482525664063,40.1046425605469],[119.50170046875,40.1294863105469],[119.51298953125,40.1381996894531],[119.529049101563,40.1774391914063],[119.553463164063,40.1962831855469],[119.550865507813,40.213843],[119.555299101563,40.243843],[119.5515246875,40.2693825507813],[119.5831653125,40.2883034492188],[119.580074492188,40.3092104316407],[119.607345,40.3138430000001],[119.610704375,40.307202375],[119.631090117188,40.2968898750001],[119.644976835938,40.2684511542969],[119.630704375,40.2504836250001],[119.627345,40.2338430000001]]]]}},{"type":"Feature","properties":{"name":"海港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.677750273438,39.9894167304688],[119.691539335938,39.9670351386719],[119.703428984375,39.9707387519532],[119.707345,39.943843],[119.65142703125,39.9297585273438],[119.602652617188,39.9076528144532],[119.573326445313,39.9142275214844],[119.527345,39.883843],[119.511246367188,39.8799404121094],[119.4824621875,39.8602272773437],[119.467345,39.883843],[119.46000125,39.9175148750001],[119.481734648438,39.9362404609376],[119.482769804688,39.9491213203125],[119.46287234375,39.9847805000001],[119.55271609375,39.9984706855469],[119.56197390625,40.0092153144532],[119.581734648438,40.0262404609375],[119.582745390625,40.038843],[119.58111453125,40.0591677070312],[119.667345,40.063843],[119.663531523438,40.0576552558594],[119.634156523438,40.039555890625],[119.62041140625,39.9977638984376],[119.677750273438,39.9894167304688]]]]}},{"type":"Feature","properties":{"name":"卢龙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.95834109375,40.1675746894531],[118.983702421875,40.1359023261719],[119.012799101563,40.1395217109375],[119.021793242188,40.1282900214844],[119.045904570313,40.1181288886719],[119.066578398438,40.0923110175781],[119.117345,40.103843],[119.122652617188,40.0790016914063],[119.122047148438,40.068843],[119.1226575,40.0586171699219],[119.111910429688,40.038843],[119.141148710938,39.9850405097657],[119.06611453125,39.9895119453125],[119.091851835938,39.9421511054688],[119.0926575,39.9285903144532],[119.073389921875,39.9113747382813],[119.0720325,39.8885768867188],[119.092628203125,39.8791237617188],[119.102061796875,39.8685622382813],[119.13123171875,39.8424990058594],[119.133678007813,39.8014907050781],[119.127345,39.7838430000001],[119.111793242188,39.7793959785157],[119.089273710938,39.7661611152344],[119.011793242188,39.7493959785156],[118.995904570313,39.7295571113281],[118.965206328125,39.7166213203125],[118.922345,39.7219521308594],[118.873702421875,39.7159023261719],[118.862799101563,39.7295217109375],[118.83463015625,39.7260182929688],[118.787345,39.763843],[118.794796171875,39.7788283515625],[118.789298125,39.7900783515625],[118.815391875,39.7976076484375],[118.807432890625,39.81390159375],[118.823985625,39.847202375],[118.827345,39.863843],[118.841827421875,39.873843],[118.86142703125,39.9297585273438],[118.87326296875,39.9379274726562],[118.88142703125,39.9972145820313],[118.859454375,40.0309572578126],[118.863468046875,40.0488430000001],[118.860474882813,40.0621938300782],[118.899176054688,40.0889150214844],[118.92392703125,40.0981764960938],[118.911143828125,40.1286025214844],[118.917345,40.153843],[118.942725859375,40.1480776191407],[118.95834109375,40.1675746894531]]]]}},{"type":"Feature","properties":{"name":"青龙满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.147345,40.6138430000001],[119.147345,40.603843],[119.237345,40.603843],[119.214136992188,40.5687233710938],[119.261900664063,40.537622296875],[119.272789335938,40.540063703125],[119.291900664063,40.527622296875],[119.312345,40.5322060371094],[119.332789335938,40.527622296875],[119.363975859375,40.5479274726562],[119.38326296875,40.5397585273438],[119.391842070313,40.5273305488281],[119.425548125,40.5414882636719],[119.472550078125,40.5309511542969],[119.501900664063,40.550063703125],[119.517345,40.5466017890625],[119.539112578125,40.5514821601563],[119.553858671875,40.528843],[119.54060671875,40.5084950996094],[119.55326296875,40.4997585273438],[119.565513945313,40.4820119453125],[119.58978640625,40.4652529121094],[119.593472929688,40.4488014960937],[119.587345,40.4238430000001],[119.581676054688,40.3784841132813],[119.593013945313,40.3592031074219],[119.590533476563,40.3392958808594],[119.602896757813,40.3293959785156],[119.607345,40.3138430000001],[119.580074492188,40.3092104316407],[119.5831653125,40.2883034492188],[119.5515246875,40.2693825507813],[119.555299101563,40.243843],[119.550865507813,40.213843],[119.553463164063,40.1962831855469],[119.529049101563,40.1774391914063],[119.51298953125,40.1381996894531],[119.50170046875,40.1294863105469],[119.482525664063,40.1046425605469],[119.376143828125,40.0794863105469],[119.345264921875,40.1194948554688],[119.330084257813,40.1565822578126],[119.288511992188,40.1735964179688],[119.26298953125,40.1581996894532],[119.20170046875,40.1494863105469],[119.18298953125,40.1381996894531],[119.15170046875,40.1294863105469],[119.117345,40.103843],[119.066578398438,40.0923110175781],[119.045904570313,40.1181288886719],[119.021793242188,40.1282900214844],[119.012799101563,40.1395217109375],[118.983702421875,40.1359023261719],[118.95834109375,40.1675746894531],[118.942725859375,40.1480776191407],[118.917345,40.153843],[118.88170046875,40.1681996894532],[118.860767851563,40.1808266425781],[118.823883085938,40.1753749824219],[118.81298953125,40.1894863105469],[118.797086210938,40.2017604804687],[118.74490359375,40.1940492988281],[118.73298953125,40.2094863105469],[118.695343046875,40.2199697089844],[118.657921171875,40.242544171875],[118.617345,40.253843],[118.603985625,40.260483625],[118.570704375,40.267202375],[118.567345,40.283843],[118.571881132813,40.2993056464844],[118.596636992188,40.3100405097656],[118.643116484375,40.3687685371094],[118.631881132813,40.3883803535157],[118.622808867188,40.4093056464844],[118.607965117188,40.4352211738282],[118.655045195313,40.4490370917969],[118.679107695313,40.47800315625],[118.697345,40.4798622871094],[118.764332304688,40.4730348945313],[118.782808867188,40.4883803535157],[118.7995715625,40.5270314765625],[118.822345,40.5293520332031],[118.84834109375,40.5267031074219],[118.884215117188,40.540180890625],[118.950650664063,40.5334096503906],[118.962745390625,40.5612990546876],[119.05814578125,40.6019753242188],[119.082345,40.5881154609375],[119.114464140625,40.6065102363282],[119.141881132813,40.6093056464844],[119.147345,40.6138430000001]]]]}},{"type":"Feature","properties":{"name":"山海关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.737345,40.113843],[119.741988554688,40.09226096875],[119.76478640625,40.0797646308594],[119.754263945313,40.0542348457031],[119.787345,40.0405995917969],[119.8135559375,40.0514028144532],[119.84966921875,40.0316078925782],[119.83654421875,39.9997646308594],[119.847345,39.993843],[119.84298953125,39.9881996894531],[119.81170046875,39.9794863105469],[119.7803528125,39.9562453437501],[119.707345,39.943843],[119.703428984375,39.9707387519532],[119.691539335938,39.9670351386719],[119.677750273438,39.9894167304688],[119.62041140625,39.9977638984376],[119.634156523438,40.039555890625],[119.663531523438,40.0576552558594],[119.667345,40.063843],[119.670704375,40.080483625],[119.699771757813,40.088872296875],[119.711353789063,40.1117690253907],[119.722359648438,40.1063942695313],[119.737345,40.113843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"肥乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.902686796875,36.6469203925782],[114.972345,36.6366262031251],[114.9962121875,36.6401540351563],[115.02298953125,36.6194863105469],[115.027345,36.6138430000001],[115.001920195313,36.5791408515625],[115.003526640625,36.5591664863281],[114.99197390625,36.5492153144532],[114.98271609375,36.5384706855469],[114.9666028125,36.5245864082032],[114.95271609375,36.5084706855469],[114.93197390625,36.4992153144531],[114.911104765625,36.48757346875],[114.847345,36.493843],[114.83978640625,36.5036367011719],[114.787345,36.4958876777344],[114.741256132813,36.5026992011719],[114.645025664063,36.4868910957031],[114.627345,36.493843],[114.613980742188,36.5011696601563],[114.637584257813,36.5323805976563],[114.619625273438,36.5700307441406],[114.637345,36.5738430000001],[114.652896757813,36.5782900214844],[114.663702421875,36.5917836738281],[114.692799101563,36.5881642890625],[114.701793242188,36.5993959785157],[114.713023710938,36.6083901191407],[114.711666289063,36.6192958808594],[114.725440703125,36.6303237128906],[114.74763796875,36.6275624824219],[114.801793242188,36.6593959785157],[114.832896757813,36.6682900214844],[114.837345,36.673843],[114.8886340625,36.6651308417969],[114.902686796875,36.6469203925782]]]]}},{"type":"Feature","properties":{"name":"峰峰矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.093170195313,36.5696681953125],[114.107345,36.5498903632813],[114.122034941406,36.5703884101563],[114.170423613281,36.5396681953125],[114.213170195313,36.5480178046875],[114.237345,36.5633657050782],[114.26216921875,36.5476064277344],[114.277345,36.553843],[114.282686796875,36.5086159492188],[114.262625761719,36.4906923652344],[114.272532988281,36.4779604316407],[114.301995878906,36.4797158027344],[114.3026575,36.4685903144532],[114.292064238281,36.4591237617188],[114.282625761719,36.4485622382812],[114.231612578125,36.4161183906251],[114.2326575,36.3986061835938],[114.212064238281,36.3691237617188],[114.198521757813,36.3396181464844],[114.146883574219,36.3676784492188],[114.122345,36.3691408515625],[114.109881621094,36.3683986640626],[114.088726835938,36.5041530585938],[114.057345,36.513843],[114.065694609375,36.5254933906251],[114.083455839844,36.5382228828125],[114.075592070313,36.5780178046875],[114.093170195313,36.5696681953125]]]]}},{"type":"Feature","properties":{"name":"成安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.757345,36.303843],[114.757345,36.283843],[114.747345,36.283843],[114.747345,36.303843],[114.757345,36.303843]]],[[[114.507345,36.393843],[114.503922148438,36.3816506171875],[114.495152617188,36.3904201484375],[114.507345,36.393843]]],[[[114.757345,36.303843],[114.753804960938,36.3203029609375],[114.720885039063,36.3273830390625],[114.709073515625,36.3489333320313],[114.66806765625,36.3673830390625],[114.632345,36.3526601386719],[114.607345,36.3629653144531],[114.581710234375,36.3523976875001],[114.573619414063,36.4014284492188],[114.552345,36.3926601386719],[114.52687625,36.4031594062501],[114.507345,36.393843],[114.507345,36.403843],[114.487345,36.403843],[114.478521757813,36.4099355292969],[114.50326296875,36.4479274726563],[114.507345,36.493843],[114.552345,36.4882204414063],[114.570181914063,36.4904396796875],[114.611807890625,36.4744399238282],[114.627345,36.493843],[114.645025664063,36.4868910957031],[114.741256132813,36.5026992011719],[114.787345,36.4958876777344],[114.83978640625,36.5036367011719],[114.847345,36.493843],[114.85326296875,36.4797585273437],[114.86142703125,36.4379274726563],[114.89142703125,36.4267018867188],[114.874166289063,36.4081606269531],[114.81888796875,36.3939748359375],[114.827345,36.373843],[114.821158476563,36.3700307441407],[114.807135039063,36.3288832832032],[114.781158476563,36.3200307441407],[114.773531523438,36.3076552558594],[114.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"磁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.373531523438,36.5500307441407],[114.398033476563,36.5328273750001],[114.439928007813,36.5458779121094],[114.451539335938,36.5270351386719],[114.485636015625,36.5376552558594],[114.514488554688,36.509790265625],[114.507345,36.493843],[114.50326296875,36.4479274726563],[114.478521757813,36.4099355292969],[114.487345,36.403843],[114.481217070313,36.3799697089844],[114.440870390625,36.3696157050782],[114.421429472656,36.3397585273438],[114.413260527344,36.3179274726562],[114.401429472656,36.3097585273438],[114.383260527344,36.2779274726562],[114.337345,36.253843],[114.32263796875,36.2480605292969],[114.312345,36.2495815253907],[114.295496855469,36.2470925117188],[114.252554960938,36.2596132636719],[114.233922148438,36.2568593574219],[114.210553007813,36.2709560371094],[114.19298953125,36.2481996894532],[114.178426542969,36.2394863105469],[114.16298953125,36.2594863105469],[114.136214628906,36.2801540351563],[114.073761015625,36.2709242988282],[114.037620878906,36.2927236152344],[114.053140898438,36.3184523750001],[114.051302519531,36.3309059882813],[114.021253691406,36.3264650703126],[114.024945097656,36.3514443183594],[114.002310820313,36.3480995917969],[113.967345,36.3538430000001],[113.962899199219,36.3593959785156],[113.901790800781,36.3682900214844],[113.892899199219,36.3832692695312],[113.952899199219,36.4582900214844],[113.967345,36.483843],[113.991429472656,36.4997585273438],[114.043260527344,36.5079274726562],[114.057345,36.513843],[114.088726835938,36.5041530585938],[114.109881621094,36.3683986640626],[114.122345,36.3691408515625],[114.146883574219,36.3676784492188],[114.198521757813,36.3396181464844],[114.212064238281,36.3691237617188],[114.2326575,36.3986061835938],[114.231612578125,36.4161183906251],[114.282625761719,36.4485622382812],[114.292064238281,36.4591237617188],[114.3026575,36.4685903144532],[114.301995878906,36.4797158027344],[114.272532988281,36.4779604316407],[114.262625761719,36.4906923652344],[114.282686796875,36.5086159492188],[114.277345,36.553843],[114.285269804688,36.5578530097657],[114.277484160156,36.5737953925782],[114.297345,36.5838430000001],[114.33763796875,36.5795986152344],[114.351158476563,36.5576552558594],[114.373531523438,36.5500307441407]],[[114.392806425781,36.4859181953125],[114.412806425781,36.4693056464844],[114.421883574219,36.4583803535157],[114.427345,36.453843],[114.442886992188,36.4785097480469],[114.440323515625,36.5036525703126],[114.392806425781,36.4859181953125]]]]}},{"type":"Feature","properties":{"name":"丛台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.497345,36.663843],[114.51326296875,36.6397585273438],[114.517345,36.603843],[114.467345,36.603843],[114.47142703125,36.6297585273437],[114.477345,36.6538430000001],[114.477345,36.663843],[114.497345,36.663843]]],[[[114.497345,36.663843],[114.500767851563,36.6760353828126],[114.509537382813,36.6672658515625],[114.497345,36.663843]]]]}},{"type":"Feature","properties":{"name":"大名县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.20326296875,36.4597585273438],[115.224459257813,36.4459548164063],[115.264249296875,36.4548744941407],[115.277345,36.473843],[115.3067590625,36.4535341621094],[115.2979309375,36.4141518378906],[115.33326296875,36.3897585273438],[115.337345,36.3838430000001],[115.34142703125,36.3579274726563],[115.357496367188,36.3468325019532],[115.348443632813,36.3064333320313],[115.411651640625,36.3260268378906],[115.423204375,36.2810048652344],[115.453873320313,36.2695290351563],[115.473565703125,36.2392897773438],[115.468980742188,36.218843],[115.473468046875,36.1988430000001],[115.4700403125,36.1835732246094],[115.477345,36.1538430000001],[115.451793242188,36.1707289863281],[115.44326296875,36.1479274726563],[115.414620390625,36.137212140625],[115.402345,36.1399636054688],[115.382271757813,36.13546409375],[115.358678007813,36.1012868476563],[115.323975859375,36.0797585273438],[115.28970828125,36.1020729804688],[115.295709257813,36.128843],[115.27142703125,36.1379274726563],[115.24154421875,36.1929177070312],[115.192476835938,36.2112770820313],[115.18326296875,36.1979274726563],[115.1570715625,36.1897585273438],[115.14326296875,36.2097585273438],[115.117345,36.213843],[115.111832304688,36.2209841132813],[115.084088164063,36.2168837714844],[115.070494414063,36.2813124824219],[115.073824492188,36.303843],[115.07093875,36.3233498359376],[115.05170046875,36.3381996894531],[115.01298953125,36.3894863105469],[114.98170046875,36.4081996894531],[114.967345,36.433843],[115.001846953125,36.4423171210938],[115.028375273438,36.4363698554688],[115.06798953125,36.4937429023438],[115.107345,36.5038430000001],[115.11142703125,36.4979274726563],[115.153756132813,36.4694264960938],[115.20326296875,36.4597585273438]]]]}},{"type":"Feature","properties":{"name":"复兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.467345,36.603843],[114.457345,36.563843],[114.40271609375,36.5738075996095],[114.41197390625,36.5992153144531],[114.422772246094,36.6085195136719],[114.421942167969,36.6188430000001],[114.422747832031,36.628843],[114.421197539063,36.6481154609376],[114.477345,36.6538430000001],[114.47142703125,36.6297585273437],[114.467345,36.603843]]]]}},{"type":"Feature","properties":{"name":"馆陶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.403170195313,36.6680178046875],[115.385694609375,36.655493390625],[115.368995390625,36.6321926093751],[115.335186796875,36.6079616523438],[115.323170195313,36.5480178046875],[115.30947390625,36.5264455390626],[115.2916028125,36.5299782539063],[115.283170195313,36.4980178046875],[115.27099734375,36.48929221875],[115.277345,36.473843],[115.264249296875,36.4548744941407],[115.224459257813,36.4459548164063],[115.20326296875,36.4597585273438],[115.153756132813,36.4694264960938],[115.11142703125,36.4979274726563],[115.107345,36.5038430000001],[115.113531523438,36.5076552558594],[115.121158476563,36.5200307441407],[115.16318484375,36.5343520332031],[115.167345,36.5738430000001],[115.193980742188,36.5883180976563],[115.21408328125,36.6191909003907],[115.1994934375,36.629262921875],[115.217345,36.633843],[115.2339465625,36.6457411933594],[115.2307434375,36.6619448066407],[115.263785429688,36.6856264472657],[115.2975403125,36.6641970039063],[115.311519804688,36.6736830878907],[115.283394804688,36.6938430000001],[115.315675078125,36.7169826484375],[115.3077746875,36.7569826484375],[115.323170195313,36.7680178046875],[115.327345,36.773843],[115.338785429688,36.786645734375],[115.372061796875,36.7685622382813],[115.467345,36.753843],[115.46271609375,36.7384706855469],[115.437345,36.6938430000001],[115.411519804688,36.6796681953125],[115.403170195313,36.6680178046875]]]]}},{"type":"Feature","properties":{"name":"广平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.137345,36.603843],[115.12922,36.5875014472656],[115.163985625,36.580483625],[115.167345,36.5738430000001],[115.16318484375,36.5343520332031],[115.121158476563,36.5200307441407],[115.113531523438,36.5076552558594],[115.107345,36.5038430000001],[115.06798953125,36.4937429023438],[115.028375273438,36.4363698554688],[115.001846953125,36.4423171210938],[114.967345,36.433843],[114.963131132813,36.4406801582032],[114.90041140625,36.4200502753907],[114.907642851563,36.3968325019531],[114.895636015625,36.3700307441407],[114.85033328125,36.3841408515625],[114.827345,36.373843],[114.81888796875,36.3939748359375],[114.874166289063,36.4081606269531],[114.89142703125,36.4267018867188],[114.86142703125,36.4379274726563],[114.85326296875,36.4797585273437],[114.847345,36.493843],[114.911104765625,36.48757346875],[114.93197390625,36.4992153144531],[114.95271609375,36.5084706855469],[114.9666028125,36.5245864082032],[114.98271609375,36.5384706855469],[114.99197390625,36.5492153144532],[115.003526640625,36.5591664863281],[115.001920195313,36.5791408515625],[115.027345,36.6138430000001],[115.068531523438,36.5952455878907],[115.137345,36.603843]]],[[[115.137345,36.603843],[115.142906523438,36.6168398261719],[115.160069609375,36.6078481269532],[115.137345,36.603843]]]]}},{"type":"Feature","properties":{"name":"邯郸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,36.723843],[114.342938261719,36.7037587714844],[114.387345,36.7103212714844],[114.412345,36.7066262031251],[114.432345,36.7095815253906],[114.442857695313,36.7080287910157],[114.453883085938,36.7223110175782],[114.497345,36.7158876777344],[114.544810820313,36.7229018378907],[114.594761992188,36.7089931464844],[114.635811796875,36.6773073554688],[114.631607695313,36.648843],[114.633082304688,36.638843],[114.630045195313,36.6182802558594],[114.637345,36.5738430000001],[114.619625273438,36.5700307441406],[114.637584257813,36.5323805976563],[114.613980742188,36.5011696601563],[114.627345,36.493843],[114.611807890625,36.4744399238282],[114.570181914063,36.4904396796875],[114.552345,36.4882204414063],[114.507345,36.493843],[114.514488554688,36.509790265625],[114.485636015625,36.5376552558594],[114.451539335938,36.5270351386719],[114.439928007813,36.5458779121094],[114.398033476563,36.5328273750001],[114.373531523438,36.5500307441407],[114.351158476563,36.5576552558594],[114.33763796875,36.5795986152344],[114.297345,36.5838430000001],[114.29062625,36.59712425],[114.263985625,36.6106008125],[114.271522246094,36.6216872382813],[114.286031523438,36.6146010566406],[114.304976835938,36.6384511542969],[114.299420195313,36.6498329902344],[114.313985625,36.657202375],[114.321370878906,36.7157619453125],[114.337345,36.723843]],[[114.497345,36.663843],[114.477345,36.663843],[114.477345,36.6538430000001],[114.421197539063,36.6481154609376],[114.422747832031,36.628843],[114.421942167969,36.6188430000001],[114.422772246094,36.6085195136719],[114.41197390625,36.5992153144531],[114.40271609375,36.5738075996095],[114.457345,36.563843],[114.472330351563,36.5563942695313],[114.493829375,36.5668935371094],[114.504918242188,36.5888137031251],[114.540675078125,36.5991335273438],[114.517345,36.603843],[114.51326296875,36.6397585273438],[114.509537382813,36.6672658515625],[114.500767851563,36.6760353828126],[114.497345,36.663843]],[[114.515152617188,36.5772658515625],[114.527345,36.5738430000001],[114.523922148438,36.5860353828125],[114.515152617188,36.5772658515625]]]]}},{"type":"Feature","properties":{"name":"邯山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.442886992188,36.4785097480469],[114.427345,36.453843],[114.421883574219,36.4583803535157],[114.412806425781,36.4693056464844],[114.392806425781,36.4859181953125],[114.440323515625,36.5036525703126],[114.442886992188,36.4785097480469]]],[[[114.523922148438,36.5860353828125],[114.527345,36.5738430000001],[114.515152617188,36.5772658515625],[114.523922148438,36.5860353828125]]],[[[114.493829375,36.5668935371094],[114.472330351563,36.5563942695313],[114.457345,36.563843],[114.467345,36.603843],[114.517345,36.603843],[114.540675078125,36.5991335273438],[114.504918242188,36.5888137031251],[114.493829375,36.5668935371094]]]]}},{"type":"Feature","properties":{"name":"鸡泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.877345,36.753843],[114.877345,36.743843],[114.867345,36.743843],[114.867345,36.753843],[114.877345,36.753843]]],[[[114.877345,36.753843],[114.867906523438,36.7644057441407],[114.844893828125,36.7849684882813],[114.770269804688,36.7988967109376],[114.742628203125,36.8591237617188],[114.703428984375,36.877114484375],[114.764303007813,36.8912783027344],[114.757345,36.9238430000001],[114.791256132813,36.9159853339844],[114.833160429688,36.9483315253907],[114.830709257813,36.9649074531251],[114.862486601563,36.9696034980469],[114.887345,36.9638430000001],[114.91326296875,36.9597585273438],[114.942105742188,36.9476430488281],[114.967345,36.9538430000001],[114.962808867188,36.8883803535156],[114.9465246875,36.8748549628906],[114.941324492188,36.823843],[114.942896757813,36.8084523750001],[114.913375273438,36.783930890625],[114.9118371875,36.7688430000001],[114.914801054688,36.7397695136719],[114.877345,36.753843]]]]}},{"type":"Feature","properties":{"name":"临漳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.507345,36.393843],[114.495152617188,36.3904201484375],[114.503922148438,36.3816506171875],[114.52687625,36.4031594062501],[114.552345,36.3926601386719],[114.573619414063,36.4014284492188],[114.581710234375,36.3523976875001],[114.607345,36.3629653144531],[114.632345,36.3526601386719],[114.66806765625,36.3673830390625],[114.709073515625,36.3489333320313],[114.720885039063,36.3273830390625],[114.753804960938,36.3203029609375],[114.757345,36.303843],[114.747345,36.303843],[114.747345,36.283843],[114.74142703125,36.2797585273438],[114.72896609375,36.2617092109376],[114.74326296875,36.2397585273438],[114.75142703125,36.2179274726563],[114.765235625,36.1967287421875],[114.761221953125,36.178843],[114.765225859375,36.1609975410157],[114.737345,36.1538430000001],[114.731612578125,36.1495778632812],[114.6782434375,36.1369667792969],[114.655050078125,36.1409596992188],[114.602569609375,36.1198635078125],[114.563077421875,36.1495778632812],[114.541612578125,36.1581081367188],[114.523077421875,36.1695778632813],[114.484771757813,36.1799623847657],[114.453077421875,36.1995778632813],[114.411610136719,36.2081081367188],[114.403079863281,36.2195778632813],[114.355562773438,36.2293532539063],[114.337345,36.253843],[114.383260527344,36.2779274726562],[114.401429472656,36.3097585273438],[114.413260527344,36.3179274726562],[114.421429472656,36.3397585273438],[114.440870390625,36.3696157050782],[114.481217070313,36.3799697089844],[114.487345,36.403843],[114.507345,36.403843],[114.507345,36.393843]]]]}},{"type":"Feature","properties":{"name":"邱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.170992460938,36.8946364570313],[115.147266875,36.8497951484376],[115.202154570313,36.8690334296875],[115.217345,36.873843],[115.223013945313,36.865630109375],[115.242345,36.8699636054688],[115.27330203125,36.8630251289063],[115.317345,36.873843],[115.313985625,36.847202375],[115.299400664063,36.8398244453126],[115.313985625,36.810483625],[115.320704375,36.777202375],[115.327345,36.773843],[115.323170195313,36.7680178046875],[115.3077746875,36.7569826484375],[115.315675078125,36.7169826484375],[115.283394804688,36.6938430000001],[115.311519804688,36.6736830878907],[115.2975403125,36.6641970039063],[115.263785429688,36.6856264472657],[115.2307434375,36.6619448066407],[115.2339465625,36.6457411933594],[115.217345,36.633843],[115.202916289063,36.6696657539063],[115.172916289063,36.6652333808594],[115.162095976563,36.6916664863282],[115.12170046875,36.7081996894531],[115.11095828125,36.7344509101563],[115.114561796875,36.758843],[115.087340117188,36.7699831367188],[115.093160429688,36.8093544746094],[115.08170046875,36.8181996894532],[115.0664075,36.838012921875],[115.10298953125,36.8481996894532],[115.11170046875,36.8570607734375],[115.049674101563,36.8743325019532],[115.065562773438,36.9147499824219],[115.08298953125,36.9281996894532],[115.09170046875,36.9494863105469],[115.097345,36.9538430000001],[115.131685820313,36.9429701972657],[115.095972929688,36.9261159492188],[115.112154570313,36.9086525703125],[115.170992460938,36.8946364570313]]]]}},{"type":"Feature","properties":{"name":"曲周县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.137345,36.603843],[115.160069609375,36.6078481269532],[115.142906523438,36.6168398261719],[115.068531523438,36.5952455878907],[115.027345,36.6138430000001],[115.02298953125,36.6194863105469],[114.9962121875,36.6401540351563],[114.972345,36.6366262031251],[114.902686796875,36.6469203925782],[114.8886340625,36.6651308417969],[114.837345,36.673843],[114.85326296875,36.6979274726562],[114.86142703125,36.7397585273438],[114.867345,36.743843],[114.877345,36.743843],[114.877345,36.753843],[114.914801054688,36.7397695136719],[114.9118371875,36.7688430000001],[114.913375273438,36.783930890625],[114.942896757813,36.8084523750001],[114.941324492188,36.823843],[114.9465246875,36.8748549628906],[114.962808867188,36.8883803535156],[114.967345,36.9538430000001],[115.021256132813,36.9626992011719],[115.057642851563,36.9573207832032],[115.097345,36.9638430000001],[115.097345,36.9538430000001],[115.09170046875,36.9494863105469],[115.08298953125,36.9281996894532],[115.065562773438,36.9147499824219],[115.049674101563,36.8743325019532],[115.11170046875,36.8570607734375],[115.10298953125,36.8481996894532],[115.0664075,36.838012921875],[115.08170046875,36.8181996894532],[115.093160429688,36.8093544746094],[115.087340117188,36.7699831367188],[115.114561796875,36.758843],[115.11095828125,36.7344509101563],[115.12170046875,36.7081996894531],[115.162095976563,36.6916664863282],[115.172916289063,36.6652333808594],[115.202916289063,36.6696657539063],[115.217345,36.633843],[115.1994934375,36.629262921875],[115.21408328125,36.6191909003907],[115.193980742188,36.5883180976563],[115.167345,36.5738430000001],[115.163985625,36.580483625],[115.12922,36.5875014472656],[115.137345,36.603843]]]]}},{"type":"Feature","properties":{"name":"涉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.967345,36.3438430000001],[113.987345,36.3438430000001],[113.987345,36.3138430000001],[113.977345,36.3138430000001],[113.970704375,36.327202375],[113.967345,36.3438430000001]]],[[[113.737345,36.363843],[113.737345,36.3538430000001],[113.727345,36.3538430000001],[113.727345,36.363843],[113.737345,36.363843]]],[[[113.547345,36.493843],[113.543922148438,36.4816506171876],[113.535152617188,36.4904201484375],[113.547345,36.493843]]],[[[113.967345,36.3438430000001],[113.951363554688,36.3517873359375],[113.943985625,36.3372023750001],[113.930704375,36.3304836250001],[113.927345,36.323843],[113.907415800781,36.3139369941407],[113.889561796875,36.3492299628907],[113.8541028125,36.357202375],[113.843985625,36.3372023750001],[113.814185820313,36.3304836250001],[113.753985625,36.3604836250001],[113.737345,36.363843],[113.71170046875,36.3981996894532],[113.70298953125,36.4194863105469],[113.66170046875,36.4281996894532],[113.613333769531,36.4640590644531],[113.587345,36.453843],[113.580704375,36.457202375],[113.573985625,36.4804836250001],[113.547345,36.493843],[113.555032988281,36.5276869941407],[113.540704375,36.5391603828125],[113.582899199219,36.5482900214844],[113.591790800781,36.5531447578125],[113.530096464844,36.5965114570313],[113.543455839844,36.6192372871094],[113.483929472656,36.6362563300782],[113.462899199219,36.6562587714844],[113.504154082031,36.6892958808594],[113.50150515625,36.7106044746094],[113.453082304688,36.7045815253907],[113.478516875,36.7478493476563],[113.511986113281,36.7281764960938],[113.526217070313,36.729946515625],[113.537345,36.743843],[113.545936308594,36.7562856269532],[113.562345,36.7599636054688],[113.591124296875,36.7535121894531],[113.631429472656,36.7797585273438],[113.664932890625,36.7922951484375],[113.661087675781,36.8094557929688],[113.678377714844,36.8768325019532],[113.720797148438,36.8863417792969],[113.731429472656,36.8579274726563],[113.747345,36.853843],[113.762418242188,36.8408571601562],[113.773079863281,36.7824001289063],[113.822345,36.7784413886719],[113.835257597656,36.7794789863282],[113.86197390625,36.7484706855469],[113.872772246094,36.7391664863282],[113.871920195313,36.7285463691406],[113.893492460938,36.6981215644532],[113.891942167969,36.678843],[113.893917265625,36.6542690253907],[113.852843046875,36.5963368964844],[113.876529570313,36.5759291816407],[113.871170683594,36.5092153144532],[113.887191191406,36.5220583320313],[113.909947539063,36.5484706855469],[113.933553496094,36.5388747382813],[113.931419707031,36.5123281074219],[113.95197390625,36.4884706855469],[113.967345,36.483843],[113.952899199219,36.4582900214844],[113.892899199219,36.3832692695312],[113.901790800781,36.3682900214844],[113.962899199219,36.3593959785156],[113.967345,36.3538430000001],[113.967345,36.3438430000001]]]]}},{"type":"Feature","properties":{"name":"魏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.01298953125,36.3894863105469],[115.05170046875,36.3381996894531],[115.07093875,36.3233498359376],[115.073824492188,36.303843],[115.070494414063,36.2813124824219],[115.084088164063,36.2168837714844],[115.111832304688,36.2209841132813],[115.117345,36.213843],[115.090406523438,36.1736733222657],[115.061676054688,36.1801137519532],[115.05326296875,36.1679274726563],[115.04107546875,36.1595131660156],[115.045377226563,36.1403127265625],[115.03013796875,36.0995790839844],[115.007345,36.0838430000001],[114.980264921875,36.0659474921876],[114.962022734375,36.0700356269532],[114.927345,36.053843],[114.905972929688,36.0442690253907],[114.9241809375,36.0996303535157],[114.8995325,36.1148171210938],[114.907203398438,36.1394435859375],[114.855855742188,36.1476552558594],[114.843150664063,36.1270351386719],[114.832345,36.1304006171875],[114.817345,36.1257277656251],[114.78443484375,36.1359792304688],[114.757345,36.1238430000001],[114.737345,36.1538430000001],[114.765225859375,36.1609975410157],[114.761221953125,36.178843],[114.765235625,36.1967287421875],[114.75142703125,36.2179274726563],[114.74326296875,36.2397585273438],[114.72896609375,36.2617092109376],[114.74142703125,36.2797585273438],[114.747345,36.283843],[114.757345,36.283843],[114.757345,36.303843],[114.773531523438,36.3076552558594],[114.781158476563,36.3200307441407],[114.807135039063,36.3288832832032],[114.821158476563,36.3700307441407],[114.827345,36.373843],[114.85033328125,36.3841408515625],[114.895636015625,36.3700307441407],[114.907642851563,36.3968325019531],[114.90041140625,36.4200502753907],[114.963131132813,36.4406801582032],[114.967345,36.433843],[114.98170046875,36.4081996894531],[115.01298953125,36.3894863105469]]]]}},{"type":"Feature","properties":{"name":"武安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.867345,37.023843],[113.88740359375,36.9996950507813],[113.922806425781,36.9893056464844],[113.936419707031,36.9729177070313],[113.968524199219,36.9462502265625],[113.996651640625,36.900649640625],[114.022806425781,36.8893056464844],[114.034295683594,36.875473859375],[114.072779570313,36.8793971992188],[114.084522734375,36.8393813300782],[114.187345,36.8498622871094],[114.221173125,36.8464138007813],[114.232735625,36.8603322578126],[114.252345,36.8583339667969],[114.262667265625,36.8593849921875],[114.289285917969,36.8441408515625],[114.302103300781,36.8595705390625],[114.3322278125,36.8482509589844],[114.357345,36.853843],[114.365811796875,36.8173036933594],[114.36156375,36.7885512519531],[114.375440703125,36.7532485175781],[114.337345,36.723843],[114.321370878906,36.7157619453125],[114.313985625,36.657202375],[114.299420195313,36.6498329902344],[114.304976835938,36.6384511542969],[114.286031523438,36.6146010566406],[114.271522246094,36.6216872382813],[114.263985625,36.6106008125],[114.29062625,36.59712425],[114.297345,36.5838430000001],[114.277484160156,36.5737953925782],[114.285269804688,36.5578530097657],[114.277345,36.553843],[114.26216921875,36.5476064277344],[114.237345,36.5633657050782],[114.213170195313,36.5480178046875],[114.170423613281,36.5396681953125],[114.122034941406,36.5703884101563],[114.107345,36.5498903632813],[114.093170195313,36.5696681953125],[114.075592070313,36.5780178046875],[114.083455839844,36.5382228828125],[114.065694609375,36.5254933906251],[114.057345,36.513843],[114.043260527344,36.5079274726562],[113.991429472656,36.4997585273438],[113.967345,36.483843],[113.95197390625,36.4884706855469],[113.931419707031,36.5123281074219],[113.933553496094,36.5388747382813],[113.909947539063,36.5484706855469],[113.887191191406,36.5220583320313],[113.871170683594,36.5092153144532],[113.876529570313,36.5759291816407],[113.852843046875,36.5963368964844],[113.893917265625,36.6542690253907],[113.891942167969,36.678843],[113.893492460938,36.6981215644532],[113.871920195313,36.7285463691406],[113.872772246094,36.7391664863282],[113.86197390625,36.7484706855469],[113.835257597656,36.7794789863282],[113.822345,36.7784413886719],[113.773079863281,36.7824001289063],[113.762418242188,36.8408571601562],[113.747345,36.853843],[113.751429472656,36.8597585273437],[113.7867590625,36.8841518378907],[113.777135039063,36.9270839667969],[113.757191191406,36.9408534980469],[113.76490359375,36.9752529121094],[113.783260527344,36.9879274726563],[113.787345,36.9938430000001],[113.814427519531,37.0117385078126],[113.832667265625,37.0076503730469],[113.867345,37.023843]]]]}},{"type":"Feature","properties":{"name":"永年县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.742628203125,36.8591237617188],[114.770269804688,36.7988967109376],[114.844893828125,36.7849684882813],[114.867906523438,36.7644057441407],[114.877345,36.753843],[114.867345,36.753843],[114.867345,36.743843],[114.86142703125,36.7397585273438],[114.85326296875,36.6979274726562],[114.837345,36.673843],[114.832896757813,36.6682900214844],[114.801793242188,36.6593959785157],[114.74763796875,36.6275624824219],[114.725440703125,36.6303237128906],[114.711666289063,36.6192958808594],[114.713023710938,36.6083901191407],[114.701793242188,36.5993959785157],[114.692799101563,36.5881642890625],[114.663702421875,36.5917836738281],[114.652896757813,36.5782900214844],[114.637345,36.5738430000001],[114.630045195313,36.6182802558594],[114.633082304688,36.638843],[114.631607695313,36.648843],[114.635811796875,36.6773073554688],[114.594761992188,36.7089931464844],[114.544810820313,36.7229018378907],[114.497345,36.7158876777344],[114.453883085938,36.7223110175782],[114.442857695313,36.7080287910157],[114.432345,36.7095815253906],[114.412345,36.7066262031251],[114.387345,36.7103212714844],[114.342938261719,36.7037587714844],[114.337345,36.723843],[114.375440703125,36.7532485175781],[114.36156375,36.7885512519531],[114.365811796875,36.8173036933594],[114.357345,36.853843],[114.372742949219,36.8597621894531],[114.381846953125,36.83815940625],[114.402345,36.840708234375],[114.422345,36.8382216621094],[114.447345,36.8413307929688],[114.54103640625,36.8296767402344],[114.553765898438,36.8885158515626],[114.645084257813,36.8985292792969],[114.657345,36.913843],[114.69326296875,36.9179274726563],[114.723912382813,36.93788596875],[114.757345,36.9238430000001],[114.764303007813,36.8912783027344],[114.703428984375,36.877114484375],[114.742628203125,36.8591237617188]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.407345,36.973843],[114.407345,36.9638430000001],[114.397345,36.9638430000001],[114.397345,36.973843],[114.407345,36.973843]]],[[[114.407345,36.973843],[114.397161894531,36.9956386542969],[114.430975371094,37.0361818671875],[114.423714628906,37.0602114082032],[114.40857546875,37.0688430000001],[114.425950957031,37.0787502265625],[114.413714628906,37.1002114082032],[114.393714628906,37.1116152167969],[114.406468535156,37.1267128730469],[114.447345,37.1113039375001],[114.487027617188,37.1262612128907],[114.478795195313,37.1044203925782],[114.497345,37.093843],[114.481124296875,37.0692946601563],[114.483468046875,37.058843],[114.481163359375,37.0485646796875],[114.493546171875,37.0190834785157],[114.487345,36.9938430000001],[114.462388945313,36.9999733710938],[114.445933867188,36.9962856269531],[114.425247832031,36.96632346875],[114.407345,36.973843]]]]}},{"type":"Feature","properties":{"name":"柏乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.617345,37.483843],[114.629537382813,37.4872658515625],[114.620767851563,37.4960353828125],[114.597486601563,37.4938906074219],[114.60478640625,37.508843],[114.59990359375,37.518843],[114.609185820313,37.5378530097656],[114.597345,37.543843],[114.601158476563,37.5500307441407],[114.654678984375,37.5578224921875],[114.6960559375,37.5719240546875],[114.6898840625,37.5917372871094],[114.701158476563,37.6100307441407],[114.727345,37.623843],[114.757345,37.623843],[114.787345,37.543843],[114.781519804688,37.5396681953126],[114.772652617188,37.4848146796876],[114.75080203125,37.4691518378907],[114.768253203125,37.4416616035157],[114.743233671875,37.4237270332032],[114.674205351563,37.4373671699219],[114.6482434375,37.4011452460938],[114.617345,37.4138430000001],[114.623980742188,37.4286611152344],[114.610709257813,37.4690248847657],[114.617345,37.483843]]]]}},{"type":"Feature","properties":{"name":"广宗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.273189726563,37.2686977363281],[115.25937625,37.25722190625],[115.271881132813,37.2283803535156],[115.291871367188,37.2117763496095],[115.22572390625,37.1869985175782],[115.221793242188,37.1484523750001],[115.232896757813,37.139233625],[115.229874296875,37.10960471875],[115.251158476563,37.1074355292969],[115.277838164063,37.1227150703125],[115.262808867188,37.0383803535156],[115.251881132813,37.0293056464844],[115.241954375,37.0173537421876],[115.212808867188,37.0203249335938],[115.221881132813,37.0083803535156],[115.243053007813,36.9907949042969],[115.241324492188,36.973843],[115.242901640625,36.9584011054688],[115.199796171875,36.948843],[115.249586210938,36.9378017402344],[115.221881132813,36.8993056464844],[115.217345,36.873843],[115.202154570313,36.8690334296875],[115.147266875,36.8497951484376],[115.170992460938,36.8946364570313],[115.112154570313,36.9086525703125],[115.095972929688,36.9261159492188],[115.131685820313,36.9429701972657],[115.097345,36.9538430000001],[115.097345,36.9638430000001],[115.120069609375,36.9700038886719],[115.0996496875,37.0564076972657],[115.121197539063,37.0912282539062],[115.0995325,37.0874977851562],[115.103258085938,37.1091371894531],[115.097345,37.123843],[115.10326296875,37.1279274726563],[115.121529570313,37.2001467109376],[115.132789335938,37.1976222968751],[115.15142703125,37.2097585273438],[115.173638945313,37.2180690742188],[115.170557890625,37.2318056464844],[115.1515246875,37.2275380683594],[115.14326296875,37.2620009589844],[115.171676054688,37.2556301093751],[115.181676054688,37.2701137519531],[115.202345,37.2654799628906],[115.226939726563,37.2709938789063],[115.217345,37.293843],[115.22314578125,37.3022426582032],[115.257345,37.293843],[115.273189726563,37.2686977363281]]]]}},{"type":"Feature","properties":{"name":"巨鹿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.947345,37.323843],[114.935152617188,37.3272658515626],[114.943922148438,37.3360353828125],[114.947345,37.323843]]],[[[114.947345,37.323843],[114.963985625,37.3272023750001],[114.987359648438,37.3737331367188],[115.013985625,37.387202375],[115.017345,37.403843],[115.02142703125,37.4097585273438],[115.0476184375,37.4179274726563],[115.061676054688,37.3975722480469],[115.077345,37.4010842109376],[115.100191679688,37.3959633613281],[115.107345,37.423843],[115.133985625,37.420483625],[115.147345,37.4138430000001],[115.157345,37.4138430000001],[115.162877226563,37.3903603339844],[115.177345,37.4138430000001],[115.191158476563,37.4053322578125],[115.183531523438,37.3676552558594],[115.164146757813,37.3400453925782],[115.2060559375,37.3257619453125],[115.197564726563,37.298501203125],[115.217345,37.293843],[115.226939726563,37.2709938789063],[115.202345,37.2654799628906],[115.181676054688,37.2701137519531],[115.171676054688,37.2556301093751],[115.14326296875,37.2620009589844],[115.1515246875,37.2275380683594],[115.170557890625,37.2318056464844],[115.173638945313,37.2180690742188],[115.15142703125,37.2097585273438],[115.132789335938,37.1976222968751],[115.121529570313,37.2001467109376],[115.10326296875,37.1279274726563],[115.097345,37.123843],[115.092857695313,37.1296572089844],[115.077345,37.1273647285157],[115.014190703125,37.1366982246094],[114.99298953125,37.1494863105469],[114.94170046875,37.1581996894532],[114.917345,37.163843],[114.887345,37.1715419746094],[114.893565703125,37.1992897773438],[114.868487578125,37.2378029609375],[114.84142703125,37.2479274726563],[114.837345,37.2638430000001],[114.8741028125,37.2497145820313],[114.871490507813,37.2707314277344],[114.93302859375,37.2883278632813],[114.931666289063,37.2992958808594],[114.942896757813,37.3082900214844],[114.947345,37.323843]]]]}},{"type":"Feature","properties":{"name":"临城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.617345,37.483843],[114.620767851563,37.4960353828125],[114.629537382813,37.4872658515625],[114.617345,37.483843]]],[[[114.617345,37.483843],[114.610709257813,37.4690248847657],[114.623980742188,37.4286611152344],[114.617345,37.4138430000001],[114.557345,37.4138430000001],[114.557345,37.383843],[114.567345,37.383843],[114.56298953125,37.3781996894532],[114.50170046875,37.3694863105469],[114.470719023438,37.3465163398438],[114.446851835938,37.3774379707032],[114.420809355469,37.3812868476563],[114.393048125,37.3453224921876],[114.35298953125,37.3694863105469],[114.306439238281,37.3793093085938],[114.259198027344,37.4078054023438],[114.233729277344,37.3455727363282],[114.22298953125,37.3594863105469],[114.17170046875,37.3681996894531],[114.162366972656,37.3802907539062],[114.12298953125,37.4094863105469],[114.09170046875,37.4281996894532],[114.082857695313,37.4396572089844],[114.071832304688,37.4380287910157],[114.067345,37.443843],[114.07170046875,37.4594863105469],[114.090877714844,37.4912770820313],[114.117345,37.4873647285157],[114.135562773438,37.4900575996094],[114.152916289063,37.5324526191406],[114.190765410156,37.5268593574219],[114.22170046875,37.5081996894531],[114.263316679688,37.4966103339844],[114.358377714844,37.5122267890626],[114.375794707031,37.5347914863282],[114.450943632813,37.5655471015625],[114.457345,37.5738430000001],[114.467345,37.5738430000001],[114.467345,37.583843],[114.513985625,37.5804836250001],[114.580704375,37.5472023750001],[114.597345,37.543843],[114.609185820313,37.5378530097656],[114.59990359375,37.518843],[114.60478640625,37.508843],[114.597486601563,37.4938906074219],[114.617345,37.483843]]]]}},{"type":"Feature","properties":{"name":"临西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,36.943843],[115.602647734375,36.9211684394532],[115.698829375,36.9434560371094],[115.757345,36.933843],[115.767345,36.913843],[115.73170046875,36.8994863105469],[115.698839140625,36.8751235175782],[115.68298953125,36.8181996894532],[115.65170046875,36.8094863105469],[115.63298953125,36.7981996894531],[115.576304960938,36.7775185371094],[115.562345,36.7795815253907],[115.552345,36.7781044746094],[115.533922148438,36.7808266425781],[115.512735625,36.7680458808594],[115.502017851563,36.7696303535157],[115.467345,36.753843],[115.372061796875,36.7685622382813],[115.338785429688,36.786645734375],[115.327345,36.773843],[115.320704375,36.777202375],[115.313985625,36.810483625],[115.299400664063,36.8398244453126],[115.313985625,36.847202375],[115.317345,36.873843],[115.353170195313,36.8780178046875],[115.363365507813,36.8922389960938],[115.423170195313,36.9080178046876],[115.452056914063,36.9198879218751],[115.47802859375,36.9147548652344],[115.501519804688,36.9296681953126],[115.552276640625,36.9398439765625],[115.562965117188,36.9377321601563],[115.567345,36.943843]]]]}},{"type":"Feature","properties":{"name":"隆尧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.897345,37.463843],[114.900767851563,37.4760353828126],[114.909537382813,37.4672658515625],[114.897345,37.463843]]],[[[114.897345,37.463843],[114.89271609375,37.4584706855469],[114.87064578125,37.4486232734375],[114.955733671875,37.4388686347657],[115.017345,37.403843],[115.013985625,37.387202375],[114.987359648438,37.3737331367188],[114.963985625,37.3272023750001],[114.947345,37.323843],[114.943922148438,37.3360353828125],[114.935152617188,37.3272658515626],[114.947345,37.323843],[114.942896757813,37.3082900214844],[114.931666289063,37.2992958808594],[114.93302859375,37.2883278632813],[114.871490507813,37.2707314277344],[114.8741028125,37.2497145820313],[114.837345,37.2638430000001],[114.832735625,37.2693923164063],[114.822022734375,37.2683010078126],[114.802808867188,37.2793056464844],[114.778331328125,37.2883803535157],[114.735445585938,37.2280178046875],[114.722345,37.2293520332032],[114.687257109375,37.2257765937501],[114.66545046875,37.1995241523438],[114.612608671875,37.219380109375],[114.602081328125,37.2183058906251],[114.587345,37.2238430000001],[114.611881132813,37.2593056464844],[114.646641875,37.2881801582032],[114.590064726563,37.3047829414063],[114.572808867188,37.3334609199219],[114.621783476563,37.3741420722657],[114.567345,37.383843],[114.557345,37.383843],[114.557345,37.4138430000001],[114.617345,37.4138430000001],[114.6482434375,37.4011452460938],[114.674205351563,37.4373671699219],[114.743233671875,37.4237270332032],[114.768253203125,37.4416616035157],[114.75080203125,37.4691518378907],[114.772652617188,37.4848146796876],[114.781519804688,37.5396681953126],[114.787345,37.543843],[114.79298953125,37.5394863105469],[114.808365507813,37.5195644355469],[114.83298953125,37.5094863105469],[114.863824492188,37.4695375800782],[114.897345,37.463843]],[[114.845152617188,37.4572658515625],[114.857345,37.4538430000001],[114.853922148438,37.4660353828126],[114.845152617188,37.4572658515625]]]]}},{"type":"Feature","properties":{"name":"清河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.768492460938,36.9917726875001],[115.79095828125,36.9589614082031],[115.761246367188,36.9399404121094],[115.757345,36.933843],[115.698829375,36.9434560371094],[115.602647734375,36.9211684394532],[115.567345,36.943843],[115.56298953125,36.9494863105469],[115.55170046875,36.9581996894532],[115.542916289063,36.9796657539063],[115.522784453125,36.9766909003907],[115.50298953125,37.0042470527344],[115.54314578125,37.0584133125],[115.540162382813,37.0786244941407],[115.567345,37.093843],[115.66810671875,37.0981337714844],[115.660011015625,37.1342617011719],[115.71326296875,37.1479274726563],[115.726475859375,37.1670656562501],[115.757345,37.1838430000001],[115.761090117188,37.1430080390625],[115.790704375,37.117202375],[115.823985625,37.110483625],[115.83181765625,37.0716994453125],[115.847345,37.063843],[115.835636015625,37.045551984375],[115.811246367188,37.0299404121094],[115.799537382813,37.0116493964844],[115.768492460938,36.9917726875001]]]]}},{"type":"Feature","properties":{"name":"南宫市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.157345,37.4138430000001],[115.177345,37.4138430000001],[115.162877226563,37.3903603339844],[115.157345,37.4138430000001]]],[[[115.157345,37.4138430000001],[115.147345,37.4138430000001],[115.152345,37.4266506171875],[115.157345,37.4138430000001]]],[[[115.177345,37.4138430000001],[115.198004179688,37.4426650214844],[115.227345,37.4368666816406],[115.251724882813,37.4416847968751],[115.267345,37.4198903632813],[115.28189578125,37.4401918769532],[115.297345,37.433843],[115.28818484375,37.4154189277344],[115.31093875,37.400483625],[115.320704375,37.4220253730469],[115.297345,37.433843],[115.297345,37.443843],[115.337345,37.443843],[115.361890898438,37.4276210761719],[115.37697390625,37.4310024238281],[115.399176054688,37.4156740546875],[115.418995390625,37.3869704414063],[115.432345,37.3899636054688],[115.442345,37.3877223945313],[115.464522734375,37.3926943183594],[115.48326296875,37.3797585273438],[115.49142703125,37.3679274726563],[115.509176054688,37.3556740546875],[115.528609648438,37.3275258613282],[115.573013945313,37.3175722480469],[115.58142703125,37.3297585273438],[115.607345,37.333843],[115.60271609375,37.3284706855469],[115.582730742188,37.3112538886719],[115.6227746875,37.2991970039063],[115.621099882813,37.2783412910156],[115.661651640625,37.2815993476563],[115.671998320313,37.2584133125],[115.693316679688,37.2601259589844],[115.728233671875,37.2195973945313],[115.747345,37.213843],[115.753985625,37.2004836250001],[115.757345,37.1838430000001],[115.726475859375,37.1670656562501],[115.71326296875,37.1479274726563],[115.660011015625,37.1342617011719],[115.66810671875,37.0981337714844],[115.567345,37.093843],[115.562105742188,37.1338967109376],[115.513853789063,37.1754653144532],[115.498595,37.1247768378907],[115.472623320313,37.1392665839844],[115.461099882813,37.1383412910157],[115.463526640625,37.1685195136719],[115.451646757813,37.1787526679688],[115.473043242188,37.2089333320313],[115.46197390625,37.2184706855469],[115.45271609375,37.2292153144532],[115.44197390625,37.2384706855469],[115.417901640625,37.2769008613282],[115.335323515625,37.2894838691407],[115.316803007813,37.2879958320312],[115.257345,37.293843],[115.22314578125,37.3022426582032],[115.217345,37.293843],[115.197564726563,37.298501203125],[115.2060559375,37.3257619453125],[115.164146757813,37.3400453925782],[115.183531523438,37.3676552558594],[115.191158476563,37.4053322578125],[115.177345,37.4138430000001]],[[115.264346953125,37.3978957343751],[115.287345,37.393843],[115.281910429688,37.4065395332031],[115.264346953125,37.3978957343751]]]]}},{"type":"Feature","properties":{"name":"南和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.680592070313,37.1025905585938],[114.692857695313,37.0867018867188],[114.712735625,37.0896401191407],[114.746143828125,37.0694863105469],[114.77298953125,37.0781996894532],[114.787974882813,37.0976161933594],[114.852345,37.0881044746094],[114.877174101563,37.0917726875],[114.897345,37.083843],[114.891163359375,37.0691213203126],[114.895557890625,37.0495131660157],[114.880206328125,37.0389150214844],[114.869449492188,36.9909242988281],[114.887345,36.9638430000001],[114.862486601563,36.9696034980469],[114.830709257813,36.9649074531251],[114.833160429688,36.9483315253907],[114.791256132813,36.9159853339844],[114.757345,36.9238430000001],[114.723912382813,36.93788596875],[114.69326296875,36.9179274726563],[114.657345,36.913843],[114.653531523438,36.9200307441406],[114.6295325,36.9348171210938],[114.63422,36.949868390625],[114.593702421875,36.9594118476562],[114.614879179688,36.9895717597657],[114.591158476563,36.9976552558594],[114.587345,37.003843],[114.605909453125,37.0152809882813],[114.623365507813,37.0665102363282],[114.627345,37.093843],[114.680592070313,37.1025905585938]]]]}},{"type":"Feature","properties":{"name":"内丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.067345,37.443843],[114.071832304688,37.4380287910157],[114.082857695313,37.4396572089844],[114.09170046875,37.4281996894532],[114.12298953125,37.4094863105469],[114.162366972656,37.3802907539062],[114.17170046875,37.3681996894531],[114.22298953125,37.3594863105469],[114.233729277344,37.3455727363282],[114.259198027344,37.4078054023438],[114.306439238281,37.3793093085938],[114.35298953125,37.3694863105469],[114.393048125,37.3453224921876],[114.420809355469,37.3812868476563],[114.446851835938,37.3774379707032],[114.470719023438,37.3465163398438],[114.50170046875,37.3694863105469],[114.56298953125,37.3781996894532],[114.567345,37.383843],[114.621783476563,37.3741420722657],[114.572808867188,37.3334609199219],[114.590064726563,37.3047829414063],[114.646641875,37.2881801582032],[114.611881132813,37.2593056464844],[114.587345,37.2238430000001],[114.5786340625,37.2178273750001],[114.567345,37.173843],[114.542203398438,37.1795546699219],[114.5081653125,37.166469953125],[114.462896757813,37.1793959785157],[114.416971464844,37.1893325019532],[114.392899199219,37.2193959785157],[114.359605742188,37.2460549140625],[114.261790800781,37.2582900214844],[114.23216921875,37.3106862617188],[114.193704863281,37.3059023261719],[114.171334257813,37.3338356757812],[114.098968535156,37.3173976875],[114.060081816406,37.3222341132813],[114.020565214844,37.3511013007813],[113.947345,37.363843],[113.951429472656,37.3797585273438],[113.970584746094,37.4091762519531],[113.987713652344,37.4210024238282],[114.008377714844,37.4163698554688],[114.027345,37.443843],[114.042105742188,37.4376430488282],[114.067345,37.443843]]]]}},{"type":"Feature","properties":{"name":"宁晋县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.853922148438,37.4660353828126],[114.857345,37.4538430000001],[114.845152617188,37.4572658515625],[114.853922148438,37.4660353828126]]],[[[114.897345,37.463843],[114.909537382813,37.4672658515625],[114.900767851563,37.4760353828126],[114.863824492188,37.4695375800782],[114.83298953125,37.5094863105469],[114.808365507813,37.5195644355469],[114.79298953125,37.5394863105469],[114.787345,37.543843],[114.757345,37.623843],[114.789176054688,37.6320119453126],[114.809595976563,37.6615895820313],[114.83326296875,37.6779274726563],[114.84142703125,37.6897585273438],[114.895089140625,37.7189211250001],[114.96326296875,37.7279274726562],[115.010592070313,37.7425991035156],[115.037345,37.7366017890626],[115.064830351563,37.7427626777344],[115.0600403125,37.7641127753907],[115.067345,37.7938430000001],[115.08326296875,37.7979274726563],[115.10466921875,37.8118691230469],[115.137345,37.8038430000001],[115.15478640625,37.7903786445313],[115.150445585938,37.7609914375001],[115.211690703125,37.7359242988282],[115.236549101563,37.7167372871094],[115.254444609375,37.6870705390626],[115.247345,37.6438430000001],[115.195553007813,37.6389003730469],[115.18298953125,37.6081996894532],[115.171090117188,37.5990163398438],[115.197345,37.5638430000001],[115.18197390625,37.5592153144531],[115.16271609375,37.5484706855469],[115.14197390625,37.5392153144532],[115.12271609375,37.5284706855469],[115.082730742188,37.5164321113282],[115.103043242188,37.4989333320313],[115.07271609375,37.4561598945313],[115.0920325,37.4384157539063],[115.102701445313,37.4392726875001],[115.107345,37.423843],[115.100191679688,37.3959633613281],[115.077345,37.4010842109376],[115.061676054688,37.3975722480469],[115.0476184375,37.4179274726563],[115.02142703125,37.4097585273438],[115.017345,37.403843],[114.955733671875,37.4388686347657],[114.87064578125,37.4486232734375],[114.89271609375,37.4584706855469],[114.897345,37.463843]]]]}},{"type":"Feature","properties":{"name":"平乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.014190703125,37.1366982246094],[115.077345,37.1273647285157],[115.092857695313,37.1296572089844],[115.097345,37.123843],[115.103258085938,37.1091371894531],[115.0995325,37.0874977851562],[115.121197539063,37.0912282539062],[115.0996496875,37.0564076972657],[115.120069609375,36.9700038886719],[115.097345,36.9638430000001],[115.057642851563,36.9573207832032],[115.021256132813,36.9626992011719],[114.967345,36.9538430000001],[114.942105742188,36.9476430488281],[114.91326296875,36.9597585273438],[114.887345,36.9638430000001],[114.869449492188,36.9909242988281],[114.880206328125,37.0389150214844],[114.895557890625,37.0495131660157],[114.891163359375,37.0691213203126],[114.897345,37.083843],[114.911383085938,37.0935341621094],[114.899132109375,37.1481728339844],[114.91326296875,37.1579274726563],[114.917345,37.163843],[114.94170046875,37.1581996894532],[114.99298953125,37.1494863105469],[115.014190703125,37.1366982246094]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.507345,36.9938430000001],[114.487345,36.9938430000001],[114.493546171875,37.0190834785157],[114.481163359375,37.0485646796875],[114.483468046875,37.058843],[114.481124296875,37.0692946601563],[114.497345,37.093843],[114.504678984375,37.102671125],[114.551422148438,37.063843],[114.514327421875,37.0330300117188],[114.507345,36.9938430000001]]]]}},{"type":"Feature","properties":{"name":"任县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.802808867188,37.2793056464844],[114.822022734375,37.2683010078126],[114.832735625,37.2693923164063],[114.837345,37.2638430000001],[114.84142703125,37.2479274726563],[114.868487578125,37.2378029609375],[114.893565703125,37.1992897773438],[114.887345,37.1715419746094],[114.917345,37.163843],[114.91326296875,37.1579274726563],[114.899132109375,37.1481728339844],[114.911383085938,37.0935341621094],[114.897345,37.083843],[114.877174101563,37.0917726875],[114.852345,37.0881044746094],[114.787974882813,37.0976161933594],[114.77298953125,37.0781996894532],[114.746143828125,37.0694863105469],[114.712735625,37.0896401191407],[114.692857695313,37.0867018867188],[114.680592070313,37.1025905585938],[114.627345,37.093843],[114.63537234375,37.12651878125],[114.62142703125,37.1479274726563],[114.61326296875,37.1697585273438],[114.567345,37.173843],[114.5786340625,37.2178273750001],[114.587345,37.2238430000001],[114.602081328125,37.2183058906251],[114.612608671875,37.219380109375],[114.66545046875,37.1995241523438],[114.687257109375,37.2257765937501],[114.722345,37.2293520332032],[114.735445585938,37.2280178046875],[114.778331328125,37.2883803535157],[114.802808867188,37.2793056464844]]]]}},{"type":"Feature","properties":{"name":"沙河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.028997832031,37.010317609375],[114.057345,37.0080397773438],[114.08162234375,37.0099904609375],[114.112049589844,36.9884169746094],[114.122345,36.9892446113282],[114.132691679688,36.9884133125],[114.148626738281,37.0241249824219],[114.225272246094,37.0302834296875],[114.22111453125,36.9785280585938],[114.36271609375,36.9692153144532],[114.397345,36.9638430000001],[114.407345,36.9638430000001],[114.407345,36.973843],[114.425247832031,36.96632346875],[114.445933867188,36.9962856269531],[114.462388945313,36.9999733710938],[114.487345,36.9938430000001],[114.507345,36.9938430000001],[114.541846953125,37.0023171210938],[114.562388945313,36.9977126289063],[114.587345,37.003843],[114.591158476563,36.9976552558594],[114.614879179688,36.9895717597657],[114.593702421875,36.9594118476562],[114.63422,36.949868390625],[114.6295325,36.9348171210938],[114.653531523438,36.9200307441406],[114.657345,36.913843],[114.645084257813,36.8985292792969],[114.553765898438,36.8885158515626],[114.54103640625,36.8296767402344],[114.447345,36.8413307929688],[114.422345,36.8382216621094],[114.402345,36.840708234375],[114.381846953125,36.83815940625],[114.372742949219,36.8597621894531],[114.357345,36.853843],[114.3322278125,36.8482509589844],[114.302103300781,36.8595705390625],[114.289285917969,36.8441408515625],[114.262667265625,36.8593849921875],[114.252345,36.8583339667969],[114.232735625,36.8603322578126],[114.221173125,36.8464138007813],[114.187345,36.8498622871094],[114.084522734375,36.8393813300782],[114.072779570313,36.8793971992188],[114.034295683594,36.875473859375],[114.022806425781,36.8893056464844],[113.996651640625,36.900649640625],[113.968524199219,36.9462502265625],[113.936419707031,36.9729177070313],[113.922806425781,36.9893056464844],[113.88740359375,36.9996950507813],[113.867345,37.023843],[113.888563261719,37.0484706855469],[114.006080351563,37.0369179511719],[114.028997832031,37.010317609375]]]]}},{"type":"Feature","properties":{"name":"威县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.257345,37.293843],[115.316803007813,37.2879958320312],[115.335323515625,37.2894838691407],[115.417901640625,37.2769008613282],[115.44197390625,37.2384706855469],[115.45271609375,37.2292153144532],[115.46197390625,37.2184706855469],[115.473043242188,37.2089333320313],[115.451646757813,37.1787526679688],[115.463526640625,37.1685195136719],[115.461099882813,37.1383412910157],[115.472623320313,37.1392665839844],[115.498595,37.1247768378907],[115.513853789063,37.1754653144532],[115.562105742188,37.1338967109376],[115.567345,37.093843],[115.540162382813,37.0786244941407],[115.54314578125,37.0584133125],[115.50298953125,37.0042470527344],[115.522784453125,36.9766909003907],[115.542916289063,36.9796657539063],[115.55170046875,36.9581996894532],[115.56298953125,36.9494863105469],[115.567345,36.943843],[115.562965117188,36.9377321601563],[115.552276640625,36.9398439765625],[115.501519804688,36.9296681953126],[115.47802859375,36.9147548652344],[115.452056914063,36.9198879218751],[115.423170195313,36.9080178046876],[115.363365507813,36.8922389960938],[115.353170195313,36.8780178046875],[115.317345,36.873843],[115.27330203125,36.8630251289063],[115.242345,36.8699636054688],[115.223013945313,36.865630109375],[115.217345,36.873843],[115.221881132813,36.8993056464844],[115.249586210938,36.9378017402344],[115.199796171875,36.948843],[115.242901640625,36.9584011054688],[115.241324492188,36.973843],[115.243053007813,36.9907949042969],[115.221881132813,37.0083803535156],[115.212808867188,37.0203249335938],[115.241954375,37.0173537421876],[115.251881132813,37.0293056464844],[115.262808867188,37.0383803535156],[115.277838164063,37.1227150703125],[115.251158476563,37.1074355292969],[115.229874296875,37.10960471875],[115.232896757813,37.139233625],[115.221793242188,37.1484523750001],[115.22572390625,37.1869985175782],[115.291871367188,37.2117763496095],[115.271881132813,37.2283803535156],[115.25937625,37.25722190625],[115.273189726563,37.2686977363281],[115.257345,37.293843]]]]}},{"type":"Feature","properties":{"name":"新河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.281910429688,37.4065395332031],[115.287345,37.393843],[115.264346953125,37.3978957343751],[115.281910429688,37.4065395332031]]],[[[115.297345,37.433843],[115.320704375,37.4220253730469],[115.31093875,37.400483625],[115.28818484375,37.4154189277344],[115.297345,37.433843]]],[[[115.347345,37.5338430000001],[115.350767851563,37.5216506171875],[115.359537382813,37.5304201484375],[115.361612578125,37.5523281074219],[115.39298953125,37.5394863105469],[115.4060559375,37.5225551582031],[115.441378203125,37.4952907539062],[115.384595976563,37.5036818671875],[115.40298953125,37.489486310547],[115.41170046875,37.4781996894531],[115.43170046875,37.4627614570313],[115.422706328125,37.4580507636719],[115.407345,37.4603212714844],[115.391832304688,37.4580287910156],[115.382345,37.4703212714845],[115.371832304688,37.4567018867188],[115.34978640625,37.4599599433594],[115.337345,37.443843],[115.297345,37.443843],[115.297345,37.433843],[115.28189578125,37.4401918769532],[115.267345,37.4198903632813],[115.251724882813,37.4416847968751],[115.227345,37.4368666816406],[115.198004179688,37.4426650214844],[115.177345,37.4138430000001],[115.157345,37.4138430000001],[115.152345,37.4266506171875],[115.147345,37.4138430000001],[115.133985625,37.420483625],[115.107345,37.423843],[115.102701445313,37.4392726875001],[115.0920325,37.4384157539063],[115.07271609375,37.4561598945313],[115.103043242188,37.4989333320313],[115.082730742188,37.5164321113282],[115.12271609375,37.5284706855469],[115.14197390625,37.5392153144532],[115.16271609375,37.5484706855469],[115.18197390625,37.5592153144531],[115.197345,37.5638430000001],[115.207345,37.5498903632813],[115.229732695313,37.58112815625],[115.299000273438,37.5628542304688],[115.331519804688,37.5380178046875],[115.347345,37.5338430000001]]]]}},{"type":"Feature","properties":{"name":"邢台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.060081816406,37.3222341132813],[114.098968535156,37.3173976875],[114.171334257813,37.3338356757812],[114.193704863281,37.3059023261719],[114.23216921875,37.3106862617188],[114.261790800781,37.2582900214844],[114.359605742188,37.2460549140625],[114.392899199219,37.2193959785157],[114.416971464844,37.1893325019532],[114.462896757813,37.1793959785157],[114.5081653125,37.166469953125],[114.542203398438,37.1795546699219],[114.567345,37.173843],[114.61326296875,37.1697585273438],[114.62142703125,37.1479274726563],[114.63537234375,37.12651878125],[114.627345,37.093843],[114.623365507813,37.0665102363282],[114.605909453125,37.0152809882813],[114.587345,37.003843],[114.562388945313,36.9977126289063],[114.541846953125,37.0023171210938],[114.507345,36.9938430000001],[114.514327421875,37.0330300117188],[114.551422148438,37.063843],[114.504678984375,37.102671125],[114.497345,37.093843],[114.478795195313,37.1044203925782],[114.487027617188,37.1262612128907],[114.447345,37.1113039375001],[114.406468535156,37.1267128730469],[114.393714628906,37.1116152167969],[114.413714628906,37.1002114082032],[114.425950957031,37.0787502265625],[114.40857546875,37.0688430000001],[114.423714628906,37.0602114082032],[114.430975371094,37.0361818671875],[114.397161894531,36.9956386542969],[114.407345,36.973843],[114.397345,36.973843],[114.397345,36.9638430000001],[114.36271609375,36.9692153144532],[114.22111453125,36.9785280585938],[114.225272246094,37.0302834296875],[114.148626738281,37.0241249824219],[114.132691679688,36.9884133125],[114.122345,36.9892446113282],[114.112049589844,36.9884169746094],[114.08162234375,37.0099904609375],[114.057345,37.0080397773438],[114.028997832031,37.010317609375],[114.006080351563,37.0369179511719],[113.888563261719,37.0484706855469],[113.867345,37.023843],[113.832667265625,37.0076503730469],[113.814427519531,37.0117385078126],[113.787345,36.9938430000001],[113.757379179688,37.0145326972656],[113.784185820313,37.0491200996094],[113.762393828125,37.064165265625],[113.757345,37.083843],[113.761790800781,37.0893959785156],[113.769115019531,37.1482680488282],[113.792899199219,37.1582900214844],[113.819320097656,37.1738210273438],[113.871749296875,37.2392922187501],[113.893270292969,37.3145632148438],[113.922899199219,37.3382900214844],[113.927345,37.3438430000001],[113.947345,37.3438430000001],[113.947345,37.363843],[114.020565214844,37.3511013007813],[114.060081816406,37.3222341132813]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阜平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.096280546875,39.0771633125001],[114.12748171875,39.0396022773438],[114.162022734375,39.0593849921875],[114.194544707031,39.0560707832031],[114.241883574219,39.0693056464844],[114.347345,39.073843],[114.390926542969,39.0685170722656],[114.4522278125,39.0434267402344],[114.467345,39.023843],[114.472345,39.0110353828125],[114.477345,39.023843],[114.52156375,39.0105300117188],[114.527345,38.953843],[114.5215246875,38.9376198554688],[114.5226575,38.9185768867187],[114.493121367188,38.9050197578125],[114.51373171875,38.8670912910157],[114.5120325,38.8386171699219],[114.52373171875,38.8170912910156],[114.522047148438,38.7888430000001],[114.523199492188,38.7695314765625],[114.492545195313,38.7585329414063],[114.477345,38.759438703125],[114.452345,38.7579494453126],[114.411058378906,38.7604091621094],[114.422779570313,38.738843],[114.4120325,38.7190688300782],[114.4126575,38.7085903144532],[114.407345,38.703843],[114.391429472656,38.6997585273438],[114.383260527344,38.6879274726563],[114.359329863281,38.6797585273438],[114.312669707031,38.7101430488281],[114.272491484375,38.6976894355469],[114.257074003906,38.7011452460938],[114.197523222656,38.6865175605469],[114.167345,38.6738430000001],[114.131790800781,38.6693959785157],[114.102628203125,38.6581862617187],[114.092345,38.6594643378907],[114.081890898438,38.6581642890625],[114.067337675781,38.6763393378907],[113.9611340625,38.6896230292969],[113.882899199219,38.7393959785157],[113.841790800781,38.7482900214844],[113.827345,38.7538430000001],[113.827345,38.763843],[113.821849394531,38.7890395332032],[113.851485625,38.8308400703126],[113.794947539063,38.8560683417969],[113.768851347656,38.8928749824219],[113.761812773438,38.9804616523438],[113.777345,38.993843],[113.803985625,38.9972023750001],[113.810704375,39.010483625],[113.843985625,39.027202375],[113.880704375,39.060483625],[113.913985625,39.067202375],[113.940704375,39.090483625],[113.957345,39.0938430000001],[113.982806425781,39.0983803535156],[114.005406523438,39.1255873847657],[114.042752714844,39.1293947578126],[114.061883574219,39.0983803535156],[114.096280546875,39.0771633125001]]]]}},{"type":"Feature","properties":{"name":"高碑店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.807345,39.383843],[115.857330351563,39.3775978828125],[115.872457304688,39.3794789863282],[115.931793242188,39.3682900214844],[116.030972929688,39.3558852363281],[116.042076445313,39.369751203125],[116.094093046875,39.3472963691406],[116.107345,39.3638430000001],[116.12197390625,39.3584706855469],[116.200523710938,39.3465016914062],[116.203004179688,39.3156362128907],[116.1818371875,39.2185890937501],[116.19271609375,39.2092153144532],[116.207345,39.143843],[116.191065703125,39.1475649238282],[116.181500273438,39.1637038398438],[116.157345,39.1554091621094],[116.122345,39.1674282050781],[116.081978789063,39.1535659003906],[116.073624296875,39.121977765625],[116.097213164063,39.1079921699219],[116.031065703125,39.1001210761719],[116.027345,39.0938430000001],[115.985953398438,39.1101149726563],[115.96478640625,39.10698753125],[115.947345,39.113843],[115.953350859375,39.1387612128907],[115.951353789063,39.1488466621094],[115.96345828125,39.2094618964844],[115.951519804688,39.2180178046875],[115.942965117188,39.2299538398438],[115.929244414063,39.2272426582032],[115.913170195313,39.2496681953125],[115.885201445313,39.2697145820313],[115.904166289063,39.2995864082031],[115.801519804688,39.3080178046876],[115.787345,39.333843],[115.787345,39.343843],[115.807345,39.343843],[115.807345,39.373843],[115.797345,39.373843],[115.797345,39.383843],[115.807345,39.383843]]]]}},{"type":"Feature","properties":{"name":"安国市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.467345,38.3338430000001],[115.477345,38.3338430000001],[115.472345,38.3210353828125],[115.467345,38.3338430000001]]],[[[115.467345,38.3338430000001],[115.45263796875,38.3280605292969],[115.422345,38.3325368476563],[115.369156523438,38.3246767402344],[115.383424101563,38.2883779121094],[115.350699492188,38.2749831367187],[115.354371367188,38.2501332832031],[115.317345,38.243843],[115.273267851563,38.2330165839844],[115.256046171875,38.2790444160157],[115.237345,38.283843],[115.23326296875,38.2997585273438],[115.218038359375,38.3102700019532],[115.20170046875,38.3539321113282],[115.175621367188,38.371938703125],[115.214586210938,38.398843],[115.19970828125,38.4091152167969],[115.22326296875,38.4179274726563],[115.23142703125,38.4497585273438],[115.24326296875,38.4679274726563],[115.247345,38.513843],[115.300250273438,38.5176540351562],[115.289893828125,38.5388576484375],[115.297345,38.553843],[115.307345,38.553843],[115.311793242188,38.5382900214844],[115.364249296875,38.5291603828125],[115.360611601563,38.4999062324219],[115.382896757813,38.4693959785157],[115.392379179688,38.4255800605469],[115.436143828125,38.3998537421875],[115.452935820313,38.4208229804688],[115.493917265625,38.4091054511719],[115.4755871875,38.3944289375],[115.487345,38.3638430000001],[115.487345,38.353843],[115.467345,38.353843],[115.467345,38.343843],[115.467345,38.3338430000001]]]]}},{"type":"Feature","properties":{"name":"安新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.66062625,38.75056175],[115.647345,38.7438430000001],[115.632862578125,38.7572597480469],[115.667345,38.763843],[115.66062625,38.75056175]]],[[[115.987896757813,38.9719057441407],[116.012266875,38.958305890625],[116.027345,38.963843],[116.036612578125,38.9314211250001],[116.067359648438,38.9275978828125],[116.117345,38.933843],[116.110191679688,38.9059633613282],[116.083814726563,38.9118764472657],[116.037686796875,38.8946169257813],[116.04349734375,38.868696515625],[116.03119265625,38.828989484375],[116.033638945313,38.8180690742188],[116.003082304688,38.8066347480469],[115.970787382813,38.7598586250001],[115.947345,38.7538430000001],[115.9363684375,38.7716542792969],[115.902345,38.7610561347656],[115.87213015625,38.7704665351563],[115.842345,38.7571230292969],[115.80435671875,38.7741408515625],[115.767345,38.7626137519531],[115.741383085938,38.7706996894531],[115.730426054688,38.738540265625],[115.664136992188,38.7300307441407],[115.684698515625,38.7593129707032],[115.677345,38.763843],[115.673985625,38.7704836250001],[115.650704375,38.7772023750001],[115.643985625,38.7971083808594],[115.6852746875,38.8178493476563],[115.677486601563,38.8337953925781],[115.710318632813,38.8504055000001],[115.7476965625,38.8579518867188],[115.760704375,38.8770851875],[115.747345,38.883843],[115.743985625,38.910483625],[115.729288359375,38.9179189277344],[115.740704375,38.940483625],[115.753985625,38.947202375],[115.760704375,38.970483625],[115.767345,38.9738430000001],[115.779840117188,38.9593410468751],[115.82197390625,38.9892153144532],[115.876002226563,38.9990700507813],[115.909947539063,39.0384706855469],[115.93271609375,39.0292153144532],[115.94197390625,39.0184706855469],[116.007232695313,39.0065663886719],[115.987896757813,38.9719057441407]]]]}},{"type":"Feature","properties":{"name":"北市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,38.8638430000001],[115.477345,38.853843],[115.467345,38.853843],[115.467345,38.8638430000001],[115.477345,38.8638430000001]]],[[[115.477345,38.8638430000001],[115.485455351563,38.8844728828125],[115.477345,38.933843],[115.477345,38.953843],[115.51142703125,38.9379274726563],[115.56326296875,38.9297585273438],[115.587345,38.913843],[115.593023710938,38.8683901191407],[115.581793242188,38.8593959785157],[115.577345,38.853843],[115.50142703125,38.8579274726563],[115.477345,38.8638430000001]]]]}},{"type":"Feature","properties":{"name":"博野县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.487345,38.353843],[115.487345,38.3338430000001],[115.477345,38.3338430000001],[115.477345,38.343843],[115.467345,38.343843],[115.467345,38.353843],[115.487345,38.353843]]],[[[115.467345,38.573843],[115.481793242188,38.5482900214844],[115.524898710938,38.4943886542969],[115.520445585938,38.4585805488281],[115.564244414063,38.4491054511719],[115.561666289063,38.4283681464844],[115.5941809375,38.4086159492188],[115.591666289063,38.3883901191406],[115.603023710938,38.3792958808594],[115.599361601563,38.3498451972656],[115.647345,38.343843],[115.634190703125,38.3247927070313],[115.571695585938,38.3401430488282],[115.563013945313,38.3275722480469],[115.551676054688,38.3301137519532],[115.543013945313,38.3175722480469],[115.532345,38.3199636054688],[115.51037234375,38.3150380683594],[115.514503203125,38.3334743476563],[115.499176054688,38.3556740546875],[115.487345,38.3638430000001],[115.4755871875,38.3944289375],[115.493917265625,38.4091054511719],[115.452935820313,38.4208229804688],[115.436143828125,38.3998537421875],[115.392379179688,38.4255800605469],[115.382896757813,38.4693959785157],[115.360611601563,38.4999062324219],[115.364249296875,38.5291603828125],[115.311793242188,38.5382900214844],[115.307345,38.553843],[115.33326296875,38.5579274726563],[115.382301054688,38.5699733710937],[115.392345,38.5677223945313],[115.407345,38.5710842109375],[115.442183867188,38.5632753730469],[115.467345,38.573843]]]]}},{"type":"Feature","properties":{"name":"定兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.867345,39.1338430000001],[115.863922148438,39.1460353828126],[115.855152617188,39.1372658515625],[115.856358671875,39.1129811835938],[115.832345,39.1315944648438],[115.805421171875,39.1107228828126],[115.77330203125,39.1251528144532],[115.763892851563,39.1072927070313],[115.757345,39.103843],[115.7141809375,39.0968849921875],[115.654058867188,39.1322267890625],[115.642896757813,39.1182900214844],[115.594928007813,39.1093959785156],[115.542896757813,39.1293959785157],[115.511793242188,39.1382900214844],[115.507345,39.153843],[115.52326296875,39.1579274726563],[115.53599734375,39.2075551582031],[115.531065703125,39.2295510078126],[115.5734778125,39.2537599921875],[115.59142703125,39.2797585273438],[115.62326296875,39.2879274726562],[115.627345,39.313843],[115.67271609375,39.3092153144531],[115.700162382813,39.2939015937501],[115.72197390625,39.3192153144532],[115.787345,39.333843],[115.801519804688,39.3080178046876],[115.904166289063,39.2995864082031],[115.885201445313,39.2697145820313],[115.913170195313,39.2496681953125],[115.929244414063,39.2272426582032],[115.942965117188,39.2299538398438],[115.951519804688,39.2180178046875],[115.96345828125,39.2094618964844],[115.951353789063,39.1488466621094],[115.953350859375,39.1387612128907],[115.947345,39.113843],[115.933985625,39.107202375],[115.883985625,39.1067263007813],[115.895494414063,39.1302931953125],[115.867345,39.1338430000001]]]]}},{"type":"Feature","properties":{"name":"定州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.970011015625,38.6724184394531],[114.983526640625,38.6197585273438],[115.00326296875,38.6279274726563],[115.0170715625,38.6479274726563],[115.02357546875,38.639341046875],[115.021041289063,38.6280275703126],[115.037345,38.623843],[115.05939578125,38.6153664375],[115.092345,38.6194643378907],[115.124610625,38.6154518867188],[115.158912382813,38.6582900214844],[115.182896757813,38.6393959785157],[115.191793242188,38.6182900214844],[115.221016875,38.6059743476563],[115.247345,38.513843],[115.24326296875,38.4679274726563],[115.23142703125,38.4497585273438],[115.22326296875,38.4179274726563],[115.19970828125,38.4091152167969],[115.214586210938,38.398843],[115.175621367188,38.371938703125],[115.20170046875,38.3539321113282],[115.218038359375,38.3102700019532],[115.23326296875,38.2997585273438],[115.237345,38.283843],[115.23298953125,38.2781996894531],[115.22170046875,38.2694863105469],[115.20548953125,38.2298805976563],[115.15455203125,38.2606081367188],[115.137345,38.2538430000001],[115.133804960938,38.2603029609375],[115.090885039063,38.2673830390626],[115.083804960938,38.2803029609376],[115.070885039063,38.2873830390625],[115.063267851563,38.3012831855469],[115.047784453125,38.2949025703125],[115.05646609375,38.273843],[115.048404570313,38.2542836738282],[115.017345,38.2670864082031],[114.991422148438,38.2564028144532],[114.983804960938,38.2703029609375],[114.9635559375,38.2814028144531],[114.947345,38.2747206855469],[114.925440703125,38.2837490058594],[114.903804960938,38.2673830390626],[114.877345,38.263843],[114.88142703125,38.2797585273438],[114.9005871875,38.3091762519532],[114.935308867188,38.3331508613282],[114.92076296875,38.3800795722657],[114.888741484375,38.4213979316407],[114.871676054688,38.417572248047],[114.86326296875,38.4297585273438],[114.85142703125,38.4379274726563],[114.843013945313,38.4501137519531],[114.82037234375,38.4450380683595],[114.82353640625,38.4591640449219],[114.807345,38.493843],[114.814971953125,38.5062184882813],[114.850220976563,38.5279384589844],[114.861158476563,38.5600307441406],[114.876202421875,38.5814577460938],[114.870787382813,38.5988430000001],[114.873902617188,38.608843],[114.870787382813,38.618843],[114.874166289063,38.6296950507813],[114.847345,38.643843],[114.83326296875,38.6535671210938],[114.871998320313,38.6667678046875],[114.918297148438,38.6563881660157],[114.970011015625,38.6724184394531]]]]}},{"type":"Feature","properties":{"name":"高阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.80435671875,38.7741408515625],[115.842345,38.7571230292969],[115.87213015625,38.7704665351563],[115.902345,38.7610561347656],[115.9363684375,38.7716542792969],[115.947345,38.7538430000001],[115.941612578125,38.7285976386719],[115.953013945313,38.7092031074219],[115.951695585938,38.6986257148438],[115.967803984375,38.6422182441407],[115.95052859375,38.6283864570313],[115.957345,38.573843],[115.928819609375,38.5541469550782],[115.937345,38.533843],[115.902843046875,38.5253688789063],[115.873013945313,38.5320558906251],[115.860094023438,38.5133425117188],[115.817345,38.5238430000001],[115.824874296875,38.5681703925782],[115.843516875,38.599077375],[115.83170046875,38.6081996894532],[115.8186340625,38.6251308417969],[115.796378203125,38.6423073554688],[115.772623320313,38.6279787421876],[115.659566679688,38.6551064277345],[115.637345,38.663843],[115.643590117188,38.6793752265625],[115.613336210938,38.6913967109375],[115.647345,38.7438430000001],[115.66062625,38.75056175],[115.667345,38.763843],[115.677345,38.763843],[115.684698515625,38.7593129707032],[115.664136992188,38.7300307441407],[115.730426054688,38.738540265625],[115.741383085938,38.7706996894531],[115.767345,38.7626137519531],[115.80435671875,38.7741408515625]],[[115.845152617188,38.5272658515625],[115.857345,38.5238430000001],[115.853922148438,38.5360353828126],[115.845152617188,38.5272658515625]]]]}},{"type":"Feature","properties":{"name":"满城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.337345,39.123843],[115.321124296875,39.0992946601563],[115.323468046875,39.0888430000001],[115.320714140625,39.0765651679687],[115.333892851563,39.0413442207032],[115.3826184375,39.0522670722656],[115.391710234375,39.0168312812501],[115.437345,39.0066017890625],[115.453433867188,39.0102077460938],[115.47326296875,38.9797585273438],[115.477345,38.953843],[115.477345,38.933843],[115.44263796875,38.9493825507813],[115.422345,38.9473146796875],[115.36877078125,38.9527748847656],[115.352808867188,38.8983803535157],[115.325889921875,38.8609792304688],[115.3614465625,38.8455580878907],[115.341275664063,38.8288002753907],[115.377345,38.803843],[115.377345,38.7838430000001],[115.320992460938,38.790884015625],[115.302896757813,38.7682900214844],[115.286236601563,38.7549489570313],[115.272345,38.7375991035157],[115.262725859375,38.7496083808594],[115.237345,38.7438430000001],[115.23025515625,38.773266828125],[115.23447390625,38.7946181464844],[115.256866484375,38.8106691718751],[115.237652617188,38.8574269843751],[115.273170195313,38.8780178046875],[115.274674101563,38.9180178046875],[115.242779570313,38.89776878125],[115.223267851563,38.9016237617187],[115.198995390625,38.935493390625],[115.169014921875,38.9569826484375],[115.173331328125,38.9788430000001],[115.169718046875,38.9971425605469],[115.135303984375,39.0104152656251],[115.107345,39.0048903632813],[115.082345,39.0098305488281],[115.072345,39.0078554511719],[115.062345,39.0098305488281],[115.047345,39.0068666816406],[114.991793242188,39.0178444648438],[114.957550078125,39.0395839667969],[114.96341921875,39.0692763496094],[114.94861453125,39.0925954414063],[114.957345,39.113843],[114.982506132813,39.11933128125],[115.002066679688,39.1084194160157],[115.021148710938,39.1099513984375],[115.032769804688,39.0891213203126],[115.0319153125,39.0785195136719],[115.04271609375,39.0692153144532],[115.053316679688,39.0569118476562],[115.100103789063,39.0606716132813],[115.133580351563,39.0419936347656],[115.177345,39.0730239082031],[115.215191679688,39.0461891914063],[115.255523710938,39.0641860175781],[115.238878203125,39.0940163398438],[115.260728789063,39.1193752265626],[115.272349882813,39.1184401679688],[115.337345,39.123843]]]]}},{"type":"Feature","properties":{"name":"南市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.577345,38.853843],[115.562984648438,38.7968325019531],[115.507017851563,38.7842861152344],[115.482345,38.8003554511719],[115.452345,38.7808193183594],[115.417345,38.8036110664063],[115.39326296875,38.7879274726563],[115.377345,38.7838430000001],[115.377345,38.803843],[115.3807825,38.810639875],[115.422330351563,38.8312917304688],[115.441353789063,38.8220009589844],[115.45406375,38.84712425],[115.467345,38.853843],[115.477345,38.853843],[115.477345,38.8638430000001],[115.50142703125,38.8579274726563],[115.577345,38.853843]]]]}},{"type":"Feature","properties":{"name":"清苑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.643985625,38.7971083808594],[115.650704375,38.7772023750001],[115.673985625,38.7704836250001],[115.677345,38.763843],[115.667345,38.763843],[115.632862578125,38.7572597480469],[115.647345,38.7438430000001],[115.613336210938,38.6913967109375],[115.643590117188,38.6793752265625],[115.637345,38.663843],[115.622584257813,38.6692641425781],[115.609742460938,38.6682326484375],[115.5880871875,38.6430995917969],[115.560738554688,38.6195351386719],[115.5727746875,38.6091664863282],[115.571812773438,38.5972194648438],[115.467345,38.573843],[115.442183867188,38.5632753730469],[115.407345,38.5710842109375],[115.392345,38.5677223945313],[115.382301054688,38.5699733710937],[115.33326296875,38.5579274726563],[115.307345,38.553843],[115.297345,38.553843],[115.290728789063,38.6454067207032],[115.262061796875,38.6585622382812],[115.252174101563,38.6905947089844],[115.232061796875,38.7085622382813],[115.227345,38.7438430000001],[115.237345,38.7438430000001],[115.262725859375,38.7496083808594],[115.272345,38.7375991035157],[115.286236601563,38.7549489570313],[115.302896757813,38.7682900214844],[115.320992460938,38.790884015625],[115.377345,38.7838430000001],[115.39326296875,38.7879274726563],[115.417345,38.8036110664063],[115.452345,38.7808193183594],[115.482345,38.8003554511719],[115.507017851563,38.7842861152344],[115.562984648438,38.7968325019531],[115.577345,38.853843],[115.581793242188,38.8593959785157],[115.593023710938,38.8683901191407],[115.587345,38.913843],[115.6218371875,38.9280178046876],[115.67255984375,38.9177712226563],[115.711519804688,38.8880178046876],[115.747345,38.883843],[115.760704375,38.8770851875],[115.7476965625,38.8579518867188],[115.710318632813,38.8504055000001],[115.677486601563,38.8337953925781],[115.6852746875,38.8178493476563],[115.643985625,38.7971083808594]]]]}},{"type":"Feature","properties":{"name":"曲阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.523922148438,38.5960353828125],[114.527345,38.583843],[114.515152617188,38.5872658515625],[114.523922148438,38.5960353828125]]],[[[114.527345,38.953843],[114.582125273438,38.9383107734375],[114.600474882813,38.940180890625],[114.631881132813,38.9283803535157],[114.703546171875,38.9156105781251],[114.698038359375,38.8615749335938],[114.712808867188,38.8493056464844],[114.741881132813,38.8123159003907],[114.7032434375,38.7955580878907],[114.722808867188,38.7793056464844],[114.731881132813,38.7283803535157],[114.762808867188,38.7093056464844],[114.777432890625,38.6916994453125],[114.791881132813,38.6583803535157],[114.802808867188,38.6493056464844],[114.811881132813,38.6383803535156],[114.835269804688,38.6293056464844],[114.847345,38.643843],[114.874166289063,38.6296950507813],[114.870787382813,38.618843],[114.873902617188,38.608843],[114.870787382813,38.5988430000001],[114.876202421875,38.5814577460938],[114.861158476563,38.5600307441406],[114.850220976563,38.5279384589844],[114.814971953125,38.5062184882813],[114.807345,38.493843],[114.741998320313,38.4992739082032],[114.729049101563,38.4702553535157],[114.703038359375,38.5004494453125],[114.684586210938,38.4790334296876],[114.667345,38.473843],[114.62197390625,38.5284706855469],[114.575670195313,38.5883266425782],[114.5419153125,38.5984889960938],[114.542764921875,38.6090810371094],[114.530279570313,38.6430825019532],[114.4593371875,38.7006093574219],[114.413316679688,38.6969118476563],[114.407345,38.703843],[114.4126575,38.7085903144532],[114.4120325,38.7190688300782],[114.422779570313,38.738843],[114.411058378906,38.7604091621094],[114.452345,38.7579494453126],[114.477345,38.759438703125],[114.492545195313,38.7585329414063],[114.523199492188,38.7695314765625],[114.522047148438,38.7888430000001],[114.52373171875,38.8170912910156],[114.5120325,38.8386171699219],[114.51373171875,38.8670912910157],[114.493121367188,38.9050197578125],[114.5226575,38.9185768867187],[114.5215246875,38.9376198554688],[114.527345,38.953843]]]]}},{"type":"Feature","properties":{"name":"容城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.867345,39.1338430000001],[115.895494414063,39.1302931953125],[115.883985625,39.1067263007813],[115.933985625,39.107202375],[115.947345,39.113843],[115.96478640625,39.10698753125],[115.985953398438,39.1101149726563],[116.027345,39.0938430000001],[116.033160429688,39.0893544746094],[116.029508085938,39.0646450019532],[116.063595,39.0186684394532],[116.05170046875,39.0094863105469],[116.027345,38.963843],[116.012266875,38.958305890625],[115.987896757813,38.9719057441407],[116.007232695313,39.0065663886719],[115.94197390625,39.0184706855469],[115.93271609375,39.0292153144532],[115.909947539063,39.0384706855469],[115.876002226563,38.9990700507813],[115.82197390625,38.9892153144532],[115.779840117188,38.9593410468751],[115.767345,38.9738430000001],[115.776392851563,38.9968593574219],[115.757550078125,39.0114028144532],[115.764644804688,39.0594057441407],[115.757345,39.103843],[115.763892851563,39.1072927070313],[115.77330203125,39.1251528144532],[115.805421171875,39.1107228828126],[115.832345,39.1315944648438],[115.856358671875,39.1129811835938],[115.867345,39.1338430000001]]],[[[115.867345,39.1338430000001],[115.855152617188,39.1372658515625],[115.863922148438,39.1460353828126],[115.867345,39.1338430000001]]]]}},{"type":"Feature","properties":{"name":"顺平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.957345,39.113843],[114.94861453125,39.0925954414063],[114.96341921875,39.0692763496094],[114.957550078125,39.0395839667969],[114.991793242188,39.0178444648438],[115.047345,39.0068666816406],[115.062345,39.0098305488281],[115.072345,39.0078554511719],[115.082345,39.0098305488281],[115.107345,39.0048903632813],[115.135303984375,39.0104152656251],[115.169718046875,38.9971425605469],[115.173331328125,38.9788430000001],[115.169014921875,38.9569826484375],[115.198995390625,38.935493390625],[115.223267851563,38.9016237617187],[115.242779570313,38.89776878125],[115.274674101563,38.9180178046875],[115.273170195313,38.8780178046875],[115.237652617188,38.8574269843751],[115.256866484375,38.8106691718751],[115.23447390625,38.7946181464844],[115.23025515625,38.773266828125],[115.237345,38.7438430000001],[115.227345,38.7438430000001],[115.211158476563,38.7476552558594],[115.174542265625,38.7773134589844],[115.132345,38.7641713691406],[115.091656523438,38.7768434882813],[115.077750273438,38.7994167304688],[115.047345,38.803843],[115.04326296875,38.8297585273438],[115.028345976563,38.8526638007813],[114.9921496875,38.8374599433594],[114.961988554688,38.8570998359376],[114.927628203125,38.9081252265626],[114.88486453125,38.9241262031251],[114.90392703125,38.9695095039063],[114.88142703125,38.9779274726563],[114.8344153125,39.0171340156251],[114.872296171875,39.0313088203125],[114.89142703125,39.0603102851563],[114.85142703125,39.0879274726563],[114.847345,39.103843],[114.862105742188,39.0976430488282],[114.887345,39.103843],[114.906705351563,39.1119741035157],[114.942623320313,39.1200258613282],[114.957345,39.113843]]]]}},{"type":"Feature","properties":{"name":"唐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.477345,39.023843],[114.472345,39.0110353828125],[114.467345,39.023843],[114.477345,39.023843]]],[[[114.477345,39.023843],[114.486553984375,39.0569130683594],[114.55298953125,39.0681996894532],[114.568170195313,39.1052931953125],[114.59170046875,39.1194863105469],[114.61298953125,39.1281996894532],[114.653453398438,39.1581996894531],[114.721671171875,39.1482155585938],[114.75298953125,39.1294863105469],[114.76170046875,39.1181996894531],[114.847345,39.103843],[114.85142703125,39.0879274726563],[114.89142703125,39.0603102851563],[114.872296171875,39.0313088203125],[114.8344153125,39.0171340156251],[114.88142703125,38.9779274726563],[114.90392703125,38.9695095039063],[114.88486453125,38.9241262031251],[114.927628203125,38.9081252265626],[114.961988554688,38.8570998359376],[114.9921496875,38.8374599433594],[115.028345976563,38.8526638007813],[115.04326296875,38.8297585273438],[115.047345,38.803843],[115.0616809375,38.7648085761719],[115.031163359375,38.7385195136719],[115.032745390625,38.718843],[115.031138945313,38.698843],[115.054327421875,38.6884963203125],[115.051944609375,38.658843],[115.052769804688,38.6485561347656],[115.037345,38.623843],[115.021041289063,38.6280275703126],[115.02357546875,38.639341046875],[115.0170715625,38.6479274726563],[115.00326296875,38.6279274726563],[114.983526640625,38.6197585273438],[114.970011015625,38.6724184394531],[114.918297148438,38.6563881660157],[114.871998320313,38.6667678046875],[114.83326296875,38.6535671210938],[114.847345,38.643843],[114.835269804688,38.6293056464844],[114.811881132813,38.6383803535156],[114.802808867188,38.6493056464844],[114.791881132813,38.6583803535157],[114.777432890625,38.6916994453125],[114.762808867188,38.7093056464844],[114.731881132813,38.7283803535157],[114.722808867188,38.7793056464844],[114.7032434375,38.7955580878907],[114.741881132813,38.8123159003907],[114.712808867188,38.8493056464844],[114.698038359375,38.8615749335938],[114.703546171875,38.9156105781251],[114.631881132813,38.9283803535157],[114.600474882813,38.940180890625],[114.582125273438,38.9383107734375],[114.527345,38.953843],[114.52156375,39.0105300117188],[114.477345,39.023843]]]]}},{"type":"Feature","properties":{"name":"望都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.091656523438,38.7768434882813],[115.132345,38.7641713691406],[115.174542265625,38.7773134589844],[115.211158476563,38.7476552558594],[115.227345,38.7438430000001],[115.232061796875,38.7085622382813],[115.252174101563,38.6905947089844],[115.262061796875,38.6585622382812],[115.290728789063,38.6454067207032],[115.297345,38.553843],[115.289893828125,38.5388576484375],[115.300250273438,38.5176540351562],[115.247345,38.513843],[115.221016875,38.6059743476563],[115.191793242188,38.6182900214844],[115.182896757813,38.6393959785157],[115.158912382813,38.6582900214844],[115.124610625,38.6154518867188],[115.092345,38.6194643378907],[115.05939578125,38.6153664375],[115.037345,38.623843],[115.052769804688,38.6485561347656],[115.051944609375,38.658843],[115.054327421875,38.6884963203125],[115.031138945313,38.698843],[115.032745390625,38.718843],[115.031163359375,38.7385195136719],[115.0616809375,38.7648085761719],[115.047345,38.803843],[115.077750273438,38.7994167304688],[115.091656523438,38.7768434882813]]]]}},{"type":"Feature","properties":{"name":"新市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.36877078125,38.9527748847656],[115.422345,38.9473146796875],[115.44263796875,38.9493825507813],[115.477345,38.933843],[115.485455351563,38.8844728828125],[115.477345,38.8638430000001],[115.467345,38.8638430000001],[115.467345,38.853843],[115.45406375,38.84712425],[115.441353789063,38.8220009589844],[115.422330351563,38.8312917304688],[115.3807825,38.810639875],[115.377345,38.803843],[115.341275664063,38.8288002753907],[115.3614465625,38.8455580878907],[115.325889921875,38.8609792304688],[115.352808867188,38.8983803535157],[115.36877078125,38.9527748847656]]]]}},{"type":"Feature","properties":{"name":"雄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.237345,38.933843],[116.233922148438,38.9216506171876],[116.225152617188,38.9304201484375],[116.237345,38.933843]]],[[[116.237345,38.933843],[116.227345,38.9477956367188],[116.213170195313,38.9280178046876],[116.197345,38.923843],[116.155733671875,38.9432729316407],[116.117345,38.933843],[116.067359648438,38.9275978828125],[116.036612578125,38.9314211250001],[116.027345,38.963843],[116.05170046875,39.0094863105469],[116.063595,39.0186684394532],[116.029508085938,39.0646450019532],[116.033160429688,39.0893544746094],[116.027345,39.0938430000001],[116.031065703125,39.1001210761719],[116.097213164063,39.1079921699219],[116.073624296875,39.121977765625],[116.081978789063,39.1535659003906],[116.122345,39.1674282050781],[116.157345,39.1554091621094],[116.181500273438,39.1637038398438],[116.191065703125,39.1475649238282],[116.207345,39.143843],[116.257345,39.143843],[116.257345,39.1338430000001],[116.26142703125,39.1179274726563],[116.29326296875,39.0997585273438],[116.30142703125,39.0879274726563],[116.313643828125,39.0794936347656],[116.301217070313,39.0288845039063],[116.30361453125,39.0181728339844],[116.283829375,39.0045119453126],[116.32326296875,38.9897585273438],[116.327345,38.983843],[116.31435671875,38.9650295234376],[116.291573515625,38.9701369453125],[116.2823059375,38.9453823066407],[116.237345,38.933843]]]]}},{"type":"Feature","properties":{"name":"徐水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.45357546875,39.1608779121094],[115.472345,39.1581044746094],[115.48990359375,39.16069846875],[115.507345,39.153843],[115.511793242188,39.1382900214844],[115.542896757813,39.1293959785157],[115.594928007813,39.1093959785156],[115.642896757813,39.1182900214844],[115.654058867188,39.1322267890625],[115.7141809375,39.0968849921875],[115.757345,39.103843],[115.764644804688,39.0594057441407],[115.757550078125,39.0114028144532],[115.776392851563,38.9968593574219],[115.767345,38.9738430000001],[115.760704375,38.970483625],[115.753985625,38.947202375],[115.740704375,38.940483625],[115.729288359375,38.9179189277344],[115.743985625,38.910483625],[115.747345,38.883843],[115.711519804688,38.8880178046876],[115.67255984375,38.9177712226563],[115.6218371875,38.9280178046876],[115.587345,38.913843],[115.56326296875,38.9297585273438],[115.51142703125,38.9379274726563],[115.477345,38.953843],[115.47326296875,38.9797585273438],[115.453433867188,39.0102077460938],[115.437345,39.0066017890625],[115.391710234375,39.0168312812501],[115.3826184375,39.0522670722656],[115.333892851563,39.0413442207032],[115.320714140625,39.0765651679687],[115.323468046875,39.0888430000001],[115.321124296875,39.0992946601563],[115.337345,39.123843],[115.375596953125,39.1523928046876],[115.419078398438,39.1352992988282],[115.45357546875,39.1608779121094]]]]}},{"type":"Feature","properties":{"name":"易县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.20271609375,39.5592153144532],[115.212213164063,39.5481911445313],[115.237633085938,39.5623744941406],[115.333345976563,39.5363210273438],[115.331236601563,39.5100405097656],[115.357345,39.495473859375],[115.38197390625,39.5092153144531],[115.41271609375,39.5184706855469],[115.437769804688,39.5584706855469],[115.45271609375,39.5492153144532],[115.47595828125,39.5121096015626],[115.547720976563,39.4958058906251],[115.56197390625,39.4484706855469],[115.57271609375,39.4292153144531],[115.58197390625,39.3884706855469],[115.613072539063,39.3791078925781],[115.59603640625,39.3485756660156],[115.62197390625,39.3184706855469],[115.627345,39.313843],[115.62326296875,39.2879274726562],[115.59142703125,39.2797585273438],[115.5734778125,39.2537599921875],[115.531065703125,39.2295510078126],[115.53599734375,39.2075551582031],[115.52326296875,39.1579274726563],[115.507345,39.153843],[115.48990359375,39.16069846875],[115.472345,39.1581044746094],[115.45357546875,39.1608779121094],[115.419078398438,39.1352992988282],[115.375596953125,39.1523928046876],[115.337345,39.123843],[115.272349882813,39.1184401679688],[115.260728789063,39.1193752265626],[115.238878203125,39.0940163398438],[115.255523710938,39.0641860175781],[115.215191679688,39.0461891914063],[115.177345,39.0730239082031],[115.133580351563,39.0419936347656],[115.100103789063,39.0606716132813],[115.053316679688,39.0569118476562],[115.04271609375,39.0692153144532],[115.0319153125,39.0785195136719],[115.032769804688,39.0891213203126],[115.021148710938,39.1099513984375],[115.002066679688,39.1084194160157],[114.982506132813,39.11933128125],[114.957345,39.113843],[114.942623320313,39.1200258613282],[114.906705351563,39.1119741035157],[114.887345,39.103843],[114.882159453125,39.1219802070313],[114.85361453125,39.14483909375],[114.887335234375,39.1718447089844],[114.871793242188,39.1982900214844],[114.862896757813,39.2193959785156],[114.851793242188,39.2282900214844],[114.842896757813,39.2556484199219],[114.872896757813,39.2682900214844],[114.911285429688,39.3162233710938],[114.942345,39.2979653144531],[114.96931765625,39.3138210273438],[114.981793242188,39.3293959785156],[115.0234778125,39.3547170234375],[115.020650664063,39.3774562812501],[115.034039335938,39.40022971875],[115.030479765625,39.428843],[115.052896757813,39.4382900214844],[115.081793242188,39.4661086250001],[115.021793242188,39.4882900214844],[115.002896757813,39.5054164863282],[115.027345,39.543843],[115.121954375,39.5489723945312],[115.122877226563,39.5604616523438],[115.09271609375,39.5864455390626],[115.1141028125,39.5928432441406],[115.20271609375,39.5592153144532]]]]}},{"type":"Feature","properties":{"name":"涞水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.552979765625,39.79683128125],[115.507345,39.7866017890625],[115.4810559375,39.7924941230469],[115.42326296875,39.7776625800782],[115.434874296875,39.7496096015625],[115.478150664063,39.7385036445313],[115.493585234375,39.6887050605469],[115.475753203125,39.6462441230469],[115.510079375,39.6539394355469],[115.515709257813,39.6288430000001],[115.5080090625,39.5945082832032],[115.537345,39.6136110664062],[115.569581328125,39.5926186347657],[115.607345,39.6010842109375],[115.622345,39.5977223945313],[115.632345,39.5999636054688],[115.642789335938,39.5976222968751],[115.665211210938,39.6122206855469],[115.68326296875,39.5997585273438],[115.69142703125,39.5679274726563],[115.73326296875,39.5397585273438],[115.749595976563,39.5160964179688],[115.767345,39.503843],[115.76298953125,39.4981996894531],[115.74375125,39.4833498359376],[115.741402617188,39.4674550605469],[115.7760559375,39.4225551582032],[115.79298953125,39.4094863105469],[115.807345,39.383843],[115.797345,39.383843],[115.784537382813,39.378843],[115.797345,39.373843],[115.807345,39.373843],[115.807345,39.343843],[115.787345,39.343843],[115.787345,39.333843],[115.72197390625,39.3192153144532],[115.700162382813,39.2939015937501],[115.67271609375,39.3092153144531],[115.627345,39.313843],[115.62197390625,39.3184706855469],[115.59603640625,39.3485756660156],[115.613072539063,39.3791078925781],[115.58197390625,39.3884706855469],[115.57271609375,39.4292153144531],[115.56197390625,39.4484706855469],[115.547720976563,39.4958058906251],[115.47595828125,39.5121096015626],[115.45271609375,39.5492153144532],[115.437769804688,39.5584706855469],[115.41271609375,39.5184706855469],[115.38197390625,39.5092153144531],[115.357345,39.495473859375],[115.331236601563,39.5100405097656],[115.333345976563,39.5363210273438],[115.237633085938,39.5623744941406],[115.212213164063,39.5481911445313],[115.20271609375,39.5592153144532],[115.1141028125,39.5928432441406],[115.09271609375,39.5864455390626],[115.122877226563,39.5604616523438],[115.121954375,39.5489723945312],[115.027345,39.543843],[115.001065703125,39.5581264472656],[115.005709257813,39.578843],[115.001065703125,39.5995510078125],[115.03326296875,39.6179274726563],[115.04142703125,39.6297585273438],[115.057027617188,39.6405275703125],[115.007345,39.673843],[115.007345,39.683843],[115.017345,39.683843],[115.02326296875,39.6879274726563],[115.0370715625,39.7079274726562],[115.10326296875,39.6997585273438],[115.111676054688,39.6875722480469],[115.122623320313,39.6900258613282],[115.169332304688,39.6704079414063],[115.173468046875,39.688843],[115.171041289063,39.6996584296875],[115.219176054688,39.7120119453125],[115.23142703125,39.7297585273438],[115.267789335938,39.7433632636719],[115.31142703125,39.7797585273438],[115.333638945313,39.7880690742188],[115.329312773438,39.8073732734375],[115.34142703125,39.8397585273438],[115.35326296875,39.8579274726563],[115.36142703125,39.8797585273438],[115.393648710938,39.8880275703126],[115.391124296875,39.8992897773438],[115.40326296875,39.9179274726563],[115.41142703125,39.9397585273438],[115.417345,39.943843],[115.436803007813,39.9513210273438],[115.513687773438,39.9046218085937],[115.511099882813,39.883843],[115.513590117188,39.863843],[115.510499296875,39.8389846015625],[115.557345,39.8138430000001],[115.552979765625,39.79683128125]]]]}},{"type":"Feature","properties":{"name":"涞源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.657345,39.593843],[114.647345,39.593843],[114.652345,39.6066506171876],[114.657345,39.593843]]],[[[114.647345,39.593843],[114.652345,39.5810353828125],[114.657345,39.593843],[114.699503203125,39.579067609375],[114.712178984375,39.6191078925782],[114.762213164063,39.6086391425781],[114.77935671875,39.6093190742188],[114.822535429688,39.5990334296875],[114.837345,39.5830507636719],[114.852154570313,39.5990334296875],[114.867725859375,39.613462140625],[114.890323515625,39.6378530097656],[114.922535429688,39.6586525703125],[114.93216921875,39.669048078125],[114.957340117188,39.6680507636719],[115.007345,39.673843],[115.057027617188,39.6405275703125],[115.04142703125,39.6297585273438],[115.03326296875,39.6179274726563],[115.001065703125,39.5995510078125],[115.005709257813,39.578843],[115.001065703125,39.5581264472656],[115.027345,39.543843],[115.002896757813,39.5054164863282],[115.021793242188,39.4882900214844],[115.081793242188,39.4661086250001],[115.052896757813,39.4382900214844],[115.030479765625,39.428843],[115.034039335938,39.40022971875],[115.020650664063,39.3774562812501],[115.0234778125,39.3547170234375],[114.981793242188,39.3293959785156],[114.96931765625,39.3138210273438],[114.942345,39.2979653144531],[114.911285429688,39.3162233710938],[114.872896757813,39.2682900214844],[114.842896757813,39.2556484199219],[114.851793242188,39.2282900214844],[114.862896757813,39.2193959785156],[114.871793242188,39.1982900214844],[114.887335234375,39.1718447089844],[114.85361453125,39.14483909375],[114.882159453125,39.1219802070313],[114.887345,39.103843],[114.862105742188,39.0976430488282],[114.847345,39.103843],[114.76170046875,39.1181996894531],[114.75298953125,39.1294863105469],[114.721671171875,39.1482155585938],[114.653453398438,39.1581996894531],[114.61298953125,39.1281996894532],[114.59170046875,39.1194863105469],[114.568170195313,39.1052931953125],[114.55298953125,39.0681996894532],[114.486553984375,39.0569130683594],[114.477345,39.023843],[114.467345,39.023843],[114.4522278125,39.0434267402344],[114.390926542969,39.0685170722656],[114.347345,39.073843],[114.364246855469,39.1109645820312],[114.360203886719,39.1383315253906],[114.373160429688,39.1483315253907],[114.370318632813,39.1675527167969],[114.43298953125,39.1781996894532],[114.44170046875,39.1894863105469],[114.46298953125,39.1981996894531],[114.47170046875,39.2170607734375],[114.419075957031,39.2317153144531],[114.423822050781,39.263843],[114.420867949219,39.2838430000001],[114.424129667969,39.3059242988281],[114.473765898438,39.3442360664063],[114.465611601563,39.3993947578126],[114.4886340625,39.4375551582031],[114.50306765625,39.4728212714844],[114.533463164063,39.4962831855469],[114.531549101563,39.5092336250001],[114.54298953125,39.5281996894531],[114.557345,39.563843],[114.56271609375,39.5684706855469],[114.576046171875,39.5839443183594],[114.624342070313,39.5497011542969],[114.64197390625,39.5892153144532],[114.647345,39.593843]]]]}},{"type":"Feature","properties":{"name":"涿州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,39.383843],[115.797345,39.373843],[115.784537382813,39.378843],[115.797345,39.383843]]],[[[115.939742460938,39.5694533515626],[115.962345,39.5676381660156],[115.975640898438,39.5974306464844],[115.992667265625,39.5776638007813],[116.0123840625,39.5792482734376],[116.131104765625,39.56757346875],[116.163424101563,39.5856044746094],[116.217345,39.573843],[116.217345,39.563843],[116.237345,39.563843],[116.237345,39.5138430000001],[116.222628203125,39.5081862617188],[116.203287382813,39.5105910468751],[116.135460234375,39.4563442207032],[116.122896757813,39.3982900214844],[116.107345,39.3638430000001],[116.094093046875,39.3472963691406],[116.042076445313,39.369751203125],[116.030972929688,39.3558852363281],[115.931793242188,39.3682900214844],[115.872457304688,39.3794789863282],[115.857330351563,39.3775978828125],[115.807345,39.383843],[115.79298953125,39.4094863105469],[115.7760559375,39.4225551582032],[115.741402617188,39.4674550605469],[115.74375125,39.4833498359376],[115.76298953125,39.4981996894531],[115.767345,39.503843],[115.773961210938,39.5115248847656],[115.822847929688,39.5075978828125],[115.820465117188,39.5372158027345],[115.843326445313,39.5499697089844],[115.8780090625,39.54718284375],[115.903526640625,39.5691664863281],[115.901168242188,39.5984706855469],[115.92271609375,39.5892153144532],[115.939742460938,39.5694533515626]]]]}},{"type":"Feature","properties":{"name":"蠡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.659566679688,38.6551064277345],[115.772623320313,38.6279787421876],[115.796378203125,38.6423073554688],[115.8186340625,38.6251308417969],[115.83170046875,38.6081996894532],[115.843516875,38.599077375],[115.824874296875,38.5681703925782],[115.817345,38.5238430000001],[115.78170046875,38.5094863105469],[115.77298953125,38.4881996894532],[115.74170046875,38.4794863105469],[115.7286340625,38.4625551582032],[115.709014921875,38.4474135566406],[115.725675078125,38.3902724433594],[115.7060559375,38.3751308417969],[115.697345,38.3638430000001],[115.689263945313,38.3478676582032],[115.657345,38.343843],[115.647345,38.343843],[115.599361601563,38.3498451972656],[115.603023710938,38.3792958808594],[115.591666289063,38.3883901191406],[115.5941809375,38.4086159492188],[115.561666289063,38.4283681464844],[115.564244414063,38.4491054511719],[115.520445585938,38.4585805488281],[115.524898710938,38.4943886542969],[115.481793242188,38.5482900214844],[115.467345,38.573843],[115.571812773438,38.5972194648438],[115.5727746875,38.6091664863282],[115.560738554688,38.6195351386719],[115.5880871875,38.6430995917969],[115.609742460938,38.6682326484375],[115.622584257813,38.6692641425781],[115.637345,38.663843],[115.659566679688,38.6551064277345]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇礼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.471676054688,41.2901137519532],[115.482345,41.2877223945313],[115.492960234375,41.2901015449219],[115.53326296875,41.2797585273437],[115.55142703125,41.2679274726563],[115.567345,41.2638430000001],[115.555308867188,41.2488112617188],[115.493795195313,41.2355019355469],[115.490748320313,41.2110048652344],[115.517720976563,41.1408351875],[115.499810820313,41.0942360664063],[115.503004179688,41.0685549140626],[115.46951296875,40.9836208320313],[115.481793242188,40.9682900214844],[115.51593875,40.9539003730469],[115.502281523438,40.906137921875],[115.4312121875,40.8629689765626],[115.433590117188,40.8438307929688],[115.427345,40.793843],[115.371514921875,40.7728639960938],[115.342808867188,40.7893056464844],[115.28642703125,40.8018068671875],[115.175621367188,40.790512921875],[115.142808867188,40.8093056464844],[115.121881132813,40.8183803535156],[115.102345,40.8295705390625],[115.073604765625,40.8131081367188],[114.991593046875,40.8214675117187],[114.957345,40.813843],[114.957345,40.823843],[114.927345,40.823843],[114.927345,40.833843],[114.922296171875,40.853520734375],[114.889595976563,40.8760964179688],[114.867022734375,40.9087929511719],[114.81826296875,40.9213063789063],[114.807345,40.9638430000001],[114.83271609375,40.9684706855469],[114.84197390625,40.9750844550781],[114.809722929688,40.9894753242188],[114.786768828125,41.0161171699219],[114.814361601563,41.0398867011719],[114.839049101563,41.0379018378907],[114.9122278125,41.0492543769532],[114.932345,41.0476381660156],[114.957042265625,41.0496218085938],[114.97197390625,41.0992153144531],[114.98271609375,41.1084706855469],[115.009429960938,41.1394789863281],[115.022667265625,41.1384157539063],[115.03197390625,41.1492153144532],[115.04271609375,41.1584706855469],[115.063267851563,41.1823281074219],[115.061783476563,41.2008071113282],[115.025660429688,41.1979042792969],[115.04533328125,41.2331630683594],[115.11271609375,41.2484706855469],[115.126046171875,41.2639443183594],[115.165440703125,41.2360134101563],[115.323228789063,41.2502284980469],[115.345460234375,41.2244228339844],[115.374586210938,41.2406716132813],[115.407345,41.2380397773437],[115.427642851563,41.2396706367187],[115.447345,41.273843],[115.46326296875,41.2779274726563],[115.471676054688,41.2901137519532]]]]}},{"type":"Feature","properties":{"name":"赤城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.687345,40.5738430000001],[115.683922148438,40.5860353828125],[115.675152617188,40.5772658515625],[115.680914335938,40.565512921875],[115.631939726563,40.5797927070313],[115.616265898438,40.5594863105469],[115.54170046875,40.5681996894531],[115.507345,40.5738430000001],[115.50326296875,40.5897585273438],[115.489322539063,40.6111647773438],[115.51326296875,40.6479274726563],[115.52142703125,40.6750954414062],[115.487345,40.683843],[115.483624296875,40.7301210761719],[115.438980742188,40.7540419746094],[115.450806914063,40.7884792304688],[115.427345,40.793843],[115.433590117188,40.8438307929688],[115.4312121875,40.8629689765626],[115.502281523438,40.906137921875],[115.51593875,40.9539003730469],[115.481793242188,40.9682900214844],[115.46951296875,40.9836208320313],[115.503004179688,41.0685549140626],[115.499810820313,41.0942360664063],[115.517720976563,41.1408351875],[115.490748320313,41.2110048652344],[115.493795195313,41.2355019355469],[115.555308867188,41.2488112617188],[115.567345,41.2638430000001],[115.582896757813,41.2682900214844],[115.624644804688,41.3204225898438],[115.651402617188,41.317094953125],[115.723077421875,41.3744167304688],[115.784644804688,41.3311403632813],[115.821793242188,41.2782900214844],[115.86771609375,41.2683534980469],[115.893702421875,41.2359023261719],[115.927345,41.2400868964844],[115.95150515625,41.2370815253907],[115.952965117188,41.248843],[115.951261015625,41.2625624824219],[115.961793242188,41.2993959785157],[116.001265898438,41.3106825996094],[116.029420195313,41.37749534375],[116.037345,41.3838430000001],[116.05373171875,41.3898598457031],[116.112105742188,41.3684218574219],[116.138648710938,41.3705544257813],[116.201768828125,41.3310182929688],[116.202764921875,41.3186049628906],[116.18310671875,41.2650771308594],[116.223492460938,41.2081215644532],[116.221217070313,41.1798232246094],[116.234176054688,41.1566030097657],[116.231710234375,41.1259291816406],[116.281612578125,41.0829335761719],[116.283629179688,41.0578713203125],[116.257457304688,41.0353224921875],[116.27197390625,41.0184706855469],[116.28271609375,41.0092153144532],[116.29197390625,40.988470685547],[116.337589140625,40.9781081367188],[116.357345,40.943843],[116.352628203125,40.9385622382813],[116.323175078125,40.9122450996094],[116.387906523438,40.8544057441407],[116.406783476563,40.8332802558594],[116.451265898438,40.7935366035156],[116.457345,40.7738430000001],[116.449610625,40.7645351386719],[116.318980742188,40.7778493476563],[116.296436796875,40.7507094550782],[116.237784453125,40.7929189277344],[116.222808867188,40.7583803535157],[116.171881132813,40.6993056464844],[116.159781523438,40.6714052558594],[116.11068484375,40.6501125312501],[116.113018828125,40.6272450996095],[116.084893828125,40.63011253125],[116.071881132813,40.6193056464844],[116.062808867188,40.6083803535157],[116.011881132813,40.5993056464844],[115.995582304688,40.5796828437501],[115.980391875,40.5781349921875],[115.95650515625,40.606889875],[115.906553984375,40.6119814277344],[115.882808867188,40.5983803535157],[115.8257434375,40.5882118964844],[115.812808867188,40.5583803535157],[115.765655546875,40.5479250312501],[115.737345,40.513843],[115.720347929688,40.5189614082032],[115.725894804688,40.5879994941407],[115.687345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"沽源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,41.503843],[114.970045195313,41.4999282050781],[114.937393828125,41.4839821601563],[114.927345,41.503843]]],[[[114.927345,41.503843],[114.88297,41.4965541816407],[114.87298953125,41.5094863105469],[114.837345,41.513843],[114.843985625,41.527202375],[114.851534453125,41.5758461738281],[114.873985625,41.5872023750001],[114.877345,41.593843],[114.888687773438,41.6065395332031],[114.947345,41.6100356269532],[114.977345,41.608247296875],[115.010592070313,41.6102284980469],[115.043629179688,41.5922768378907],[115.086456328125,41.6221926093751],[115.183189726563,41.5996865058594],[115.210494414063,41.5691237617188],[115.248878203125,41.5803981757813],[115.266392851563,41.6185622382813],[115.292628203125,41.6091237617188],[115.310494414063,41.5891237617188],[115.362906523438,41.5986122871094],[115.341475859375,41.6380446601562],[115.35322390625,41.6596572089844],[115.302857695313,41.7046559882812],[115.39713015625,41.7265895820313],[115.446783476563,41.7444057441406],[115.523189726563,41.7679994941407],[115.562061796875,41.7891237617188],[115.628765898438,41.8197389960938],[115.712628203125,41.8685622382813],[115.731588164063,41.8897817207032],[115.770220976563,41.8874794746094],[115.782628203125,41.8985622382812],[115.792061796875,41.9091237617187],[115.797345,41.9138430000001],[115.812628203125,41.9185622382813],[115.822061796875,41.9291237617188],[115.917345,41.943843],[115.936788359375,41.8968288398437],[115.99271609375,41.8292153144531],[116.00834109375,41.7773159003907],[116.070079375,41.7822768378907],[116.077345,41.773843],[116.07170046875,41.7694863105469],[116.049244414063,41.7319411445313],[116.01170046875,41.7094863105469],[115.9686340625,41.6775551582031],[115.908585234375,41.6416432929688],[115.92310671875,41.5789858222657],[115.921519804688,41.5682729316406],[115.94298953125,41.5594863105469],[115.9652746875,41.5460439277344],[115.98170046875,41.4681996894532],[116.00162234375,41.4528212714844],[116.01170046875,41.4281996894532],[116.0325403125,41.4121120429688],[116.037345,41.3838430000001],[116.029420195313,41.37749534375],[116.001265898438,41.3106825996094],[115.961793242188,41.2993959785157],[115.951261015625,41.2625624824219],[115.952965117188,41.248843],[115.95150515625,41.2370815253907],[115.927345,41.2400868964844],[115.893702421875,41.2359023261719],[115.86771609375,41.2683534980469],[115.821793242188,41.2782900214844],[115.784644804688,41.3311403632813],[115.723077421875,41.3744167304688],[115.651402617188,41.317094953125],[115.624644804688,41.3204225898438],[115.582896757813,41.2682900214844],[115.567345,41.2638430000001],[115.55142703125,41.2679274726563],[115.53326296875,41.2797585273437],[115.492960234375,41.2901015449219],[115.482345,41.2877223945313],[115.471676054688,41.2901137519532],[115.46326296875,41.2779274726563],[115.447345,41.273843],[115.454298125,41.3161598945313],[115.439127226563,41.3547499824219],[115.4160559375,41.3725551582031],[115.387183867188,41.409964826172],[115.32170046875,41.4281996894532],[115.30427859375,41.4507741523438],[115.28170046875,41.4681996894532],[115.2676575,41.4863906074219],[115.21170046875,41.4981996894532],[115.188800078125,41.5120131660157],[115.137345,41.50440940625],[115.102345,41.5095815253907],[115.085499296875,41.5070925117188],[115.025738554688,41.524516828125],[114.963883085938,41.5153749824219],[114.95298953125,41.529486310547],[114.936910429688,41.5381996894532],[114.927345,41.503843]]]]}},{"type":"Feature","properties":{"name":"怀安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.27298953125,40.7494863105469],[114.328802519531,40.7365541816407],[114.347345,40.743843],[114.352315703125,40.7152736640625],[114.418197050781,40.6964614082031],[114.442652617188,40.6995034003907],[114.507525664063,40.6714980292969],[114.645406523438,40.6915651679688],[114.728975859375,40.7236891914063],[114.762896757813,40.7093959785156],[114.767345,40.703843],[114.77197390625,40.6784706855469],[114.793116484375,40.6690358710938],[114.77173953125,40.6388869453126],[114.786280546875,40.6128273750001],[114.779664335938,40.5304616523438],[114.801754179688,40.5114284492188],[114.7519153125,40.4891896796875],[114.753526640625,40.4691664863282],[114.74197390625,40.4592153144531],[114.73271609375,40.4484706855469],[114.700123320313,40.4203908515626],[114.707345,40.373843],[114.65197390625,40.3692153144532],[114.622584257813,40.3584218574219],[114.601832304688,40.3600893378906],[114.527345,40.3438430000001],[114.510181914063,40.3504396796876],[114.47486453125,40.3460463691406],[114.44263796875,40.3695876289063],[114.388968535156,40.3573976875001],[114.301810332031,40.3682387519531],[114.279793730469,40.4277956367188],[114.293587675781,40.438843],[114.264100371094,40.4624575019532],[114.287803984375,40.5454677558594],[114.270535917969,40.5592958808594],[114.274039335938,40.5874562812501],[114.260504179688,40.6104799628907],[114.217345,40.6051113105469],[114.202899199219,40.6393959785157],[114.181790800781,40.6682900214844],[114.162899199219,40.6993959785157],[114.137345,40.7338430000001],[114.155264921875,40.7570571113281],[114.194388457031,40.7628395820313],[114.27298953125,40.7494863105469]]]]}},{"type":"Feature","properties":{"name":"怀来县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.687345,40.5738430000001],[115.675152617188,40.5772658515625],[115.683922148438,40.5860353828125],[115.687345,40.5738430000001]]],[[[115.687345,40.5738430000001],[115.725894804688,40.5879994941407],[115.720347929688,40.5189614082032],[115.737345,40.513843],[115.742061796875,40.4985622382813],[115.7726575,40.4891139960937],[115.76982546875,40.441567609375],[115.862423125,40.3608046699219],[115.912628203125,40.3491237617187],[115.922061796875,40.3285622382813],[115.932628203125,40.3091237617187],[115.942061796875,40.2885622382813],[115.957345,40.263843],[115.95326296875,40.2579274726563],[115.91978640625,40.2493361640625],[115.884346953125,40.2248671699219],[115.86326296875,40.1879274726563],[115.840396757813,40.1721401191407],[115.847345,40.143843],[115.815513945313,40.1520119453126],[115.772623320313,40.1700258613281],[115.753682890625,40.1657802558594],[115.74326296875,40.1379274726563],[115.72697390625,40.1266835761719],[115.707345,40.1310842109375],[115.692345,40.1277223945313],[115.676392851563,40.1312978339844],[115.63326296875,40.1179274726563],[115.59142703125,40.1097585273438],[115.58326296875,40.0979274726563],[115.55142703125,40.0897585273438],[115.54326296875,40.0779274726563],[115.51142703125,40.0697585273438],[115.497345,40.063843],[115.502984648438,40.0886818671875],[115.500850859375,40.1058705878907],[115.481793242188,40.1382900214844],[115.468204375,40.1705397773438],[115.473023710938,40.2092958808594],[115.461793242188,40.2182900214844],[115.440074492188,40.2454128242188],[115.46552859375,40.3043788886719],[115.484156523438,40.3192958808594],[115.481353789063,40.3418288398438],[115.452345,40.3382216621094],[115.442345,40.3394643378907],[115.42021609375,40.3367116523438],[115.423546171875,40.3634926582031],[115.323092070313,40.3922145820313],[115.282896757813,40.4493959785156],[115.277345,40.453843],[115.2816028125,40.4699782539063],[115.292345,40.4678554511719],[115.311422148438,40.4716237617188],[115.340499296875,40.5121974921875],[115.412965117188,40.49772971875],[115.421519804688,40.5096681953125],[115.467711210938,40.5364479804688],[115.487345,40.563843],[115.507345,40.563843],[115.507345,40.5738430000001],[115.54170046875,40.5681996894531],[115.616265898438,40.5594863105469],[115.631939726563,40.5797927070313],[115.680914335938,40.565512921875],[115.687345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"康保县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.812896757813,42.1393959785157],[114.857345,42.1038430000001],[114.863248320313,42.0459902167969],[114.883150664063,42.0288430000001],[114.871402617188,42.0187245917969],[114.901314726563,42.0053774238281],[114.91197390625,41.9584706855469],[114.922999296875,41.9387123847656],[114.911163359375,41.9285195136719],[114.913150664063,41.903843],[114.909664335938,41.8604616523438],[114.93197390625,41.8412404609376],[114.90271609375,41.8184706855469],[114.866842070313,41.8076699042969],[114.89158328125,41.7633229804688],[114.901143828125,41.6443459296876],[114.862955351563,41.6114455390625],[114.8619153125,41.5984889960938],[114.877345,41.593843],[114.873985625,41.5872023750001],[114.851534453125,41.5758461738281],[114.843985625,41.527202375],[114.837345,41.513843],[114.81451296875,41.4742397285157],[114.722345,41.4668337226563],[114.673424101563,41.4707643867188],[114.61271609375,41.4484706855469],[114.55197390625,41.4392153144532],[114.523590117188,41.4233791328125],[114.470885039063,41.4845571113282],[114.360482207031,41.5758791328125],[114.31271609375,41.5384706855469],[114.257818632813,41.5259987617188],[114.242537871094,41.5082631660156],[114.227345,41.513843],[114.220477324219,41.5688198066407],[114.223587675781,41.593843],[114.220479765625,41.618843],[114.247039824219,41.6300356269531],[114.211431914063,41.6787831855469],[114.228929472656,41.70855003125],[114.197345,41.733843],[114.202764921875,41.7486049628907],[114.199141875,41.7936989570313],[114.276292753906,41.8601674628907],[114.32197390625,41.9192153144532],[114.34271609375,41.9284706855469],[114.359742460938,41.9482326484375],[114.377345,41.9496462226563],[114.4414075,41.9444997382813],[114.486793242188,41.9647524238282],[114.503951445313,41.9795351386719],[114.474205351563,42.0051638007813],[114.460992460938,42.0411391425782],[114.49271609375,42.0684706855469],[114.517511015625,42.1240346503907],[114.593179960938,42.1301149726563],[114.640206328125,42.1038771796875],[114.683902617188,42.1199233222656],[114.756715117188,42.1140724921875],[114.797345,42.1438430000001],[114.812896757813,42.1393959785157]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,40.833843],[114.927345,40.823843],[114.957345,40.823843],[114.957345,40.813843],[114.963155546875,40.7784743476563],[114.951256132813,40.7587490058594],[114.983365507813,40.7190224433594],[114.967345,40.683843],[114.957345,40.683843],[114.95271609375,40.6892153144531],[114.883170195313,40.72931175],[114.872174101563,40.7284279609376],[114.847345,40.7338430000001],[114.85142703125,40.7497585273437],[114.871295195313,40.7802638984375],[114.887550078125,40.8436171699219],[114.927345,40.833843]]]]}},{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.922296171875,40.853520734375],[114.927345,40.833843],[114.887550078125,40.8436171699219],[114.871295195313,40.7802638984375],[114.85142703125,40.7497585273437],[114.847345,40.7338430000001],[114.84142703125,40.7297585273438],[114.830191679688,40.6859633613281],[114.7941028125,40.6940529609375],[114.787345,40.703843],[114.793350859375,40.717837140625],[114.801339140625,40.749848859375],[114.813350859375,40.757837140625],[114.834469023438,40.7954177070313],[114.826285429688,40.8278993964844],[114.811339140625,40.837837140625],[114.800064726563,40.8547927070313],[114.803717070313,40.8692983222657],[114.78365359375,40.8993447089844],[114.793604765625,40.938843],[114.791016875,40.9491054511719],[114.797345,40.9638430000001],[114.807345,40.9638430000001],[114.81826296875,40.9213063789063],[114.867022734375,40.9087929511719],[114.889595976563,40.8760964179688],[114.922296171875,40.853520734375]]]]}},{"type":"Feature","properties":{"name":"尚义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.104388457031,41.5328395820313],[114.197122832031,41.5170851875],[114.207345,41.503843],[114.191441679688,41.4911074042969],[114.194154082031,41.4692958808594],[114.180887480469,41.4586708808594],[114.202899199219,41.4493959785157],[114.223741484375,41.4150783515625],[114.220535917969,41.3892958808594],[114.238450957031,41.3749489570313],[114.251790800781,41.3582900214844],[114.289776640625,41.3352175117187],[114.311790800781,41.2941542792969],[114.271431914063,41.2389028144532],[114.30443484375,41.182759015625],[114.371109648438,41.1422597480469],[114.35134890625,41.1086440253907],[114.362899199219,41.0993959785157],[114.371790800781,41.087046125],[114.344053984375,41.0904958320313],[114.355291777344,41.0001479316407],[114.392899199219,40.9893959785157],[114.423082304688,40.9716518378907],[114.437345,40.9538430000001],[114.419544707031,40.9096486640625],[114.396324492188,40.8795644355469],[114.367349882813,40.8677053046876],[114.361549101563,40.828452375],[114.38170046875,40.7950429511719],[114.366846953125,40.7492739082032],[114.347345,40.743843],[114.328802519531,40.7365541816407],[114.27298953125,40.7494863105469],[114.194388457031,40.7628395820313],[114.155264921875,40.7570571113281],[114.137345,40.7338430000001],[114.117345,40.743843],[114.112625761719,40.7491237617188],[114.102064238281,40.7585622382813],[114.092625761719,40.7891237617188],[114.072064238281,40.7985622382813],[114.035360136719,40.8241994453125],[114.062830839844,40.84874534375],[114.052064238281,40.8685622382812],[114.040545683594,40.893657453125],[114.042659941406,40.9291164375001],[113.983841582031,40.9428017402344],[113.972625761719,40.9791237617188],[113.922064238281,41.0185622382813],[113.912625761719,41.0291237617188],[113.872064238281,41.0585622382812],[113.862625761719,41.0691237617187],[113.832064238281,41.0785622382813],[113.814888945313,41.0977846503906],[113.872625761719,41.1085622382813],[113.882064238281,41.1291237617188],[113.89322390625,41.1390956855469],[113.89166140625,41.1653163886719],[113.991185332031,41.183891828125],[114.006278105469,41.2327748847657],[113.976395292969,41.2685622382813],[113.96193484375,41.2370546699219],[113.939481230469,41.2859780097656],[113.910257597656,41.299389875],[113.897345,41.313843],[113.919769316406,41.3311525703125],[113.934234648438,41.3935707832032],[113.86298953125,41.4134096503906],[113.87170046875,41.4294863105469],[113.910811796875,41.4528774238282],[113.92170046875,41.4794863105469],[113.95298953125,41.4881996894532],[114.00259890625,41.5181240058594],[114.062261992188,41.5295937324219],[114.072345,41.5281044746094],[114.104388457031,41.5328395820313]]]]}},{"type":"Feature","properties":{"name":"万全县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.801339140625,40.749848859375],[114.793350859375,40.717837140625],[114.787345,40.703843],[114.767345,40.703843],[114.762896757813,40.7093959785156],[114.728975859375,40.7236891914063],[114.645406523438,40.6915651679688],[114.507525664063,40.6714980292969],[114.442652617188,40.6995034003907],[114.418197050781,40.6964614082031],[114.352315703125,40.7152736640625],[114.347345,40.743843],[114.366846953125,40.7492739082032],[114.38170046875,40.7950429511719],[114.361549101563,40.828452375],[114.367349882813,40.8677053046876],[114.396324492188,40.8795644355469],[114.419544707031,40.9096486640625],[114.437345,40.9538430000001],[114.48298953125,40.9581996894532],[114.53170046875,40.9894863105469],[114.609610625,40.999009015625],[114.668468046875,41.0221462226563],[114.77853640625,41.0034487128907],[114.79298953125,40.9794863105469],[114.797345,40.9638430000001],[114.791016875,40.9491054511719],[114.793604765625,40.938843],[114.78365359375,40.8993447089844],[114.803717070313,40.8692983222657],[114.800064726563,40.8547927070313],[114.811339140625,40.837837140625],[114.826285429688,40.8278993964844],[114.834469023438,40.7954177070313],[114.813350859375,40.757837140625],[114.801339140625,40.749848859375]]]]}},{"type":"Feature","properties":{"name":"蔚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.647345,39.593843],[114.657345,39.593843],[114.652345,39.5810353828125],[114.647345,39.593843]]],[[[114.657345,39.593843],[114.652345,39.6066506171876],[114.647345,39.593843],[114.64197390625,39.5892153144532],[114.624342070313,39.5497011542969],[114.576046171875,39.5839443183594],[114.56271609375,39.5684706855469],[114.557345,39.563843],[114.553306914063,39.5809926582032],[114.513585234375,39.5631984687501],[114.493531523438,39.6000307441407],[114.457965117188,39.6121511054688],[114.429930449219,39.6034181953125],[114.409720488281,39.6362184882812],[114.397345,39.643843],[114.404447050781,39.7872621894531],[114.391375761719,39.7993740058594],[114.392740507813,39.833843],[114.391617460938,39.8621828437501],[114.302345,39.8586452460937],[114.292345,39.8590407539063],[114.282166777344,39.858637921875],[114.272523222656,39.869048078125],[114.211060820313,39.8666115546875],[114.192535429688,39.8708559394532],[114.223138457031,39.8992104316406],[114.207345,39.913843],[114.197594023438,39.9559242988281],[114.232345,39.961059796875],[114.243546171875,39.9336940742187],[114.312203398438,39.9496034980469],[114.322916289063,39.9480202460938],[114.338170195313,39.9852931953125],[114.388316679688,40.0155409980469],[114.403975859375,39.9952516914063],[114.465928984375,39.9860964179688],[114.4960559375,40.0251308417969],[114.550811796875,40.0403774238282],[114.566007109375,40.0949513984375],[114.61521609375,40.0876796699219],[114.65888796875,40.0998427558594],[114.673297148438,40.1492507148438],[114.65375125,40.1643361640625],[114.651256132813,40.1812209296876],[114.672735625,40.1780458808594],[114.706143828125,40.1981996894532],[114.76298953125,40.1894863105469],[114.797345,40.1638430000001],[114.817642851563,40.1558632636719],[114.88404421875,40.1848818183594],[114.916256132813,40.1654506660157],[114.967345,40.173843],[114.98123171875,40.1577272773438],[115.003526640625,40.1385195136719],[115.000748320313,40.1039748359376],[115.03529421875,40.0204457832032],[115.06064578125,39.9750063300782],[115.0627746875,39.9484963203125],[115.037628203125,39.9372768378906],[115.021807890625,39.9089199042969],[115.032926054688,39.8786501289062],[115.0030090625,39.8528774238282],[115.02482546875,39.7934755683594],[114.9969934375,39.7273940253906],[115.01271609375,39.6992153144531],[115.017345,39.683843],[115.007345,39.683843],[115.007345,39.673843],[114.957340117188,39.6680507636719],[114.93216921875,39.669048078125],[114.922535429688,39.6586525703125],[114.890323515625,39.6378530097656],[114.867725859375,39.613462140625],[114.852154570313,39.5990334296875],[114.837345,39.5830507636719],[114.822535429688,39.5990334296875],[114.77935671875,39.6093190742188],[114.762213164063,39.6086391425781],[114.712178984375,39.6191078925782],[114.699503203125,39.579067609375],[114.657345,39.593843]]]]}},{"type":"Feature","properties":{"name":"下花园区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.419346953125,40.5996511054688],[115.437393828125,40.5639821601563],[115.462447539063,40.5762184882813],[115.487345,40.563843],[115.467711210938,40.5364479804688],[115.421519804688,40.5096681953125],[115.412965117188,40.49772971875],[115.340499296875,40.5121974921875],[115.311422148438,40.4716237617188],[115.292345,40.4678554511719],[115.2816028125,40.4699782539063],[115.277345,40.453843],[115.25142703125,40.4497585273438],[115.231998320313,40.4371047187501],[115.209254179688,40.4700478339844],[115.215103789063,40.4961428046876],[115.167345,40.473843],[115.173272734375,40.4994264960938],[115.130367460938,40.5084804511719],[115.193922148438,40.5564504218751],[115.21978640625,40.5899599433594],[115.23673953125,40.5874550605469],[115.26298953125,40.5981996894531],[115.298590117188,40.6245937324219],[115.332486601563,40.6296034980469],[115.357345,40.6238430000001],[115.365343046875,40.6080348945313],[115.419346953125,40.5996511054688]]]]}},{"type":"Feature","properties":{"name":"宣化区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.127345,40.5738430000001],[115.123922148438,40.5860353828125],[115.115152617188,40.5772658515625],[115.1032825,40.547874982422],[115.072535429688,40.5690334296876],[114.922535429688,40.6500514960938],[114.932154570313,40.6690334296875],[114.952535429688,40.6786525703125],[114.957345,40.683843],[114.967345,40.683843],[114.992896757813,40.6793959785157],[115.02013796875,40.663384015625],[115.067603789063,40.6816298652344],[115.123287382813,40.637094953125],[115.146236601563,40.6399489570313],[115.132896757813,40.5782900214844],[115.127345,40.5738430000001]]],[[[115.450572539063,40.6909438300782],[115.47220828125,40.6778932929688],[115.487345,40.683843],[115.52142703125,40.6750954414062],[115.51326296875,40.6479274726563],[115.489322539063,40.6111647773438],[115.50326296875,40.5897585273438],[115.507345,40.5738430000001],[115.507345,40.563843],[115.487345,40.563843],[115.462447539063,40.5762184882813],[115.437393828125,40.5639821601563],[115.419346953125,40.5996511054688],[115.365343046875,40.6080348945313],[115.357345,40.6238430000001],[115.36312625,40.6385512519531],[115.357642851563,40.6756777167969],[115.450572539063,40.6909438300782]]]]}},{"type":"Feature","properties":{"name":"宣化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.127345,40.5738430000001],[115.115152617188,40.5772658515625],[115.123922148438,40.5860353828125],[115.127345,40.5738430000001]]],[[[115.127345,40.5738430000001],[115.132896757813,40.5782900214844],[115.146236601563,40.6399489570313],[115.123287382813,40.637094953125],[115.067603789063,40.6816298652344],[115.02013796875,40.663384015625],[114.992896757813,40.6793959785157],[114.967345,40.683843],[114.983365507813,40.7190224433594],[114.951256132813,40.7587490058594],[114.963155546875,40.7784743476563],[114.957345,40.813843],[114.991593046875,40.8214675117187],[115.073604765625,40.8131081367188],[115.102345,40.8295705390625],[115.121881132813,40.8183803535156],[115.142808867188,40.8093056464844],[115.175621367188,40.790512921875],[115.28642703125,40.8018068671875],[115.342808867188,40.7893056464844],[115.371514921875,40.7728639960938],[115.427345,40.793843],[115.450806914063,40.7884792304688],[115.438980742188,40.7540419746094],[115.483624296875,40.7301210761719],[115.487345,40.683843],[115.47220828125,40.6778932929688],[115.450572539063,40.6909438300782],[115.357642851563,40.6756777167969],[115.36312625,40.6385512519531],[115.357345,40.6238430000001],[115.332486601563,40.6296034980469],[115.298590117188,40.6245937324219],[115.26298953125,40.5981996894531],[115.23673953125,40.5874550605469],[115.21978640625,40.5899599433594],[115.193922148438,40.5564504218751],[115.130367460938,40.5084804511719],[115.173272734375,40.4994264960938],[115.167345,40.473843],[115.16170046875,40.4694863105469],[115.15298953125,40.4581996894531],[115.13170046875,40.4494863105469],[115.12298953125,40.4281996894532],[115.111529570313,40.4193544746094],[115.11312625,40.4085512519531],[115.099053984375,40.37274925],[115.06216921875,40.4000942207032],[115.05298953125,40.3881996894532],[115.04170046875,40.3794863105469],[115.025553007813,40.3585634589844],[114.956236601563,40.3487099433594],[114.94298953125,40.3217653632813],[114.978448515625,40.3072524238281],[114.956549101563,40.2709487128906],[114.925303984375,40.2468288398438],[114.95298953125,40.2094863105469],[114.967345,40.173843],[114.916256132813,40.1654506660157],[114.88404421875,40.1848818183594],[114.817642851563,40.1558632636719],[114.797345,40.1638430000001],[114.806304960938,40.183843],[114.787047148438,40.2268325019532],[114.793902617188,40.248843],[114.790787382813,40.258843],[114.794151640625,40.2696486640626],[114.781158476563,40.2776552558594],[114.7706653125,40.3084474921875],[114.776202421875,40.3262282539063],[114.758424101563,40.351548078125],[114.711158476563,40.3676552558594],[114.707345,40.373843],[114.700123320313,40.4203908515626],[114.73271609375,40.4484706855469],[114.74197390625,40.4592153144531],[114.753526640625,40.4691664863282],[114.7519153125,40.4891896796875],[114.801754179688,40.5114284492188],[114.779664335938,40.5304616523438],[114.786280546875,40.6128273750001],[114.77173953125,40.6388869453126],[114.793116484375,40.6690358710938],[114.77197390625,40.6784706855469],[114.767345,40.703843],[114.787345,40.703843],[114.7941028125,40.6940529609375],[114.830191679688,40.6859633613281],[114.84142703125,40.7297585273438],[114.847345,40.7338430000001],[114.872174101563,40.7284279609376],[114.883170195313,40.72931175],[114.95271609375,40.6892153144531],[114.957345,40.683843],[114.952535429688,40.6786525703125],[114.932154570313,40.6690334296875],[114.922535429688,40.6500514960938],[115.072535429688,40.5690334296876],[115.1032825,40.547874982422],[115.127345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"阳原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.711158476563,40.3676552558594],[114.758424101563,40.351548078125],[114.776202421875,40.3262282539063],[114.7706653125,40.3084474921875],[114.781158476563,40.2776552558594],[114.794151640625,40.2696486640626],[114.790787382813,40.258843],[114.793902617188,40.248843],[114.787047148438,40.2268325019532],[114.806304960938,40.183843],[114.797345,40.1638430000001],[114.76298953125,40.1894863105469],[114.706143828125,40.1981996894532],[114.672735625,40.1780458808594],[114.651256132813,40.1812209296876],[114.65375125,40.1643361640625],[114.673297148438,40.1492507148438],[114.65888796875,40.0998427558594],[114.61521609375,40.0876796699219],[114.566007109375,40.0949513984375],[114.550811796875,40.0403774238282],[114.4960559375,40.0251308417969],[114.465928984375,39.9860964179688],[114.403975859375,39.9952516914063],[114.388316679688,40.0155409980469],[114.338170195313,39.9852931953125],[114.322916289063,39.9480202460938],[114.312203398438,39.9496034980469],[114.243546171875,39.9336940742187],[114.232345,39.961059796875],[114.197594023438,39.9559242988281],[114.207345,39.913843],[114.172659941406,39.8981825996094],[114.157345,39.9000868964844],[114.142127714844,39.8981935859375],[114.058648710938,39.9220314765625],[114.037345,39.913843],[114.015892363281,39.9888747382813],[113.91343875,40.006704328125],[113.902899199219,40.0168532539063],[113.948065214844,40.0297670722657],[113.97490359375,40.0632802558594],[113.968792753906,40.1123940253906],[114.007962675781,40.1075221992188],[114.038219023438,40.0577077460938],[114.069534941406,40.0616030097657],[114.099210234375,40.0986586738282],[114.081790800781,40.1282900214844],[114.077345,40.143843],[114.061207304688,40.1792848945313],[114.096175566406,40.1935964179687],[114.130101347656,40.1731325507813],[114.174783964844,40.19069846875],[114.192345,40.1881044746094],[114.218138457031,40.1919155097656],[114.247738066406,40.2302626777344],[114.282464628906,40.2251308417969],[114.33170046875,40.2394863105469],[114.41298953125,40.2481996894532],[114.470035429688,40.2614174628906],[114.49170046875,40.2894863105469],[114.511656523438,40.3048891425782],[114.527345,40.3438430000001],[114.601832304688,40.3600893378906],[114.622584257813,40.3584218574219],[114.65197390625,40.3692153144532],[114.707345,40.373843],[114.711158476563,40.3676552558594]]]]}},{"type":"Feature","properties":{"name":"张北县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,41.503843],[114.937393828125,41.4839821601563],[114.970045195313,41.4999282050781],[114.936910429688,41.5381996894532],[114.95298953125,41.529486310547],[114.963883085938,41.5153749824219],[115.025738554688,41.524516828125],[115.085499296875,41.5070925117188],[115.102345,41.5095815253907],[115.137345,41.50440940625],[115.188800078125,41.5120131660157],[115.21170046875,41.4981996894532],[115.2676575,41.4863906074219],[115.28170046875,41.4681996894532],[115.30427859375,41.4507741523438],[115.32170046875,41.4281996894532],[115.387183867188,41.409964826172],[115.4160559375,41.3725551582031],[115.439127226563,41.3547499824219],[115.454298125,41.3161598945313],[115.447345,41.273843],[115.427642851563,41.2396706367187],[115.407345,41.2380397773437],[115.374586210938,41.2406716132813],[115.345460234375,41.2244228339844],[115.323228789063,41.2502284980469],[115.165440703125,41.2360134101563],[115.126046171875,41.2639443183594],[115.11271609375,41.2484706855469],[115.04533328125,41.2331630683594],[115.025660429688,41.1979042792969],[115.061783476563,41.2008071113282],[115.063267851563,41.1823281074219],[115.04271609375,41.1584706855469],[115.03197390625,41.1492153144532],[115.022667265625,41.1384157539063],[115.009429960938,41.1394789863281],[114.98271609375,41.1084706855469],[114.97197390625,41.0992153144531],[114.957042265625,41.0496218085938],[114.932345,41.0476381660156],[114.9122278125,41.0492543769532],[114.839049101563,41.0379018378907],[114.814361601563,41.0398867011719],[114.786768828125,41.0161171699219],[114.809722929688,40.9894753242188],[114.84197390625,40.9750844550781],[114.83271609375,40.9684706855469],[114.807345,40.9638430000001],[114.797345,40.9638430000001],[114.79298953125,40.9794863105469],[114.77853640625,41.0034487128907],[114.668468046875,41.0221462226563],[114.609610625,40.999009015625],[114.53170046875,40.9894863105469],[114.48298953125,40.9581996894532],[114.437345,40.9538430000001],[114.423082304688,40.9716518378907],[114.392899199219,40.9893959785157],[114.355291777344,41.0001479316407],[114.344053984375,41.0904958320313],[114.371790800781,41.087046125],[114.362899199219,41.0993959785157],[114.35134890625,41.1086440253907],[114.371109648438,41.1422597480469],[114.30443484375,41.182759015625],[114.271431914063,41.2389028144532],[114.311790800781,41.2941542792969],[114.289776640625,41.3352175117187],[114.251790800781,41.3582900214844],[114.238450957031,41.3749489570313],[114.220535917969,41.3892958808594],[114.223741484375,41.4150783515625],[114.202899199219,41.4493959785157],[114.180887480469,41.4586708808594],[114.194154082031,41.4692958808594],[114.191441679688,41.4911074042969],[114.207345,41.503843],[114.227345,41.513843],[114.242537871094,41.5082631660156],[114.257818632813,41.5259987617188],[114.31271609375,41.5384706855469],[114.360482207031,41.5758791328125],[114.470885039063,41.4845571113282],[114.523590117188,41.4233791328125],[114.55197390625,41.4392153144532],[114.61271609375,41.4484706855469],[114.673424101563,41.4707643867188],[114.722345,41.4668337226563],[114.81451296875,41.4742397285157],[114.837345,41.513843],[114.87298953125,41.5094863105469],[114.88297,41.4965541816407],[114.927345,41.503843]]]]}},{"type":"Feature","properties":{"name":"涿鹿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.209254179688,40.4700478339844],[115.231998320313,40.4371047187501],[115.25142703125,40.4497585273438],[115.277345,40.453843],[115.282896757813,40.4493959785156],[115.323092070313,40.3922145820313],[115.423546171875,40.3634926582031],[115.42021609375,40.3367116523438],[115.442345,40.3394643378907],[115.452345,40.3382216621094],[115.481353789063,40.3418288398438],[115.484156523438,40.3192958808594],[115.46552859375,40.3043788886719],[115.440074492188,40.2454128242188],[115.461793242188,40.2182900214844],[115.473023710938,40.2092958808594],[115.468204375,40.1705397773438],[115.481793242188,40.1382900214844],[115.500850859375,40.1058705878907],[115.502984648438,40.0886818671875],[115.497345,40.063843],[115.478912382813,40.0408242011719],[115.450982695313,40.0290554023438],[115.421793242188,39.9793959785156],[115.417345,39.943843],[115.41142703125,39.9397585273438],[115.40326296875,39.9179274726563],[115.391124296875,39.8992897773438],[115.393648710938,39.8880275703126],[115.36142703125,39.8797585273438],[115.35326296875,39.8579274726563],[115.34142703125,39.8397585273438],[115.329312773438,39.8073732734375],[115.333638945313,39.7880690742188],[115.31142703125,39.7797585273438],[115.267789335938,39.7433632636719],[115.23142703125,39.7297585273438],[115.219176054688,39.7120119453125],[115.171041289063,39.6996584296875],[115.173468046875,39.688843],[115.169332304688,39.6704079414063],[115.122623320313,39.6900258613282],[115.111676054688,39.6875722480469],[115.10326296875,39.6997585273438],[115.0370715625,39.7079274726562],[115.02326296875,39.6879274726563],[115.017345,39.683843],[115.01271609375,39.6992153144531],[114.9969934375,39.7273940253906],[115.02482546875,39.7934755683594],[115.0030090625,39.8528774238282],[115.032926054688,39.8786501289062],[115.021807890625,39.9089199042969],[115.037628203125,39.9372768378906],[115.0627746875,39.9484963203125],[115.06064578125,39.9750063300782],[115.03529421875,40.0204457832032],[115.000748320313,40.1039748359376],[115.003526640625,40.1385195136719],[114.98123171875,40.1577272773438],[114.967345,40.173843],[114.95298953125,40.2094863105469],[114.925303984375,40.2468288398438],[114.956549101563,40.2709487128906],[114.978448515625,40.3072524238281],[114.94298953125,40.3217653632813],[114.956236601563,40.3487099433594],[115.025553007813,40.3585634589844],[115.04170046875,40.3794863105469],[115.05298953125,40.3881996894532],[115.06216921875,40.4000942207032],[115.099053984375,40.37274925],[115.11312625,40.4085512519531],[115.111529570313,40.4193544746094],[115.12298953125,40.4281996894532],[115.13170046875,40.4494863105469],[115.15298953125,40.4581996894531],[115.16170046875,40.4694863105469],[115.167345,40.473843],[115.215103789063,40.4961428046876],[115.209254179688,40.4700478339844]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鹰手营子矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.66326296875,40.5697585273438],[117.675694609375,40.5517482734375],[117.727261992188,40.5633071113282],[117.761226835938,40.5194826484375],[117.71142703125,40.5097585273438],[117.69326296875,40.4979274726563],[117.657667265625,40.4887929511719],[117.647345,40.473843],[117.6201965625,40.4808107734376],[117.583463164063,40.5282033515625],[117.63365359375,40.5380043769532],[117.624703398438,40.5779274726563],[117.66326296875,40.5697585273438]]],[[[117.847345,40.6238430000001],[117.847345,40.6138430000001],[117.867345,40.6138430000001],[117.885142851563,40.5618386054688],[117.83224734375,40.5489430976563],[117.794288359375,40.5359511542969],[117.762789335938,40.5970973945313],[117.82244265625,40.6087429023438],[117.847345,40.6238430000001]]]]}},{"type":"Feature","properties":{"name":"双桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.872178984375,41.0823928046875],[117.884820585938,41.0369924140625],[117.909874296875,41.0406948066406],[117.96298953125,41.0294863105469],[117.99170046875,41.0081996894532],[118.015401640625,40.9984987617188],[118.06093875,40.9633498359376],[118.065611601563,40.9317372871094],[118.04154421875,40.8992726875],[118.044303007813,40.8805873847657],[117.988975859375,40.8689113593751],[117.969425078125,40.8435842109375],[117.922345,40.836626203125],[117.887515898438,40.8417726875001],[117.867345,40.833843],[117.833326445313,40.8631508613281],[117.86271609375,40.8884706855469],[117.867345,40.893843],[117.901285429688,40.8804994941407],[117.87170046875,40.9481996894531],[117.86298953125,40.9794863105469],[117.845758085938,41.0233144355469],[117.857345,41.093843],[117.872178984375,41.0823928046875]]]]}},{"type":"Feature","properties":{"name":"围场满族蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,42.0638430000001],[118.159537382813,42.0604201484375],[118.150767851563,42.0516506171876],[118.147345,42.0638430000001]]],[[[118.147345,42.0638430000001],[118.14142703125,42.0597585273438],[118.13326296875,42.0479274726563],[118.106641875,42.0379677558594],[118.1706653125,42.0236147285157],[118.21326296875,42.0479274726563],[118.224547148438,42.0918996406251],[118.257345,42.083843],[118.26271609375,42.0792153144532],[118.27197390625,42.0684706855469],[118.29197390625,42.0512404609375],[118.27271609375,42.0284706855469],[118.241099882813,42.0086696601563],[118.301451445313,41.9949587226563],[118.302745390625,41.978843],[118.301944609375,41.968843],[118.303389921875,41.9508571601562],[118.29271609375,41.9384706855469],[118.25611453125,41.9221388984375],[118.311685820313,41.8873329902344],[118.3327746875,41.8691664863281],[118.331944609375,41.858843],[118.33281375,41.8480165839844],[118.287642851563,41.7696706367188],[118.247345,41.7664321113281],[118.227691679688,41.8104775214844],[118.197345,41.8080397773437],[118.153844023438,41.8115346503906],[118.133287382813,41.7555605292969],[118.131163359375,41.7291664863282],[118.15025515625,41.7127223945313],[118.157345,41.673843],[118.15197390625,41.6692153144531],[118.133961210938,41.6483107734375],[118.113902617188,41.6499233222657],[118.0812121875,41.6379189277344],[118.084210234375,41.6006252265625],[118.04634890625,41.5792153144532],[118.053565703125,41.6690224433594],[118.01197390625,41.6784706855469],[117.991363554688,41.6899697089844],[117.962345,41.6876381660157],[117.932345,41.6900478339844],[117.886900664063,41.6863967109375],[117.829390898438,41.7106142402344],[117.792345,41.7076381660157],[117.762667265625,41.7100221992188],[117.743961210938,41.6883107734375],[117.732345,41.6892446113282],[117.687345,41.6856288886719],[117.627095976563,41.6904701972657],[117.64271609375,41.7184706855469],[117.65197390625,41.7408217597657],[117.597491484375,41.7364443183594],[117.56271609375,41.7492153144531],[117.53197390625,41.7584706855469],[117.522345,41.7800478339844],[117.492345,41.7776381660156],[117.461241484375,41.7801369453125],[117.4627746875,41.7991970039063],[117.43197390625,41.8084706855469],[117.408136015625,41.836137921875],[117.292345,41.8268337226563],[117.255484648438,41.8297963691407],[117.196988554688,41.7839858222657],[117.13197390625,41.7692153144532],[117.091202421875,41.7580568671875],[117.092764921875,41.7386049628906],[117.081925078125,41.7090810371094],[117.083526640625,41.6891664863282],[117.064508085938,41.6727858710938],[117.04345828125,41.7199587226563],[117.02197390625,41.7384706855469],[117.01271609375,41.7492153144531],[116.99197390625,41.7584706855469],[116.963912382813,41.7741274238282],[116.951651640625,41.8015993476563],[116.912345,41.7984413886719],[116.89562625,41.7997841621094],[116.84271609375,41.8192153144532],[116.807345,41.823843],[116.798238554688,41.8455251289063],[116.803468046875,41.8688430000001],[116.79896609375,41.8889150214845],[116.755513945313,41.9189150214844],[116.73142703125,41.9279274726563],[116.71326296875,41.9397585273438],[116.697345,41.943843],[116.701881132813,41.9493056464844],[116.722808867188,41.9583803535156],[116.753111601563,41.9948598457032],[116.783531523438,41.9774355292969],[116.808062773438,41.9799355292969],[116.841881132813,41.9993056464845],[116.873448515625,42.0129958320313],[116.8718371875,42.0288430000001],[116.873873320313,42.048843],[116.871803007813,42.069165265625],[116.886436796875,42.0947182441406],[116.84345828125,42.1490224433594],[116.805357695313,42.1655471015625],[116.782808867188,42.2037575507813],[116.852174101563,42.18831565625],[116.872345,42.1903713203126],[116.897345,42.1878237128907],[116.914815703125,42.1896047187501],[116.9118371875,42.2188430000001],[116.912896757813,42.229233625],[116.899918242188,42.2400136542969],[116.904527617188,42.28526878125],[116.878824492188,42.3455580878907],[116.887345,42.383843],[116.914893828125,42.4013686347657],[116.961793242188,42.4193959785156],[116.992896757813,42.4282900214844],[117.009381132813,42.4488747382813],[117.057628203125,42.4593129707032],[117.092154570313,42.4796083808594],[117.132125273438,42.4681935859376],[117.142345,42.4694643378907],[117.174996367188,42.4654042792969],[117.26250125,42.4795095039063],[117.332935820313,42.4593959785156],[117.411793242188,42.4710927558594],[117.402896757813,42.5093959785157],[117.38361453125,42.52483909375],[117.433472929688,42.5647670722657],[117.43138796875,42.5815248847657],[117.464888945313,42.6012160468751],[117.522725859375,42.5880776191407],[117.538912382813,42.6082900214844],[117.592896757813,42.5993959785157],[117.662935820313,42.5793959785156],[117.73611453125,42.5956825996094],[117.771793242188,42.6093959785156],[117.797345,42.613843],[117.790787382813,42.5849733710938],[117.835714140625,42.5576845527344],[117.871793242188,42.4982900214844],[117.926539335938,42.4673378730469],[117.95767703125,42.4284511542969],[118.020064726563,42.4021620917969],[118.023013945313,42.3784828925781],[118.002896757813,42.3442665839844],[118.016002226563,42.3207302070313],[118.0615246875,42.301548078125],[118.039097929688,42.2735439277344],[117.962896757813,42.2414345527344],[118.001793242188,42.2182900214844],[118.022896757813,42.2093959785157],[118.031793242188,42.1982900214844],[118.109517851563,42.1695546699219],[118.082896757813,42.1242665839844],[118.092935820313,42.106235578125],[118.153785429688,42.0805947089844],[118.147345,42.0638430000001]]]]}},{"type":"Feature","properties":{"name":"承德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.350128203125,41.358843],[118.353082304688,41.3388430000001],[118.350562773438,41.3217897773438],[118.397345,41.313843],[118.41170046875,41.2881996894531],[118.433595,41.2586684394532],[118.40791140625,41.238843],[118.44093875,41.2133498359375],[118.443082304688,41.198843],[118.439957304688,41.1776723457031],[118.47170046875,41.1250429511719],[118.46298953125,41.1081996894532],[118.406456328125,41.0924562812501],[118.38170046875,41.0294863105469],[118.37298953125,40.9981996894532],[118.353604765625,40.9832387519531],[118.404459257813,40.9690773750001],[118.370167265625,40.9485695625001],[118.37314578125,40.9284133125001],[118.35154421875,40.8992726875],[118.353082304688,40.8888430000001],[118.347388945313,40.8503139472656],[118.37369265625,40.8464272285157],[118.44298953125,40.8581996894532],[118.454127226563,40.8854116035157],[118.490767851563,40.8908266425782],[118.51170046875,40.8781996894532],[118.56170046875,40.8642763496094],[118.55298953125,40.8381996894531],[118.53154421875,40.8092726875],[118.533082304688,40.798843],[118.531607695313,40.788843],[118.53373171875,40.7744509101563],[118.52298953125,40.7481996894531],[118.51170046875,40.7394863105469],[118.49427859375,40.7169118476563],[118.477345,40.703843],[118.392530546875,40.6977126289063],[118.332628203125,40.6485622382813],[118.300396757813,40.6280654121094],[118.282345,40.6291408515626],[118.258687773438,40.6277309394532],[118.237345,40.603843],[118.221793242188,40.6082900214844],[118.192896757813,40.6193959785157],[118.157105742188,40.6296291328126],[118.198414335938,40.6627077460938],[118.145479765625,40.6561232734375],[118.122896757813,40.6693959785156],[118.01978640625,40.6844033027344],[118.02302859375,40.658344953125],[118.001793242188,40.6493959785157],[117.982896757813,40.6382900214844],[117.941793242188,40.6293959785156],[117.912896757813,40.6182900214844],[117.867345,40.6138430000001],[117.847345,40.6138430000001],[117.847345,40.6238430000001],[117.852896757813,40.6282900214844],[117.863775664063,40.6663283515626],[117.850460234375,40.7129616523437],[117.784049101563,40.7047011542969],[117.762896757813,40.6782900214844],[117.725543242188,40.6625490546875],[117.672237578125,40.6177346015625],[117.651983671875,40.6430226875],[117.592896757813,40.6082900214844],[117.541793242188,40.5893959785156],[117.522896757813,40.5782900214844],[117.492896757813,40.5772206855469],[117.525245390625,40.6215016914063],[117.497345,40.643843],[117.507345,40.663843],[117.519674101563,40.6938430000001],[117.497296171875,40.7482949042969],[117.504971953125,40.7871425605469],[117.539386015625,40.8004152656251],[117.566138945313,40.7951296210938],[117.601519804688,40.8096681953125],[117.6528528125,40.8180178046875],[117.705303984375,40.7964638496094],[117.762345,40.8077358222657],[117.812345,40.7978554511719],[117.8463684375,40.8045790839844],[117.867345,40.833843],[117.887515898438,40.8417726875001],[117.922345,40.836626203125],[117.969425078125,40.8435842109375],[117.988975859375,40.8689113593751],[118.044303007813,40.8805873847657],[118.04154421875,40.8992726875],[118.065611601563,40.9317372871094],[118.06093875,40.9633498359376],[118.015401640625,40.9984987617188],[117.99170046875,41.0081996894532],[117.96298953125,41.0294863105469],[117.909874296875,41.0406948066406],[117.884820585938,41.0369924140625],[117.872178984375,41.0823928046875],[117.857345,41.093843],[117.853985625,41.110483625],[117.829888945313,41.1588405585938],[117.837345,41.173843],[117.919288359375,41.1657851386719],[117.962345,41.1692446113281],[117.980328398438,41.1677992988281],[117.996553984375,41.1817775703125],[118.0027746875,41.2591664863281],[117.981173125,41.2777773261719],[117.992769804688,41.2985646796875],[117.991539335938,41.313843],[117.993951445313,41.3438430000001],[117.9919153125,41.3691664863281],[118.00271609375,41.3784706855469],[118.0173840625,41.3954958320313],[118.051485625,41.4145229316407],[118.052745390625,41.398843],[118.050719023438,41.3736208320313],[118.105391875,41.3535439277344],[118.12271609375,41.368470685547],[118.147095976563,41.4073964667969],[118.202574492188,41.4467324042969],[118.267345,41.463843],[118.311051054688,41.4564174628907],[118.353765898438,41.4234499335938],[118.350865507813,41.403843],[118.353824492188,41.3838430000001],[118.350128203125,41.358843]]]]}},{"type":"Feature","properties":{"name":"丰宁满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.40759890625,41.9872817207032],[116.396944609375,41.9397585273438],[116.45326296875,41.9479274726563],[116.49236453125,41.9805373359375],[116.546510039063,41.9335134101562],[116.577345,41.9266017890626],[116.607345,41.9333266425781],[116.632789335938,41.927622296875],[116.65142703125,41.9397585273438],[116.697345,41.943843],[116.71326296875,41.9397585273438],[116.73142703125,41.9279274726563],[116.755513945313,41.9189150214844],[116.79896609375,41.8889150214845],[116.803468046875,41.8688430000001],[116.798238554688,41.8455251289063],[116.807345,41.823843],[116.811793242188,41.8182900214844],[116.847999296875,41.7892958808594],[116.841676054688,41.7384828925782],[116.853013945313,41.7192031074219],[116.84978640625,41.6932802558594],[116.861793242188,41.6782900214844],[116.87736453125,41.6658180976563],[116.893258085938,41.6387831855469],[116.871676054688,41.6092348457031],[116.873531523438,41.5943019843751],[116.809078398438,41.5578615546875],[116.883897734375,41.5263332343751],[116.880054960938,41.4954482246094],[116.912652617188,41.4995034003907],[116.964234648438,41.4772353339844],[117.002896757813,41.4882900214844],[117.024254179688,41.5008425117187],[117.102896757813,41.4893959785157],[117.131793242188,41.4682900214844],[117.152896757813,41.4593959785157],[117.165426054688,41.4296669746094],[117.201793242188,41.4082900214844],[117.222896757813,41.3993959785156],[117.231793242188,41.3882900214844],[117.24736453125,41.3758180976563],[117.262896757813,41.3493959785156],[117.271793242188,41.3282900214844],[117.282896757813,41.3093959785157],[117.291793242188,41.2882900214844],[117.313258085938,41.2589028144532],[117.292935820313,41.2243263984375],[117.337843046875,41.1682460761719],[117.371793242188,41.1482900214844],[117.387345,41.143843],[117.393204375,41.1289382148438],[117.381573515625,41.0890541816406],[117.383170195313,41.0782497382813],[117.35170046875,41.0694863105469],[117.312789335938,41.0380385566407],[117.302345,41.0395815253907],[117.283922148438,41.0368593574219],[117.248546171875,41.0581996894531],[117.211822539063,41.0326015449219],[117.19298953125,41.0081996894532],[117.150982695313,40.9830751777344],[117.154537382813,40.9590041328125],[117.102803984375,40.9206471992188],[117.042345,40.9295815253907],[117.032345,40.9281044746094],[116.992345,40.9340151191407],[116.935889921875,40.9256728339844],[116.900767851563,40.9468593574219],[116.852345,40.9540151191406],[116.806485625,40.9472377753907],[116.76298953125,40.9794863105469],[116.697345,41.013843],[116.680499296875,41.0425014472656],[116.611363554688,41.0586525703125],[116.612891875,41.0200930000001],[116.60033328125,40.9690334296875],[116.562428007813,40.9890908027344],[116.509288359375,40.9779726386719],[116.482345,40.9790407539062],[116.472345,40.9786452460938],[116.453345976563,40.9793984199219],[116.442535429688,40.9760951972657],[116.46978640625,40.8983498359376],[116.452345,40.8990407539063],[116.437345,40.8984462714844],[116.399483671875,40.8999477363281],[116.367725859375,40.934223859375],[116.357345,40.943843],[116.337589140625,40.9781081367188],[116.29197390625,40.988470685547],[116.28271609375,41.0092153144532],[116.27197390625,41.0184706855469],[116.257457304688,41.0353224921875],[116.283629179688,41.0578713203125],[116.281612578125,41.0829335761719],[116.231710234375,41.1259291816406],[116.234176054688,41.1566030097657],[116.221217070313,41.1798232246094],[116.223492460938,41.2081215644532],[116.18310671875,41.2650771308594],[116.202764921875,41.3186049628906],[116.201768828125,41.3310182929688],[116.138648710938,41.3705544257813],[116.112105742188,41.3684218574219],[116.05373171875,41.3898598457031],[116.037345,41.3838430000001],[116.0325403125,41.4121120429688],[116.01170046875,41.4281996894532],[116.00162234375,41.4528212714844],[115.98170046875,41.4681996894532],[115.9652746875,41.5460439277344],[115.94298953125,41.5594863105469],[115.921519804688,41.5682729316406],[115.92310671875,41.5789858222657],[115.908585234375,41.6416432929688],[115.9686340625,41.6775551582031],[116.01170046875,41.7094863105469],[116.049244414063,41.7319411445313],[116.07170046875,41.7694863105469],[116.077345,41.773843],[116.105826445313,41.7811513496094],[116.125474882813,41.8113259101563],[116.09326296875,41.8335671210938],[116.10177859375,41.8504506660156],[116.131900664063,41.8700637031251],[116.177867460938,41.8597585273438],[116.204566679688,41.8739284492188],[116.200338164063,41.8928041816407],[116.227799101563,41.9409157539063],[116.29091921875,41.9645339179687],[116.31677859375,42.0019911933594],[116.363487578125,42.0124611640625],[116.40759890625,41.9872817207032]]]]}},{"type":"Feature","properties":{"name":"宽城满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.207345,40.5738430000001],[118.203922148438,40.5616506171876],[118.195152617188,40.5704201484375],[118.207345,40.5738430000001]]],[[[118.207345,40.5738430000001],[118.214918242188,40.5888137031251],[118.248116484375,40.59839378125],[118.237345,40.603843],[118.258687773438,40.6277309394532],[118.282345,40.6291408515626],[118.300396757813,40.6280654121094],[118.332628203125,40.6485622382813],[118.392530546875,40.6977126289063],[118.477345,40.703843],[118.4991028125,40.6803591132813],[118.542530546875,40.678637921875],[118.55240359375,40.69956565625],[118.632535429688,40.7186525703125],[118.65912234375,40.732719953125],[118.672281523438,40.7185170722657],[118.697076445313,40.7316384101563],[118.752535429688,40.6990334296875],[118.766402617188,40.6840688300782],[118.897345,40.753843],[118.937125273438,40.7470851875],[118.980113554688,40.6913893867188],[119.002345,40.6881044746094],[119.027086210938,40.6917604804688],[119.04298953125,40.6794863105469],[119.052857695313,40.6667018867188],[119.077345,40.6703212714844],[119.10013796875,40.6669533515626],[119.170308867188,40.6976186347657],[119.174400664063,40.6699440742188],[119.141358671875,40.6290651679688],[119.147345,40.6138430000001],[119.141881132813,40.6093056464844],[119.114464140625,40.6065102363282],[119.082345,40.5881154609375],[119.05814578125,40.6019753242188],[118.962745390625,40.5612990546876],[118.950650664063,40.5334096503906],[118.884215117188,40.540180890625],[118.84834109375,40.5267031074219],[118.822345,40.5293520332031],[118.7995715625,40.5270314765625],[118.782808867188,40.4883803535157],[118.764332304688,40.4730348945313],[118.697345,40.4798622871094],[118.679107695313,40.47800315625],[118.655045195313,40.4490370917969],[118.607965117188,40.4352211738282],[118.622808867188,40.4093056464844],[118.631881132813,40.3883803535157],[118.643116484375,40.3687685371094],[118.596636992188,40.3100405097656],[118.571881132813,40.2993056464844],[118.567345,40.283843],[118.551793242188,40.2882900214844],[118.542896757813,40.2993959785157],[118.529405546875,40.3102016425782],[118.534830351563,40.3538210273438],[118.553023710938,40.3683901191406],[118.550650664063,40.38745628125],[118.56334109375,40.4090419746094],[118.546763945313,40.4223171210938],[118.513970976563,40.4030434394532],[118.404581328125,40.4166493964845],[118.38095828125,40.4305361152344],[118.362345,40.4282216621094],[118.327222929688,40.4325893378906],[118.3024621875,40.418032453125],[118.267139921875,40.4316091132812],[118.24416140625,40.4603066230469],[118.212896757813,40.4482900214844],[118.187345,40.443843],[118.181929960938,40.4686708808594],[118.184561796875,40.5014455390626],[118.251754179688,40.5314284492188],[118.2319153125,40.5485195136719],[118.2333215625,40.5660219550782],[118.207345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"隆化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.408136015625,41.836137921875],[117.43197390625,41.8084706855469],[117.4627746875,41.7991970039063],[117.461241484375,41.7801369453125],[117.492345,41.7776381660156],[117.522345,41.7800478339844],[117.53197390625,41.7584706855469],[117.56271609375,41.7492153144531],[117.597491484375,41.7364443183594],[117.65197390625,41.7408217597657],[117.64271609375,41.7184706855469],[117.627095976563,41.6904701972657],[117.687345,41.6856288886719],[117.732345,41.6892446113282],[117.743961210938,41.6883107734375],[117.762667265625,41.7100221992188],[117.792345,41.7076381660157],[117.829390898438,41.7106142402344],[117.886900664063,41.6863967109375],[117.932345,41.6900478339844],[117.962345,41.6876381660157],[117.991363554688,41.6899697089844],[118.01197390625,41.6784706855469],[118.053565703125,41.6690224433594],[118.04634890625,41.5792153144532],[118.084210234375,41.6006252265625],[118.0812121875,41.6379189277344],[118.113902617188,41.6499233222657],[118.133961210938,41.6483107734375],[118.15197390625,41.6692153144531],[118.157345,41.673843],[118.174761992188,41.6689931464844],[118.213160429688,41.6393544746094],[118.2085559375,41.6081874824219],[118.23170046875,41.5781996894532],[118.27298953125,41.5694863105469],[118.281846953125,41.5580117011719],[118.317345,41.5638430000001],[118.300826445313,41.5388503242188],[118.321358671875,41.5073256660157],[118.275513945313,41.4756740546875],[118.267345,41.463843],[118.202574492188,41.4467324042969],[118.147095976563,41.4073964667969],[118.12271609375,41.368470685547],[118.105391875,41.3535439277344],[118.050719023438,41.3736208320313],[118.052745390625,41.398843],[118.051485625,41.4145229316407],[118.0173840625,41.3954958320313],[118.00271609375,41.3784706855469],[117.9919153125,41.3691664863281],[117.993951445313,41.3438430000001],[117.991539335938,41.313843],[117.992769804688,41.2985646796875],[117.981173125,41.2777773261719],[118.0027746875,41.2591664863281],[117.996553984375,41.1817775703125],[117.980328398438,41.1677992988281],[117.962345,41.1692446113281],[117.919288359375,41.1657851386719],[117.837345,41.173843],[117.8325403125,41.19108909375],[117.812310820313,41.1880995917969],[117.777345,41.1938430000001],[117.733062773438,41.2112514472656],[117.72298953125,41.1981996894532],[117.670660429688,41.1794863105469],[117.577857695313,41.1932009101563],[117.551954375,41.1775759101563],[117.540811796875,41.2048085761719],[117.50170046875,41.2281996894532],[117.49298953125,41.2494863105469],[117.443272734375,41.2633303046875],[117.43298953125,41.2381996894532],[117.40170046875,41.1994863105469],[117.387345,41.143843],[117.371793242188,41.1482900214844],[117.337843046875,41.1682460761719],[117.292935820313,41.2243263984375],[117.313258085938,41.2589028144532],[117.291793242188,41.2882900214844],[117.282896757813,41.3093959785157],[117.271793242188,41.3282900214844],[117.262896757813,41.3493959785156],[117.24736453125,41.3758180976563],[117.231793242188,41.3882900214844],[117.222896757813,41.3993959785156],[117.201793242188,41.4082900214844],[117.165426054688,41.4296669746094],[117.152896757813,41.4593959785157],[117.131793242188,41.4682900214844],[117.102896757813,41.4893959785157],[117.024254179688,41.5008425117187],[117.002896757813,41.4882900214844],[116.964234648438,41.4772353339844],[116.912652617188,41.4995034003907],[116.880054960938,41.4954482246094],[116.883897734375,41.5263332343751],[116.809078398438,41.5578615546875],[116.873531523438,41.5943019843751],[116.871676054688,41.6092348457031],[116.893258085938,41.6387831855469],[116.87736453125,41.6658180976563],[116.861793242188,41.6782900214844],[116.84978640625,41.6932802558594],[116.853013945313,41.7192031074219],[116.841676054688,41.7384828925782],[116.847999296875,41.7892958808594],[116.811793242188,41.8182900214844],[116.807345,41.823843],[116.84271609375,41.8192153144532],[116.89562625,41.7997841621094],[116.912345,41.7984413886719],[116.951651640625,41.8015993476563],[116.963912382813,41.7741274238282],[116.99197390625,41.7584706855469],[117.01271609375,41.7492153144531],[117.02197390625,41.7384706855469],[117.04345828125,41.7199587226563],[117.064508085938,41.6727858710938],[117.083526640625,41.6891664863282],[117.081925078125,41.7090810371094],[117.092764921875,41.7386049628906],[117.091202421875,41.7580568671875],[117.13197390625,41.7692153144532],[117.196988554688,41.7839858222657],[117.255484648438,41.8297963691407],[117.292345,41.8268337226563],[117.408136015625,41.836137921875]]]]}},{"type":"Feature","properties":{"name":"滦平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.540811796875,41.2048085761719],[117.551954375,41.1775759101563],[117.577857695313,41.1932009101563],[117.670660429688,41.1794863105469],[117.72298953125,41.1981996894532],[117.733062773438,41.2112514472656],[117.777345,41.1938430000001],[117.77271609375,41.1484706855469],[117.761929960938,41.0990151191406],[117.763951445313,41.0738430000001],[117.761920195313,41.048540265625],[117.80197390625,40.9973952460938],[117.774307890625,40.9702053046875],[117.732345,40.9668337226562],[117.692838164063,40.9700087714844],[117.691666289063,40.9553810859375],[117.727100859375,40.9356093574219],[117.794527617188,40.9410268378906],[117.76615359375,40.9010109687501],[117.81216921875,40.8884169746094],[117.867345,40.893843],[117.86271609375,40.8884706855469],[117.833326445313,40.8631508613281],[117.867345,40.833843],[117.8463684375,40.8045790839844],[117.812345,40.7978554511719],[117.762345,40.8077358222657],[117.705303984375,40.7964638496094],[117.6528528125,40.8180178046875],[117.601519804688,40.8096681953125],[117.566138945313,40.7951296210938],[117.539386015625,40.8004152656251],[117.504971953125,40.7871425605469],[117.497296171875,40.7482949042969],[117.519674101563,40.6938430000001],[117.507345,40.663843],[117.501793242188,40.6682900214844],[117.410640898438,40.6829848457031],[117.361119414063,40.6768239570313],[117.298331328125,40.65269065625],[117.252706328125,40.6795095039063],[117.234508085938,40.6772463203125],[117.202896757813,40.6893959785157],[117.122369414063,40.6994680000001],[117.112345,40.6982216621094],[117.087345,40.7013307929687],[117.062345,40.6982216621094],[117.052345,40.6994643378907],[117.017345,40.6951113105469],[116.96736453125,40.7013283515626],[116.952896757813,40.7193959785157],[116.941793242188,40.7282900214844],[116.932896757813,40.7393959785156],[116.921793242188,40.7482900214844],[116.912896757813,40.7693959785157],[116.891793242188,40.7782900214844],[116.882896757813,40.7893959785156],[116.877345,40.793843],[116.869464140625,40.8245522285157],[116.83326296875,40.8397585273438],[116.80142703125,40.8479274726563],[116.75326296875,40.8897585273438],[116.714508085938,40.8997035957032],[116.70326296875,40.9297585273438],[116.67326296875,40.9684670234375],[116.682413359375,41.0035353828125],[116.697345,41.013843],[116.76298953125,40.9794863105469],[116.806485625,40.9472377753907],[116.852345,40.9540151191406],[116.900767851563,40.9468593574219],[116.935889921875,40.9256728339844],[116.992345,40.9340151191407],[117.032345,40.9281044746094],[117.042345,40.9295815253907],[117.102803984375,40.9206471992188],[117.154537382813,40.9590041328125],[117.150982695313,40.9830751777344],[117.19298953125,41.0081996894532],[117.211822539063,41.0326015449219],[117.248546171875,41.0581996894531],[117.283922148438,41.0368593574219],[117.302345,41.0395815253907],[117.312789335938,41.0380385566407],[117.35170046875,41.0694863105469],[117.383170195313,41.0782497382813],[117.381573515625,41.0890541816406],[117.393204375,41.1289382148438],[117.387345,41.143843],[117.40170046875,41.1994863105469],[117.43298953125,41.2381996894532],[117.443272734375,41.2633303046875],[117.49298953125,41.2494863105469],[117.50170046875,41.2281996894532],[117.540811796875,41.2048085761719]]]]}},{"type":"Feature","properties":{"name":"平泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.831671171875,41.3525746894531],[118.879249296875,41.2993251777344],[118.89250125,41.2985353828125],[118.94611453125,41.3099904609375],[119.04650515625,41.2966408515625],[119.191798125,41.2879811835938],[119.222061796875,41.3091237617188],[119.237345,41.313843],[119.243199492188,41.2761159492187],[119.21197390625,41.2492153144531],[119.20271609375,41.2284706855469],[119.162730742188,41.2164321113282],[119.191080351563,41.1920095039063],[119.12271609375,41.1384706855469],[119.08197390625,41.1292153144532],[119.068834257813,41.0713735175781],[119.017345,41.0672365546876],[118.956920195313,41.0720912910156],[118.92271609375,41.0426247382813],[118.953819609375,41.01694846875],[119.02197390625,40.9964284492188],[118.98404421875,40.9601845527344],[118.952345,40.9576381660157],[118.903038359375,40.9615993476563],[118.89271609375,40.9384706855469],[118.881920195313,40.9191213203126],[118.884766875,40.8836782050782],[118.86271609375,40.8484706855469],[118.842955351563,40.8314455390625],[118.841158476563,40.8090566230469],[118.891632109375,40.7728115058594],[118.897345,40.753843],[118.766402617188,40.6840688300782],[118.752535429688,40.6990334296875],[118.697076445313,40.7316384101563],[118.672281523438,40.7185170722657],[118.65912234375,40.732719953125],[118.632535429688,40.7186525703125],[118.55240359375,40.69956565625],[118.542530546875,40.678637921875],[118.4991028125,40.6803591132813],[118.477345,40.703843],[118.49427859375,40.7169118476563],[118.51170046875,40.7394863105469],[118.52298953125,40.7481996894531],[118.53373171875,40.7744509101563],[118.531607695313,40.788843],[118.533082304688,40.798843],[118.53154421875,40.8092726875],[118.55298953125,40.8381996894531],[118.56170046875,40.8642763496094],[118.51170046875,40.8781996894532],[118.490767851563,40.8908266425782],[118.454127226563,40.8854116035157],[118.44298953125,40.8581996894532],[118.37369265625,40.8464272285157],[118.347388945313,40.8503139472656],[118.353082304688,40.8888430000001],[118.35154421875,40.8992726875],[118.37314578125,40.9284133125001],[118.370167265625,40.9485695625001],[118.404459257813,40.9690773750001],[118.353604765625,40.9832387519531],[118.37298953125,40.9981996894532],[118.38170046875,41.0294863105469],[118.406456328125,41.0924562812501],[118.46298953125,41.1081996894532],[118.47170046875,41.1250429511719],[118.439957304688,41.1776723457031],[118.443082304688,41.198843],[118.44093875,41.2133498359375],[118.40791140625,41.238843],[118.433595,41.2586684394532],[118.41170046875,41.2881996894531],[118.397345,41.313843],[118.402628203125,41.3185622382813],[118.417511015625,41.3352223945313],[118.52533328125,41.3495595527344],[118.542345,41.3485451484375],[118.567345,41.3500356269532],[118.622345,41.3467568183595],[118.662554960938,41.3491530585938],[118.734752226563,41.3191237617188],[118.752628203125,41.3285622382812],[118.777921171875,41.3568740058594],[118.833111601563,41.3766762519531],[118.831671171875,41.3525746894531]]]]}},{"type":"Feature","properties":{"name":"双滦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.777345,41.1938430000001],[117.812310820313,41.1880995917969],[117.8325403125,41.19108909375],[117.837345,41.173843],[117.829888945313,41.1588405585938],[117.853985625,41.110483625],[117.857345,41.093843],[117.845758085938,41.0233144355469],[117.86298953125,40.9794863105469],[117.87170046875,40.9481996894531],[117.901285429688,40.8804994941407],[117.867345,40.893843],[117.81216921875,40.8884169746094],[117.76615359375,40.9010109687501],[117.794527617188,40.9410268378906],[117.727100859375,40.9356093574219],[117.691666289063,40.9553810859375],[117.692838164063,40.9700087714844],[117.732345,40.9668337226562],[117.774307890625,40.9702053046875],[117.80197390625,40.9973952460938],[117.761920195313,41.048540265625],[117.763951445313,41.0738430000001],[117.761929960938,41.0990151191406],[117.77271609375,41.1484706855469],[117.777345,41.1938430000001]]]]}},{"type":"Feature","properties":{"name":"兴隆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.207345,40.5738430000001],[118.195152617188,40.5704201484375],[118.203922148438,40.5616506171876],[118.2333215625,40.5660219550782],[118.2319153125,40.5485195136719],[118.251754179688,40.5314284492188],[118.184561796875,40.5014455390626],[118.181929960938,40.4686708808594],[118.187345,40.443843],[118.179771757813,40.428872296875],[118.150704375,40.420483625],[118.143985625,40.387202375],[118.130704375,40.380483625],[118.117345,40.3538430000001],[118.071793242188,40.3493959785157],[118.061632109375,40.3252834296876],[118.032095976563,40.3016310859375],[117.953917265625,40.2880251289062],[117.942345,40.2894643378907],[117.906261015625,40.2849770332031],[117.892799101563,40.2681642890625],[117.882271757813,40.2694741035157],[117.812418242188,40.2582118964844],[117.801983671875,40.2595095039063],[117.782896757813,40.2482900214844],[117.761793242188,40.2393959785157],[117.742686796875,40.2281642890625],[117.661851835938,40.2395436835938],[117.646783476563,40.2037795234376],[117.567345,40.1938430000001],[117.56156375,40.2085512519532],[117.563160429688,40.2193544746094],[117.547086210938,40.2317604804688],[117.507515898438,40.2259133125],[117.439625273438,40.252602765625],[117.396436796875,40.2356240058594],[117.387345,40.223843],[117.3423840625,40.2353823066406],[117.324664335938,40.2827260566406],[117.292345,40.2754799628906],[117.28326296875,40.2997585273438],[117.27142703125,40.3079274726563],[117.26326296875,40.3297585273438],[117.236475859375,40.3708901191406],[117.221676054688,40.3675722480469],[117.217345,40.373843],[117.231793242188,40.4093959785156],[117.254327421875,40.4402443671876],[117.231793242188,40.4582900214844],[117.212896757813,40.4893959785157],[117.192999296875,40.5053298164063],[117.253472929688,40.5184145332031],[117.241676054688,40.5384828925781],[117.243448515625,40.5527150703125],[117.340284453125,40.5804018378907],[117.376954375,40.5663063789063],[117.402345,40.5694643378907],[117.415582304688,40.5678188300782],[117.411099882813,40.603843],[117.414410429688,40.6304518867188],[117.434610625,40.6279396796875],[117.452144804688,40.6498378730469],[117.486143828125,40.6298537421875],[117.497345,40.643843],[117.525245390625,40.6215016914063],[117.492896757813,40.5772206855469],[117.522896757813,40.5782900214844],[117.541793242188,40.5893959785156],[117.592896757813,40.6082900214844],[117.651983671875,40.6430226875],[117.672237578125,40.6177346015625],[117.725543242188,40.6625490546875],[117.762896757813,40.6782900214844],[117.784049101563,40.7047011542969],[117.850460234375,40.7129616523437],[117.863775664063,40.6663283515626],[117.852896757813,40.6282900214844],[117.847345,40.6238430000001],[117.82244265625,40.6087429023438],[117.762789335938,40.5970973945313],[117.794288359375,40.5359511542969],[117.83224734375,40.5489430976563],[117.885142851563,40.5618386054688],[117.867345,40.6138430000001],[117.912896757813,40.6182900214844],[117.941793242188,40.6293959785156],[117.982896757813,40.6382900214844],[118.001793242188,40.6493959785157],[118.02302859375,40.658344953125],[118.01978640625,40.6844033027344],[118.122896757813,40.6693959785156],[118.145479765625,40.6561232734375],[118.198414335938,40.6627077460938],[118.157105742188,40.6296291328126],[118.192896757813,40.6193959785157],[118.221793242188,40.6082900214844],[118.237345,40.603843],[118.248116484375,40.59839378125],[118.214918242188,40.5888137031251],[118.207345,40.5738430000001]],[[117.761226835938,40.5194826484375],[117.727261992188,40.5633071113282],[117.675694609375,40.5517482734375],[117.66326296875,40.5697585273438],[117.624703398438,40.5779274726563],[117.63365359375,40.5380043769532],[117.583463164063,40.5282033515625],[117.6201965625,40.4808107734376],[117.647345,40.473843],[117.657667265625,40.4887929511719],[117.69326296875,40.4979274726563],[117.71142703125,40.5097585273438],[117.761226835938,40.5194826484375]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"泊头市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.652823515625,38.219702375],[116.662081328125,38.2077053046875],[116.71478640625,38.18698753125],[116.741832304688,38.1909841132813],[116.747345,38.1838430000001],[116.74267703125,38.1770839667969],[116.695094023438,38.1460964179688],[116.649176054688,38.1289150214844],[116.61970828125,38.1085707832031],[116.6601965625,38.0934206367188],[116.663746367188,38.0775966621094],[116.643013945313,38.0475722480469],[116.632345,38.0499636054688],[116.622345,38.0477223945313],[116.59435671875,38.0539968085938],[116.583013945313,38.0375722480469],[116.5526184375,38.0443862128907],[116.547345,38.0238430000001],[116.51595828125,38.0171376777344],[116.482345,38.0191408515625],[116.472345,38.0185451484376],[116.46209109375,38.0191555],[116.45255984375,38.0084865546876],[116.3768371875,38.020005109375],[116.337564726563,38.0176638007813],[116.30259890625,37.9785305000001],[116.292120390625,37.9791542792969],[116.272628203125,37.9685622382813],[116.227154570313,37.9545204902344],[116.172174101563,37.9692458320313],[116.161539335938,37.9573464179688],[116.163804960938,37.9193691230469],[116.087345,37.9138430000001],[116.104093046875,37.9391847968751],[116.09142703125,37.9479274726563],[116.07326296875,37.9797585273438],[116.057345,37.9838430000001],[116.049893828125,37.9988283515626],[116.054976835938,38.0092348457032],[116.038585234375,38.0298720527344],[116.068116484375,38.03839378125],[116.050704375,38.0472023750001],[116.047345,38.0638430000001],[116.062808867188,38.0683803535156],[116.100616484375,38.0825868964844],[116.14275515625,38.0782912421875],[116.163487578125,38.1119106269531],[116.212633085938,38.0981703925781],[116.223604765625,38.1113784003907],[116.265455351563,38.1295290351562],[116.281881132813,38.1493056464844],[116.292896757813,38.158452375],[116.2884778125,38.2017848945313],[116.317891875,38.1849379707031],[116.438741484375,38.2016347480469],[116.477652617188,38.1793495917969],[116.497345,38.2138430000001],[116.51298953125,38.2094863105469],[116.528424101563,38.1894863105469],[116.56298953125,38.1981996894531],[116.581954375,38.2096401191406],[116.592428007813,38.2080922675782],[116.652823515625,38.219702375]]]]}},{"type":"Feature","properties":{"name":"沧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.111846953125,38.4813491035156],[117.078619414063,38.4344838691407],[117.103780546875,38.3893862128907],[117.080738554688,38.3695351386719],[117.0980871875,38.3545864082032],[117.119722929688,38.3294753242187],[117.143551054688,38.318843],[117.141944609375,38.298843],[117.142764921875,38.2886403632813],[117.13185671875,38.2487892890625],[117.137345,38.233843],[117.109874296875,38.2148744941407],[117.1178528125,38.1792653632813],[117.14326296875,38.1697585273438],[117.15142703125,38.1609841132813],[117.12142703125,38.1497585273438],[117.086246367188,38.1268471503907],[117.072198515625,38.1299965644531],[117.025382109375,38.1154860664063],[117.017345,38.1038430000001],[117.002623320313,38.0976601386719],[116.992198515625,38.0999965644532],[116.945245390625,38.0854433417969],[116.906246367188,38.1108388496095],[116.8726184375,38.1032997871094],[116.86326296875,38.1397585273438],[116.834620390625,38.1504738593751],[116.80435671875,38.1436891914063],[116.785694609375,38.1707155585938],[116.771890898438,38.1676210761719],[116.747345,38.1838430000001],[116.741832304688,38.1909841132813],[116.71478640625,38.18698753125],[116.662081328125,38.2077053046875],[116.652823515625,38.219702375],[116.592428007813,38.2080922675782],[116.581954375,38.2096401191406],[116.56298953125,38.1981996894531],[116.528424101563,38.1894863105469],[116.51298953125,38.2094863105469],[116.497345,38.2138430000001],[116.49281375,38.2568679023438],[116.461158476563,38.2676552558594],[116.457345,38.313843],[116.461158476563,38.3300307441406],[116.493531523438,38.3476552558594],[116.511383085938,38.4006996894532],[116.537315703125,38.392622296875],[116.572261992188,38.4209242988282],[116.5959778125,38.4042714667969],[116.617345,38.413843],[116.643170195313,38.4096681953125],[116.66177859375,38.3837050605469],[116.733170195313,38.3980178046876],[116.75216921875,38.4100795722656],[116.782345,38.3976784492188],[116.817345,38.4120619941406],[116.837345,38.4038430000001],[116.78154421875,38.3292739082031],[116.783140898438,38.318452375],[116.771549101563,38.299233625],[116.773160429688,38.2883315253907],[116.760611601563,38.2786452460938],[116.783424101563,38.2693080878906],[116.770621367188,38.2367397285157],[116.77220828125,38.2094863105469],[116.821900664063,38.2496474433594],[116.842711210938,38.2465724921876],[116.847345,38.273843],[116.857345,38.273843],[116.857345,38.283843],[116.874215117188,38.2721938300782],[116.8710559375,38.2580861640626],[116.890714140625,38.2497585273438],[116.93267703125,38.2770839667969],[116.944503203125,38.2942116523438],[116.941221953125,38.308843],[116.947496367188,38.3368325019532],[116.93142703125,38.3479274726563],[116.92326296875,38.3597585273438],[116.90088015625,38.3679274726563],[116.867345,38.353843],[116.861690703125,38.358716046875],[116.887345,38.4038430000001],[116.89166140625,38.4946303535157],[116.938619414063,38.4749062324219],[116.96142703125,38.4897585273438],[117.01326296875,38.5079274726563],[117.02142703125,38.5197585273438],[117.05326296875,38.5279274726562],[117.077345,38.543843],[117.08271609375,38.5292153144532],[117.09197390625,38.4984706855469],[117.111846953125,38.4813491035156]]]]}},{"type":"Feature","properties":{"name":"东光县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,37.843843],[116.842843046875,37.8353688789063],[116.815343046875,37.8415334296875],[116.758053007813,37.8155666328125],[116.74326296875,37.7579274726563],[116.697345,37.733843],[116.689869414063,37.7606935859375],[116.655889921875,37.7556728339844],[116.632345,37.7698744941406],[116.605636015625,37.7537624335938],[116.56298953125,37.7794863105469],[116.496954375,37.7907045722657],[116.467345,37.783843],[116.467345,37.813843],[116.47312625,37.8285512519532],[116.471607695313,37.8388430000001],[116.473082304688,37.848843],[116.471519804688,37.8594130683594],[116.496324492188,37.8695644355469],[116.532003203125,37.915786359375],[116.552877226563,37.9667983222657],[116.557345,38.0238430000001],[116.653077421875,38.0298110175782],[116.672061796875,38.0085622382813],[116.682628203125,37.9991237617188],[116.69435671875,37.9859963203125],[116.823961210938,37.9657997871094],[116.8426575,37.949095685547],[116.84146609375,37.9290956855469],[116.8537903125,37.9180849433594],[116.8520325,37.8885817695313],[116.885714140625,37.8671620917969],[116.877345,37.843843]]]]}},{"type":"Feature","properties":{"name":"海兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.807764921875,38.2392055488281],[117.791519804688,38.1996681953125],[117.783170195313,38.1680178046876],[117.761217070313,38.1595510078126],[117.765675078125,38.1369826484375],[117.735694609375,38.115493390625],[117.705445585938,38.0732900214844],[117.672340117188,38.0798317695313],[117.612349882813,38.0678542304688],[117.581456328125,38.0739589667969],[117.5507434375,38.0519448066406],[117.55341921875,38.0384096503907],[117.541519804688,38.0196681953125],[117.537345,38.003843],[117.522789335938,37.9948732734375],[117.503531523438,37.9376552558594],[117.497345,37.933843],[117.491676054688,37.942055890625],[117.455650664063,37.93397971875],[117.464136992188,37.9718349433594],[117.40142703125,37.9879274726563],[117.39326296875,38.0097585273438],[117.365235625,38.0202455878906],[117.384283476563,38.0494960761719],[117.35142703125,38.0579274726563],[117.340186796875,38.0742116523438],[117.345225859375,38.0966884589844],[117.317345,38.1038430000001],[117.320704375,38.1204836250001],[117.34287234375,38.1316994453125],[117.347345,38.153843],[117.352896757813,38.1582900214844],[117.361793242188,38.1793959785157],[117.373013945313,38.1984828925782],[117.370582304688,38.218001935547],[117.412345,38.2231960273438],[117.491275664063,38.2133791328126],[117.562183867188,38.2294850898438],[117.577486601563,38.2275820136719],[117.60302859375,38.2383449531251],[117.601085234375,38.2539833808594],[117.615538359375,38.2882900214844],[117.719429960938,38.2745729804688],[117.761793242188,38.2582900214844],[117.787345,38.2538430000001],[117.807764921875,38.2392055488281]]]]}},{"type":"Feature","properties":{"name":"河间市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.451519804688,38.5764479804688],[116.443170195313,38.5580178046875],[116.423394804688,38.543843],[116.443170195313,38.5296681953126],[116.457393828125,38.4927846503907],[116.5132825,38.4817409492188],[116.55088015625,38.5056093574219],[116.561519804688,38.4780178046875],[116.587345,38.473843],[116.5933996875,38.4608486152344],[116.621612578125,38.4770217109376],[116.639620390625,38.453559796875],[116.620523710938,38.4306642890625],[116.617345,38.413843],[116.5959778125,38.4042714667969],[116.572261992188,38.4209242988282],[116.537315703125,38.392622296875],[116.511383085938,38.4006996894532],[116.493531523438,38.3476552558594],[116.461158476563,38.3300307441406],[116.457345,38.313843],[116.44197390625,38.3184706855469],[116.429522734375,38.3598220039063],[116.392345,38.3568337226563],[116.333961210938,38.3615248847656],[116.318668242188,38.3437734199219],[116.192056914063,38.3794008613282],[116.18271609375,38.3584706855469],[116.17197390625,38.3492153144532],[116.162667265625,38.3384157539063],[116.141510039063,38.3401149726563],[116.102535429688,38.3183693671876],[116.017345,38.3338430000001],[116.021881132813,38.3493056464844],[116.032896757813,38.358452375],[116.030069609375,38.3861440253907],[116.043233671875,38.4091213203125],[116.0132434375,38.4221279121094],[116.033365507813,38.4388430000001],[116.021881132813,38.4483803535156],[116.010621367188,38.474349591797],[115.91713015625,38.4910097480469],[115.932808867188,38.5183803535157],[115.937345,38.533843],[115.928819609375,38.5541469550782],[115.957345,38.573843],[115.973975859375,38.5497585273438],[116.00326296875,38.5579274726563],[116.032623320313,38.5806825996094],[116.041998320313,38.56710471875],[116.069581328125,38.5850673652345],[116.102345,38.5777223945312],[116.112345,38.5799636054688],[116.157867460938,38.5697585273438],[116.173585234375,38.5883107734375],[116.169537382813,38.6063637519532],[116.20142703125,38.6197585273438],[116.23326296875,38.6279274726563],[116.24201296875,38.6406020332032],[116.279097929688,38.6647524238282],[116.317672148438,38.6733998847657],[116.34142703125,38.6579274726563],[116.357345,38.653843],[116.380074492188,38.6124318671876],[116.413170195313,38.5996681953125],[116.421519804688,38.5880178046876],[116.451519804688,38.5764479804688]]]]}},{"type":"Feature","properties":{"name":"黄骅市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.887345,38.313843],[117.890767851563,38.3260353828125],[117.899537382813,38.3172658515626],[117.887345,38.313843]]],[[[117.887345,38.313843],[117.883985625,38.307202375],[117.857423125,38.293764875],[117.847345,38.273843],[117.839693632813,38.2604201484375],[117.799693632813,38.2754970527344],[117.787345,38.2538430000001],[117.761793242188,38.2582900214844],[117.719429960938,38.2745729804688],[117.615538359375,38.2882900214844],[117.601085234375,38.2539833808594],[117.60302859375,38.2383449531251],[117.577486601563,38.2275820136719],[117.562183867188,38.2294850898438],[117.491275664063,38.2133791328126],[117.412345,38.2231960273438],[117.370582304688,38.218001935547],[117.373013945313,38.1984828925782],[117.361793242188,38.1793959785157],[117.352896757813,38.1582900214844],[117.347345,38.153843],[117.307642851563,38.1603652167969],[117.292027617188,38.1580568671876],[117.242662382813,38.1796291328125],[117.203487578125,38.1738393378906],[117.192095976563,38.2016664863281],[117.15170046875,38.2181996894532],[117.14298953125,38.2294863105469],[117.137345,38.233843],[117.13185671875,38.2487892890625],[117.142764921875,38.2886403632813],[117.141944609375,38.298843],[117.143551054688,38.318843],[117.119722929688,38.3294753242187],[117.0980871875,38.3545864082032],[117.080738554688,38.3695351386719],[117.103780546875,38.3893862128907],[117.078619414063,38.4344838691407],[117.111846953125,38.4813491035156],[117.09197390625,38.4984706855469],[117.08271609375,38.5292153144532],[117.077345,38.543843],[117.08298953125,38.5481996894531],[117.097345,38.583843],[117.11326296875,38.5879274726563],[117.14267703125,38.6070839667969],[117.147345,38.613843],[117.183170195313,38.6180178046876],[117.220518828125,38.6465407539063],[117.231519804688,38.6180178046876],[117.245186796875,38.6082228828126],[117.235875273438,38.561108625],[117.259386015625,38.5564638496094],[117.29279421875,38.5701918769532],[117.302115507813,38.5571865058594],[117.343170195313,38.5680178046875],[117.357345,38.5877956367188],[117.374132109375,38.5643727851562],[117.393170195313,38.5780178046875],[117.40314578125,38.5919350410157],[117.48187625,38.6158522773438],[117.529386015625,38.6064638496094],[117.547345,38.613843],[117.567896757813,38.5954811835938],[117.622061796875,38.4985622382813],[117.642628203125,38.4691237617188],[117.687784453125,38.3981179023438],[117.735714140625,38.3444777656251],[117.828048125,38.3060732246094],[117.860240507813,38.3235683417969],[117.887345,38.313843]]]]}},{"type":"Feature","properties":{"name":"孟村回族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.192095976563,38.2016664863281],[117.203487578125,38.1738393378906],[117.242662382813,38.1796291328125],[117.292027617188,38.1580568671876],[117.307642851563,38.1603652167969],[117.347345,38.153843],[117.34287234375,38.1316994453125],[117.320704375,38.1204836250001],[117.317345,38.1038430000001],[117.291519804688,38.1080178046875],[117.248580351563,38.1210622382813],[117.232345,38.1178554511719],[117.219386015625,38.120415265625],[117.1805871875,38.1054506660157],[117.143526640625,38.0470754218751],[117.171724882813,38.0077321601563],[117.187613554688,38.0108718085938],[117.205943632813,37.95054221875],[117.153780546875,37.9402346015625],[117.123170195313,37.9596681953126],[117.061519804688,37.9680178046875],[117.053170195313,37.9796681953125],[117.027345,37.993843],[117.03312625,38.0085512519531],[117.030865507813,38.0238430000001],[117.03314578125,38.0392726875],[117.011529570313,38.06843284375],[117.017345,38.1038430000001],[117.025382109375,38.1154860664063],[117.072198515625,38.1299965644531],[117.086246367188,38.1268471503907],[117.12142703125,38.1497585273438],[117.15142703125,38.1609841132813],[117.14326296875,38.1697585273438],[117.1178528125,38.1792653632813],[117.109874296875,38.2148744941407],[117.137345,38.233843],[117.14298953125,38.2294863105469],[117.15170046875,38.2181996894532],[117.192095976563,38.2016664863281]]]]}},{"type":"Feature","properties":{"name":"南皮县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.747345,38.1838430000001],[116.771890898438,38.1676210761719],[116.785694609375,38.1707155585938],[116.80435671875,38.1436891914063],[116.834620390625,38.1504738593751],[116.86326296875,38.1397585273438],[116.8726184375,38.1032997871094],[116.906246367188,38.1108388496095],[116.945245390625,38.0854433417969],[116.992198515625,38.0999965644532],[117.002623320313,38.0976601386719],[117.017345,38.1038430000001],[117.011529570313,38.06843284375],[117.03314578125,38.0392726875],[117.030865507813,38.0238430000001],[117.03312625,38.0085512519531],[117.027345,37.993843],[116.99791140625,37.9711244941407],[117.02744265625,37.9483315253906],[117.021607695313,37.9088430000001],[117.024561796875,37.888843],[117.0216028125,37.8688088203126],[117.027345,37.8338430000001],[116.96281375,37.8401894355469],[116.957345,37.8338430000001],[116.947345,37.8338430000001],[116.947345,37.843843],[116.937345,37.843843],[116.877345,37.843843],[116.885714140625,37.8671620917969],[116.8520325,37.8885817695313],[116.8537903125,37.9180849433594],[116.84146609375,37.9290956855469],[116.8426575,37.949095685547],[116.823961210938,37.9657997871094],[116.69435671875,37.9859963203125],[116.682628203125,37.9991237617188],[116.672061796875,38.0085622382813],[116.653077421875,38.0298110175782],[116.557345,38.0238430000001],[116.547345,38.0238430000001],[116.5526184375,38.0443862128907],[116.583013945313,38.0375722480469],[116.59435671875,38.0539968085938],[116.622345,38.0477223945313],[116.632345,38.0499636054688],[116.643013945313,38.0475722480469],[116.663746367188,38.0775966621094],[116.6601965625,38.0934206367188],[116.61970828125,38.1085707832031],[116.649176054688,38.1289150214844],[116.695094023438,38.1460964179688],[116.74267703125,38.1770839667969],[116.747345,38.1838430000001]]]]}},{"type":"Feature","properties":{"name":"青县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.8740246875,38.6829872871094],[116.912628203125,38.6781862617188],[116.946763945313,38.6913075996094],[117.030987578125,38.7017836738282],[117.041793242188,38.6882900214844],[117.054156523438,38.6783901191407],[117.048980742188,38.6367787910157],[117.071793242188,38.6082900214844],[117.082896757813,38.5993959785157],[117.091793242188,38.5882900214844],[117.097345,38.583843],[117.08298953125,38.5481996894531],[117.077345,38.543843],[117.05326296875,38.5279274726562],[117.02142703125,38.5197585273438],[117.01326296875,38.5079274726563],[116.96142703125,38.4897585273438],[116.938619414063,38.4749062324219],[116.89166140625,38.4946303535157],[116.887345,38.4038430000001],[116.855797148438,38.4115920234376],[116.837345,38.4038430000001],[116.817345,38.4120619941406],[116.782345,38.3976784492188],[116.75216921875,38.4100795722656],[116.733170195313,38.3980178046876],[116.66177859375,38.3837050605469],[116.643170195313,38.4096681953125],[116.617345,38.413843],[116.620523710938,38.4306642890625],[116.639620390625,38.453559796875],[116.621612578125,38.4770217109376],[116.5933996875,38.4608486152344],[116.587345,38.473843],[116.59197390625,38.4792153144531],[116.6080871875,38.4930995917969],[116.622667265625,38.5100221992188],[116.643961210938,38.5083107734375],[116.667232695313,38.5353224921876],[116.640347929688,38.5584889960938],[116.6627746875,38.5684963203125],[116.661163359375,38.5885195136719],[116.67271609375,38.5984706855469],[116.68197390625,38.6092153144532],[116.72271609375,38.6184706855469],[116.74197390625,38.6292153144531],[116.77752078125,38.6450771308594],[116.7619153125,38.6585195136719],[116.762745390625,38.6688430000001],[116.761944609375,38.6788430000001],[116.762750273438,38.6888808417969],[116.757345,38.7438430000001],[116.864273710938,38.7393386054688],[116.861085234375,38.7137026191407],[116.8740246875,38.6829872871094]]]]}},{"type":"Feature","properties":{"name":"任丘市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.197345,38.923843],[116.201881132813,38.8783803535156],[116.24302859375,38.8605361152344],[116.241793242188,38.8484194160157],[116.262808867188,38.8393056464844],[116.271881132813,38.8183803535157],[116.334068632813,38.8091176582031],[116.405455351563,38.7781569648438],[116.421881132813,38.7583803535156],[116.427345,38.7538430000001],[116.423985625,38.717202375],[116.361373320313,38.685805890625],[116.357345,38.653843],[116.34142703125,38.6579274726563],[116.317672148438,38.6733998847657],[116.279097929688,38.6647524238282],[116.24201296875,38.6406020332032],[116.23326296875,38.6279274726563],[116.20142703125,38.6197585273438],[116.169537382813,38.6063637519532],[116.173585234375,38.5883107734375],[116.157867460938,38.5697585273438],[116.112345,38.5799636054688],[116.102345,38.5777223945312],[116.069581328125,38.5850673652345],[116.041998320313,38.56710471875],[116.032623320313,38.5806825996094],[116.00326296875,38.5579274726563],[115.973975859375,38.5497585273438],[115.957345,38.573843],[115.95052859375,38.6283864570313],[115.967803984375,38.6422182441407],[115.951695585938,38.6986257148438],[115.953013945313,38.7092031074219],[115.941612578125,38.7285976386719],[115.947345,38.7538430000001],[115.970787382813,38.7598586250001],[116.003082304688,38.8066347480469],[116.033638945313,38.8180690742188],[116.03119265625,38.828989484375],[116.04349734375,38.868696515625],[116.037686796875,38.8946169257813],[116.083814726563,38.9118764472657],[116.110191679688,38.9059633613282],[116.117345,38.933843],[116.155733671875,38.9432729316407],[116.197345,38.923843]]]]}},{"type":"Feature","properties":{"name":"肃宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.937345,38.533843],[115.932808867188,38.5183803535157],[115.91713015625,38.4910097480469],[116.010621367188,38.474349591797],[116.021881132813,38.4483803535156],[116.033365507813,38.4388430000001],[116.0132434375,38.4221279121094],[116.043233671875,38.4091213203125],[116.030069609375,38.3861440253907],[116.032896757813,38.358452375],[116.021881132813,38.3493056464844],[116.017345,38.3338430000001],[116.00978640625,38.3240492988281],[115.955220976563,38.3321120429687],[115.874342070313,38.2717458320313],[115.86298953125,38.2994863105469],[115.847345,38.303843],[115.832896757813,38.3393959785156],[115.76259890625,38.3594960761719],[115.751890898438,38.3581642890625],[115.742545195313,38.3698378730469],[115.722589140625,38.3581081367187],[115.697345,38.3638430000001],[115.7060559375,38.3751308417969],[115.725675078125,38.3902724433594],[115.709014921875,38.4474135566406],[115.7286340625,38.4625551582032],[115.74170046875,38.4794863105469],[115.77298953125,38.4881996894532],[115.78170046875,38.5094863105469],[115.817345,38.5238430000001],[115.860094023438,38.5133425117188],[115.873013945313,38.5320558906251],[115.902843046875,38.5253688789063],[115.937345,38.533843]]],[[[115.853922148438,38.5360353828126],[115.857345,38.5238430000001],[115.845152617188,38.5272658515625],[115.853922148438,38.5360353828126]]]]}},{"type":"Feature","properties":{"name":"吴桥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.56298953125,37.7794863105469],[116.605636015625,37.7537624335938],[116.632345,37.7698744941406],[116.655889921875,37.7556728339844],[116.689869414063,37.7606935859375],[116.697345,37.733843],[116.671793242188,37.7193959785157],[116.662896757813,37.6982900214844],[116.610709257813,37.6330336738281],[116.5601575,37.6023281074219],[116.532896757813,37.5682900214844],[116.516236601563,37.5549489570313],[116.507345,37.543843],[116.444464140625,37.5043508125],[116.428678007813,37.4699648261719],[116.397906523438,37.5044057441407],[116.372515898438,37.5270912910156],[116.362628203125,37.5591237617188],[116.340260039063,37.569389875],[116.327345,37.583843],[116.3335559375,37.6061537910157],[116.365953398438,37.6194130683594],[116.361529570313,37.6493544746094],[116.37298953125,37.6581996894532],[116.38170046875,37.6894863105469],[116.410894804688,37.7288661933594],[116.423160429688,37.7383315253907],[116.421519804688,37.7494130683595],[116.449659453125,37.7609291816407],[116.467345,37.783843],[116.496954375,37.7907045722657],[116.56298953125,37.7794863105469]]]]}},{"type":"Feature","properties":{"name":"献县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.192056914063,38.3794008613282],[116.318668242188,38.3437734199219],[116.333961210938,38.3615248847656],[116.392345,38.3568337226563],[116.429522734375,38.3598220039063],[116.44197390625,38.3184706855469],[116.457345,38.313843],[116.461158476563,38.2676552558594],[116.49281375,38.2568679023438],[116.497345,38.2138430000001],[116.477652617188,38.1793495917969],[116.438741484375,38.2016347480469],[116.317891875,38.1849379707031],[116.2884778125,38.2017848945313],[116.292896757813,38.158452375],[116.281881132813,38.1493056464844],[116.265455351563,38.1295290351562],[116.223604765625,38.1113784003907],[116.212633085938,38.0981703925781],[116.163487578125,38.1119106269531],[116.14275515625,38.0782912421875],[116.100616484375,38.0825868964844],[116.062808867188,38.0683803535156],[116.047345,38.0638430000001],[116.028189726563,38.0936659980469],[116.04298953125,38.1181996894531],[116.043863554688,38.1481996894532],[115.987345,38.1259804511719],[115.932081328125,38.1477053046875],[115.92298953125,38.1594863105469],[115.897345,38.163843],[115.88603640625,38.1698000312501],[115.90037234375,38.2017128730469],[115.861905546875,38.2219765449219],[115.853892851563,38.2603932929688],[115.839464140625,38.267993390625],[115.82541140625,38.2992714667969],[115.847345,38.303843],[115.86298953125,38.2994863105469],[115.874342070313,38.2717458320313],[115.955220976563,38.3321120429687],[116.00978640625,38.3240492988281],[116.017345,38.3338430000001],[116.102535429688,38.3183693671876],[116.141510039063,38.3401149726563],[116.162667265625,38.3384157539063],[116.17197390625,38.3492153144532],[116.18271609375,38.3584706855469],[116.192056914063,38.3794008613282]]]]}},{"type":"Feature","properties":{"name":"新华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.857345,38.283843],[116.857345,38.273843],[116.847345,38.273843],[116.847345,38.283843],[116.857345,38.283843]]],[[[116.857345,38.283843],[116.86170046875,38.3194863105469],[116.867345,38.353843],[116.90088015625,38.3679274726563],[116.92326296875,38.3597585273438],[116.93142703125,38.3479274726563],[116.947496367188,38.3368325019532],[116.941221953125,38.308843],[116.944503203125,38.2942116523438],[116.93267703125,38.2770839667969],[116.890714140625,38.2497585273438],[116.8710559375,38.2580861640626],[116.874215117188,38.2721938300782],[116.857345,38.283843]]]]}},{"type":"Feature","properties":{"name":"盐山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.248580351563,38.1210622382813],[117.291519804688,38.1080178046875],[117.317345,38.1038430000001],[117.345225859375,38.0966884589844],[117.340186796875,38.0742116523438],[117.35142703125,38.0579274726563],[117.384283476563,38.0494960761719],[117.365235625,38.0202455878906],[117.39326296875,38.0097585273438],[117.40142703125,37.9879274726563],[117.464136992188,37.9718349433594],[117.455650664063,37.93397971875],[117.491676054688,37.942055890625],[117.497345,37.933843],[117.47922,37.9213295722656],[117.424346953125,37.8398415351563],[117.316046171875,37.8664430976563],[117.307345,37.853843],[117.291881132813,37.8493056464844],[117.262608671875,37.838305890625],[117.207345,37.8439394355469],[117.152345,37.8383339667969],[117.06341921875,37.8473976875],[117.027345,37.8338430000001],[117.0216028125,37.8688088203126],[117.024561796875,37.888843],[117.021607695313,37.9088430000001],[117.02744265625,37.9483315253906],[116.99791140625,37.9711244941407],[117.027345,37.993843],[117.053170195313,37.9796681953125],[117.061519804688,37.9680178046875],[117.123170195313,37.9596681953126],[117.153780546875,37.9402346015625],[117.205943632813,37.95054221875],[117.187613554688,38.0108718085938],[117.171724882813,38.0077321601563],[117.143526640625,38.0470754218751],[117.1805871875,38.1054506660157],[117.219386015625,38.120415265625],[117.232345,38.1178554511719],[117.248580351563,38.1210622382813]]]]}},{"type":"Feature","properties":{"name":"运河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.847345,38.273843],[116.842711210938,38.2465724921876],[116.821900664063,38.2496474433594],[116.77220828125,38.2094863105469],[116.770621367188,38.2367397285157],[116.783424101563,38.2693080878906],[116.760611601563,38.2786452460938],[116.773160429688,38.2883315253907],[116.771549101563,38.299233625],[116.783140898438,38.318452375],[116.78154421875,38.3292739082031],[116.837345,38.4038430000001],[116.855797148438,38.4115920234376],[116.887345,38.4038430000001],[116.861690703125,38.358716046875],[116.867345,38.353843],[116.86170046875,38.3194863105469],[116.857345,38.283843],[116.847345,38.283843],[116.847345,38.273843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安次区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.233843],[116.889537382813,39.2304201484376],[116.880767851563,39.2216506171876],[116.877345,39.233843]]],[[[116.877345,39.233843],[116.87197390625,39.2292153144531],[116.86271609375,39.2184706855469],[116.851905546875,39.2091567207032],[116.857345,39.153843],[116.792144804688,39.1484242988282],[116.747281523438,39.1607021308594],[116.727345,39.183843],[116.73326296875,39.1879274726563],[116.75142703125,39.2168947578125],[116.69142703125,39.2379274726563],[116.680186796875,39.2542116523438],[116.69000125,39.2980055976563],[116.669888945313,39.3628932929688],[116.676158476563,39.3908534980469],[116.65142703125,39.4079274726563],[116.628375273438,39.4413161445313],[116.604498320313,39.4359633613282],[116.597345,39.463843],[116.60849734375,39.4999660468751],[116.662042265625,39.4967751289063],[116.602628203125,39.5345644355469],[116.612125273438,39.5391542792969],[116.622345,39.5385451484376],[116.651890898438,39.5403066230469],[116.722628203125,39.4991237617188],[116.772061796875,39.4685622382813],[116.787345,39.463843],[116.792095976563,39.4458303046875],[116.812965117188,39.4499538398438],[116.822965117188,39.436001203125],[116.860455351563,39.4434096503907],[116.863453398438,39.4282228828125],[116.828521757813,39.4031850410157],[116.833453398438,39.3782228828126],[116.821236601563,39.3694631171875],[116.823331328125,39.3588430000001],[116.819678984375,39.3403578925782],[116.832633085938,39.337798078125],[116.8694934375,39.3529457832031],[116.88459109375,39.3162050605469],[116.86123171875,39.2994618964844],[116.873170195313,39.2396681953125],[116.877345,39.233843]]]]}},{"type":"Feature","properties":{"name":"霸州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.497345,39.023843],[116.493922148438,39.0116506171875],[116.485152617188,39.0204201484375],[116.497345,39.023843]]],[[[116.497345,39.023843],[116.489176054688,39.0356740546875],[116.464522734375,39.0526943183594],[116.437345,39.0466017890625],[116.422345,39.0499636054688],[116.407345,39.0466017890625],[116.376573515625,39.0534999824219],[116.35857546875,39.0054055000001],[116.327345,38.983843],[116.32326296875,38.9897585273438],[116.283829375,39.0045119453126],[116.30361453125,39.0181728339844],[116.301217070313,39.0288845039063],[116.313643828125,39.0794936347656],[116.30142703125,39.0879274726563],[116.29326296875,39.0997585273438],[116.26142703125,39.1179274726563],[116.257345,39.1338430000001],[116.283170195313,39.1380178046875],[116.293892851563,39.1915016914063],[116.312779570313,39.1877687812501],[116.3419153125,39.2062685371094],[116.352037382813,39.2203884101563],[116.372652617188,39.2072975898438],[116.377345,39.213843],[116.442452421875,39.1880275703125],[116.463897734375,39.2006349921875],[116.484776640625,39.1745632148438],[116.543609648438,39.1371340156251],[116.562706328125,39.1395095039062],[116.590982695313,39.1228871894532],[116.592965117188,39.138843],[116.5905871875,39.1579946113281],[116.672896757813,39.1682900214844],[116.690152617188,39.18983909375],[116.727345,39.183843],[116.747281523438,39.1607021308594],[116.792144804688,39.1484242988282],[116.857345,39.153843],[116.907345,39.153843],[116.907345,39.1338430000001],[116.917345,39.1338430000001],[116.913985625,39.107202375],[116.887423125,39.093764875],[116.877345,39.073843],[116.87142703125,39.0697585273437],[116.86326296875,39.0579274726563],[116.822725859375,39.0475258613282],[116.781754179688,39.0602260566406],[116.771676054688,39.0456301093751],[116.751529570313,39.0501467109375],[116.747345,39.033843],[116.722506132813,39.0282009101563],[116.695479765625,39.0315627265626],[116.658546171875,39.0098537421875],[116.642896757813,39.0293959785156],[116.629249296875,39.0403237128906],[116.612345,39.0382216621094],[116.59021609375,39.0409743476562],[116.593004179688,39.0185414863282],[116.584928007813,38.9993959785156],[116.532896757813,39.0193959785157],[116.497345,39.023843]],[[116.3351575,39.027075421875],[116.357345,39.023843],[116.354195585938,39.0454579902344],[116.3351575,39.027075421875]]]]}},{"type":"Feature","properties":{"name":"大厂回族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.002271757813,39.8922219062501],[117.022345,39.8877223945313],[117.033590117188,39.8902431464844],[117.06408328125,39.8691909003907],[117.05142703125,39.8497585273438],[117.047345,39.823843],[117.02142703125,39.8279274726563],[116.986246367188,39.8508388496094],[116.967345,39.8466017890625],[116.925694609375,39.8559377265625],[116.917345,39.843843],[116.892486601563,39.8380825019532],[116.858590117188,39.8430922675782],[116.812320585938,39.8773952460938],[116.807345,39.883843],[116.81142703125,39.8897585273438],[116.860416289063,39.8993251777344],[116.88142703125,39.9297585273438],[116.893858671875,39.9383388496094],[116.878609648438,39.9746425605469],[116.902960234375,39.9801015449219],[116.955225859375,39.9666884589844],[116.950186796875,39.9442116523438],[116.96142703125,39.9279274726563],[116.98326296875,39.9197585273438],[117.002271757813,39.8922219062501]]]]}},{"type":"Feature","properties":{"name":"大城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.675860625,38.8687233710938],[116.69189578125,38.8479457832032],[116.717345,38.853843],[116.735733671875,38.849887921875],[116.744405546875,38.8288430000001],[116.7341028125,38.803843],[116.74646609375,38.773843],[116.73990359375,38.7579213691407],[116.753804960938,38.7503029609375],[116.757345,38.7438430000001],[116.762750273438,38.6888808417969],[116.761944609375,38.6788430000001],[116.762745390625,38.6688430000001],[116.7619153125,38.6585195136719],[116.77752078125,38.6450771308594],[116.74197390625,38.6292153144531],[116.72271609375,38.6184706855469],[116.68197390625,38.6092153144532],[116.67271609375,38.5984706855469],[116.661163359375,38.5885195136719],[116.6627746875,38.5684963203125],[116.640347929688,38.5584889960938],[116.667232695313,38.5353224921876],[116.643961210938,38.5083107734375],[116.622667265625,38.5100221992188],[116.6080871875,38.4930995917969],[116.59197390625,38.4792153144531],[116.587345,38.473843],[116.561519804688,38.4780178046875],[116.55088015625,38.5056093574219],[116.5132825,38.4817409492188],[116.457393828125,38.4927846503907],[116.443170195313,38.5296681953126],[116.423394804688,38.543843],[116.443170195313,38.5580178046875],[116.451519804688,38.5764479804688],[116.421519804688,38.5880178046876],[116.413170195313,38.5996681953125],[116.380074492188,38.6124318671876],[116.357345,38.653843],[116.361373320313,38.685805890625],[116.423985625,38.717202375],[116.427345,38.7538430000001],[116.47172,38.7611318183594],[116.48978640625,38.7377260566407],[116.502345,38.7395815253906],[116.527086210938,38.7359255195313],[116.553463164063,38.7562831855469],[116.551519804688,38.7694130683594],[116.607340117188,38.7922585273438],[116.62298953125,38.8181996894532],[116.63170046875,38.8394863105469],[116.643140898438,38.858452375],[116.640225859375,38.8781996894532],[116.675860625,38.8687233710938]]]]}},{"type":"Feature","properties":{"name":"固安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.237345,39.5138430000001],[116.261793242188,39.4982900214844],[116.292896757813,39.4893959785156],[116.331793242188,39.4582900214844],[116.44005984375,39.4447475410156],[116.447345,39.453843],[116.457345,39.453843],[116.46197390625,39.4184706855469],[116.473013945313,39.3986843085938],[116.43197390625,39.3692153144532],[116.42271609375,39.3584706855469],[116.380396757813,39.3280837226563],[116.383565703125,39.28866721875],[116.377345,39.213843],[116.372652617188,39.2072975898438],[116.352037382813,39.2203884101563],[116.3419153125,39.2062685371094],[116.312779570313,39.1877687812501],[116.293892851563,39.1915016914063],[116.283170195313,39.1380178046875],[116.257345,39.1338430000001],[116.257345,39.143843],[116.207345,39.143843],[116.19271609375,39.2092153144532],[116.1818371875,39.2185890937501],[116.203004179688,39.3156362128907],[116.200523710938,39.3465016914062],[116.12197390625,39.3584706855469],[116.107345,39.3638430000001],[116.122896757813,39.3982900214844],[116.135460234375,39.4563442207032],[116.203287382813,39.5105910468751],[116.222628203125,39.5081862617188],[116.237345,39.5138430000001]]]]}},{"type":"Feature","properties":{"name":"广阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.417345,39.503843],[116.392896757813,39.5108327460938],[116.410499296875,39.5277809882813],[116.417345,39.503843]]],[[[116.417345,39.503843],[116.43298953125,39.5081996894532],[116.44170046875,39.5194863105469],[116.4731653125,39.5383034492188],[116.471519804688,39.5494130683594],[116.512095976563,39.5660195136719],[116.52170046875,39.5894863105469],[116.54298953125,39.5981996894532],[116.58013796875,39.6206081367187],[116.638736601563,39.5975710273438],[116.667174101563,39.6017726875],[116.710972929688,39.5845546699219],[116.713160429688,39.5993544746094],[116.699390898438,39.6099831367187],[116.717345,39.6238430000001],[116.75298953125,39.6094863105469],[116.779400664063,39.5935536933595],[116.79170046875,39.6094863105469],[116.807345,39.613843],[116.799698515625,39.5956410957031],[116.803580351563,39.5783376289063],[116.777379179688,39.5445326972657],[116.81361453125,39.5195131660156],[116.810103789063,39.503843],[116.814215117188,39.4854921699219],[116.79142703125,39.4697585273438],[116.787345,39.463843],[116.772061796875,39.4685622382813],[116.722628203125,39.4991237617188],[116.651890898438,39.5403066230469],[116.622345,39.5385451484376],[116.612125273438,39.5391542792969],[116.602628203125,39.5345644355469],[116.662042265625,39.4967751289063],[116.60849734375,39.4999660468751],[116.597345,39.463843],[116.548170195313,39.4719203925782],[116.512345,39.466626203125],[116.491832304688,39.4696572089844],[116.48298953125,39.4581996894531],[116.457345,39.453843],[116.447345,39.453843],[116.43334109375,39.4817702460938],[116.422345,39.47640159375],[116.407345,39.4837270332032],[116.417345,39.503843]]]]}},{"type":"Feature","properties":{"name":"三河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.183360625,40.0807558417969],[117.187345,40.063843],[117.178272734375,40.0565785957032],[117.186246367188,39.9924770332032],[117.1297278125,39.9218056464844],[117.142896757813,39.8993959785156],[117.15634890625,39.8674758125],[117.172564726563,39.8694924140626],[117.218194609375,39.8564614082031],[117.24287234375,39.8595302558594],[117.247345,39.833843],[117.19170046875,39.8294863105469],[117.157345,39.823843],[117.110704375,39.820483625],[117.103336210938,39.8059169746094],[117.082345,39.8161684394532],[117.057393828125,39.8039821601563],[117.047345,39.823843],[117.05142703125,39.8497585273438],[117.06408328125,39.8691909003907],[117.033590117188,39.8902431464844],[117.022345,39.8877223945313],[117.002271757813,39.8922219062501],[116.98326296875,39.9197585273438],[116.96142703125,39.9279274726563],[116.950186796875,39.9442116523438],[116.955225859375,39.9666884589844],[116.902960234375,39.9801015449219],[116.878609648438,39.9746425605469],[116.893858671875,39.9383388496094],[116.88142703125,39.9297585273438],[116.860416289063,39.8993251777344],[116.81142703125,39.8897585273438],[116.807345,39.883843],[116.780704375,39.887202375],[116.773985625,39.9504836250001],[116.74927859375,39.9576137519532],[116.763985625,39.9872023750001],[116.767345,40.0138430000001],[116.7720715625,40.0322670722656],[116.792345,40.0277223945312],[116.802345,40.0299636054688],[116.813013945313,40.0275722480469],[116.83033328125,40.0526564765625],[116.872345,40.0432387519532],[116.902345,40.0499636054687],[116.912345,40.0477223945313],[116.927613554688,40.0511452460938],[116.957345,40.0438430000001],[116.988179960938,40.0300307441407],[117.023531523438,40.0376552558594],[117.052471953125,40.0610964179688],[117.097345,40.0750722480469],[117.132647734375,40.0640761542969],[117.183360625,40.0807558417969]]],[[[117.21547,40.0675014472657],[117.197345,40.063843],[117.197345,40.0838430000001],[117.207345,40.0838430000001],[117.21547,40.0675014472657]]]]}},{"type":"Feature","properties":{"name":"文安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.354195585938,39.0454579902344],[116.357345,39.023843],[116.3351575,39.027075421875],[116.354195585938,39.0454579902344]]],[[[116.497345,39.023843],[116.485152617188,39.0204201484375],[116.493922148438,39.0116506171875],[116.532896757813,39.0193959785157],[116.584928007813,38.9993959785156],[116.593004179688,39.0185414863282],[116.59021609375,39.0409743476562],[116.612345,39.0382216621094],[116.629249296875,39.0403237128906],[116.642896757813,39.0293959785156],[116.658546171875,39.0098537421875],[116.695479765625,39.0315627265626],[116.722506132813,39.0282009101563],[116.747345,39.033843],[116.761383085938,39.0230080390625],[116.716202421875,38.9620705390625],[116.7014465625,38.8983950019531],[116.71298953125,38.8894863105469],[116.717345,38.853843],[116.69189578125,38.8479457832032],[116.675860625,38.8687233710938],[116.640225859375,38.8781996894532],[116.643140898438,38.858452375],[116.63170046875,38.8394863105469],[116.62298953125,38.8181996894532],[116.607340117188,38.7922585273438],[116.551519804688,38.7694130683594],[116.553463164063,38.7562831855469],[116.527086210938,38.7359255195313],[116.502345,38.7395815253906],[116.48978640625,38.7377260566407],[116.47172,38.7611318183594],[116.427345,38.7538430000001],[116.421881132813,38.7583803535156],[116.405455351563,38.7781569648438],[116.334068632813,38.8091176582031],[116.271881132813,38.8183803535157],[116.262808867188,38.8393056464844],[116.241793242188,38.8484194160157],[116.24302859375,38.8605361152344],[116.201881132813,38.8783803535156],[116.197345,38.923843],[116.213170195313,38.9280178046876],[116.227345,38.9477956367188],[116.237345,38.933843],[116.225152617188,38.9304201484375],[116.233922148438,38.9216506171876],[116.237345,38.933843],[116.2823059375,38.9453823066407],[116.291573515625,38.9701369453125],[116.31435671875,38.9650295234376],[116.327345,38.983843],[116.35857546875,39.0054055000001],[116.376573515625,39.0534999824219],[116.407345,39.0466017890625],[116.422345,39.0499636054688],[116.437345,39.0466017890625],[116.464522734375,39.0526943183594],[116.489176054688,39.0356740546875],[116.497345,39.023843]]]]}},{"type":"Feature","properties":{"name":"香河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.925694609375,39.8559377265625],[116.967345,39.8466017890625],[116.986246367188,39.8508388496094],[117.02142703125,39.8279274726563],[117.047345,39.823843],[117.057393828125,39.8039821601563],[117.082345,39.8161684394532],[117.103336210938,39.8059169746094],[117.110704375,39.820483625],[117.157345,39.823843],[117.151016875,39.7980812812501],[117.17326296875,39.7897585273438],[117.18142703125,39.7779274726563],[117.196827421875,39.7672951484375],[117.147823515625,39.733462140625],[117.168570585938,39.7016066718751],[117.160103789063,39.6638430000001],[117.165557890625,39.6395131660157],[117.145513945313,39.6256740546875],[117.137345,39.613843],[117.11142703125,39.6179274726563],[117.087428007813,39.6335561347656],[117.017257109375,39.6515651679688],[116.971954375,39.6375221992188],[116.939791289063,39.6624477363282],[116.943468046875,39.678843],[116.939478789063,39.6966200996094],[116.9170715625,39.7079274726562],[116.90326296875,39.6879274726563],[116.897345,39.683843],[116.89142703125,39.6879274726563],[116.873316679688,39.7141579414063],[116.906158476563,39.7368325019532],[116.90107546875,39.7595131660157],[116.91326296875,39.7679274726563],[116.923013945313,39.782055890625],[116.942843046875,39.7776100898438],[116.95142703125,39.7841188789063],[116.9286340625,39.799858625],[116.917345,39.843843],[116.925694609375,39.8559377265625]]]]}},{"type":"Feature","properties":{"name":"永清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.548170195313,39.4719203925782],[116.597345,39.463843],[116.604498320313,39.4359633613282],[116.628375273438,39.4413161445313],[116.65142703125,39.4079274726563],[116.676158476563,39.3908534980469],[116.669888945313,39.3628932929688],[116.69000125,39.2980055976563],[116.680186796875,39.2542116523438],[116.69142703125,39.2379274726563],[116.75142703125,39.2168947578125],[116.73326296875,39.1879274726563],[116.727345,39.183843],[116.690152617188,39.18983909375],[116.672896757813,39.1682900214844],[116.5905871875,39.1579946113281],[116.592965117188,39.138843],[116.590982695313,39.1228871894532],[116.562706328125,39.1395095039062],[116.543609648438,39.1371340156251],[116.484776640625,39.1745632148438],[116.463897734375,39.2006349921875],[116.442452421875,39.1880275703125],[116.377345,39.213843],[116.383565703125,39.28866721875],[116.380396757813,39.3280837226563],[116.42271609375,39.3584706855469],[116.43197390625,39.3692153144532],[116.473013945313,39.3986843085938],[116.46197390625,39.4184706855469],[116.457345,39.453843],[116.48298953125,39.4581996894531],[116.491832304688,39.4696572089844],[116.512345,39.466626203125],[116.548170195313,39.4719203925782]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"景县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.267345,37.473843],[116.279537382813,37.4704201484376],[116.270767851563,37.4616506171875],[116.267345,37.473843]]],[[[116.293922148438,37.5160353828126],[116.297345,37.503843],[116.285152617188,37.5072658515626],[116.293922148438,37.5160353828126]]],[[[116.267345,37.473843],[116.253985625,37.480483625],[116.215733671875,37.487202375],[116.227345,37.463843],[116.189576445313,37.4685671210938],[116.170865507813,37.4919362617187],[116.174893828125,37.524341046875],[116.137486601563,37.5401039863282],[116.104581328125,37.53601096875],[116.092896757813,37.5082900214844],[116.056920195313,37.4993959785157],[116.017633085938,37.5224904609376],[115.917345,37.4938430000001],[115.9069153125,37.5573183417969],[115.926607695313,37.6074013496094],[115.9611340625,37.6215322089844],[115.967345,37.6438430000001],[115.98556765625,37.6481349921875],[116.013975859375,37.7086025214844],[116.00373171875,37.7414882636719],[116.037345,37.751958234375],[116.059263945313,37.7451308417969],[116.071158476563,37.7800307441407],[116.097345,37.783843],[116.10435671875,37.7736891914063],[116.133013945313,37.7801137519532],[116.14509890625,37.76261253125],[116.174459257813,37.7817311835938],[116.210079375,37.7737465644532],[116.213468046875,37.788843],[116.20724734375,37.8165798164063],[116.222388945313,37.8199733710938],[116.280518828125,37.8056948066407],[116.283468046875,37.818843],[116.281221953125,37.8288430000001],[116.283468046875,37.8388430000001],[116.281051054688,37.8496169257813],[116.30326296875,37.8579274726563],[116.326939726563,37.8733486152344],[116.36326296875,37.8597585273438],[116.397374296875,37.8333205390625],[116.427345,37.8266017890625],[116.442799101563,37.8300649238282],[116.467345,37.813843],[116.467345,37.783843],[116.449659453125,37.7609291816407],[116.421519804688,37.7494130683595],[116.423160429688,37.7383315253907],[116.410894804688,37.7288661933594],[116.38170046875,37.6894863105469],[116.37298953125,37.6581996894532],[116.361529570313,37.6493544746094],[116.365953398438,37.6194130683594],[116.3335559375,37.6061537910157],[116.327345,37.583843],[116.281529570313,37.5493581367188],[116.283082304688,37.538843],[116.277174101563,37.498841779297],[116.267345,37.473843]]]]}},{"type":"Feature","properties":{"name":"安平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,38.3338430000001],[115.467345,38.3338430000001],[115.467345,38.343843],[115.477345,38.343843],[115.477345,38.3338430000001]]],[[[115.467345,38.3338430000001],[115.472345,38.3210353828125],[115.477345,38.3338430000001],[115.487345,38.3338430000001],[115.487345,38.353843],[115.487345,38.3638430000001],[115.499176054688,38.3556740546875],[115.514503203125,38.3334743476563],[115.51037234375,38.3150380683594],[115.532345,38.3199636054688],[115.543013945313,38.3175722480469],[115.551676054688,38.3301137519532],[115.563013945313,38.3275722480469],[115.571695585938,38.3401430488282],[115.634190703125,38.3247927070313],[115.647345,38.343843],[115.657345,38.343843],[115.664464140625,38.326137921875],[115.661412382813,38.3084279609375],[115.681197539063,38.2764577460938],[115.640318632813,38.2834950996095],[115.608902617188,38.2601235175782],[115.62861453125,38.2454616523438],[115.601402617188,38.2093044257813],[115.606163359375,38.1816555000001],[115.561080351563,38.1694325996094],[115.567345,38.153843],[115.541793242188,38.1582900214844],[115.532896757813,38.1693959785157],[115.521793242188,38.1782900214844],[115.506143828125,38.1978322578126],[115.472896757813,38.1782900214844],[115.431397734375,38.1693117500001],[115.443941679688,38.1366811347657],[115.439405546875,38.1002016425782],[115.447345,38.093843],[115.439693632813,38.0804201484376],[115.402345,38.0944972968751],[115.381431914063,38.0866139960938],[115.3637121875,38.1202114082031],[115.357345,38.123843],[115.353443632813,38.1299404121094],[115.333580351563,38.1426552558594],[115.34375125,38.1788430000001],[115.34093875,38.188843],[115.346344023438,38.2080800605469],[115.322281523438,38.2234865546875],[115.317345,38.243843],[115.354371367188,38.2501332832031],[115.350699492188,38.2749831367187],[115.383424101563,38.2883779121094],[115.369156523438,38.3246767402344],[115.422345,38.3325368476563],[115.45263796875,38.3280605292969],[115.467345,38.3338430000001]]]]}},{"type":"Feature","properties":{"name":"阜城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.077345,37.8738430000001],[116.070260039063,37.8603932929688],[116.04439578125,37.8695619941407],[116.077345,37.8738430000001]]],[[[116.077345,37.8738430000001],[116.0654309375,37.8978151679688],[116.083985625,37.907202375],[116.087345,37.9138430000001],[116.163804960938,37.9193691230469],[116.161539335938,37.9573464179688],[116.172174101563,37.9692458320313],[116.227154570313,37.9545204902344],[116.272628203125,37.9685622382813],[116.292120390625,37.9791542792969],[116.30259890625,37.9785305000001],[116.337564726563,38.0176638007813],[116.3768371875,38.020005109375],[116.45255984375,38.0084865546876],[116.46209109375,38.0191555],[116.472345,38.0185451484376],[116.482345,38.0191408515625],[116.51595828125,38.0171376777344],[116.547345,38.0238430000001],[116.557345,38.0238430000001],[116.552877226563,37.9667983222657],[116.532003203125,37.915786359375],[116.496324492188,37.8695644355469],[116.471519804688,37.8594130683594],[116.473082304688,37.848843],[116.471607695313,37.8388430000001],[116.47312625,37.8285512519532],[116.467345,37.813843],[116.442799101563,37.8300649238282],[116.427345,37.8266017890625],[116.397374296875,37.8333205390625],[116.36326296875,37.8597585273438],[116.326939726563,37.8733486152344],[116.30326296875,37.8579274726563],[116.281051054688,37.8496169257813],[116.283468046875,37.8388430000001],[116.281221953125,37.8288430000001],[116.283468046875,37.818843],[116.280518828125,37.8056948066407],[116.222388945313,37.8199733710938],[116.20724734375,37.8165798164063],[116.213468046875,37.788843],[116.210079375,37.7737465644532],[116.174459257813,37.7817311835938],[116.14509890625,37.76261253125],[116.133013945313,37.7801137519532],[116.10435671875,37.7736891914063],[116.097345,37.783843],[116.114093046875,37.809184796875],[116.086588164063,37.8281728339844],[116.095767851563,37.8691152167969],[116.077345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"故城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,37.363843],[115.785152617188,37.3672658515625],[115.793922148438,37.3760353828125],[115.797345,37.363843]]],[[[116.257345,37.423843],[116.260767851563,37.4360353828126],[116.269537382813,37.4272658515625],[116.257345,37.423843]]],[[[116.257345,37.423843],[116.271041289063,37.3926113105469],[116.245152617188,37.3760366035156],[116.237345,37.363843],[116.18170046875,37.3681996894531],[116.159854765625,37.3813759589844],[116.102486601563,37.3680825019531],[116.077515898438,37.3717726875001],[116.04298953125,37.3581996894531],[115.98041140625,37.3407741523438],[115.961363554688,37.2504921699219],[115.96341921875,37.2365615058594],[115.918365507813,37.2181215644531],[115.900670195313,37.1951918769532],[115.90314578125,37.1784133125],[115.87974734375,37.1468508125],[115.867345,37.0738430000001],[115.847345,37.063843],[115.83181765625,37.0716994453125],[115.823985625,37.110483625],[115.790704375,37.117202375],[115.761090117188,37.1430080390625],[115.757345,37.1838430000001],[115.753985625,37.2004836250001],[115.747345,37.213843],[115.753170195313,37.2180178046876],[115.779947539063,37.255376203125],[115.771358671875,37.2988430000001],[115.781378203125,37.3495680976563],[115.793170195313,37.3580178046875],[115.797345,37.363843],[115.8308215625,37.3724330878907],[115.8541028125,37.3885097480469],[115.884342070313,37.4349416328126],[115.881085234375,37.4494557929688],[115.89142703125,37.4897585273438],[115.917345,37.4938430000001],[116.017633085938,37.5224904609376],[116.056920195313,37.4993959785157],[116.092896757813,37.5082900214844],[116.104581328125,37.53601096875],[116.137486601563,37.5401039863282],[116.174893828125,37.524341046875],[116.170865507813,37.4919362617187],[116.189576445313,37.4685671210938],[116.227345,37.463843],[116.234986601563,37.4484658027344],[116.218272734375,37.4274245429688],[116.257345,37.423843]]]]}},{"type":"Feature","properties":{"name":"冀州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.347345,37.5338430000001],[115.359537382813,37.5304201484375],[115.350767851563,37.5216506171875],[115.347345,37.5338430000001]]],[[[115.347345,37.5338430000001],[115.331519804688,37.5380178046875],[115.299000273438,37.5628542304688],[115.229732695313,37.58112815625],[115.207345,37.5498903632813],[115.197345,37.5638430000001],[115.171090117188,37.5990163398438],[115.18298953125,37.6081996894532],[115.195553007813,37.6389003730469],[115.247345,37.6438430000001],[115.250797148438,37.6372927070313],[115.284991484375,37.6303932929688],[115.300797148438,37.6603932929688],[115.31865359375,37.6698000312501],[115.3091028125,37.691059796875],[115.33853640625,37.7172927070313],[115.37521609375,37.7008144355469],[115.387345,37.7238430000001],[115.415640898438,37.7307936835938],[115.427345,37.713843],[115.43142703125,37.7079274726563],[115.462476835938,37.686489484375],[115.477345,37.713843],[115.482896757813,37.7093959785157],[115.491793242188,37.6982900214844],[115.502896757813,37.6893959785156],[115.511793242188,37.6782900214844],[115.522896757813,37.6693959785157],[115.533648710938,37.6318007636719],[115.647330351563,37.6175978828125],[115.682174101563,37.6219313789062],[115.687345,37.6038430000001],[115.681925078125,37.5890810371094],[115.6827746875,37.5785195136719],[115.6666028125,37.5645864082032],[115.65271609375,37.5484706855469],[115.620650664063,37.5208437324219],[115.6330871875,37.4985549140625],[115.5919153125,37.4892018867188],[115.5927746875,37.4785121894531],[115.551470976563,37.448852765625],[115.5819934375,37.3684133125],[115.618624296875,37.3713564277344],[115.64197390625,37.3512404609376],[115.62271609375,37.3384706855469],[115.607345,37.333843],[115.58142703125,37.3297585273438],[115.573013945313,37.3175722480469],[115.528609648438,37.3275258613282],[115.509176054688,37.3556740546875],[115.49142703125,37.3679274726563],[115.48326296875,37.3797585273438],[115.464522734375,37.3926943183594],[115.442345,37.3877223945313],[115.432345,37.3899636054688],[115.418995390625,37.3869704414063],[115.399176054688,37.4156740546875],[115.37697390625,37.4310024238281],[115.361890898438,37.4276210761719],[115.337345,37.443843],[115.34978640625,37.4599599433594],[115.371832304688,37.4567018867188],[115.382345,37.4703212714845],[115.391832304688,37.4580287910156],[115.407345,37.4603212714844],[115.422706328125,37.4580507636719],[115.43170046875,37.4627614570313],[115.41170046875,37.4781996894531],[115.40298953125,37.489486310547],[115.384595976563,37.5036818671875],[115.441378203125,37.4952907539062],[115.4060559375,37.5225551582031],[115.39298953125,37.5394863105469],[115.361612578125,37.5523281074219],[115.347345,37.5338430000001]]],[[[115.387345,37.7238430000001],[115.367345,37.7238430000001],[115.367345,37.733843],[115.374605742188,37.7470864082032],[115.387345,37.7238430000001]]]]}},{"type":"Feature","properties":{"name":"饶阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.742545195313,38.3698378730469],[115.751890898438,38.3581642890625],[115.76259890625,38.3594960761719],[115.832896757813,38.3393959785156],[115.847345,38.303843],[115.82541140625,38.2992714667969],[115.839464140625,38.267993390625],[115.853892851563,38.2603932929688],[115.861905546875,38.2219765449219],[115.90037234375,38.2017128730469],[115.88603640625,38.1698000312501],[115.897345,38.163843],[115.893531523438,38.1576552558594],[115.8328528125,38.1372365546876],[115.827345,38.113843],[115.802574492188,38.1291542792969],[115.787515898438,38.1282570625001],[115.729698515625,38.1075112128907],[115.692345,38.1097365546875],[115.678521757813,38.0796181464844],[115.64158328125,38.0996913886719],[115.573409453125,38.0956288886719],[115.567345,38.153843],[115.561080351563,38.1694325996094],[115.606163359375,38.1816555000001],[115.601402617188,38.2093044257813],[115.62861453125,38.2454616523438],[115.608902617188,38.2601235175782],[115.640318632813,38.2834950996095],[115.681197539063,38.2764577460938],[115.661412382813,38.3084279609375],[115.664464140625,38.326137921875],[115.657345,38.343843],[115.689263945313,38.3478676582032],[115.697345,38.3638430000001],[115.722589140625,38.3581081367187],[115.742545195313,38.3698378730469]]]]}},{"type":"Feature","properties":{"name":"深州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,38.153843],[115.573409453125,38.0956288886719],[115.64158328125,38.0996913886719],[115.678521757813,38.0796181464844],[115.692345,38.1097365546875],[115.729698515625,38.1075112128907],[115.787515898438,38.1282570625001],[115.802574492188,38.1291542792969],[115.827345,38.113843],[115.84107546875,38.10284690625],[115.809908476563,38.0778896308594],[115.781676054688,38.0392348457031],[115.785064726563,38.0119765449219],[115.771236601563,37.9884487128907],[115.805670195313,37.9786037421875],[115.792896757813,37.9482900214844],[115.772896757813,37.9322743964844],[115.781793242188,37.9182900214844],[115.787345,37.9138430000001],[115.779176054688,37.9020119453126],[115.751026640625,37.8825771308594],[115.74107546875,37.8381728339844],[115.75326296875,37.8297585273438],[115.757345,37.823843],[115.691612578125,37.8195778632813],[115.659639921875,37.8067263007813],[115.642345,37.8097035957032],[115.629508085938,37.8074941230469],[115.61291140625,37.8298012519532],[115.592345,37.8262599921876],[115.564210234375,37.8311049628907],[115.574967070313,37.7686196113281],[115.5344153125,37.7576259589844],[115.517203398438,37.7605886054688],[115.50177859375,37.7813271308594],[115.477345,37.7771218085938],[115.443922148438,37.7828749824219],[115.423077421875,37.7531325507812],[115.473077421875,37.7395778632813],[115.477345,37.713843],[115.452345,37.7199831367188],[115.427345,37.713843],[115.415640898438,37.7307936835938],[115.387345,37.7238430000001],[115.374605742188,37.7470864082032],[115.367345,37.733843],[115.336261015625,37.7418202949219],[115.355235625,37.7709572578125],[115.348980742188,37.7988430000001],[115.360303984375,37.8493361640625],[115.38326296875,37.8579274726563],[115.39142703125,37.8667018867188],[115.36142703125,37.8779274726562],[115.35326296875,37.8992189765625],[115.40326296875,37.9179274726562],[115.412345,37.9422060371094],[115.451397734375,37.9334499335937],[115.440103789063,37.9838430000001],[115.44361453125,37.9995131660157],[115.430103789063,38.008843],[115.44361453125,38.0181728339844],[115.44107546875,38.0295131660156],[115.45326296875,38.0379274726563],[115.46142703125,38.0597585273438],[115.478428984375,38.0858657050781],[115.447345,38.093843],[115.439405546875,38.1002016425782],[115.443941679688,38.1366811347657],[115.431397734375,38.1693117500001],[115.472896757813,38.1782900214844],[115.506143828125,38.1978322578126],[115.521793242188,38.1782900214844],[115.532896757813,38.1693959785157],[115.541793242188,38.1582900214844],[115.567345,38.153843]]]]}},{"type":"Feature","properties":{"name":"桃城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,37.713843],[115.462476835938,37.686489484375],[115.43142703125,37.7079274726563],[115.427345,37.713843],[115.452345,37.7199831367188],[115.477345,37.713843]]],[[[115.477345,37.713843],[115.473077421875,37.7395778632813],[115.423077421875,37.7531325507812],[115.443922148438,37.7828749824219],[115.477345,37.7771218085938],[115.50177859375,37.7813271308594],[115.517203398438,37.7605886054688],[115.5344153125,37.7576259589844],[115.574967070313,37.7686196113281],[115.564210234375,37.8311049628907],[115.592345,37.8262599921876],[115.61291140625,37.8298012519532],[115.629508085938,37.8074941230469],[115.642345,37.8097035957032],[115.659639921875,37.8067263007813],[115.691612578125,37.8195778632813],[115.757345,37.823843],[115.790201445313,37.8190602851563],[115.774854765625,37.7698024726563],[115.810992460938,37.7574892402344],[115.82281375,37.7227968574219],[115.844366484375,37.709516828125],[115.828385039063,37.673843],[115.837345,37.653843],[115.821519804688,37.6494362617188],[115.8236340625,37.6351039863282],[115.73170046875,37.6194863105469],[115.70298953125,37.6081996894532],[115.687345,37.6038430000001],[115.682174101563,37.6219313789062],[115.647330351563,37.6175978828125],[115.533648710938,37.6318007636719],[115.522896757813,37.6693959785157],[115.511793242188,37.6782900214844],[115.502896757813,37.6893959785156],[115.491793242188,37.6982900214844],[115.482896757813,37.7093959785157],[115.477345,37.713843]]]]}},{"type":"Feature","properties":{"name":"武强县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.987345,37.9838430000001],[115.999537382813,37.9804201484375],[115.990767851563,37.9716506171876],[115.987345,37.9838430000001]]],[[[115.987345,37.9838430000001],[115.961881132813,37.9793056464844],[115.93634890625,37.9646804023438],[115.915704375,37.9398268867188],[115.821881132813,37.9293056464844],[115.802667265625,37.9183010078126],[115.791954375,37.9193923164063],[115.787345,37.9138430000001],[115.781793242188,37.9182900214844],[115.772896757813,37.9322743964844],[115.792896757813,37.9482900214844],[115.805670195313,37.9786037421875],[115.771236601563,37.9884487128907],[115.785064726563,38.0119765449219],[115.781676054688,38.0392348457031],[115.809908476563,38.0778896308594],[115.84107546875,38.10284690625],[115.827345,38.113843],[115.8328528125,38.1372365546876],[115.893531523438,38.1576552558594],[115.897345,38.163843],[115.92298953125,38.1594863105469],[115.932081328125,38.1477053046875],[115.987345,38.1259804511719],[116.043863554688,38.1481996894532],[116.04298953125,38.1181996894531],[116.028189726563,38.0936659980469],[116.047345,38.0638430000001],[116.050704375,38.0472023750001],[116.068116484375,38.03839378125],[116.038585234375,38.0298720527344],[116.054976835938,38.0092348457032],[116.049893828125,37.9988283515626],[116.057345,37.9838430000001],[116.040885039063,37.9873830390625],[116.024605742188,38.0170864082032],[116.013267851563,37.9964028144532],[115.997735625,38.0028029609375],[115.987345,37.9838430000001]]]]}},{"type":"Feature","properties":{"name":"武邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.077345,37.8738430000001],[116.04439578125,37.8695619941407],[116.070260039063,37.8603932929688],[116.095767851563,37.8691152167969],[116.086588164063,37.8281728339844],[116.114093046875,37.809184796875],[116.097345,37.783843],[116.071158476563,37.7800307441407],[116.059263945313,37.7451308417969],[116.037345,37.751958234375],[116.00373171875,37.7414882636719],[116.013975859375,37.7086025214844],[115.98556765625,37.6481349921875],[115.967345,37.6438430000001],[115.923219023438,37.6264968085938],[115.884996367188,37.6321462226563],[115.837345,37.653843],[115.828385039063,37.673843],[115.844366484375,37.709516828125],[115.82281375,37.7227968574219],[115.810992460938,37.7574892402344],[115.774854765625,37.7698024726563],[115.790201445313,37.8190602851563],[115.757345,37.823843],[115.75326296875,37.8297585273438],[115.74107546875,37.8381728339844],[115.751026640625,37.8825771308594],[115.779176054688,37.9020119453126],[115.787345,37.9138430000001],[115.791954375,37.9193923164063],[115.802667265625,37.9183010078126],[115.821881132813,37.9293056464844],[115.915704375,37.9398268867188],[115.93634890625,37.9646804023438],[115.961881132813,37.9793056464844],[115.987345,37.9838430000001],[115.990767851563,37.9716506171876],[115.999537382813,37.9804201484375],[115.987345,37.9838430000001],[115.997735625,38.0028029609375],[116.013267851563,37.9964028144532],[116.024605742188,38.0170864082032],[116.040885039063,37.9873830390625],[116.057345,37.9838430000001],[116.07326296875,37.9797585273438],[116.09142703125,37.9479274726563],[116.104093046875,37.9391847968751],[116.087345,37.9138430000001],[116.083985625,37.907202375],[116.0654309375,37.8978151679688],[116.077345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"枣强县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,37.363843],[115.793922148438,37.3760353828125],[115.785152617188,37.3672658515625],[115.793170195313,37.3580178046875],[115.781378203125,37.3495680976563],[115.771358671875,37.2988430000001],[115.779947539063,37.255376203125],[115.753170195313,37.2180178046876],[115.747345,37.213843],[115.728233671875,37.2195973945313],[115.693316679688,37.2601259589844],[115.671998320313,37.2584133125],[115.661651640625,37.2815993476563],[115.621099882813,37.2783412910156],[115.6227746875,37.2991970039063],[115.582730742188,37.3112538886719],[115.60271609375,37.3284706855469],[115.607345,37.333843],[115.62271609375,37.3384706855469],[115.64197390625,37.3512404609376],[115.618624296875,37.3713564277344],[115.5819934375,37.3684133125],[115.551470976563,37.448852765625],[115.5927746875,37.4785121894531],[115.5919153125,37.4892018867188],[115.6330871875,37.4985549140625],[115.620650664063,37.5208437324219],[115.65271609375,37.5484706855469],[115.6666028125,37.5645864082032],[115.6827746875,37.5785195136719],[115.681925078125,37.5890810371094],[115.687345,37.6038430000001],[115.70298953125,37.6081996894532],[115.73170046875,37.6194863105469],[115.8236340625,37.6351039863282],[115.821519804688,37.6494362617188],[115.837345,37.653843],[115.884996367188,37.6321462226563],[115.923219023438,37.6264968085938],[115.967345,37.6438430000001],[115.9611340625,37.6215322089844],[115.926607695313,37.6074013496094],[115.9069153125,37.5573183417969],[115.917345,37.4938430000001],[115.89142703125,37.4897585273438],[115.881085234375,37.4494557929688],[115.884342070313,37.4349416328126],[115.8541028125,37.3885097480469],[115.8308215625,37.3724330878907],[115.797345,37.363843]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":140100,"name":"太原市","center":[112.549248,37.857014],"centroid":[112.322147,37.960573],"childrenNum":10,"level":"city","parent":{"adcode":140000},"subFeatureIndex":0,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.066848,38.05647],[113.04142,38.081606],[113.012129,38.084915],[112.970905,38.112124],[112.961358,38.139935],[112.94105,38.13675],[112.919874,38.157143],[112.93901,38.164062],[112.936407,38.178632],[112.958668,38.206601],[112.957887,38.21737],[113.00076,38.248565],[113.026319,38.255475],[113.035388,38.270822],[113.051877,38.275652],[113.076699,38.307067],[113.108984,38.307006],[113.150294,38.328206],[113.15663,38.345247],[113.142397,38.360575],[113.151683,38.375778],[113.141572,38.394334],[113.145695,38.411664],[113.121351,38.421305],[113.085551,38.415753],[113.083902,38.399216],[113.069365,38.388108],[113.039293,38.381699],[113.031135,38.367597],[113.00345,38.343354],[112.978238,38.342255],[112.972207,38.357461],[112.945129,38.333887],[112.911021,38.321181],[112.850834,38.306089],[112.822628,38.287327],[112.796115,38.251011],[112.748989,38.242021],[112.693879,38.241471],[112.681686,38.235844],[112.639984,38.246425],[112.648359,38.227586],[112.620761,38.20654],[112.569036,38.21064],[112.557536,38.223426],[112.562526,38.239147],[112.524947,38.267826],[112.524731,38.249972],[112.499606,38.237312],[112.458685,38.249972],[112.446926,38.27608],[112.433126,38.280664],[112.406483,38.266787],[112.36374,38.278036],[112.340611,38.303034],[112.319739,38.310977],[112.305202,38.3067],[112.274002,38.31391],[112.248009,38.291728],[112.269966,38.267888],[112.234036,38.26159],[112.220888,38.250583],[112.25148,38.219572],[112.267753,38.182488],[112.25148,38.150101],[112.236206,38.142752],[112.212166,38.143671],[112.214726,38.132401],[112.160353,38.15004],[112.134751,38.140976],[112.101381,38.167368],[112.046445,38.171837],[112.01173,38.184202],[111.951326,38.167919],[111.915136,38.180713],[111.898125,38.198034],[111.87287,38.193383],[111.869138,38.220062],[111.847658,38.229788],[111.849611,38.214984],[111.81763,38.214311],[111.806434,38.195464],[111.773368,38.187752],[111.766338,38.179305],[111.744164,38.18359],[111.716305,38.174959],[111.716609,38.15849],[111.689749,38.134668],[111.643187,38.116106],[111.625005,38.10183],[111.567682,38.095518],[111.547547,38.085344],[111.546419,38.074924],[111.524158,38.066096],[111.515913,38.051258],[111.52802,38.037705],[111.516868,38.019672],[111.538044,37.992429],[111.545595,37.955966],[111.572412,37.931955],[111.580093,37.902713],[111.547113,37.885261],[111.56638,37.87598],[111.570242,37.852373],[111.642536,37.861534],[111.653515,37.856677],[111.683456,37.86387],[111.706151,37.878992],[111.747158,37.870509],[111.746855,37.855509],[111.767901,37.841427],[111.767814,37.832325],[111.808474,37.817133],[111.819843,37.796091],[111.912272,37.792953],[111.921384,37.757931],[111.935053,37.740752],[111.974975,37.713159],[111.996238,37.722091],[112.023316,37.723939],[112.034642,37.71125],[112.075909,37.717779],[112.10277,37.716178],[112.118652,37.698558],[112.175932,37.674525],[112.174109,37.6355],[112.227006,37.59232],[112.233776,37.570042],[112.255689,37.561709],[112.290448,37.566894],[112.294093,37.548745],[112.273741,37.524046],[112.295698,37.521452],[112.313446,37.495508],[112.290361,37.48729],[112.317439,37.476414],[112.33011,37.458923],[112.352371,37.463188],[112.358967,37.485004],[112.390253,37.484077],[112.394853,37.462879],[112.432779,37.458861],[112.442065,37.478886],[112.464153,37.468813],[112.508241,37.478639],[112.50976,37.507554],[112.544692,37.518364],[112.590646,37.506813],[112.593943,37.520958],[112.623755,37.525899],[112.606745,37.552079],[112.609088,37.57282],[112.598153,37.599231],[112.579667,37.604413],[112.579146,37.633896],[112.619502,37.642961],[112.605399,37.666758],[112.6274,37.684201],[112.626879,37.707615],[112.650486,37.710017],[112.65387,37.730775],[112.667626,37.740198],[112.652959,37.775413],[112.684072,37.798676],[112.67509,37.811781],[112.705639,37.851205],[112.725296,37.85145],[112.73762,37.875181],[112.758232,37.881573],[112.783878,37.870571],[112.765696,37.914878],[112.778106,37.923663],[112.768213,37.939448],[112.794726,37.969411],[112.817638,37.983345],[112.825753,38.004149],[112.863419,37.989667],[112.880602,37.996417],[112.898394,37.991569],[112.920742,37.996663],[112.938837,37.990526],[112.967824,38.018322],[112.989174,38.002308],[113.022847,38.026419],[113.008614,38.039975],[113.024279,38.0504],[113.05127,38.047272],[113.066848,38.05647]]]]}},{"type":"Feature","properties":{"adcode":140200,"name":"大同市","center":[113.295259,40.09031],"centroid":[113.72499,39.904541],"childrenNum":10,"level":"city","parent":{"adcode":140000},"subFeatureIndex":1,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.577289,39.438122],[113.586141,39.441249],[113.599159,39.424048],[113.649496,39.434634],[113.698314,39.418814],[113.739234,39.420859],[113.766529,39.405217],[113.772777,39.390715],[113.791306,39.378437],[113.840602,39.370913],[113.899574,39.373019],[113.898185,39.345083],[113.942186,39.30876],[113.946873,39.295805],[113.967181,39.281521],[113.958589,39.222908],[113.940104,39.20692],[113.952514,39.127468],[113.961757,39.100823],[113.984365,39.095384],[114.000464,39.100763],[114.006496,39.122877],[114.050801,39.135864],[114.065251,39.093511],[114.096798,39.083719],[114.108732,39.052281],[114.126653,39.05089],[114.157202,39.06117],[114.180895,39.049076],[114.196994,39.050406],[114.226372,39.06649],[114.300141,39.079246],[114.320797,39.070481],[114.349133,39.076768],[114.369658,39.107531],[114.360762,39.133992],[114.388187,39.176985],[114.417999,39.171613],[114.443601,39.174148],[114.453147,39.192618],[114.465601,39.188514],[114.474844,39.219228],[114.436354,39.229604],[114.415959,39.242873],[114.437656,39.260421],[114.425072,39.285137],[114.438611,39.319424],[114.466643,39.329664],[114.479704,39.351104],[114.469464,39.355199],[114.470896,39.408767],[114.496802,39.438543],[114.502313,39.477082],[114.529868,39.485196],[114.536594,39.512897],[114.557336,39.531998],[114.557336,39.550674],[114.568922,39.573967],[114.556989,39.58141],[114.515374,39.565023],[114.495804,39.608172],[114.474758,39.613751],[114.431668,39.614051],[114.408148,39.651953],[114.407107,39.690374],[114.410231,39.761705],[114.416784,39.776189],[114.390704,39.818608],[114.406716,39.83344],[114.395434,39.867217],[114.285084,39.859686],[114.286819,39.871042],[114.245509,39.861897],[114.221468,39.86118],[114.202071,39.872297],[114.204501,39.885205],[114.227717,39.8959],[114.220644,39.914298],[114.174169,39.897632],[114.102873,39.912865],[114.089942,39.910177],[114.067768,39.922301],[114.047373,39.91615],[114.02828,39.959318],[114.029451,39.985397],[114.02125,39.991781],[113.960455,40.000908],[113.932032,40.009438],[113.914631,40.005919],[113.922486,40.026613],[113.954857,40.030847],[113.975556,40.051057],[113.981024,40.073227],[113.973864,40.097118],[113.979852,40.112306],[114.019948,40.102479],[114.043815,40.056898],[114.091157,40.075313],[114.101224,40.108733],[114.089118,40.121477],[114.068028,40.179748],[114.097753,40.193549],[114.123399,40.188672],[114.123963,40.178141],[114.145095,40.177368],[114.180071,40.191527],[114.235875,40.198308],[114.240171,40.221976],[114.255229,40.236185],[114.293111,40.230122],[114.33516,40.245399],[114.362585,40.250094],[114.406412,40.246172],[114.469941,40.268041],[114.510948,40.302969],[114.526439,40.323574],[114.530605,40.345121],[114.499318,40.354023],[114.470809,40.349691],[114.446552,40.372891],[114.403722,40.353786],[114.383544,40.354023],[114.344446,40.369569],[114.314418,40.369569],[114.28708,40.423418],[114.298709,40.445585],[114.27545,40.458029],[114.267205,40.474202],[114.296409,40.535957],[114.293459,40.551402],[114.274322,40.552881],[114.282957,40.590796],[114.258223,40.610662],[114.236135,40.606997],[114.209318,40.629754],[114.216435,40.635013],[114.200075,40.662191],[114.183239,40.671701],[114.162366,40.713562],[114.139541,40.739941],[114.09324,40.731917],[114.072281,40.72153],[114.064079,40.707128],[114.072715,40.679142],[114.070458,40.660301],[114.041818,40.608652],[114.04811,40.595882],[114.076881,40.575834],[114.080178,40.547733],[114.06191,40.528855],[114.011399,40.515892],[113.970089,40.522226],[113.947784,40.51678],[113.930904,40.493392],[113.890114,40.466442],[113.863427,40.456488],[113.850973,40.460577],[113.832704,40.487055],[113.794821,40.517964],[113.790699,40.502511],[113.763448,40.473965],[113.688767,40.448193],[113.667981,40.423773],[113.647803,40.415533],[113.584145,40.37123],[113.559888,40.348623],[113.500135,40.334497],[113.457652,40.33046],[113.387615,40.319121],[113.315972,40.32013],[113.302737,40.334675],[113.291194,40.36506],[113.273967,40.390093],[113.247757,40.412983],[113.219377,40.402844],[113.170733,40.395965],[113.115362,40.381137],[113.033131,40.368916],[112.989824,40.357405],[112.89297,40.326423],[112.890453,40.305167],[112.85513,40.218409],[112.84502,40.203899],[112.750725,40.168026],[112.73033,40.168086],[112.720783,40.178558],[112.67791,40.201163],[112.624319,40.236839],[112.626098,40.223047],[112.609695,40.218468],[112.603186,40.202947],[112.622063,40.183377],[112.622063,40.163742],[112.589778,40.16148],[112.580448,40.154398],[112.581967,40.128444],[112.595723,40.114748],[112.589648,40.10105],[112.622323,40.088778],[112.610563,40.079365],[112.642631,40.034484],[112.617376,39.948693],[112.596547,39.92045],[112.603881,39.880604],[112.591123,39.835951],[112.600019,39.816036],[112.62037,39.809397],[112.621021,39.760388],[112.648359,39.74069],[112.669232,39.746199],[112.693706,39.769067],[112.734409,39.753324],[112.751593,39.757933],[112.752808,39.774214],[112.820806,39.776788],[112.817508,39.788816],[112.831307,39.79797],[112.861596,39.799765],[112.891451,39.826084],[112.911759,39.829194],[112.93428,39.841811],[112.938707,39.86112],[112.954068,39.85305],[112.966826,39.868173],[112.947082,39.886878],[112.939444,39.912566],[113.023107,39.912327],[113.051921,39.916449],[113.122783,39.908325],[113.168433,39.916747],[113.23552,39.958303],[113.285943,39.948454],[113.305036,39.934424],[113.325214,39.932632],[113.352639,39.906593],[113.381192,39.906056],[113.4396,39.852154],[113.396814,39.837625],[113.373208,39.834516],[113.344395,39.805807],[113.32925,39.80156],[113.339925,39.776548],[113.393169,39.743684],[113.41057,39.714818],[113.386139,39.682524],[113.394167,39.663524],[113.383188,39.649195],[113.429403,39.605772],[113.43192,39.58177],[113.458737,39.578769],[113.474012,39.554577],[113.48512,39.549834],[113.511547,39.520406],[113.50634,39.503044],[113.518534,39.481109],[113.570259,39.452975],[113.577289,39.438122]]]]}},{"type":"Feature","properties":{"adcode":140300,"name":"阳泉市","center":[113.583285,37.861188],"centroid":[113.505474,38.064652],"childrenNum":5,"level":"city","parent":{"adcode":140000},"subFeatureIndex":2,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.555548,38.521046],[113.517449,38.519828],[113.48486,38.508556],[113.458086,38.510079],[113.435087,38.520681],[113.416688,38.517878],[113.368174,38.495941],[113.333242,38.485823],[113.294492,38.468022],[113.284858,38.451559],[113.208572,38.42045],[113.203018,38.415386],[113.145695,38.411664],[113.141572,38.394334],[113.151683,38.375778],[113.142397,38.360575],[113.15663,38.345247],[113.150294,38.328206],[113.108984,38.307006],[113.076699,38.307067],[113.051877,38.275652],[113.035388,38.270822],[113.026319,38.255475],[113.00076,38.248565],[112.957887,38.21737],[112.958668,38.206601],[112.936407,38.178632],[112.93901,38.164062],[112.919874,38.157143],[112.94105,38.13675],[112.961358,38.139935],[112.970905,38.112124],[113.012129,38.084915],[113.04142,38.081606],[113.066848,38.05647],[113.09718,38.056225],[113.099827,38.065115],[113.132503,38.082464],[113.164224,38.054876],[113.198027,38.058248],[113.211913,38.082096],[113.228924,38.091964],[113.253832,38.090248],[113.266416,38.071246],[113.255307,38.058187],[113.265244,38.033473],[113.284728,38.028812],[113.301695,37.986966],[113.335282,37.980767],[113.341747,37.962106],[113.326082,37.902836],[113.332722,37.889255],[113.369693,37.867251],[113.372557,37.838537],[113.393777,37.822792],[113.416862,37.787722],[113.441944,37.76538],[113.44381,37.743892],[113.480868,37.70016],[113.517318,37.697326],[113.532984,37.678839],[113.588701,37.67662],[113.613826,37.680811],[113.646198,37.664416],[113.670932,37.66306],[113.694669,37.670765],[113.705821,37.685248],[113.759282,37.683399],[113.77243,37.662936],[113.7989,37.672059],[113.836696,37.675757],[113.883301,37.705397],[113.905258,37.706136],[113.979852,37.675203],[113.993,37.684262],[113.996906,37.704473],[114.000811,37.735333],[114.041167,37.756823],[114.043858,37.777444],[114.01882,37.794861],[114.006669,37.813503],[113.982543,37.812826],[113.970175,37.833986],[113.971521,37.868788],[113.95924,37.906338],[113.936545,37.923171],[113.901266,37.984818],[113.872366,37.990342],[113.878354,38.032369],[113.876271,38.05506],[113.855963,38.065912],[113.854748,38.077131],[113.824199,38.106732],[113.810053,38.112553],[113.822507,38.150468],[113.833572,38.147468],[113.825457,38.169143],[113.796861,38.162837],[113.756591,38.171653],[113.731119,38.168347],[113.720618,38.174653],[113.738496,38.189527],[113.715064,38.19375],[113.711722,38.213699],[113.67909,38.205377],[113.6498,38.229788],[113.62615,38.232541],[113.598899,38.227158],[113.570346,38.237434],[113.566267,38.252357],[113.54483,38.270516],[113.546045,38.293072],[113.557284,38.343476],[113.534329,38.365216],[113.525433,38.382981],[113.538017,38.418071],[113.573166,38.44918],[113.583494,38.465949],[113.546566,38.493015],[113.557241,38.503985],[113.555548,38.521046]]]]}},{"type":"Feature","properties":{"adcode":140400,"name":"长治市","center":[113.113556,36.191112],"centroid":[112.921277,36.478022],"childrenNum":12,"level":"city","parent":{"adcode":140000},"subFeatureIndex":3,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.996412,36.687148],[112.019367,36.67828],[112.022535,36.654669],[112.039111,36.636863],[112.041585,36.60205],[112.087105,36.580105],[112.106068,36.544703],[112.132798,36.524556],[112.161785,36.512916],[112.180965,36.458759],[112.202792,36.417914],[112.212816,36.409642],[112.257165,36.410456],[112.290838,36.383002],[112.330761,36.365133],[112.354887,36.34312],[112.39468,36.345566],[112.443671,36.342681],[112.461029,36.313634],[112.454563,36.304849],[112.471226,36.287088],[112.472224,36.270829],[112.506939,36.259213],[112.540699,36.255571],[112.565521,36.27265],[112.574416,36.263295],[112.560964,36.224796],[112.567213,36.188416],[112.561008,36.162455],[112.570381,36.132021],[112.564783,36.114472],[112.49813,36.082508],[112.490536,36.068725],[112.503337,36.032586],[112.522127,36.031075],[112.532151,36.038317],[112.629917,36.062304],[112.658123,36.043606],[112.687674,36.005],[112.714448,36.014637],[112.739399,35.994416],[112.797026,35.977529],[112.824625,35.98717],[112.873659,35.97608],[112.880472,35.92691],[112.910371,35.922559],[112.967477,35.929748],[113.039684,35.914802],[113.065677,35.891022],[113.122132,35.887111],[113.140704,35.871463],[113.199893,35.897835],[113.204103,35.888878],[113.239555,35.892158],[113.263465,35.866983],[113.2767,35.86326],[113.3217,35.88566],[113.353898,35.881496],[113.377157,35.863007],[113.389698,35.832899],[113.41773,35.83372],[113.445198,35.864901],[113.47501,35.862187],[113.504691,35.850763],[113.526344,35.853351],[113.570606,35.826396],[113.585273,35.825765],[113.606059,35.823744],[113.623807,35.83151],[113.641208,35.822482],[113.661038,35.837255],[113.658218,35.853919],[113.644028,35.854866],[113.637389,35.869886],[113.654443,35.917199],[113.647803,35.96713],[113.636868,35.97589],[113.648888,35.994164],[113.686467,35.986414],[113.695927,35.999897],[113.680739,36.014826],[113.695146,36.026793],[113.670195,36.029501],[113.661429,36.042913],[113.685773,36.056009],[113.673796,36.111578],[113.655527,36.125102],[113.693193,36.124222],[113.713762,36.132964],[113.706862,36.147365],[113.681347,36.150698],[113.679264,36.15994],[113.651665,36.172199],[113.697923,36.181879],[113.68638,36.195517],[113.705387,36.20067],[113.698444,36.214305],[113.677311,36.222535],[113.703911,36.237799],[113.70057,36.252306],[113.716235,36.262604],[113.709075,36.299703],[113.723308,36.304849],[113.736413,36.324677],[113.728733,36.341427],[113.729601,36.381623],[113.708381,36.423365],[113.670195,36.425119],[113.629231,36.454688],[113.587226,36.461014],[113.582105,36.482931],[113.55442,36.494701],[113.559454,36.531001],[113.566961,36.54414],[113.58089,36.541075],[113.588137,36.562719],[113.569695,36.58592],[113.539753,36.59411],[113.545264,36.616865],[113.535457,36.629239],[113.486856,36.635238],[113.477049,36.655232],[113.502001,36.681528],[113.507034,36.70488],[113.477526,36.697263],[113.465376,36.707752],[113.4777,36.726416],[113.499353,36.740583],[113.536195,36.732345],[113.543528,36.744327],[113.521875,36.754435],[113.510462,36.769781],[113.495318,36.807199],[113.461775,36.826151],[113.418034,36.859304],[113.399027,36.863042],[113.378328,36.878928],[113.360971,36.878616],[113.372904,36.90714],[113.331159,36.947602],[113.311936,36.976535],[113.294188,36.977406],[113.280215,36.955754],[113.254439,36.947602],[113.227752,36.931233],[113.214647,36.946669],[113.211089,36.927872],[113.1808,36.930424],[113.176287,36.949905],[113.153983,36.950589],[113.156109,36.921958],[113.109287,36.927249],[113.089717,36.918783],[113.067803,36.928494],[113.040248,36.926004],[113.008831,36.930486],[112.967954,36.90633],[112.928596,36.874381],[112.897613,36.875004],[112.877955,36.894],[112.881904,36.936648],[112.87201,36.947727],[112.879604,36.970127],[112.871056,36.984622],[112.853308,36.987234],[112.833086,37.006328],[112.794336,37.007261],[112.75897,37.04941],[112.738792,37.049659],[112.739616,37.071097],[112.716835,37.095387],[112.68251,37.10017],[112.651397,37.120973],[112.637467,37.106753],[112.614425,37.103089],[112.59377,37.079733],[112.541047,37.09135],[112.521389,37.12029],[112.49813,37.125195],[112.482248,37.118862],[112.446448,37.116875],[112.45222,37.104641],[112.485633,37.094828],[112.486153,37.049472],[112.504943,37.034057],[112.513188,36.994698],[112.53866,36.992024],[112.551027,36.973985],[112.542782,36.960234],[112.510454,36.951025],[112.482422,36.961977],[112.448488,36.939076],[112.422452,36.938267],[112.405007,36.949282],[112.354887,36.95563],[112.331889,36.934096],[112.318957,36.950465],[112.279035,36.978712],[112.24866,36.983938],[112.215854,37.017147],[112.176366,37.012422],[112.164172,36.998741],[112.100817,36.977344],[112.061372,36.975478],[112.062761,36.962412],[112.086107,36.9392],[112.068402,36.908323],[112.084024,36.894063],[112.07656,36.883599],[112.051348,36.880423],[112.02887,36.886963],[112.007651,36.819294],[111.988297,36.810628],[111.98552,36.770592],[112.007781,36.746573],[111.997497,36.730723],[111.996412,36.687148]]]]}},{"type":"Feature","properties":{"adcode":140500,"name":"晋城市","center":[112.851274,35.497553],"centroid":[112.713186,35.610944],"childrenNum":6,"level":"city","parent":{"adcode":140000},"subFeatureIndex":4,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.058812,35.279909],[112.093918,35.27921],[112.217243,35.253269],[112.216678,35.240232],[112.242715,35.234826],[112.282811,35.242013],[112.304421,35.25187],[112.288538,35.217524],[112.367298,35.220196],[112.390731,35.238833],[112.42397,35.23807],[112.457731,35.226366],[112.489799,35.229928],[112.513492,35.218542],[112.540526,35.222931],[112.567864,35.211734],[112.575024,35.22115],[112.618982,35.220068],[112.637207,35.225666],[112.618331,35.254032],[112.636686,35.264206],[112.63916,35.247864],[112.65144,35.259246],[112.654998,35.244239],[112.682684,35.233745],[112.707418,35.216951],[112.703079,35.201554],[112.712669,35.186981],[112.720306,35.206453],[112.735364,35.210398],[112.767258,35.204099],[112.798241,35.238642],[112.822194,35.258102],[112.86906,35.243794],[112.907073,35.245829],[112.929637,35.256894],[112.93606,35.284422],[112.964699,35.29313],[112.982795,35.287283],[112.99156,35.302346],[112.985311,35.338118],[112.999545,35.362316],[113.0202,35.356029],[113.038252,35.360602],[113.067109,35.353552],[113.084076,35.340531],[113.107595,35.340785],[113.126558,35.33221],[113.148906,35.351202],[113.154634,35.380858],[113.169735,35.386571],[113.169518,35.410883],[113.185226,35.409042],[113.190043,35.44908],[113.230052,35.453267],[113.265375,35.434615],[113.304385,35.427001],[113.297356,35.438549],[113.306425,35.460815],[113.294665,35.467284],[113.312327,35.481236],[113.325909,35.46925],[113.34817,35.468362],[113.370778,35.480094],[113.39178,35.50685],[113.416645,35.516168],[113.43921,35.507547],[113.485424,35.520731],[113.5066,35.516485],[113.498529,35.532392],[113.50673,35.565971],[113.541966,35.596181],[113.556677,35.619795],[113.547998,35.657577],[113.560061,35.660425],[113.578547,35.633531],[113.624848,35.632012],[113.624978,35.652389],[113.614911,35.683008],[113.593127,35.69142],[113.60198,35.706408],[113.586792,35.744022],[113.599116,35.775112],[113.583494,35.794253],[113.604974,35.800127],[113.586141,35.806127],[113.585273,35.825765],[113.570606,35.826396],[113.526344,35.853351],[113.504691,35.850763],[113.47501,35.862187],[113.445198,35.864901],[113.41773,35.83372],[113.389698,35.832899],[113.377157,35.863007],[113.353898,35.881496],[113.3217,35.88566],[113.2767,35.86326],[113.263465,35.866983],[113.239555,35.892158],[113.204103,35.888878],[113.199893,35.897835],[113.140704,35.871463],[113.122132,35.887111],[113.065677,35.891022],[113.039684,35.914802],[112.967477,35.929748],[112.910371,35.922559],[112.880472,35.92691],[112.873659,35.97608],[112.824625,35.98717],[112.797026,35.977529],[112.739399,35.994416],[112.714448,36.014637],[112.687674,36.005],[112.658123,36.043606],[112.629917,36.062304],[112.532151,36.038317],[112.522127,36.031075],[112.532324,35.984902],[112.516963,35.962719],[112.463328,35.940719],[112.428527,35.921424],[112.411994,35.905531],[112.381878,35.895817],[112.34738,35.900863],[112.327332,35.894997],[112.278124,35.903828],[112.240371,35.896952],[112.191033,35.917136],[112.163131,35.907108],[112.144168,35.910387],[112.159312,35.86976],[112.183439,35.873546],[112.209779,35.847986],[112.213511,35.829995],[112.186737,35.817304],[112.129544,35.820082],[112.065885,35.845588],[112.04536,35.864206],[112.035596,35.855939],[112.030736,35.810989],[112.048484,35.790337],[112.053735,35.773027],[112.025139,35.752112],[112.037028,35.722973],[112.027395,35.701096],[111.989339,35.670484],[111.964431,35.664853],[111.957575,35.640113],[111.94217,35.626948],[111.948375,35.576422],[111.966731,35.566668],[111.965082,35.525484],[111.946987,35.506533],[111.9712,35.456882],[111.974064,35.431443],[112.00253,35.401997],[112.032776,35.39019],[112.022144,35.353997],[112.052824,35.341421],[112.069096,35.315691],[112.058812,35.279909]]]]}},{"type":"Feature","properties":{"adcode":140600,"name":"朔州市","center":[112.433387,39.331261],"centroid":[112.648197,39.619375],"childrenNum":6,"level":"city","parent":{"adcode":140000},"subFeatureIndex":5,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.624319,40.236839],[112.564175,40.257939],[112.511539,40.26917],[112.456168,40.300059],[112.418156,40.295249],[112.345558,40.256453],[112.310322,40.256394],[112.290535,40.223403],[112.299994,40.211868],[112.285501,40.198189],[112.232778,40.169633],[112.223274,40.128801],[112.209909,40.10772],[112.183916,40.084787],[112.181833,40.061487],[112.142388,40.027329],[112.13358,40.001684],[112.094786,39.955498],[112.077081,39.920868],[112.042539,39.886161],[112.035119,39.854366],[112.005872,39.820821],[111.97619,39.79809],[111.967468,39.782652],[111.970896,39.766014],[111.964518,39.72524],[111.968857,39.710385],[111.95636,39.687737],[111.923944,39.665742],[111.937874,39.644638],[111.93028,39.611411],[111.942734,39.585311],[111.971721,39.567064],[112.002227,39.537163],[111.987516,39.526112],[111.943819,39.525511],[111.906023,39.517582],[111.895782,39.497395],[111.914875,39.463256],[111.951543,39.46007],[111.971287,39.446481],[111.987299,39.448405],[111.999753,39.413219],[112.012251,39.40281],[112.007174,39.383011],[112.023186,39.368866],[112.019671,39.357065],[112.064193,39.304904],[112.048528,39.29707],[112.068055,39.282304],[112.085412,39.253125],[112.100644,39.255778],[112.107977,39.270128],[112.134795,39.27917],[112.182831,39.266631],[112.194374,39.249688],[112.192248,39.229966],[112.201881,39.211385],[112.219716,39.203601],[112.218675,39.175657],[112.250265,39.18272],[112.2635,39.175476],[112.274088,39.126985],[112.298866,39.129703],[112.304681,39.119131],[112.289537,39.112183],[112.294397,39.099071],[112.314054,39.100702],[112.312579,39.115446],[112.331455,39.12475],[112.365345,39.108075],[112.405137,39.114661],[112.437726,39.104389],[112.457514,39.112063],[112.505377,39.140455],[112.546167,39.138099],[112.557797,39.11889],[112.577584,39.113513],[112.589344,39.088434],[112.638292,39.08523],[112.649965,39.089764],[112.655302,39.119011],[112.672399,39.13224],[112.686502,39.126381],[112.725947,39.140032],[112.747254,39.158873],[112.751029,39.183384],[112.780927,39.192679],[112.807701,39.173303],[112.819764,39.174933],[112.833694,39.206256],[112.872922,39.212532],[112.88633,39.238953],[112.898264,39.246552],[112.921089,39.287126],[112.967346,39.297251],[113.035995,39.321171],[113.054264,39.349659],[113.088632,39.36128],[113.10894,39.361882],[113.135888,39.343818],[113.130073,39.325388],[113.164701,39.307073],[113.212174,39.295322],[113.225105,39.296407],[113.258649,39.314725],[113.362403,39.314303],[113.380628,39.30171],[113.422677,39.332194],[113.449234,39.321653],[113.452879,39.33912],[113.515062,39.346949],[113.533895,39.384877],[113.561103,39.404315],[113.560842,39.426815],[113.577289,39.438122],[113.570259,39.452975],[113.518534,39.481109],[113.50634,39.503044],[113.511547,39.520406],[113.48512,39.549834],[113.474012,39.554577],[113.458737,39.578769],[113.43192,39.58177],[113.429403,39.605772],[113.383188,39.649195],[113.394167,39.663524],[113.386139,39.682524],[113.41057,39.714818],[113.393169,39.743684],[113.339925,39.776548],[113.32925,39.80156],[113.344395,39.805807],[113.373208,39.834516],[113.396814,39.837625],[113.4396,39.852154],[113.381192,39.906056],[113.352639,39.906593],[113.325214,39.932632],[113.305036,39.934424],[113.285943,39.948454],[113.23552,39.958303],[113.168433,39.916747],[113.122783,39.908325],[113.051921,39.916449],[113.023107,39.912327],[112.939444,39.912566],[112.947082,39.886878],[112.966826,39.868173],[112.954068,39.85305],[112.938707,39.86112],[112.93428,39.841811],[112.911759,39.829194],[112.891451,39.826084],[112.861596,39.799765],[112.831307,39.79797],[112.817508,39.788816],[112.820806,39.776788],[112.752808,39.774214],[112.751593,39.757933],[112.734409,39.753324],[112.693706,39.769067],[112.669232,39.746199],[112.648359,39.74069],[112.621021,39.760388],[112.62037,39.809397],[112.600019,39.816036],[112.591123,39.835951],[112.603881,39.880604],[112.596547,39.92045],[112.617376,39.948693],[112.642631,40.034484],[112.610563,40.079365],[112.622323,40.088778],[112.589648,40.10105],[112.595723,40.114748],[112.581967,40.128444],[112.580448,40.154398],[112.589778,40.16148],[112.622063,40.163742],[112.622063,40.183377],[112.603186,40.202947],[112.609695,40.218468],[112.626098,40.223047],[112.624319,40.236839]]]]}},{"type":"Feature","properties":{"adcode":140700,"name":"晋中市","center":[112.736465,37.696495],"centroid":[112.969398,37.329161],"childrenNum":11,"level":"city","parent":{"adcode":140000},"subFeatureIndex":6,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.543528,36.744327],[113.569174,36.758116],[113.59994,36.752875],[113.655744,36.785686],[113.680956,36.790114],[113.673883,36.807511],[113.684124,36.824779],[113.67627,36.855628],[113.696925,36.882291],[113.710507,36.887336],[113.731597,36.878616],[113.731944,36.859117],[113.742055,36.851142],[113.772343,36.871141],[113.786924,36.870082],[113.792825,36.894748],[113.761669,36.956065],[113.777464,36.968572],[113.794952,36.995009],[113.771866,37.016836],[113.790178,37.042946],[113.788225,37.059788],[113.768785,37.062523],[113.758154,37.075633],[113.773515,37.106939],[113.767353,37.144626],[113.773168,37.151888],[113.831923,37.167527],[113.836566,37.189491],[113.853099,37.215107],[113.886425,37.239165],[113.886859,37.25993],[113.89901,37.279512],[113.902177,37.309991],[113.921184,37.330675],[113.959848,37.349001],[113.973864,37.403147],[113.995344,37.421146],[114.014524,37.424609],[114.025329,37.441304],[114.028323,37.47456],[114.036785,37.49421],[114.05961,37.515893],[114.123268,37.601452],[114.115371,37.619896],[114.131123,37.648264],[114.139715,37.67588],[114.128259,37.698188],[114.08825,37.708785],[114.068028,37.721537],[114.047243,37.720243],[113.996906,37.704473],[113.993,37.684262],[113.979852,37.675203],[113.905258,37.706136],[113.883301,37.705397],[113.836696,37.675757],[113.7989,37.672059],[113.77243,37.662936],[113.759282,37.683399],[113.705821,37.685248],[113.694669,37.670765],[113.670932,37.66306],[113.646198,37.664416],[113.613826,37.680811],[113.588701,37.67662],[113.532984,37.678839],[113.517318,37.697326],[113.480868,37.70016],[113.44381,37.743892],[113.441944,37.76538],[113.416862,37.787722],[113.393777,37.822792],[113.372557,37.838537],[113.369693,37.867251],[113.332722,37.889255],[113.326082,37.902836],[113.341747,37.962106],[113.335282,37.980767],[113.301695,37.986966],[113.284728,38.028812],[113.265244,38.033473],[113.255307,38.058187],[113.266416,38.071246],[113.253832,38.090248],[113.228924,38.091964],[113.211913,38.082096],[113.198027,38.058248],[113.164224,38.054876],[113.132503,38.082464],[113.099827,38.065115],[113.09718,38.056225],[113.066848,38.05647],[113.05127,38.047272],[113.024279,38.0504],[113.008614,38.039975],[113.022847,38.026419],[112.989174,38.002308],[112.967824,38.018322],[112.938837,37.990526],[112.920742,37.996663],[112.898394,37.991569],[112.880602,37.996417],[112.863419,37.989667],[112.825753,38.004149],[112.817638,37.983345],[112.794726,37.969411],[112.768213,37.939448],[112.778106,37.923663],[112.765696,37.914878],[112.783878,37.870571],[112.758232,37.881573],[112.73762,37.875181],[112.725296,37.85145],[112.705639,37.851205],[112.67509,37.811781],[112.684072,37.798676],[112.652959,37.775413],[112.667626,37.740198],[112.65387,37.730775],[112.650486,37.710017],[112.626879,37.707615],[112.6274,37.684201],[112.605399,37.666758],[112.619502,37.642961],[112.579146,37.633896],[112.579667,37.604413],[112.598153,37.599231],[112.609088,37.57282],[112.606745,37.552079],[112.623755,37.525899],[112.593943,37.520958],[112.590646,37.506813],[112.544692,37.518364],[112.50976,37.507554],[112.508241,37.478639],[112.464153,37.468813],[112.442065,37.478886],[112.432779,37.458861],[112.394853,37.462879],[112.390253,37.484077],[112.358967,37.485004],[112.352371,37.463188],[112.33011,37.458923],[112.327246,37.448352],[112.286933,37.437533],[112.263847,37.421331],[112.259638,37.394115],[112.217243,37.338229],[112.177364,37.308071],[112.139611,37.266499],[112.12169,37.274493],[112.117611,37.296116],[112.102596,37.298718],[112.095002,37.315441],[112.06927,37.317485],[112.049699,37.298594],[112.04549,37.280008],[112.014811,37.268668],[111.980443,37.271271],[111.972328,37.254042],[111.942083,37.255406],[111.956577,37.240281],[111.958876,37.222238],[111.946422,37.209402],[111.951239,37.179441],[111.934272,37.148971],[111.923337,37.106256],[111.906457,37.098493],[111.88003,37.057178],[111.845836,37.034182],[111.826395,37.044314],[111.791637,37.022556],[111.759482,37.015468],[111.735355,36.997559],[111.680679,36.988043],[111.679334,36.970252],[111.647483,36.964528],[111.637286,36.943183],[111.580353,36.967016],[111.552798,36.982258],[111.541038,36.977655],[111.527152,36.999052],[111.498643,36.991277],[111.512312,36.973487],[111.540127,36.954448],[111.541429,36.931856],[111.570286,36.928868],[111.584736,36.918783],[111.543338,36.892506],[111.505108,36.886527],[111.487838,36.870331],[111.464752,36.865285],[111.455379,36.8484],[111.420577,36.844287],[111.414112,36.832944],[111.414676,36.804019],[111.434767,36.785748],[111.461932,36.771902],[111.490354,36.7792],[111.49912,36.803957],[111.515306,36.779013],[111.518951,36.789303],[111.54234,36.788243],[111.551583,36.778763],[111.538218,36.768347],[111.546462,36.745512],[111.572195,36.716492],[111.622966,36.687772],[111.658331,36.656918],[111.676861,36.651483],[111.68567,36.661728],[111.672217,36.69539],[111.718258,36.711311],[111.759526,36.717303],[111.786647,36.703195],[111.818498,36.712809],[111.842711,36.711685],[111.837157,36.696514],[111.874259,36.70563],[111.936138,36.704943],[111.981832,36.677031],[111.996412,36.687148],[111.997497,36.730723],[112.007781,36.746573],[111.98552,36.770592],[111.988297,36.810628],[112.007651,36.819294],[112.02887,36.886963],[112.051348,36.880423],[112.07656,36.883599],[112.084024,36.894063],[112.068402,36.908323],[112.086107,36.9392],[112.062761,36.962412],[112.061372,36.975478],[112.100817,36.977344],[112.164172,36.998741],[112.176366,37.012422],[112.215854,37.017147],[112.24866,36.983938],[112.279035,36.978712],[112.318957,36.950465],[112.331889,36.934096],[112.354887,36.95563],[112.405007,36.949282],[112.422452,36.938267],[112.448488,36.939076],[112.482422,36.961977],[112.510454,36.951025],[112.542782,36.960234],[112.551027,36.973985],[112.53866,36.992024],[112.513188,36.994698],[112.504943,37.034057],[112.486153,37.049472],[112.485633,37.094828],[112.45222,37.104641],[112.446448,37.116875],[112.482248,37.118862],[112.49813,37.125195],[112.521389,37.12029],[112.541047,37.09135],[112.59377,37.079733],[112.614425,37.103089],[112.637467,37.106753],[112.651397,37.120973],[112.68251,37.10017],[112.716835,37.095387],[112.739616,37.071097],[112.738792,37.049659],[112.75897,37.04941],[112.794336,37.007261],[112.833086,37.006328],[112.853308,36.987234],[112.871056,36.984622],[112.879604,36.970127],[112.87201,36.947727],[112.881904,36.936648],[112.877955,36.894],[112.897613,36.875004],[112.928596,36.874381],[112.967954,36.90633],[113.008831,36.930486],[113.040248,36.926004],[113.067803,36.928494],[113.089717,36.918783],[113.109287,36.927249],[113.156109,36.921958],[113.153983,36.950589],[113.176287,36.949905],[113.1808,36.930424],[113.211089,36.927872],[113.214647,36.946669],[113.227752,36.931233],[113.254439,36.947602],[113.280215,36.955754],[113.294188,36.977406],[113.311936,36.976535],[113.331159,36.947602],[113.372904,36.90714],[113.360971,36.878616],[113.378328,36.878928],[113.399027,36.863042],[113.418034,36.859304],[113.461775,36.826151],[113.495318,36.807199],[113.510462,36.769781],[113.521875,36.754435],[113.543528,36.744327]]]]}},{"type":"Feature","properties":{"adcode":140800,"name":"运城市","center":[111.003957,35.022778],"centroid":[111.070718,35.188073],"childrenNum":13,"level":"city","parent":{"adcode":140000},"subFeatureIndex":7,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.57722,35.73688],[110.577611,35.701476],[110.592278,35.682313],[110.592365,35.663272],[110.604385,35.657514],[110.609332,35.632138],[110.589067,35.602132],[110.580909,35.563121],[110.5675,35.539489],[110.531657,35.511477],[110.513084,35.483138],[110.48592,35.422877],[110.477588,35.413865],[110.450033,35.327763],[110.403993,35.28652],[110.374832,35.251934],[110.378347,35.210844],[110.364331,35.197991],[110.364721,35.140255],[110.373704,35.134205],[110.346453,35.084326],[110.333131,35.045063],[110.32059,35.038496],[110.32085,35.005144],[110.30154,34.988622],[110.274679,34.947271],[110.262182,34.944335],[110.254328,34.919182],[110.230982,34.880734],[110.238836,34.852047],[110.233716,34.837412],[110.246864,34.788886],[110.243175,34.725805],[110.229593,34.692646],[110.236623,34.670426],[110.269082,34.629491],[110.295508,34.611036],[110.350792,34.606613],[110.407724,34.589242],[110.48848,34.610779],[110.533176,34.583472],[110.547365,34.583601],[110.610981,34.607318],[110.65355,34.608023],[110.706403,34.603985],[110.749146,34.652235],[110.791846,34.649737],[110.824304,34.615842],[110.853161,34.635322],[110.88371,34.644099],[110.903715,34.668825],[110.91977,34.730221],[110.935522,34.730541],[110.964032,34.706411],[110.976312,34.706475],[111.035371,34.740908],[111.066398,34.751594],[111.11821,34.756584],[111.148499,34.807494],[111.160736,34.814591],[111.177789,34.803978],[111.209423,34.800972],[111.223483,34.789462],[111.239842,34.793555],[111.255247,34.819578],[111.294128,34.807686],[111.340299,34.83134],[111.355357,34.82303],[111.395583,34.814975],[111.439367,34.838179],[111.464622,34.826929],[111.502635,34.829933],[111.527803,34.85013],[111.554447,34.852239],[111.570806,34.843292],[111.589422,34.861887],[111.591852,34.881629],[111.617672,34.894787],[111.621577,34.916308],[111.647006,34.938654],[111.681547,34.95225],[111.669614,34.988176],[111.687102,34.988495],[111.711749,35.003613],[111.739348,35.004251],[111.749111,35.016433],[111.768595,35.015349],[111.781353,35.030016],[111.809515,35.036839],[111.810426,35.063295],[111.818411,35.068457],[111.868748,35.075723],[111.885584,35.069987],[111.900078,35.079865],[111.91839,35.071516],[111.928371,35.082032],[111.963129,35.079291],[111.977926,35.067183],[112.02119,35.068011],[112.038938,35.045509],[112.062153,35.055773],[112.056252,35.098471],[112.067231,35.136243],[112.063325,35.159802],[112.041498,35.189782],[112.042062,35.200281],[112.078686,35.219369],[112.079641,35.242395],[112.058812,35.279909],[112.069096,35.315691],[112.052824,35.341421],[112.022144,35.353997],[112.032776,35.39019],[112.00253,35.401997],[111.974064,35.431443],[111.972632,35.420339],[111.94933,35.393618],[111.89179,35.387905],[111.851303,35.399331],[111.848483,35.424463],[111.838155,35.435123],[111.814245,35.430364],[111.838893,35.458214],[111.833989,35.472485],[111.845445,35.482187],[111.853256,35.511477],[111.902768,35.52333],[111.908843,35.541137],[111.84384,35.553302],[111.839934,35.584592],[111.860503,35.599663],[111.823358,35.599347],[111.764646,35.611376],[111.722815,35.644859],[111.683413,35.639923],[111.675559,35.655996],[111.653211,35.643214],[111.612638,35.649984],[111.604089,35.633151],[111.59962,35.597194],[111.586775,35.580982],[111.585213,35.55875],[111.570806,35.554379],[111.557398,35.567302],[111.506584,35.574776],[111.482891,35.567048],[111.423051,35.55951],[111.410336,35.572179],[111.361866,35.551211],[111.296254,35.536194],[111.271303,35.55894],[111.283974,35.571925],[111.266269,35.598017],[111.268135,35.629923],[111.290266,35.629796],[111.302026,35.650111],[111.291741,35.669535],[111.313308,35.677379],[111.347589,35.670737],[111.336784,35.709633],[111.32203,35.71311],[111.291438,35.704637],[111.265184,35.679783],[111.252774,35.680289],[111.23598,35.703626],[111.196015,35.71937],[111.188508,35.730496],[111.183821,35.764813],[111.16642,35.77606],[111.144854,35.811494],[111.126932,35.819703],[111.101113,35.812442],[111.061798,35.755777],[111.057025,35.741052],[111.002652,35.734099],[110.976356,35.807832],[110.951708,35.786041],[110.949408,35.7499],[110.953834,35.719053],[110.91248,35.690408],[110.898681,35.690851],[110.87412,35.709696],[110.84548,35.719117],[110.801826,35.723226],[110.759561,35.732456],[110.746586,35.744338],[110.68475,35.729105],[110.67976,35.742569],[110.696813,35.765319],[110.675637,35.768415],[110.656153,35.788189],[110.62747,35.784399],[110.616752,35.762476],[110.57722,35.73688]]]]}},{"type":"Feature","properties":{"adcode":140900,"name":"忻州市","center":[112.733538,38.41769],"centroid":[112.414867,38.885126],"childrenNum":14,"level":"city","parent":{"adcode":140000},"subFeatureIndex":8,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.93028,39.611411],[111.902031,39.61717],[111.878902,39.605892],[111.842538,39.620109],[111.787645,39.589691],[111.722684,39.606012],[111.707844,39.621429],[111.646528,39.644278],[111.61663,39.633305],[111.589596,39.644938],[111.568637,39.643559],[111.557615,39.654231],[111.501941,39.663104],[111.461541,39.646377],[111.438108,39.643019],[111.442751,39.630186],[111.46293,39.624488],[111.451951,39.608112],[111.443359,39.620169],[111.428952,39.613691],[111.438803,39.601452],[111.433205,39.561841],[111.422487,39.542148],[111.433986,39.523409],[111.426479,39.503404],[111.38864,39.492167],[111.364165,39.467284],[111.364079,39.446361],[111.352449,39.426754],[111.337218,39.42092],[111.289268,39.41719],[111.26206,39.424228],[111.199356,39.420799],[111.172192,39.423386],[111.145331,39.409429],[111.119598,39.377233],[111.125587,39.366458],[111.155051,39.368264],[111.155398,39.338699],[111.167505,39.337253],[111.183648,39.350924],[111.195017,39.344962],[111.179438,39.326773],[111.187987,39.314303],[111.213806,39.301288],[111.24748,39.302313],[111.227171,39.284354],[111.213546,39.257165],[111.219013,39.245648],[111.163079,39.152473],[111.174144,39.13514],[111.162515,39.108437],[111.147327,39.100521],[111.138345,39.064314],[111.09417,39.030205],[111.038235,39.020102],[110.9984,38.9985],[110.983299,38.980342],[111.009899,38.932626],[111.015714,38.896211],[111.012329,38.87833],[110.996013,38.868024],[111.010116,38.841584],[110.99649,38.825085],[110.979133,38.787705],[110.956308,38.776717],[110.96503,38.755709],[110.945286,38.729471],[110.955006,38.709482],[110.949495,38.685841],[110.985946,38.684321],[111.003086,38.663225],[111.025087,38.659334],[111.071301,38.686327],[111.123634,38.706505],[111.151753,38.723882],[111.202437,38.72935],[111.219664,38.711791],[111.227519,38.66736],[111.248044,38.657449],[111.25004,38.636041],[111.276206,38.594301],[111.346938,38.60343],[111.348934,38.586815],[111.373625,38.573057],[111.432771,38.570256],[111.44631,38.56362],[111.450779,38.530306],[111.468397,38.510384],[111.503633,38.483873],[111.505846,38.518975],[111.522422,38.524763],[111.551757,38.506849],[111.565599,38.511907],[111.609557,38.542184],[111.684368,38.566603],[111.706325,38.598318],[111.719256,38.602335],[111.749762,38.581884],[111.769029,38.537129],[111.725375,38.514161],[111.728759,38.500024],[111.793546,38.450827],[111.79372,38.429723],[111.782828,38.421],[111.793763,38.402572],[111.78886,38.387803],[111.823314,38.369062],[111.821535,38.336758],[111.841149,38.320997],[111.842364,38.304072],[111.777274,38.292705],[111.779183,38.248015],[111.800272,38.235416],[111.81763,38.214311],[111.849611,38.214984],[111.847658,38.229788],[111.869138,38.220062],[111.87287,38.193383],[111.898125,38.198034],[111.915136,38.180713],[111.951326,38.167919],[112.01173,38.184202],[112.046445,38.171837],[112.101381,38.167368],[112.134751,38.140976],[112.160353,38.15004],[112.214726,38.132401],[112.212166,38.143671],[112.236206,38.142752],[112.25148,38.150101],[112.267753,38.182488],[112.25148,38.219572],[112.220888,38.250583],[112.234036,38.26159],[112.269966,38.267888],[112.248009,38.291728],[112.274002,38.31391],[112.305202,38.3067],[112.319739,38.310977],[112.340611,38.303034],[112.36374,38.278036],[112.406483,38.266787],[112.433126,38.280664],[112.446926,38.27608],[112.458685,38.249972],[112.499606,38.237312],[112.524731,38.249972],[112.524947,38.267826],[112.562526,38.239147],[112.557536,38.223426],[112.569036,38.21064],[112.620761,38.20654],[112.648359,38.227586],[112.639984,38.246425],[112.681686,38.235844],[112.693879,38.241471],[112.748989,38.242021],[112.796115,38.251011],[112.822628,38.287327],[112.850834,38.306089],[112.911021,38.321181],[112.945129,38.333887],[112.972207,38.357461],[112.978238,38.342255],[113.00345,38.343354],[113.031135,38.367597],[113.039293,38.381699],[113.069365,38.388108],[113.083902,38.399216],[113.085551,38.415753],[113.121351,38.421305],[113.145695,38.411664],[113.203018,38.415386],[113.208572,38.42045],[113.284858,38.451559],[113.294492,38.468022],[113.333242,38.485823],[113.368174,38.495941],[113.416688,38.517878],[113.435087,38.520681],[113.458086,38.510079],[113.48486,38.508556],[113.517449,38.519828],[113.555548,38.521046],[113.562057,38.558322],[113.602804,38.586876],[113.604236,38.616087],[113.612871,38.646016],[113.632616,38.65307],[113.66707,38.646989],[113.702132,38.651672],[113.713805,38.663712],[113.709987,38.698301],[113.729036,38.711974],[113.745396,38.701522],[113.775641,38.709847],[113.780415,38.728317],[113.802936,38.7633],[113.83956,38.758381],[113.836566,38.795959],[113.853663,38.810159],[113.855529,38.828967],[113.835611,38.842555],[113.80133,38.854866],[113.776205,38.885665],[113.775121,38.919056],[113.767527,38.959637],[113.776726,38.98694],[113.806798,38.989725],[113.830534,39.011813],[113.884429,39.051676],[113.898012,39.067639],[113.930297,39.063467],[113.942881,39.087467],[113.961757,39.100823],[113.952514,39.127468],[113.940104,39.20692],[113.958589,39.222908],[113.967181,39.281521],[113.946873,39.295805],[113.942186,39.30876],[113.898185,39.345083],[113.899574,39.373019],[113.840602,39.370913],[113.791306,39.378437],[113.772777,39.390715],[113.766529,39.405217],[113.739234,39.420859],[113.698314,39.418814],[113.649496,39.434634],[113.599159,39.424048],[113.586141,39.441249],[113.577289,39.438122],[113.560842,39.426815],[113.561103,39.404315],[113.533895,39.384877],[113.515062,39.346949],[113.452879,39.33912],[113.449234,39.321653],[113.422677,39.332194],[113.380628,39.30171],[113.362403,39.314303],[113.258649,39.314725],[113.225105,39.296407],[113.212174,39.295322],[113.164701,39.307073],[113.130073,39.325388],[113.135888,39.343818],[113.10894,39.361882],[113.088632,39.36128],[113.054264,39.349659],[113.035995,39.321171],[112.967346,39.297251],[112.921089,39.287126],[112.898264,39.246552],[112.88633,39.238953],[112.872922,39.212532],[112.833694,39.206256],[112.819764,39.174933],[112.807701,39.173303],[112.780927,39.192679],[112.751029,39.183384],[112.747254,39.158873],[112.725947,39.140032],[112.686502,39.126381],[112.672399,39.13224],[112.655302,39.119011],[112.649965,39.089764],[112.638292,39.08523],[112.589344,39.088434],[112.577584,39.113513],[112.557797,39.11889],[112.546167,39.138099],[112.505377,39.140455],[112.457514,39.112063],[112.437726,39.104389],[112.405137,39.114661],[112.365345,39.108075],[112.331455,39.12475],[112.312579,39.115446],[112.314054,39.100702],[112.294397,39.099071],[112.289537,39.112183],[112.304681,39.119131],[112.298866,39.129703],[112.274088,39.126985],[112.2635,39.175476],[112.250265,39.18272],[112.218675,39.175657],[112.219716,39.203601],[112.201881,39.211385],[112.192248,39.229966],[112.194374,39.249688],[112.182831,39.266631],[112.134795,39.27917],[112.107977,39.270128],[112.100644,39.255778],[112.085412,39.253125],[112.068055,39.282304],[112.048528,39.29707],[112.064193,39.304904],[112.019671,39.357065],[112.023186,39.368866],[112.007174,39.383011],[112.012251,39.40281],[111.999753,39.413219],[111.987299,39.448405],[111.971287,39.446481],[111.951543,39.46007],[111.914875,39.463256],[111.895782,39.497395],[111.906023,39.517582],[111.943819,39.525511],[111.987516,39.526112],[112.002227,39.537163],[111.971721,39.567064],[111.942734,39.585311],[111.93028,39.611411]]]]}},{"type":"Feature","properties":{"adcode":141000,"name":"临汾市","center":[111.517973,36.08415],"centroid":[111.381988,36.228828],"childrenNum":17,"level":"city","parent":{"adcode":140000},"subFeatureIndex":9,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.410545,36.899481],[110.402213,36.886589],[110.376047,36.882291],[110.377696,36.873197],[110.41406,36.865721],[110.424518,36.855566],[110.419528,36.835001],[110.407247,36.824904],[110.422912,36.819169],[110.419571,36.798345],[110.403298,36.772963],[110.388501,36.764916],[110.413192,36.763107],[110.43068,36.752438],[110.416664,36.731908],[110.42122,36.721548],[110.439966,36.737151],[110.451812,36.726541],[110.436755,36.711248],[110.438143,36.685962],[110.420048,36.683963],[110.402951,36.697263],[110.394446,36.676844],[110.422348,36.661791],[110.44743,36.621115],[110.471513,36.595736],[110.496812,36.582231],[110.489869,36.550709],[110.501281,36.536132],[110.503408,36.48819],[110.473075,36.448487],[110.492125,36.423177],[110.487005,36.393847],[110.469257,36.369961],[110.45997,36.327877],[110.473553,36.310497],[110.473943,36.248161],[110.454156,36.223666],[110.459493,36.194575],[110.447083,36.164341],[110.450467,36.132272],[110.470428,36.09459],[110.467955,36.074641],[110.492212,36.034665],[110.499676,36.008086],[110.49295,35.995928],[110.514256,35.975701],[110.515514,35.959252],[110.503234,35.94324],[110.516686,35.921739],[110.511696,35.879729],[110.551227,35.875376],[110.55075,35.838076],[110.56264,35.826775],[110.571275,35.800695],[110.563812,35.787684],[110.574009,35.769805],[110.57722,35.73688],[110.616752,35.762476],[110.62747,35.784399],[110.656153,35.788189],[110.675637,35.768415],[110.696813,35.765319],[110.67976,35.742569],[110.68475,35.729105],[110.746586,35.744338],[110.759561,35.732456],[110.801826,35.723226],[110.84548,35.719117],[110.87412,35.709696],[110.898681,35.690851],[110.91248,35.690408],[110.953834,35.719053],[110.949408,35.7499],[110.951708,35.786041],[110.976356,35.807832],[111.002652,35.734099],[111.057025,35.741052],[111.061798,35.755777],[111.101113,35.812442],[111.126932,35.819703],[111.144854,35.811494],[111.16642,35.77606],[111.183821,35.764813],[111.188508,35.730496],[111.196015,35.71937],[111.23598,35.703626],[111.252774,35.680289],[111.265184,35.679783],[111.291438,35.704637],[111.32203,35.71311],[111.336784,35.709633],[111.347589,35.670737],[111.313308,35.677379],[111.291741,35.669535],[111.302026,35.650111],[111.290266,35.629796],[111.268135,35.629923],[111.266269,35.598017],[111.283974,35.571925],[111.271303,35.55894],[111.296254,35.536194],[111.361866,35.551211],[111.410336,35.572179],[111.423051,35.55951],[111.482891,35.567048],[111.506584,35.574776],[111.557398,35.567302],[111.570806,35.554379],[111.585213,35.55875],[111.586775,35.580982],[111.59962,35.597194],[111.604089,35.633151],[111.612638,35.649984],[111.653211,35.643214],[111.675559,35.655996],[111.683413,35.639923],[111.722815,35.644859],[111.764646,35.611376],[111.823358,35.599347],[111.860503,35.599663],[111.839934,35.584592],[111.84384,35.553302],[111.908843,35.541137],[111.902768,35.52333],[111.853256,35.511477],[111.845445,35.482187],[111.833989,35.472485],[111.838893,35.458214],[111.814245,35.430364],[111.838155,35.435123],[111.848483,35.424463],[111.851303,35.399331],[111.89179,35.387905],[111.94933,35.393618],[111.972632,35.420339],[111.974064,35.431443],[111.9712,35.456882],[111.946987,35.506533],[111.965082,35.525484],[111.966731,35.566668],[111.948375,35.576422],[111.94217,35.626948],[111.957575,35.640113],[111.964431,35.664853],[111.989339,35.670484],[112.027395,35.701096],[112.037028,35.722973],[112.025139,35.752112],[112.053735,35.773027],[112.048484,35.790337],[112.030736,35.810989],[112.035596,35.855939],[112.04536,35.864206],[112.065885,35.845588],[112.129544,35.820082],[112.186737,35.817304],[112.213511,35.829995],[112.209779,35.847986],[112.183439,35.873546],[112.159312,35.86976],[112.144168,35.910387],[112.163131,35.907108],[112.191033,35.917136],[112.240371,35.896952],[112.278124,35.903828],[112.327332,35.894997],[112.34738,35.900863],[112.381878,35.895817],[112.411994,35.905531],[112.428527,35.921424],[112.463328,35.940719],[112.516963,35.962719],[112.532324,35.984902],[112.522127,36.031075],[112.503337,36.032586],[112.490536,36.068725],[112.49813,36.082508],[112.564783,36.114472],[112.570381,36.132021],[112.561008,36.162455],[112.567213,36.188416],[112.560964,36.224796],[112.574416,36.263295],[112.565521,36.27265],[112.540699,36.255571],[112.506939,36.259213],[112.472224,36.270829],[112.471226,36.287088],[112.454563,36.304849],[112.461029,36.313634],[112.443671,36.342681],[112.39468,36.345566],[112.354887,36.34312],[112.330761,36.365133],[112.290838,36.383002],[112.257165,36.410456],[112.212816,36.409642],[112.202792,36.417914],[112.180965,36.458759],[112.161785,36.512916],[112.132798,36.524556],[112.106068,36.544703],[112.087105,36.580105],[112.041585,36.60205],[112.039111,36.636863],[112.022535,36.654669],[112.019367,36.67828],[111.996412,36.687148],[111.981832,36.677031],[111.936138,36.704943],[111.874259,36.70563],[111.837157,36.696514],[111.842711,36.711685],[111.818498,36.712809],[111.786647,36.703195],[111.759526,36.717303],[111.718258,36.711311],[111.672217,36.69539],[111.68567,36.661728],[111.676861,36.651483],[111.658331,36.656918],[111.622966,36.687772],[111.572195,36.716492],[111.546462,36.745512],[111.538218,36.768347],[111.551583,36.778763],[111.54234,36.788243],[111.518951,36.789303],[111.515306,36.779013],[111.49912,36.803957],[111.490354,36.7792],[111.461932,36.771902],[111.434767,36.785748],[111.414676,36.804019],[111.365684,36.778264],[111.356919,36.754559],[111.323375,36.753811],[111.325241,36.739959],[111.274688,36.738523],[111.277248,36.758552],[111.243878,36.758116],[111.229298,36.741207],[111.211637,36.748944],[111.200528,36.806264],[111.181087,36.82746],[111.18508,36.840361],[111.135264,36.846032],[111.114565,36.8355],[111.096383,36.836622],[111.06783,36.85513],[111.084189,36.908074],[111.09469,36.912744],[111.080804,36.931109],[111.042184,36.929117],[111.020357,36.917475],[111.014108,36.899792],[110.999224,36.89892],[111.00313,36.923514],[110.989547,36.928245],[110.99367,36.908011],[110.971062,36.89618],[110.937432,36.906393],[110.926887,36.895433],[110.896728,36.885966],[110.89521,36.875938],[110.838928,36.85893],[110.791412,36.864475],[110.776528,36.876685],[110.765766,36.900166],[110.725323,36.910813],[110.717816,36.932602],[110.661751,36.933723],[110.648733,36.92339],[110.647128,36.892568],[110.630334,36.871889],[110.604819,36.874941],[110.574313,36.861485],[110.558214,36.872325],[110.539251,36.860426],[110.534998,36.869958],[110.499719,36.879613],[110.469777,36.876748],[110.461793,36.887212],[110.432763,36.885406],[110.410545,36.899481]]]]}},{"type":"Feature","properties":{"adcode":141100,"name":"吕梁市","center":[111.134335,37.524366],"centroid":[111.268548,37.684104],"childrenNum":13,"level":"city","parent":{"adcode":140000},"subFeatureIndex":10,"acroutes":[100000,140000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.33011,37.458923],[112.317439,37.476414],[112.290361,37.48729],[112.313446,37.495508],[112.295698,37.521452],[112.273741,37.524046],[112.294093,37.548745],[112.290448,37.566894],[112.255689,37.561709],[112.233776,37.570042],[112.227006,37.59232],[112.174109,37.6355],[112.175932,37.674525],[112.118652,37.698558],[112.10277,37.716178],[112.075909,37.717779],[112.034642,37.71125],[112.023316,37.723939],[111.996238,37.722091],[111.974975,37.713159],[111.935053,37.740752],[111.921384,37.757931],[111.912272,37.792953],[111.819843,37.796091],[111.808474,37.817133],[111.767814,37.832325],[111.767901,37.841427],[111.746855,37.855509],[111.747158,37.870509],[111.706151,37.878992],[111.683456,37.86387],[111.653515,37.856677],[111.642536,37.861534],[111.570242,37.852373],[111.56638,37.87598],[111.547113,37.885261],[111.580093,37.902713],[111.572412,37.931955],[111.545595,37.955966],[111.538044,37.992429],[111.516868,38.019672],[111.52802,38.037705],[111.515913,38.051258],[111.524158,38.066096],[111.546419,38.074924],[111.547547,38.085344],[111.567682,38.095518],[111.625005,38.10183],[111.643187,38.116106],[111.689749,38.134668],[111.716609,38.15849],[111.716305,38.174959],[111.744164,38.18359],[111.766338,38.179305],[111.773368,38.187752],[111.806434,38.195464],[111.81763,38.214311],[111.800272,38.235416],[111.779183,38.248015],[111.777274,38.292705],[111.842364,38.304072],[111.841149,38.320997],[111.821535,38.336758],[111.823314,38.369062],[111.78886,38.387803],[111.793763,38.402572],[111.782828,38.421],[111.79372,38.429723],[111.793546,38.450827],[111.728759,38.500024],[111.725375,38.514161],[111.769029,38.537129],[111.749762,38.581884],[111.719256,38.602335],[111.706325,38.598318],[111.684368,38.566603],[111.609557,38.542184],[111.565599,38.511907],[111.551757,38.506849],[111.522422,38.524763],[111.505846,38.518975],[111.503633,38.483873],[111.468397,38.510384],[111.450779,38.530306],[111.44631,38.56362],[111.432771,38.570256],[111.373625,38.573057],[111.348934,38.586815],[111.346938,38.60343],[111.276206,38.594301],[111.25004,38.636041],[111.248044,38.657449],[111.227519,38.66736],[111.219664,38.711791],[111.202437,38.72935],[111.151753,38.723882],[111.123634,38.706505],[111.071301,38.686327],[111.025087,38.659334],[111.003086,38.663225],[110.985946,38.684321],[110.949495,38.685841],[110.955006,38.709482],[110.945286,38.729471],[110.915388,38.704256],[110.916212,38.673987],[110.896425,38.657814],[110.880803,38.626916],[110.896641,38.588276],[110.919901,38.582067],[110.909443,38.563194],[110.907664,38.521107],[110.871039,38.510201],[110.87425,38.453693],[110.840707,38.439971],[110.825042,38.449424],[110.796836,38.453449],[110.777613,38.440886],[110.758953,38.400436],[110.750318,38.369489],[110.70163,38.353309],[110.668607,38.313666],[110.638839,38.304745],[110.601304,38.308167],[110.577481,38.297228],[110.567977,38.245752],[110.56724,38.217553],[110.558214,38.210517],[110.523933,38.210517],[110.507877,38.184937],[110.510611,38.147223],[110.521199,38.124438],[110.501889,38.098092],[110.508788,38.061927],[110.501411,38.038993],[110.508138,38.012862],[110.527057,37.988133],[110.518161,37.976409],[110.522501,37.954922],[110.547626,37.940307],[110.587982,37.926611],[110.607249,37.8962],[110.650599,37.840013],[110.660753,37.808028],[110.680367,37.790061],[110.735738,37.770366],[110.755699,37.755037],[110.750708,37.736133],[110.716644,37.728681],[110.703496,37.718642],[110.706577,37.705335],[110.739079,37.689439],[110.775399,37.680873],[110.796142,37.66306],[110.793321,37.650791],[110.763683,37.63957],[110.772275,37.59269],[110.794927,37.566154],[110.771103,37.538373],[110.771277,37.520155],[110.759517,37.503477],[110.758346,37.471161],[110.74498,37.450763],[110.648169,37.438151],[110.629683,37.383659],[110.641486,37.360081],[110.695034,37.34962],[110.693949,37.325907],[110.678718,37.317918],[110.690044,37.287071],[110.661925,37.281991],[110.65138,37.256583],[110.584554,37.180681],[110.540292,37.144626],[110.535562,37.115136],[110.498634,37.089797],[110.460491,37.044749],[110.425993,37.040833],[110.424084,37.023924],[110.450337,37.016463],[110.441224,37.006141],[110.412845,37.019261],[110.383207,37.02181],[110.377132,37.010245],[110.405555,36.991464],[110.424257,36.963719],[110.410545,36.899481],[110.432763,36.885406],[110.461793,36.887212],[110.469777,36.876748],[110.499719,36.879613],[110.534998,36.869958],[110.539251,36.860426],[110.558214,36.872325],[110.574313,36.861485],[110.604819,36.874941],[110.630334,36.871889],[110.647128,36.892568],[110.648733,36.92339],[110.661751,36.933723],[110.717816,36.932602],[110.725323,36.910813],[110.765766,36.900166],[110.776528,36.876685],[110.791412,36.864475],[110.838928,36.85893],[110.89521,36.875938],[110.896728,36.885966],[110.926887,36.895433],[110.937432,36.906393],[110.971062,36.89618],[110.99367,36.908011],[110.989547,36.928245],[111.00313,36.923514],[110.999224,36.89892],[111.014108,36.899792],[111.020357,36.917475],[111.042184,36.929117],[111.080804,36.931109],[111.09469,36.912744],[111.084189,36.908074],[111.06783,36.85513],[111.096383,36.836622],[111.114565,36.8355],[111.135264,36.846032],[111.18508,36.840361],[111.181087,36.82746],[111.200528,36.806264],[111.211637,36.748944],[111.229298,36.741207],[111.243878,36.758116],[111.277248,36.758552],[111.274688,36.738523],[111.325241,36.739959],[111.323375,36.753811],[111.356919,36.754559],[111.365684,36.778264],[111.414676,36.804019],[111.414112,36.832944],[111.420577,36.844287],[111.455379,36.8484],[111.464752,36.865285],[111.487838,36.870331],[111.505108,36.886527],[111.543338,36.892506],[111.584736,36.918783],[111.570286,36.928868],[111.541429,36.931856],[111.540127,36.954448],[111.512312,36.973487],[111.498643,36.991277],[111.527152,36.999052],[111.541038,36.977655],[111.552798,36.982258],[111.580353,36.967016],[111.637286,36.943183],[111.647483,36.964528],[111.679334,36.970252],[111.680679,36.988043],[111.735355,36.997559],[111.759482,37.015468],[111.791637,37.022556],[111.826395,37.044314],[111.845836,37.034182],[111.88003,37.057178],[111.906457,37.098493],[111.923337,37.106256],[111.934272,37.148971],[111.951239,37.179441],[111.946422,37.209402],[111.958876,37.222238],[111.956577,37.240281],[111.942083,37.255406],[111.972328,37.254042],[111.980443,37.271271],[112.014811,37.268668],[112.04549,37.280008],[112.049699,37.298594],[112.06927,37.317485],[112.095002,37.315441],[112.102596,37.298718],[112.117611,37.296116],[112.12169,37.274493],[112.139611,37.266499],[112.177364,37.308071],[112.217243,37.338229],[112.259638,37.394115],[112.263847,37.421331],[112.286933,37.437533],[112.327246,37.448352],[112.33011,37.458923]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"小店区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.669449492188,37.8167617011719],[112.673577910156,37.7983376289063],[112.651112089844,37.7693483710938],[112.657889433594,37.7391139960938],[112.639176054688,37.7120119453126],[112.621429472656,37.6997585273437],[112.613260527344,37.6779274726563],[112.60060671875,37.6584950996094],[112.620858183594,37.6445119453125],[112.581429472656,37.6297585273438],[112.577345,37.6038430000001],[112.562584257813,37.5973708320313],[112.532471953125,37.6058327460938],[112.518533964844,37.6276076484375],[112.482345,37.6174379707031],[112.46310671875,37.6228444648438],[112.444632597656,37.5939846015626],[112.410279570313,37.6036391425782],[112.397345,37.623843],[112.408365507813,37.6381215644531],[112.43298953125,37.6481996894532],[112.473446074219,37.6808974433594],[112.492796660156,37.6780373359375],[112.548563261719,37.7253041816406],[112.530394316406,37.7715261054688],[112.537345,37.813843],[112.537345,37.8338430000001],[112.593822050781,37.8292226386719],[112.572806425781,37.8117678046875],[112.645679960938,37.8197988105469],[112.670811796875,37.8500551582032],[112.687345,37.843843],[112.669449492188,37.8167617011719]]]]}},{"type":"Feature","properties":{"name":"杏花岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.680682402344,37.9509682441406],[112.723131132813,37.9370058417969],[112.733834257813,37.9543752265625],[112.757345,37.943843],[112.769261503906,37.9198708320313],[112.757345,37.9138430000001],[112.752735625,37.9193923164063],[112.742345,37.9183339667969],[112.727345,37.9198622871094],[112.684569121094,37.9155019355469],[112.660650664063,37.8603517890625],[112.566163359375,37.8699831367188],[112.527345,37.863843],[112.527345,37.883843],[112.536600371094,37.8945864082032],[112.562877226563,37.9172243476562],[112.561165800781,37.9385195136719],[112.572772246094,37.9485195136719],[112.5719153125,37.9592018867188],[112.637345,37.973843],[112.653531523438,37.9700307441407],[112.680682402344,37.9509682441406]]]]}},{"type":"Feature","properties":{"name":"万柏林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.349537382813,37.941322248047],[112.385545683594,37.9261977363282],[112.409422636719,37.9315505195313],[112.492371855469,37.8928188300782],[112.527345,37.883843],[112.527345,37.863843],[112.527345,37.8338430000001],[112.537345,37.8338430000001],[112.537345,37.813843],[112.516156035156,37.805512921875],[112.480386992188,37.8270876289063],[112.4831653125,37.8082912421875],[112.466143828125,37.7994863105469],[112.432735625,37.8196401191407],[112.417838164063,37.8174379707032],[112.401651640625,37.7964662910157],[112.327345,37.783843],[112.333187285156,37.8194057441406],[112.31170046875,37.8281996894532],[112.27298953125,37.8627614570313],[112.293822050781,37.8788430000001],[112.28170046875,37.8881996894532],[112.269427519531,37.9041005683594],[112.275338164063,37.9441017890625],[112.304136992188,37.9267299628906],[112.324022246094,37.9524941230469],[112.32156375,37.9691347480469],[112.327345,37.9838430000001],[112.347345,37.973843],[112.353529082031,37.9591213203125],[112.349537382813,37.941322248047]]]]}},{"type":"Feature","properties":{"name":"古交市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.095592070313,38.1639479804688],[112.125889921875,38.1456728339844],[112.152486601563,38.1496034980469],[112.20170046875,38.1381996894532],[112.207345,38.1338430000001],[112.200833769531,38.1183388496094],[112.234818144531,38.0948744941407],[112.229705839844,38.0720729804687],[112.251429472656,38.0579274726563],[112.277435332031,38.0481972480469],[112.291429472656,38.0279274726563],[112.303260527344,38.0197585273438],[112.327345,37.9838430000001],[112.32156375,37.9691347480469],[112.324022246094,37.9524941230469],[112.304136992188,37.9267299628906],[112.275338164063,37.9441017890625],[112.269427519531,37.9041005683594],[112.28170046875,37.8881996894532],[112.293822050781,37.8788430000001],[112.27298953125,37.8627614570313],[112.31170046875,37.8281996894532],[112.333187285156,37.8194057441406],[112.327345,37.783843],[112.267081328125,37.738481671875],[112.24298953125,37.6981996894531],[112.203878203125,37.6873085761719],[112.167345,37.663843],[112.156715117188,37.6781325507813],[112.113778105469,37.6951955390626],[112.097235136719,37.7174318671875],[112.04205203125,37.7079311347657],[112.003643828125,37.7233705878906],[111.964107695313,37.7165639472656],[111.932821074219,37.7359267402344],[111.903079863281,37.7895778632812],[111.811610136719,37.7981081367188],[111.796715117188,37.8181325507813],[111.760701933594,37.8324428535156],[111.733079863281,37.8695778632813],[111.727345,37.8738430000001],[111.752523222656,37.9010158515625],[111.812345,37.8986452460938],[111.822345,37.8990407539063],[111.938624296875,37.8944325996094],[111.952154570313,37.9090334296876],[111.978997832031,37.9217018867188],[112.051685820313,37.9447158027344],[112.006156035156,37.9662026191406],[112.037398710938,37.9809474921875],[112.011402617188,38.0300722480469],[112.013656035156,38.0869167304687],[111.99709109375,38.1182192207032],[112.037345,38.1738430000001],[112.095592070313,38.1639479804688]]]]}},{"type":"Feature","properties":{"name":"尖草坪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.417345,38.0238430000001],[112.420767851563,38.0116506171876],[112.429537382813,38.0204201484375],[112.434718046875,38.0669765449219],[112.460767851563,38.0708266425782],[112.493924589844,38.0508266425781],[112.532345,38.0451491523438],[112.565213652344,38.0500063300781],[112.60298953125,38.0394863105469],[112.61670046875,38.0059865546876],[112.637345,37.973843],[112.5719153125,37.9592018867188],[112.572772246094,37.9485195136719],[112.561165800781,37.9385195136719],[112.562877226563,37.9172243476562],[112.536600371094,37.8945864082032],[112.527345,37.883843],[112.492371855469,37.8928188300782],[112.409422636719,37.9315505195313],[112.385545683594,37.9261977363282],[112.349537382813,37.941322248047],[112.353529082031,37.9591213203125],[112.347345,37.973843],[112.375223417969,37.9809975410156],[112.371041289063,37.9996584296875],[112.403260527344,38.0079274726563],[112.411429472656,38.0197585273438],[112.417345,38.0238430000001]]]]}},{"type":"Feature","properties":{"name":"晋源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.480386992188,37.8270876289063],[112.516156035156,37.805512921875],[112.537345,37.813843],[112.530394316406,37.7715261054688],[112.548563261719,37.7253041816406],[112.492796660156,37.6780373359375],[112.473446074219,37.6808974433594],[112.43298953125,37.6481996894532],[112.408365507813,37.6381215644531],[112.397345,37.623843],[112.391883574219,37.6193056464844],[112.382508574219,37.6080214667969],[112.360970488281,37.6203578925782],[112.363800078125,37.6481154609375],[112.321798125,37.698481671875],[112.323363066406,37.713843],[112.321795683594,37.729233625],[112.341663847656,37.7457363105469],[112.327345,37.783843],[112.401651640625,37.7964662910157],[112.417838164063,37.8174379707032],[112.432735625,37.8196401191407],[112.466143828125,37.7994863105469],[112.4831653125,37.8082912421875],[112.480386992188,37.8270876289063]]]]}},{"type":"Feature","properties":{"name":"娄烦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.863616972656,38.2195131660156],[111.858011503906,38.1945082832031],[111.882791777344,38.200063703125],[111.922017851563,38.1745204902344],[111.952623320313,38.1676601386719],[111.993175078125,38.184692609375],[112.037345,38.1738430000001],[111.99709109375,38.1182192207032],[112.013656035156,38.0869167304687],[112.011402617188,38.0300722480469],[112.037398710938,37.9809474921875],[112.006156035156,37.9662026191406],[112.051685820313,37.9447158027344],[111.978997832031,37.9217018867188],[111.952154570313,37.9090334296876],[111.938624296875,37.8944325996094],[111.822345,37.8990407539063],[111.812345,37.8986452460938],[111.752523222656,37.9010158515625],[111.727345,37.8738430000001],[111.681158476563,37.8700307441406],[111.648455839844,37.8553823066407],[111.632345,37.8604006171875],[111.622345,37.8572853828125],[111.612313261719,37.8604103828125],[111.56547,37.8450038886719],[111.553531523438,37.8800307441407],[111.547345,37.883843],[111.55170046875,37.8894863105469],[111.56298953125,37.8981996894531],[111.57170046875,37.9227614570312],[111.546397734375,37.9422939277344],[111.52298953125,37.9994863105469],[111.511549101563,38.018452375],[111.513822050781,38.033843],[111.511541777344,38.0492739082032],[111.537345,38.083843],[111.551519804688,38.0896681953125],[111.603170195313,38.0980178046875],[111.6884778125,38.1375209785157],[111.716534453125,38.1766640449219],[111.791463652344,38.1916860175782],[111.807345,38.2138430000001],[111.833260527344,38.2179274726563],[111.843802519531,38.2331935859375],[111.863616972656,38.2195131660156]]]]}},{"type":"Feature","properties":{"name":"清徐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.360970488281,37.6203578925782],[112.382508574219,37.6080214667969],[112.391883574219,37.6193056464844],[112.397345,37.623843],[112.410279570313,37.6036391425782],[112.444632597656,37.5939846015626],[112.46310671875,37.6228444648438],[112.482345,37.6174379707031],[112.518533964844,37.6276076484375],[112.532471953125,37.6058327460938],[112.562584257813,37.5973708320313],[112.577345,37.6038430000001],[112.591090117188,37.596889875],[112.60478640625,37.5688430000001],[112.599896269531,37.5588283515625],[112.61541140625,37.5276137519532],[112.590704375,37.520483625],[112.587345,37.503843],[112.58170046875,37.5081996894531],[112.515145292969,37.5180348945313],[112.497345,37.473843],[112.462379179688,37.4680995917969],[112.433880644531,37.4723110175781],[112.422857695313,37.4580287910156],[112.396551542969,37.4619155097657],[112.38298953125,37.4794863105469],[112.358426542969,37.4881996894532],[112.34298953125,37.4681996894532],[112.327345,37.463843],[112.310159941406,37.4666591621094],[112.285596953125,37.4892385078125],[112.310103789063,37.4988430000001],[112.290159941406,37.5066591621094],[112.284530058594,37.5210268378907],[112.267345,37.523843],[112.288736601563,37.5581166816407],[112.23197390625,37.5684706855469],[112.172056914063,37.6380165839844],[112.167345,37.663843],[112.203878203125,37.6873085761719],[112.24298953125,37.6981996894531],[112.267081328125,37.738481671875],[112.327345,37.783843],[112.341663847656,37.7457363105469],[112.321795683594,37.729233625],[112.323363066406,37.713843],[112.321798125,37.698481671875],[112.363800078125,37.6481154609375],[112.360970488281,37.6203578925782]]]]}},{"type":"Feature","properties":{"name":"阳曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.417345,38.0238430000001],[112.429537382813,38.0204201484375],[112.420767851563,38.0116506171876],[112.417345,38.0238430000001]]],[[[112.417345,38.0238430000001],[112.411429472656,38.0197585273438],[112.403260527344,38.0079274726563],[112.371041289063,37.9996584296875],[112.375223417969,37.9809975410156],[112.347345,37.973843],[112.327345,37.9838430000001],[112.303260527344,38.0197585273438],[112.291429472656,38.0279274726563],[112.277435332031,38.0481972480469],[112.251429472656,38.0579274726563],[112.229705839844,38.0720729804687],[112.234818144531,38.0948744941407],[112.200833769531,38.1183388496094],[112.207345,38.1338430000001],[112.211248808594,38.1399404121094],[112.233441191406,38.1477455878907],[112.2601575,38.1660414863282],[112.24412234375,38.2231020332031],[112.218343535156,38.2396059394531],[112.223531523438,38.2580690742188],[112.265926542969,38.2683486152344],[112.233914824219,38.2888430000001],[112.263441191406,38.3077455878907],[112.267345,38.313843],[112.296097441406,38.3071804023438],[112.318204375,38.3104482246094],[112.36170046875,38.2781996894531],[112.394390898438,38.2648195625001],[112.432689238281,38.2798744941407],[112.455030546875,38.2509291816407],[112.487952910156,38.2374550605469],[112.506851835938,38.2402480292969],[112.522857695313,38.2609841132813],[112.545562773438,38.2576284003906],[112.566773710938,38.2058034492188],[112.592345,38.2095815253907],[112.607345,38.2073647285157],[112.629920683594,38.2107009101563],[112.642916289063,38.2424526191407],[112.677345,38.2373647285157],[112.702345,38.2410597968751],[112.722428007813,38.2380922675782],[112.789737578125,38.2510317207032],[112.827508574219,38.2999648261719],[112.89298953125,38.3181996894531],[112.945882597656,38.3389931464844],[112.957345,38.353843],[112.996820097656,38.3396791816407],[113.040377226563,38.3884279609375],[113.052345,38.3891408515625],[113.063609648438,38.3884694648438],[113.090377226563,38.4184279609375],[113.119696074219,38.4201747871094],[113.137345,38.413843],[113.143865996094,38.3741408515625],[113.141605253906,38.358843],[113.146558867188,38.3253273750001],[113.10298953125,38.3081996894531],[113.069928007813,38.2989931464844],[113.03170046875,38.2694863105469],[113.02298953125,38.2581996894532],[112.967730742188,38.2355837226563],[112.931546660156,38.1792458320313],[112.933160429688,38.1683315253907],[112.91298953125,38.1527614570312],[112.933502226563,38.1367971015626],[112.952916289063,38.1396657539063],[112.964891386719,38.1104030585938],[113.00170046875,38.0881996894531],[113.03298953125,38.0794863105469],[113.04170046875,38.0681996894532],[113.05298953125,38.059486310547],[113.057345,38.053843],[113.040477324219,38.0475051093751],[113.022345,38.0493520332032],[113.010882597656,38.0481838203126],[113.012886992188,38.028520734375],[113.000279570313,38.0065053535156],[112.964212675781,38.0101808906251],[112.91127078125,37.9902883125001],[112.820394316406,37.9995510078125],[112.802806425781,37.9783803535157],[112.757345,37.943843],[112.733834257813,37.9543752265625],[112.723131132813,37.9370058417969],[112.680682402344,37.9509682441406],[112.653531523438,37.9700307441407],[112.637345,37.973843],[112.61670046875,38.0059865546876],[112.60298953125,38.0394863105469],[112.565213652344,38.0500063300781],[112.532345,38.0451491523438],[112.493924589844,38.0508266425781],[112.460767851563,38.0708266425782],[112.434718046875,38.0669765449219],[112.417345,38.0238430000001]]]]}},{"type":"Feature","properties":{"name":"迎泽区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.767345,37.8738430000001],[112.777345,37.8738430000001],[112.772345,37.8610353828125],[112.767345,37.8738430000001]]],[[[112.767345,37.8738430000001],[112.742579375,37.883579328125],[112.72298953125,37.8581996894531],[112.687345,37.843843],[112.670811796875,37.8500551582032],[112.645679960938,37.8197988105469],[112.572806425781,37.8117678046875],[112.593822050781,37.8292226386719],[112.537345,37.8338430000001],[112.527345,37.8338430000001],[112.527345,37.863843],[112.566163359375,37.8699831367188],[112.660650664063,37.8603517890625],[112.684569121094,37.9155019355469],[112.727345,37.9198622871094],[112.742345,37.9183339667969],[112.752735625,37.9193923164063],[112.757345,37.9138430000001],[112.763985625,37.900483625],[112.767345,37.8738430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"浑源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.817345,39.863843],[113.847345,39.843843],[113.850704375,39.827202375],[113.872874785156,39.8159865546875],[113.880704375,39.777202375],[113.903985625,39.750483625],[113.911109648438,39.7257973457031],[113.926031523438,39.7330849433594],[113.943985625,39.710483625],[113.950704375,39.6872023750001],[113.963985625,39.670483625],[113.967345,39.6238430000001],[113.894469023438,39.6358144355469],[113.913096953125,39.5389272285156],[113.911605253906,39.528843],[113.915775175781,39.5006240058594],[113.94298953125,39.4894863105469],[113.954022246094,39.4751918769531],[113.951605253906,39.458843],[113.961688261719,39.3906215644531],[113.92170046875,39.3794863105469],[113.897345,39.3638430000001],[113.888001738281,39.3768776679688],[113.832345,39.3658791328125],[113.771619902344,39.3778786445313],[113.750999785156,39.4066481757813],[113.715303984375,39.420415265625],[113.681798125,39.413794171875],[113.64255984375,39.4299184394531],[113.591964140625,39.4177272773438],[113.567345,39.4338430000001],[113.559046660156,39.445863263672],[113.500435820313,39.4853298164063],[113.508699980469,39.5221938300782],[113.459598417969,39.5560964179688],[113.441673613281,39.582055890625],[113.421529570313,39.5775392890626],[113.413260527344,39.6097585273438],[113.395513945313,39.6220119453126],[113.383260527344,39.6397585273438],[113.37060671875,39.6484950996094],[113.383565703125,39.6683962226563],[113.381160917969,39.6791213203125],[113.387345,39.693843],[113.393985625,39.697202375],[113.404866972656,39.7187111640626],[113.397345,39.7338430000001],[113.412625761719,39.7291237617188],[113.432120390625,39.7185317207032],[113.442345,39.7191408515625],[113.461656523438,39.7179897285156],[113.4731653125,39.7500661445313],[113.4708996875,39.7880849433594],[113.482625761719,39.7985622382813],[113.492064238281,39.8091237617188],[113.522625761719,39.8185622382813],[113.617386503906,39.8700551582032],[113.682205839844,39.8585366035157],[113.702345,39.8597365546875],[113.73158328125,39.8579946113281],[113.763511992188,39.8753444648438],[113.817345,39.863843]]]]}},{"type":"Feature","properties":{"name":"灵丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.362379179688,39.6495864082032],[114.397345,39.643843],[114.409720488281,39.6362184882812],[114.429930449219,39.6034181953125],[114.457965117188,39.6121511054688],[114.493531523438,39.6000307441407],[114.513585234375,39.5631984687501],[114.553306914063,39.5809926582032],[114.557345,39.563843],[114.54298953125,39.5281996894531],[114.531549101563,39.5092336250001],[114.533463164063,39.4962831855469],[114.50306765625,39.4728212714844],[114.4886340625,39.4375551582031],[114.465611601563,39.3993947578126],[114.473765898438,39.3442360664063],[114.424129667969,39.3059242988281],[114.420867949219,39.2838430000001],[114.423822050781,39.263843],[114.419075957031,39.2317153144531],[114.47170046875,39.2170607734375],[114.46298953125,39.1981996894531],[114.44170046875,39.1894863105469],[114.43298953125,39.1781996894532],[114.370318632813,39.1675527167969],[114.373160429688,39.1483315253907],[114.360203886719,39.1383315253906],[114.364246855469,39.1109645820312],[114.347345,39.073843],[114.241883574219,39.0693056464844],[114.194544707031,39.0560707832031],[114.162022734375,39.0593849921875],[114.12748171875,39.0396022773438],[114.096280546875,39.0771633125001],[114.061883574219,39.0983803535156],[114.042752714844,39.1293947578126],[114.005406523438,39.1255873847657],[113.982806425781,39.0983803535156],[113.957345,39.0938430000001],[113.953260527344,39.1097585273438],[113.941160917969,39.1385646796876],[113.943499785156,39.1489894843751],[113.925855742188,39.2059096503906],[113.943260527344,39.2179274726563],[113.957469511719,39.2732949042969],[113.930440703125,39.3148000312501],[113.888817167969,39.3435390449219],[113.897345,39.3638430000001],[113.92170046875,39.3794863105469],[113.961688261719,39.3906215644531],[113.951605253906,39.458843],[113.954022246094,39.4751918769531],[113.94298953125,39.4894863105469],[113.915775175781,39.5006240058594],[113.911605253906,39.528843],[113.913096953125,39.5389272285156],[113.894469023438,39.6358144355469],[113.967345,39.6238430000001],[113.999991484375,39.6162783027344],[114.042345,39.6225368476563],[114.096910429688,39.6144741035157],[114.165836210938,39.6304445625],[114.19298953125,39.6094863105469],[114.205286894531,39.5935536933595],[114.23170046875,39.6094863105469],[114.29298953125,39.6181996894531],[114.304127226563,39.6454116035156],[114.332345,39.6495815253906],[114.347345,39.6473647285157],[114.362379179688,39.6495864082032]]]]}},{"type":"Feature","properties":{"name":"大同县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.517345,40.253843],[113.551951933594,40.2281716132813],[113.582928496094,40.2320253730469],[113.61302859375,40.219341046875],[113.606109648438,40.1637148261719],[113.661790800781,40.1282900214844],[113.707625761719,40.1183730292969],[113.741790800781,40.0982900214844],[113.817943144531,40.0872060371094],[113.85060671875,40.0115383125],[113.820479765625,39.998843],[113.854019804688,39.9847096992188],[113.84209109375,39.9027382636719],[113.817345,39.863843],[113.763511992188,39.8753444648438],[113.73158328125,39.8579946113281],[113.702345,39.8597365546875],[113.682205839844,39.8585366035157],[113.617386503906,39.8700551582032],[113.522625761719,39.8185622382813],[113.492064238281,39.8091237617188],[113.482625761719,39.7985622382813],[113.4708996875,39.7880849433594],[113.4731653125,39.7500661445313],[113.461656523438,39.7179897285156],[113.442345,39.7191408515625],[113.432120390625,39.7185317207032],[113.412625761719,39.7291237617188],[113.397345,39.7338430000001],[113.338970976563,39.7703481269532],[113.316859160156,39.7960121894532],[113.35271609375,39.8184706855469],[113.36197390625,39.8292153144532],[113.438258085938,39.8499794746094],[113.387345,39.8938430000001],[113.387345,39.903843],[113.377345,39.903843],[113.372899199219,39.9393959785156],[113.356771269531,39.96683128125],[113.393155546875,40.0287270332031],[113.38146609375,40.05913596875],[113.394154082031,40.0692958808594],[113.391722441406,40.0888430000001],[113.394039335938,40.10745628125],[113.381790800781,40.1282900214844],[113.377345,40.143843],[113.381790800781,40.1493959785157],[113.398450957031,40.1627370429688],[113.41181765625,40.1794277167969],[113.461790800781,40.2193959785156],[113.482899199219,40.2282900214844],[113.517345,40.253843]]]]}},{"type":"Feature","properties":{"name":"广灵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.998577910156,39.9280788398438],[114.037345,39.913843],[114.058648710938,39.9220314765625],[114.142127714844,39.8981935859375],[114.157345,39.9000868964844],[114.172659941406,39.8981825996094],[114.207345,39.913843],[114.223138457031,39.8992104316406],[114.192535429688,39.8708559394532],[114.211060820313,39.8666115546875],[114.272523222656,39.869048078125],[114.282166777344,39.858637921875],[114.292345,39.8590407539063],[114.302345,39.8586452460937],[114.391617460938,39.8621828437501],[114.392740507813,39.833843],[114.391375761719,39.7993740058594],[114.404447050781,39.7872621894531],[114.397345,39.643843],[114.362379179688,39.6495864082032],[114.347345,39.6473647285157],[114.332345,39.6495815253906],[114.304127226563,39.6454116035156],[114.29298953125,39.6181996894531],[114.23170046875,39.6094863105469],[114.205286894531,39.5935536933595],[114.19298953125,39.6094863105469],[114.165836210938,39.6304445625],[114.096910429688,39.6144741035157],[114.042345,39.6225368476563],[113.999991484375,39.6162783027344],[113.967345,39.6238430000001],[113.963985625,39.670483625],[113.950704375,39.6872023750001],[113.943985625,39.710483625],[113.926031523438,39.7330849433594],[113.911109648438,39.7257973457031],[113.903985625,39.750483625],[113.880704375,39.777202375],[113.872874785156,39.8159865546875],[113.850704375,39.827202375],[113.847345,39.843843],[113.862105742188,39.8384218574219],[113.892345,39.8408522773438],[113.941785917969,39.8368788886719],[113.943551054688,39.8588430000001],[113.941253691406,39.8874330878907],[113.998577910156,39.9280788398438]]]]}},{"type":"Feature","properties":{"name":"天镇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.117345,40.743843],[114.137345,40.7338430000001],[114.162899199219,40.6993959785157],[114.181790800781,40.6682900214844],[114.202899199219,40.6393959785157],[114.217345,40.6051113105469],[114.260504179688,40.6104799628907],[114.274039335938,40.5874562812501],[114.270535917969,40.5592958808594],[114.287803984375,40.5454677558594],[114.264100371094,40.4624575019532],[114.293587675781,40.438843],[114.279793730469,40.4277956367188],[114.301810332031,40.3682387519531],[114.388968535156,40.3573976875001],[114.44263796875,40.3695876289063],[114.47486453125,40.3460463691406],[114.510181914063,40.3504396796876],[114.527345,40.3438430000001],[114.511656523438,40.3048891425782],[114.49170046875,40.2894863105469],[114.470035429688,40.2614174628906],[114.41298953125,40.2481996894532],[114.33170046875,40.2394863105469],[114.282464628906,40.2251308417969],[114.247738066406,40.2302626777344],[114.218138457031,40.1919155097656],[114.192345,40.1881044746094],[114.174783964844,40.19069846875],[114.130101347656,40.1731325507813],[114.096175566406,40.1935964179687],[114.061207304688,40.1792848945313],[114.077345,40.143843],[114.053765898438,40.1498940253906],[114.023260527344,40.1697585273438],[114.001429472656,40.1779274726563],[113.974176054688,40.1956740546875],[113.941051054688,40.2080690742188],[113.943465605469,40.218843],[113.933377714844,40.263843],[113.944217558594,40.3121938300782],[113.9046496875,40.3395131660157],[113.917855253906,40.3984206367188],[113.943260527344,40.4079274726563],[113.973709746094,40.4277553535156],[113.971224394531,40.438843],[113.974586210938,40.453843],[113.963660917969,40.5025771308594],[113.947345,40.513843],[113.951158476563,40.5200307441407],[114.043531523438,40.5276552558595],[114.075975371094,40.5421889472656],[114.064344511719,40.5795302558594],[114.051158476563,40.5876552558594],[114.035858183594,40.6124843574219],[114.053531523438,40.6376552558594],[114.067281523438,40.6779982734375],[114.054307890625,40.7196486640625],[114.089449492188,40.7413014960938],[114.111539335938,40.7344216132813],[114.117345,40.743843]]]]}},{"type":"Feature","properties":{"name":"新荣区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.27271609375,40.3792153144531],[113.313074980469,40.3092153144531],[113.448304472656,40.3231789375],[113.477345,40.333843],[113.50271609375,40.2892153144532],[113.517345,40.253843],[113.482899199219,40.2282900214844],[113.461790800781,40.2193959785156],[113.41181765625,40.1794277167969],[113.398450957031,40.1627370429688],[113.381790800781,40.1493959785157],[113.377345,40.143843],[113.352506132813,40.1494850898438],[113.328951445313,40.1465554023438],[113.332967558594,40.178843],[113.331722441406,40.188843],[113.333448515625,40.2027150703125],[113.352899199219,40.2182900214844],[113.361790800781,40.2306398750001],[113.334935332031,40.2272988105469],[113.322860136719,40.2695290351563],[113.311951933594,40.2681728339844],[113.282200957031,40.2899062324219],[113.272899199219,40.2782900214845],[113.23361453125,40.2617360664063],[113.283214140625,40.2408351875],[113.281241484375,40.2249709296875],[113.253057890625,40.2024025703125],[113.241632109375,40.1752834296876],[113.205328398438,40.1462111640625],[113.182899199219,40.1593959785157],[113.149046660156,40.1736611152344],[113.122703886719,40.1581764960938],[113.102799101563,40.1606520820313],[113.092899199219,40.1482900214844],[113.079251738281,40.1373622871094],[113.052799101563,40.1406520820313],[113.039344511719,40.1238503242188],[113.012703886719,40.1395095039063],[112.992799101563,40.1370339179688],[112.982899199219,40.1493959785157],[112.957345,40.153843],[112.949420195313,40.1578530097657],[112.955269804688,40.1698329902344],[112.940704375,40.1772023750001],[112.933985625,40.200483625],[112.9048840625,40.2088820625],[112.883985625,40.2504836250001],[112.867345,40.253843],[112.882899199219,40.2882900214844],[112.894901152344,40.3302712226563],[112.977345,40.3538430000001],[113.12271609375,40.378470685547],[113.16197390625,40.3892153144532],[113.20271609375,40.3984706855469],[113.249906035156,40.4113857246094],[113.27271609375,40.3792153144531]]]]}},{"type":"Feature","properties":{"name":"阳高县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.974586210938,40.453843],[113.971224394531,40.438843],[113.973709746094,40.4277553535156],[113.943260527344,40.4079274726563],[113.917855253906,40.3984206367188],[113.9046496875,40.3395131660157],[113.944217558594,40.3121938300782],[113.933377714844,40.263843],[113.943465605469,40.218843],[113.941051054688,40.2080690742188],[113.974176054688,40.1956740546875],[114.001429472656,40.1779274726563],[114.023260527344,40.1697585273438],[114.053765898438,40.1498940253906],[114.077345,40.143843],[114.081790800781,40.1282900214844],[114.099210234375,40.0986586738282],[114.069534941406,40.0616030097657],[114.038219023438,40.0577077460938],[114.007962675781,40.1075221992188],[113.968792753906,40.1123940253906],[113.97490359375,40.0632802558594],[113.948065214844,40.0297670722657],[113.902899199219,40.0168532539063],[113.91343875,40.006704328125],[114.015892363281,39.9888747382813],[114.037345,39.913843],[113.998577910156,39.9280788398438],[113.941253691406,39.8874330878907],[113.943551054688,39.8588430000001],[113.941785917969,39.8368788886719],[113.892345,39.8408522773438],[113.862105742188,39.8384218574219],[113.847345,39.843843],[113.817345,39.863843],[113.84209109375,39.9027382636719],[113.854019804688,39.9847096992188],[113.820479765625,39.998843],[113.85060671875,40.0115383125],[113.817943144531,40.0872060371094],[113.741790800781,40.0982900214844],[113.707625761719,40.1183730292969],[113.661790800781,40.1282900214844],[113.606109648438,40.1637148261719],[113.61302859375,40.219341046875],[113.582928496094,40.2320253730469],[113.551951933594,40.2281716132813],[113.517345,40.253843],[113.50271609375,40.2892153144532],[113.477345,40.333843],[113.551868925781,40.3402040839844],[113.692064238281,40.4491237617188],[113.749115019531,40.4710561347656],[113.787345,40.513843],[113.810784941406,40.507827375],[113.83201296875,40.4770839667969],[113.870357695313,40.4521132636719],[113.893260527344,40.4679274726562],[113.9056653125,40.4858925605469],[113.947345,40.513843],[113.963660917969,40.5025771308594],[113.974586210938,40.453843]]]]}},{"type":"Feature","properties":{"name":"左云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.955269804688,40.1698329902344],[112.949420195313,40.1578530097657],[112.957345,40.153843],[112.970282011719,40.1194155097656],[112.952806425781,40.0983803535156],[112.913089628906,40.0811550117188],[112.910816679688,40.058843],[112.913873320313,40.028843],[112.911790800781,40.0084011054688],[112.971883574219,39.9950759101563],[112.961617460938,39.9648818183594],[112.932806425781,39.9483803535157],[112.862806425781,39.9359059882813],[112.900487089844,39.9046584296875],[112.937345,39.8938430000001],[112.941429472656,39.8879274726563],[112.961429472656,39.8741188789063],[112.952059355469,39.8555446601563],[112.931673613281,39.8601137519531],[112.91392703125,39.8344081855469],[112.873260527344,39.8079274726563],[112.803734160156,39.7987416816406],[112.797345,39.773843],[112.751248808594,39.7699404121094],[112.740767851563,39.7535707832032],[112.686112089844,39.7775392890625],[112.673441191406,39.7577455878907],[112.637345,39.753843],[112.611365996094,39.761664044922],[112.615028105469,39.8072243476563],[112.590311308594,39.8285195136719],[112.597401152344,39.9167641425782],[112.636783476563,40.0240041328125],[112.611219511719,40.0698232246094],[112.6127746875,40.0891896796875],[112.581485625,40.1031508613281],[112.582747832031,40.1188430000001],[112.579547148438,40.1586635566407],[112.623170195313,40.1685744453125],[112.598407011719,40.2035012031251],[112.617345,40.2338430000001],[112.642899199219,40.2193959785156],[112.671790800781,40.1982900214844],[112.735018339844,40.1598854804688],[112.829058867188,40.1960341621094],[112.855211210938,40.2114064765625],[112.867345,40.253843],[112.883985625,40.2504836250001],[112.9048840625,40.2088820625],[112.933985625,40.200483625],[112.940704375,40.1772023750001],[112.955269804688,40.1698329902344]]]]}},{"type":"Feature","properties":{"name":"南郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,39.903843],[113.387345,39.903843],[113.387345,39.8938430000001],[113.377345,39.8938430000001],[113.377345,39.903843]]],[[[113.377345,39.903843],[113.35197390625,39.9084706855469],[113.32271609375,39.9292153144532],[113.284012480469,39.9464858222657],[113.234410429688,39.9584706855469],[113.134290800781,39.9026113105469],[113.042489042969,39.9192568183594],[112.942579375,39.9112282539062],[112.937345,39.8938430000001],[112.900487089844,39.9046584296875],[112.862806425781,39.9359059882813],[112.932806425781,39.9483803535157],[112.961617460938,39.9648818183594],[112.971883574219,39.9950759101563],[112.911790800781,40.0084011054688],[112.913873320313,40.028843],[112.910816679688,40.058843],[112.913089628906,40.0811550117188],[112.952806425781,40.0983803535156],[112.970282011719,40.1194155097656],[112.957345,40.153843],[112.982899199219,40.1493959785157],[112.992799101563,40.1370339179688],[113.012703886719,40.1395095039063],[113.039344511719,40.1238503242188],[113.052799101563,40.1406520820313],[113.079251738281,40.1373622871094],[113.092899199219,40.1482900214844],[113.102799101563,40.1606520820313],[113.122703886719,40.1581764960938],[113.149046660156,40.1736611152344],[113.182899199219,40.1593959785157],[113.205328398438,40.1462111640625],[113.241632109375,40.1752834296876],[113.253057890625,40.2024025703125],[113.281241484375,40.2249709296875],[113.283214140625,40.2408351875],[113.23361453125,40.2617360664063],[113.272899199219,40.2782900214845],[113.282200957031,40.2899062324219],[113.311951933594,40.2681728339844],[113.322860136719,40.2695290351563],[113.334935332031,40.2272988105469],[113.361790800781,40.2306398750001],[113.352899199219,40.2182900214844],[113.333448515625,40.2027150703125],[113.331722441406,40.188843],[113.332967558594,40.178843],[113.328951445313,40.1465554023438],[113.352506132813,40.1494850898438],[113.377345,40.143843],[113.381790800781,40.1282900214844],[113.394039335938,40.10745628125],[113.391722441406,40.0888430000001],[113.394154082031,40.0692958808594],[113.38146609375,40.05913596875],[113.393155546875,40.0287270332031],[113.356771269531,39.96683128125],[113.372899199219,39.9393959785156],[113.377345,39.903843]],[[113.306444121094,40.127387921875],[113.287193632813,40.1382900214844],[113.252999296875,40.0819948554688],[113.282899199219,40.0693959785157],[113.291790800781,40.0582900214844],[113.317345,40.053843],[113.323011503906,40.0992018867188],[113.306444121094,40.127387921875]]]]}},{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.323011503906,40.0992018867188],[113.317345,40.053843],[113.291790800781,40.0582900214844],[113.282899199219,40.0693959785157],[113.252999296875,40.0819948554688],[113.287193632813,40.1382900214844],[113.306444121094,40.127387921875],[113.323011503906,40.0992018867188]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.650975371094,37.8489772773438],[113.617703886719,37.8349379707032],[113.602345,37.840727765625],[113.574998808594,37.8304201484375],[113.563714628906,37.8502114082031],[113.557345,37.853843],[113.567345,37.8738430000001],[113.600975371094,37.8574745917969],[113.650975371094,37.8489772773438]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.647345,38.083843],[113.642081328125,38.05868675],[113.662535429688,38.0490334296875],[113.672154570313,38.0286525703126],[113.682808867188,38.0187807441407],[113.661881132813,38.0089052558594],[113.683138457031,37.9892104316406],[113.651295195313,37.9597072578126],[113.701990996094,37.8974135566407],[113.672110625,37.8697280097656],[113.67291140625,37.8495546699219],[113.632615996094,37.8218263984376],[113.541851835938,37.8182289863282],[113.48443484375,37.8486110664063],[113.472535429688,37.7986525703126],[113.452154570313,37.7890334296876],[113.427345,37.773843],[113.423531523438,37.7800307441407],[113.40281375,37.7927968574219],[113.393531523438,37.8200307441407],[113.363699980469,37.8301967597657],[113.353531523438,37.8600307441407],[113.313531523438,37.9065175605469],[113.330819121094,37.9598220039063],[113.337345,37.963843],[113.375203886719,37.9550710273438],[113.422345,37.9481044746094],[113.432345,37.9495815253907],[113.449866972656,37.9469924140625],[113.467835722656,38.0115126777345],[113.5064075,37.9963491035157],[113.499876738281,38.0405544257813],[113.54298953125,38.0581996894532],[113.561954375,38.0696401191407],[113.581832304688,38.0667018867188],[113.592857695313,38.0809841132813],[113.612857695313,38.0780287910156],[113.624329863281,38.0928908515626],[113.647345,38.083843]],[[113.507345,37.893843],[113.492733183594,37.8812538886719],[113.517345,37.8738430000001],[113.52170046875,37.8681996894532],[113.557345,37.853843],[113.563714628906,37.8502114082031],[113.574998808594,37.8304201484375],[113.602345,37.840727765625],[113.617703886719,37.8349379707032],[113.650975371094,37.8489772773438],[113.600975371094,37.8574745917969],[113.567345,37.8738430000001],[113.550159941406,37.8766591621094],[113.542345,37.8966005683594],[113.534530058594,37.8766591621094],[113.517345,37.8738430000001],[113.530162382813,37.9063503242188],[113.512408476563,37.9173830390626],[113.507345,37.893843]]]]}},{"type":"Feature","properties":{"name":"矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.517345,37.8738430000001],[113.492733183594,37.8812538886719],[113.507345,37.893843],[113.517345,37.8738430000001]]],[[[113.517345,37.8738430000001],[113.534530058594,37.8766591621094],[113.542345,37.8966005683594],[113.550159941406,37.8766591621094],[113.567345,37.8738430000001],[113.557345,37.853843],[113.52170046875,37.8681996894532],[113.517345,37.8738430000001]]],[[[113.507345,37.893843],[113.512408476563,37.9173830390626],[113.530162382813,37.9063503242188],[113.507345,37.893843]]]]}},{"type":"Feature","properties":{"name":"平定县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.834547148438,38.0910463691407],[113.851610136719,38.0681081367188],[113.870933867188,38.053734357422],[113.861373320313,37.9982021308594],[113.890035429688,37.9868141914063],[113.913079863281,37.9495778632813],[113.923055449219,37.9244728828125],[113.960094023438,37.8969216132813],[113.964928007813,37.8688430000001],[113.957178984375,37.823843],[113.999764433594,37.8069216132812],[114.041610136719,37.7757924628907],[114.029034453125,37.7497231269532],[113.983079863281,37.7372646308594],[113.991610136719,37.7181081367188],[113.997345,37.713843],[113.979149199219,37.6813405585938],[113.916322050781,37.7060390449219],[113.881173125,37.7112331367188],[113.825032988281,37.677368390625],[113.761832304688,37.6680287910157],[113.746263457031,37.6881996894532],[113.69170046875,37.6794863105469],[113.658546171875,37.6594863105469],[113.63170046875,37.6681996894531],[113.610767851563,37.6808266425782],[113.547127714844,37.6714223457032],[113.48170046875,37.6981996894531],[113.457345,37.713843],[113.44170046875,37.7381996894531],[113.427345,37.773843],[113.452154570313,37.7890334296876],[113.472535429688,37.7986525703126],[113.48443484375,37.8486110664063],[113.541851835938,37.8182289863282],[113.632615996094,37.8218263984376],[113.67291140625,37.8495546699219],[113.672110625,37.8697280097656],[113.701990996094,37.8974135566407],[113.651295195313,37.9597072578126],[113.683138457031,37.9892104316406],[113.661881132813,38.0089052558594],[113.682808867188,38.0187807441407],[113.672154570313,38.0286525703126],[113.662535429688,38.0490334296875],[113.642081328125,38.05868675],[113.647345,38.083843],[113.662806425781,38.0883803535157],[113.697345,38.1081618476563],[113.75127078125,38.0772756171875],[113.781883574219,38.0993056464844],[113.807345,38.113843],[113.811610136719,38.1081081367188],[113.834547148438,38.0910463691407]]]]}},{"type":"Feature","properties":{"name":"盂县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.727345,38.1738430000001],[113.715152617188,38.1704201484375],[113.723922148438,38.1616506171876],[113.76170046875,38.1681996894531],[113.827345,38.163843],[113.823985625,38.147202375],[113.807345,38.113843],[113.781883574219,38.0993056464844],[113.75127078125,38.0772756171875],[113.697345,38.1081618476563],[113.662806425781,38.0883803535157],[113.647345,38.083843],[113.624329863281,38.0928908515626],[113.612857695313,38.0780287910156],[113.592857695313,38.0809841132813],[113.581832304688,38.0667018867188],[113.561954375,38.0696401191407],[113.54298953125,38.0581996894532],[113.499876738281,38.0405544257813],[113.5064075,37.9963491035157],[113.467835722656,38.0115126777345],[113.449866972656,37.9469924140625],[113.432345,37.9495815253907],[113.422345,37.9481044746094],[113.375203886719,37.9550710273438],[113.337345,37.963843],[113.318377714844,37.9913161445313],[113.286571074219,37.9841860175781],[113.273260527344,38.0197585273438],[113.261429472656,38.0279274726563],[113.246800566406,38.0491139960938],[113.253638945313,38.0796169257813],[113.2120715625,38.095171125],[113.187310820313,38.059310529297],[113.159329863281,38.0497585273438],[113.112264433594,38.0804067207032],[113.083260527344,38.0579274726563],[113.057345,38.053843],[113.05298953125,38.059486310547],[113.04170046875,38.0681996894532],[113.03298953125,38.0794863105469],[113.00170046875,38.0881996894531],[112.964891386719,38.1104030585938],[112.952916289063,38.1396657539063],[112.933502226563,38.1367971015626],[112.91298953125,38.1527614570312],[112.933160429688,38.1683315253907],[112.931546660156,38.1792458320313],[112.967730742188,38.2355837226563],[113.02298953125,38.2581996894532],[113.03170046875,38.2694863105469],[113.069928007813,38.2989931464844],[113.10298953125,38.3081996894531],[113.146558867188,38.3253273750001],[113.141605253906,38.358843],[113.143865996094,38.3741408515625],[113.137345,38.413843],[113.193260527344,38.4179274726563],[113.211429472656,38.4297585273438],[113.271007109375,38.4391481757813],[113.277345,38.463843],[113.307122832031,38.483520734375],[113.363260527344,38.4979274726563],[113.389097929688,38.5147524238281],[113.419144316406,38.5214882636719],[113.470780058594,38.49980003125],[113.501898222656,38.5200637031251],[113.512386503906,38.5177126289063],[113.537345,38.5238430000001],[113.553033476563,38.4848891425781],[113.586009550781,38.4594362617188],[113.56170046875,38.4494863105469],[113.55298953125,38.4281996894531],[113.525775175781,38.4170619941406],[113.519427519531,38.3741005683594],[113.53170046875,38.3581996894531],[113.554456816406,38.3406337714844],[113.53298953125,38.3050429511719],[113.54170046875,38.2581996894532],[113.55298953125,38.2494863105469],[113.56170046875,38.2381996894531],[113.6471496875,38.2290407539063],[113.683922148438,38.2068593574219],[113.702857695313,38.2096572089844],[113.71170046875,38.1981996894531],[113.72298953125,38.1894863105469],[113.727345,38.1738430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.01205203125,36.1696254707031],[113.027345,36.1673647285156],[113.042379179688,36.1695864082031],[113.077345,36.163843],[113.083260527344,36.1597585273438],[113.092381621094,36.1353823066407],[113.137345,36.1238430000001],[113.177345,36.1538430000001],[113.171722441406,36.1088442207032],[113.175711699219,36.0767787910156],[113.148450957031,36.0427370429688],[113.122899199219,36.0222743964844],[113.136820097656,36.0003847480469],[113.164210234375,35.988843],[113.160863066406,35.9619362617188],[113.171790800781,35.9482900214844],[113.184742460938,35.9379189277344],[113.197345,35.8938430000001],[113.173470488281,35.8877162910156],[113.137345,35.863843],[113.121258574219,35.8846840644532],[113.04170046875,35.8981996894532],[113.03298953125,35.9094863105469],[113.01170046875,35.9181996894531],[112.989857207031,35.9313759589844],[112.957345,35.9238430000001],[112.961519804688,35.9396681953126],[112.979674101563,35.983843],[112.95861453125,36.0350905585938],[112.973170195313,36.0580178046875],[112.981571074219,36.1099843574219],[113.003983183594,36.1055556464844],[113.001356230469,36.1188430000001],[113.005186796875,36.1382228828126],[112.983392363281,36.1538430000001],[112.997345,36.163843],[113.01205203125,36.1696254707031]]]]}},{"type":"Feature","properties":{"name":"长子县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.871705351563,36.2622267890626],[112.882345,36.236977765625],[112.93134890625,36.2430727363282],[112.941790800781,36.2182900214844],[112.987345,36.213843],[112.993985625,36.200483625],[112.997345,36.163843],[112.983392363281,36.1538430000001],[113.005186796875,36.1382228828126],[113.001356230469,36.1188430000001],[113.003983183594,36.1055556464844],[112.981571074219,36.1099843574219],[112.973170195313,36.0580178046875],[112.95861453125,36.0350905585938],[112.979674101563,35.983843],[112.961519804688,35.9396681953126],[112.957345,35.9238430000001],[112.870928984375,35.9300893378906],[112.87369265625,35.9764723945313],[112.787345,35.983843],[112.781429472656,35.9879274726563],[112.74384890625,35.996352765625],[112.717669707031,36.0133998847657],[112.67435671875,36.0036891914063],[112.651007109375,36.037505109375],[112.612215605469,36.0642885566407],[112.573260527344,36.0479274726562],[112.531429472656,36.0397585273438],[112.517345,36.033843],[112.484537382813,36.0390138984375],[112.496024199219,36.0902529121094],[112.543260527344,36.1079274726563],[112.566165800781,36.1228432441406],[112.549595976563,36.1622927070313],[112.557345,36.1938430000001],[112.596629667969,36.2001760078125],[112.64047,36.1947231269532],[112.728717070313,36.2199538398438],[112.761790800781,36.2393959785157],[112.822899199219,36.2482900214844],[112.871705351563,36.2622267890626]]]]}},{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.1437903125,36.1522194648438],[113.137345,36.1238430000001],[113.092381621094,36.1353823066407],[113.083260527344,36.1597585273438],[113.077345,36.163843],[113.071688261719,36.1785597968751],[113.073587675781,36.1938430000001],[113.070548125,36.2182900214844],[113.144080839844,36.2078005195312],[113.140479765625,36.178843],[113.1437903125,36.1522194648438]]]]}},{"type":"Feature","properties":{"name":"壶关县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297345,36.183843],[113.309537382813,36.1804201484376],[113.300767851563,36.1716506171875],[113.297345,36.183843]]],[[[113.297345,36.183843],[113.272899199219,36.1642665839844],[113.291790800781,36.1482900214844],[113.339932890625,36.1345253730469],[113.372899199219,36.0893959785156],[113.387457304688,36.03847190625],[113.422345,36.0179653144531],[113.44822390625,36.0331777167969],[113.502899199219,35.9893959785157],[113.511947050781,35.9679238105469],[113.548507109375,35.9819777656251],[113.57373171875,35.9671498847656],[113.592799101563,35.9695217109376],[113.6067590625,35.9520864082032],[113.637345,35.9638430000001],[113.649439726563,35.9554921699219],[113.641224394531,35.918843],[113.643499785156,35.908696515625],[113.629381132813,35.8631508613282],[113.657345,35.843843],[113.643880644531,35.8263991523438],[113.617047148438,35.8303652167969],[113.577345,35.823843],[113.56170046875,35.8281996894532],[113.547122832031,35.8470851875001],[113.436619902344,35.8658571601563],[113.412857695313,35.83507346875],[113.377838164063,35.8402480292969],[113.340965605469,35.8880190253906],[113.272120390625,35.8679457832032],[113.235484648438,35.8900453925782],[113.222203398438,35.8880825019531],[113.197345,35.8938430000001],[113.184742460938,35.9379189277344],[113.171790800781,35.9482900214844],[113.160863066406,35.9619362617188],[113.164210234375,35.988843],[113.136820097656,36.0003847480469],[113.122899199219,36.0222743964844],[113.148450957031,36.0427370429688],[113.175711699219,36.0767787910156],[113.171722441406,36.1088442207032],[113.177345,36.1538430000001],[113.197782011719,36.165044171875],[113.173978300781,36.1965163398438],[113.193804960938,36.2073830390626],[113.197345,36.213843],[113.237047148438,36.2073207832032],[113.261832304688,36.2109841132813],[113.27170046875,36.1981996894532],[113.29298953125,36.1894863105469],[113.297345,36.183843]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.062899199219,36.3742665839844],[113.092511015625,36.3681410957031],[113.136229277344,36.3849452949219],[113.120365019531,36.2579750800781],[113.132345,36.2594643378907],[113.142347441406,36.2582204414063],[113.187345,36.263843],[113.190704375,36.247202375],[113.204989042969,36.2292201972657],[113.197345,36.213843],[113.193804960938,36.2073830390626],[113.173978300781,36.1965163398438],[113.197782011719,36.165044171875],[113.177345,36.1538430000001],[113.137345,36.1238430000001],[113.1437903125,36.1522194648438],[113.140479765625,36.178843],[113.144080839844,36.2078005195312],[113.070548125,36.2182900214844],[113.073587675781,36.1938430000001],[113.071688261719,36.1785597968751],[113.077345,36.163843],[113.042379179688,36.1695864082031],[113.027345,36.1673647285156],[113.01205203125,36.1696254707031],[112.997345,36.163843],[112.993985625,36.200483625],[112.987345,36.213843],[113.013079863281,36.2281081367187],[113.021610136719,36.2795778632813],[113.040933867188,36.2939516425782],[113.026143828125,36.379858625],[113.001610136719,36.3981081367188],[112.997345,36.403843],[113.01062625,36.41056175],[113.017345,36.4238430000001],[113.079847441406,36.4339186835937],[113.083011503906,36.4084828925782],[113.062899199219,36.3742665839844]]]]}},{"type":"Feature","properties":{"name":"黎城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.547345,36.493843],[113.535152617188,36.4904201484375],[113.543922148438,36.4816506171876],[113.573985625,36.4804836250001],[113.580704375,36.457202375],[113.587345,36.453843],[113.580484648438,36.4442702460938],[113.544285917969,36.4514235664063],[113.520404082031,36.4362624335938],[113.46580203125,36.4470522285157],[113.434715605469,36.3934340644532],[113.402056914063,36.399887921875],[113.387345,36.393843],[113.38298953125,36.4194863105469],[113.343734160156,36.4497866035157],[113.320633574219,36.4463735175782],[113.302733183594,36.4901100898438],[113.28298953125,36.4781996894531],[113.237345,36.473843],[113.243424101563,36.4893080878907],[113.22170046875,36.4981996894532],[113.20298953125,36.5094863105469],[113.18170046875,36.5181996894531],[113.168992949219,36.5784194160156],[113.194520292969,36.6207387519532],[113.212345,36.6181044746094],[113.224561796875,36.6199098945313],[113.217345,36.663843],[113.242806425781,36.6783803535157],[113.251883574219,36.6993056464844],[113.304671660156,36.7110109687501],[113.299915800781,36.7576723457031],[113.312806425781,36.7683803535157],[113.321883574219,36.7993056464844],[113.351585722656,36.8239784980469],[113.327965117188,36.8652211738281],[113.357345,36.873843],[113.410086699219,36.8648830390625],[113.44298953125,36.8394863105469],[113.457464628906,36.8207338691407],[113.49298953125,36.7994863105469],[113.503153105469,36.7629848457031],[113.537345,36.743843],[113.526217070313,36.729946515625],[113.511986113281,36.7281764960938],[113.478516875,36.7478493476563],[113.453082304688,36.7045815253907],[113.50150515625,36.7106044746094],[113.504154082031,36.6892958808594],[113.462899199219,36.6562587714844],[113.483929472656,36.6362563300782],[113.543455839844,36.6192372871094],[113.530096464844,36.5965114570313],[113.591790800781,36.5531447578125],[113.582899199219,36.5482900214844],[113.540704375,36.5391603828125],[113.555032988281,36.5276869941407],[113.547345,36.493843]]]]}},{"type":"Feature","properties":{"name":"潞城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.302733183594,36.4901100898438],[113.320633574219,36.4463735175782],[113.343734160156,36.4497866035157],[113.38298953125,36.4194863105469],[113.387345,36.393843],[113.393350859375,36.3716921210938],[113.431610136719,36.3432314277344],[113.423079863281,36.3281081367188],[113.401610136719,36.3195778632813],[113.380907011719,36.2620742011719],[113.358253203125,36.2316200996094],[113.299700957031,36.267856671875],[113.236561308594,36.2569863105469],[113.221610136719,36.2681081367188],[113.212601347656,36.280219953125],[113.187345,36.263843],[113.142347441406,36.2582204414063],[113.132345,36.2594643378907],[113.120365019531,36.2579750800781],[113.136229277344,36.3849452949219],[113.092511015625,36.3681410957031],[113.062899199219,36.3742665839844],[113.083011503906,36.4084828925782],[113.079847441406,36.4339186835937],[113.017345,36.4238430000001],[112.98271609375,36.4301601386719],[112.999874296875,36.4469448066406],[113.125484648438,36.4743434882813],[113.16580203125,36.4457558417969],[113.237345,36.473843],[113.28298953125,36.4781996894531],[113.302733183594,36.4901100898438]]]]}},{"type":"Feature","properties":{"name":"平顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297345,36.183843],[113.300767851563,36.1716506171875],[113.309537382813,36.1804201484376],[113.29298953125,36.1894863105469],[113.27170046875,36.1981996894532],[113.261832304688,36.2109841132813],[113.237047148438,36.2073207832032],[113.197345,36.213843],[113.204989042969,36.2292201972657],[113.190704375,36.247202375],[113.187345,36.263843],[113.212601347656,36.280219953125],[113.221610136719,36.2681081367188],[113.236561308594,36.2569863105469],[113.299700957031,36.267856671875],[113.358253203125,36.2316200996094],[113.380907011719,36.2620742011719],[113.401610136719,36.3195778632813],[113.423079863281,36.3281081367188],[113.431610136719,36.3432314277344],[113.393350859375,36.3716921210938],[113.387345,36.393843],[113.402056914063,36.399887921875],[113.434715605469,36.3934340644532],[113.46580203125,36.4470522285157],[113.520404082031,36.4362624335938],[113.544285917969,36.4514235664063],[113.580484648438,36.4442702460938],[113.587345,36.453843],[113.613333769531,36.4640590644531],[113.66170046875,36.4281996894532],[113.70298953125,36.4194863105469],[113.71170046875,36.3981996894532],[113.737345,36.363843],[113.727345,36.363843],[113.727345,36.3538430000001],[113.722806425781,36.3083803535157],[113.711883574219,36.2993056464844],[113.699168730469,36.2419716621094],[113.671151152344,36.2186977363282],[113.698233671875,36.2069521308594],[113.675455351563,36.1795290351563],[113.650816679688,36.168843],[113.701883574219,36.1466957832032],[113.691800566406,36.1263503242188],[113.657576933594,36.12983909375],[113.681663847656,36.0657363105469],[113.652806425781,36.0417678046875],[113.661883574219,36.0283803535157],[113.691136503906,36.0156935859375],[113.693807402344,35.9895021796876],[113.672345,35.9873146796875],[113.63310671875,35.991313703125],[113.631807890625,35.9785781074219],[113.637345,35.9638430000001],[113.6067590625,35.9520864082032],[113.592799101563,35.9695217109376],[113.57373171875,35.9671498847656],[113.548507109375,35.9819777656251],[113.511947050781,35.9679238105469],[113.502899199219,35.9893959785157],[113.44822390625,36.0331777167969],[113.422345,36.0179653144531],[113.387457304688,36.03847190625],[113.372899199219,36.0893959785156],[113.339932890625,36.1345253730469],[113.291790800781,36.1482900214844],[113.272899199219,36.1642665839844],[113.297345,36.183843]]]]}},{"type":"Feature","properties":{"name":"沁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.697345,36.9238430000001],[112.700767851563,36.9116506171875],[112.709537382813,36.9204201484375],[112.706151152344,36.93483909375],[112.762899199219,36.8893959785157],[112.771790800781,36.8682900214844],[112.793917265625,36.8306508613281],[112.765130644531,36.7639626289063],[112.797345,36.7450258613281],[112.824871855469,36.7612062812501],[112.852899199219,36.7493959785156],[112.872100859375,36.7381081367188],[112.897345,36.743843],[112.880784941406,36.6859267402344],[112.84373171875,36.6905361152344],[112.822899199219,36.6782900214844],[112.783311796875,36.6616091132813],[112.781722441406,36.648843],[112.783016386719,36.6384511542969],[112.761790800781,36.6093959785157],[112.74697390625,36.5575698066407],[112.70088015625,36.5206594062501],[112.707345,36.5038430000001],[112.681790800781,36.4993959785157],[112.669056425781,36.4405361152344],[112.588914824219,36.4293959785157],[112.56416140625,36.4603066230469],[112.532899199219,36.4482900214844],[112.487345,36.443843],[112.478839140625,36.4956252265625],[112.503416777344,36.5287770820313],[112.478768339844,36.5696401191406],[112.484202910156,36.6064174628907],[112.51298953125,36.6181996894532],[112.53170046875,36.6518276191406],[112.49170046875,36.6681996894532],[112.480667753906,36.6824941230469],[112.488922148438,36.7383498359376],[112.52677859375,36.753843],[112.521605253906,36.788843],[112.526038847656,36.818843],[112.52156375,36.8491347480469],[112.537860136719,36.8905922675781],[112.49170046875,36.9181996894532],[112.467345,36.9538430000001],[112.50002078125,36.9458168769532],[112.521898222656,36.960063703125],[112.533016386719,36.9575722480469],[112.541429472656,36.9697585273438],[112.547345,36.973843],[112.551429472656,36.9679274726563],[112.590924101563,36.9577919746094],[112.62384890625,36.936352765625],[112.662345,36.9277223945313],[112.679144316406,36.9314882636719],[112.697345,36.9238430000001]]]]}},{"type":"Feature","properties":{"name":"沁源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.313531523438,36.9500307441406],[112.332816191406,36.9364919257812],[112.345855742188,36.9576552558594],[112.383531523438,36.9500307441406],[112.428179960938,36.9300307441407],[112.453531523438,36.9376552558594],[112.461158476563,36.9500307441406],[112.467345,36.9538430000001],[112.49170046875,36.9181996894532],[112.537860136719,36.8905922675781],[112.52156375,36.8491347480469],[112.526038847656,36.818843],[112.521605253906,36.788843],[112.52677859375,36.753843],[112.488922148438,36.7383498359376],[112.480667753906,36.6824941230469],[112.49170046875,36.6681996894532],[112.53170046875,36.6518276191406],[112.51298953125,36.6181996894532],[112.484202910156,36.6064174628907],[112.478768339844,36.5696401191406],[112.503416777344,36.5287770820313],[112.478839140625,36.4956252265625],[112.487345,36.443843],[112.493587675781,36.4184291816407],[112.479456816406,36.3967287421876],[112.483616972656,36.3781728339844],[112.465513945313,36.3656740546875],[112.453260527344,36.3479274726563],[112.437345,36.3438430000001],[112.422628203125,36.3381862617188],[112.341834746094,36.3482350898438],[112.332899199219,36.3593959785156],[112.281790800781,36.3782900214844],[112.268450957031,36.3949489570312],[112.249251738281,36.4103237128906],[112.201163359375,36.4043422675782],[112.203016386719,36.4192372871094],[112.177345,36.453843],[112.171676054688,36.4991677070313],[112.09267703125,36.5546962714844],[112.072899199219,36.5793959785157],[112.037345,36.5838430000001],[112.031214628906,36.6088014960938],[112.036900664063,36.6341677070312],[112.021429472656,36.6579274726562],[112.010184355469,36.6879824042969],[111.987345,36.6938430000001],[111.996370878906,36.7131618476562],[111.990460234375,36.7288430000001],[111.996890898438,36.7459047675781],[111.98029421875,36.7683998847657],[111.984229765625,36.778843],[111.973922148438,36.8061891914063],[112.00630984375,36.8246559882813],[111.997345,36.8438430000001],[112.013170195313,36.8480178046875],[112.0230871875,36.8856117988282],[112.067554960938,36.8768251777344],[112.084320097656,36.8888430000001],[112.069503203125,36.8994631171876],[112.076431914063,36.9345290351563],[112.054959746094,36.9683522773438],[112.123995390625,36.982192609375],[112.151519804688,36.9996681953125],[112.167345,37.003843],[112.213531523438,37.0000307441407],[112.239969511719,36.9814675117188],[112.273531523438,36.9700307441407],[112.291158476563,36.9576552558594],[112.313531523438,36.9500307441406]]]]}},{"type":"Feature","properties":{"name":"屯留县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.724263945313,36.4827150703125],[112.766951933594,36.4663063789063],[112.792579375,36.4694936347657],[112.862110625,36.4481923652344],[112.882117949219,36.4506801582032],[112.916688261719,36.3937660957032],[112.997345,36.403843],[113.001610136719,36.3981081367188],[113.026143828125,36.379858625],[113.040933867188,36.2939516425782],[113.021610136719,36.2795778632813],[113.013079863281,36.2281081367187],[112.987345,36.213843],[112.941790800781,36.2182900214844],[112.93134890625,36.2430727363282],[112.882345,36.236977765625],[112.871705351563,36.2622267890626],[112.822899199219,36.2482900214844],[112.761790800781,36.2393959785157],[112.728717070313,36.2199538398438],[112.64047,36.1947231269532],[112.596629667969,36.2001760078125],[112.557345,36.1938430000001],[112.564588652344,36.2703212714844],[112.540418730469,36.2575319648437],[112.476121855469,36.2600807929688],[112.437345,36.3438430000001],[112.453260527344,36.3479274726563],[112.465513945313,36.3656740546875],[112.483616972656,36.3781728339844],[112.479456816406,36.3967287421876],[112.493587675781,36.4184291816407],[112.487345,36.443843],[112.532899199219,36.4482900214844],[112.56416140625,36.4603066230469],[112.588914824219,36.4293959785157],[112.669056425781,36.4405361152344],[112.681790800781,36.4993959785157],[112.707345,36.5038430000001],[112.724263945313,36.4827150703125]]]]}},{"type":"Feature","properties":{"name":"武乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.697345,36.9238430000001],[112.709537382813,36.9204201484375],[112.700767851563,36.9116506171875],[112.697345,36.9238430000001]]],[[[112.697345,36.9238430000001],[112.679144316406,36.9314882636719],[112.662345,36.9277223945313],[112.62384890625,36.936352765625],[112.590924101563,36.9577919746094],[112.551429472656,36.9679274726563],[112.547345,36.973843],[112.542899199219,36.9793959785156],[112.511790800781,36.9982900214844],[112.481615019531,37.0479726386719],[112.483587675781,37.063843],[112.481241484375,37.0827150703125],[112.456239042969,37.1027370429688],[112.447345,37.1138430000001],[112.513961210938,37.1247866035156],[112.511522246094,37.1082729316406],[112.53298953125,37.0994863105469],[112.548426542969,37.0794863105469],[112.59298953125,37.0881996894531],[112.647345,37.123843],[112.658526640625,37.1093581367188],[112.731004667969,37.0829140449219],[112.733822050781,37.063843],[112.731522246094,37.0482729316407],[112.759659453125,37.0367568183594],[112.78170046875,37.0081996894532],[112.83298953125,36.9994863105469],[112.85170046875,36.9881996894531],[112.878448515625,36.9772524238282],[112.857054472656,36.9417848945313],[112.874486113281,36.9283315253906],[112.869163847656,36.8923220039063],[112.908856230469,36.8628945136719],[113.009227324219,36.937309796875],[113.093558378906,36.91776878125],[113.14298953125,36.9281996894532],[113.151956816406,36.9501100898438],[113.184046660156,36.9307521796875],[113.217345,36.943843],[113.226175566406,36.9310524726563],[113.273260527344,36.9579274726563],[113.293892851563,36.9878102851563],[113.321429472656,36.9479274726563],[113.359586210938,36.9261476875],[113.364647246094,36.9035732246094],[113.357345,36.873843],[113.327965117188,36.8652211738281],[113.351585722656,36.8239784980469],[113.321883574219,36.7993056464844],[113.312806425781,36.7683803535157],[113.299915800781,36.7576723457031],[113.304671660156,36.7110109687501],[113.251883574219,36.6993056464844],[113.242806425781,36.6783803535157],[113.217345,36.663843],[113.189075957031,36.6686452460938],[113.17298953125,36.6894863105469],[113.128912382813,36.7235085273438],[113.091773710938,36.7180202460938],[113.080753203125,36.7449477363281],[113.052735625,36.7280458808594],[113.025889921875,36.7320131660156],[113.000767851563,36.7168593574219],[112.943975859375,36.7252516914063],[112.932857695313,36.7396572089845],[112.922203398438,36.7380825019532],[112.897345,36.743843],[112.872100859375,36.7381081367188],[112.852899199219,36.7493959785156],[112.824871855469,36.7612062812501],[112.797345,36.7450258613281],[112.765130644531,36.7639626289063],[112.793917265625,36.8306508613281],[112.771790800781,36.8682900214844],[112.762899199219,36.8893959785157],[112.706151152344,36.93483909375],[112.697345,36.9238430000001]]]]}},{"type":"Feature","properties":{"name":"襄垣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.080753203125,36.7449477363281],[113.091773710938,36.7180202460938],[113.128912382813,36.7235085273438],[113.17298953125,36.6894863105469],[113.189075957031,36.6686452460938],[113.217345,36.663843],[113.224561796875,36.6199098945313],[113.212345,36.6181044746094],[113.194520292969,36.6207387519532],[113.168992949219,36.5784194160156],[113.18170046875,36.5181996894531],[113.20298953125,36.5094863105469],[113.22170046875,36.4981996894532],[113.243424101563,36.4893080878907],[113.237345,36.473843],[113.16580203125,36.4457558417969],[113.125484648438,36.4743434882813],[112.999874296875,36.4469448066406],[112.98271609375,36.4301601386719],[113.017345,36.4238430000001],[113.01062625,36.41056175],[112.997345,36.403843],[112.916688261719,36.3937660957032],[112.882117949219,36.4506801582032],[112.862110625,36.4481923652344],[112.792579375,36.4694936347657],[112.766951933594,36.4663063789063],[112.724263945313,36.4827150703125],[112.707345,36.5038430000001],[112.70088015625,36.5206594062501],[112.74697390625,36.5575698066407],[112.761790800781,36.6093959785157],[112.783016386719,36.6384511542969],[112.781722441406,36.648843],[112.783311796875,36.6616091132813],[112.822899199219,36.6782900214844],[112.84373171875,36.6905361152344],[112.880784941406,36.6859267402344],[112.897345,36.743843],[112.922203398438,36.7380825019532],[112.932857695313,36.7396572089845],[112.943975859375,36.7252516914063],[113.000767851563,36.7168593574219],[113.025889921875,36.7320131660156],[113.052735625,36.7280458808594],[113.080753203125,36.7449477363281]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.900628691406,35.5715346503907],[112.919132109375,35.5365651679688],[112.902523222656,35.5186379218751],[112.871312285156,35.5198744941406],[112.900706816406,35.4771572089844],[112.882528105469,35.438637921875],[112.852406035156,35.4398317695313],[112.847345,35.423843],[112.811236601563,35.4572988105469],[112.8226965625,35.4789577460937],[112.752535429688,35.5120693183594],[112.77994265625,35.5604055],[112.810106230469,35.5444448066407],[112.850628691406,35.5881801582031],[112.88134890625,35.5893984199219],[112.900628691406,35.5715346503907]]]]}},{"type":"Feature","properties":{"name":"高平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.870928984375,35.9300893378906],[112.957345,35.9238430000001],[112.989857207031,35.9313759589844],[113.01170046875,35.9181996894531],[113.03298953125,35.9094863105469],[113.04170046875,35.8981996894532],[113.121258574219,35.8846840644532],[113.137345,35.863843],[113.132166777344,35.8309804511719],[113.100804472656,35.8093276191406],[113.111429472656,35.7679274726563],[113.1590246875,35.7407607246094],[113.143260527344,35.7179274726563],[113.121051054688,35.7096169257813],[113.126158476563,35.6868325019531],[113.101073027344,35.6695131660156],[113.105501738281,35.6497585273438],[113.091429472656,35.6579274726563],[113.073892851563,35.6833266425781],[113.063260527344,35.6679274726562],[113.057345,35.6638430000001],[113.047345,35.6638430000001],[113.047345,35.653843],[113.037345,35.653843],[113.020772734375,35.6585805488282],[113.034307890625,35.6694191718751],[112.988914824219,35.6982900214844],[112.963704863281,35.6668080878907],[112.918844023438,35.672387921875],[112.865345488281,35.7038356757813],[112.852899199219,35.6882900214844],[112.822928496094,35.6756606269532],[112.741346464844,35.6858083320313],[112.743023710938,35.6992958808594],[112.731790800781,35.7082900214844],[112.727345,35.713843],[112.723170195313,35.7396681953125],[112.703392363281,35.753843],[112.725186796875,35.7694631171875],[112.720831328125,35.7915077949219],[112.701649199219,35.7877175117188],[112.693170195313,35.807464826172],[112.738604765625,35.8194521308594],[112.751519804688,35.8436830878907],[112.731519804688,35.8580178046875],[112.723170195313,35.8736830878907],[112.747135039063,35.8908608222657],[112.770084257813,35.8863259101563],[112.783592558594,35.9375258613281],[112.778631621094,35.9626381660157],[112.787345,35.983843],[112.87369265625,35.9764723945313],[112.870928984375,35.9300893378906]]]]}},{"type":"Feature","properties":{"name":"陵川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.287345,35.4338430000001],[113.299537382813,35.4304201484375],[113.290767851563,35.4216506171876],[113.287345,35.4338430000001]]],[[[113.313922148438,35.4660353828125],[113.317345,35.453843],[113.305152617188,35.4572658515626],[113.313922148438,35.4660353828125]]],[[[113.287345,35.4338430000001],[113.255513945313,35.4420119453125],[113.227345,35.453843],[113.22271609375,35.4592153144531],[113.211917753906,35.4685195136719],[113.213524199219,35.4885195136719],[113.196600371094,35.5030995917969],[113.17572390625,35.5273317695313],[113.14197390625,35.5484706855469],[113.13271609375,35.5592153144532],[113.063687773438,35.6087819648438],[113.04197390625,35.6184706855469],[113.029620390625,35.6328090644532],[113.037345,35.653843],[113.047345,35.653843],[113.057345,35.653843],[113.057345,35.6638430000001],[113.063260527344,35.6679274726562],[113.073892851563,35.6833266425781],[113.091429472656,35.6579274726563],[113.105501738281,35.6497585273438],[113.101073027344,35.6695131660156],[113.126158476563,35.6868325019531],[113.121051054688,35.7096169257813],[113.143260527344,35.7179274726563],[113.1590246875,35.7407607246094],[113.111429472656,35.7679274726563],[113.100804472656,35.8093276191406],[113.132166777344,35.8309804511719],[113.137345,35.863843],[113.173470488281,35.8877162910156],[113.197345,35.8938430000001],[113.222203398438,35.8880825019531],[113.235484648438,35.8900453925782],[113.272120390625,35.8679457832032],[113.340965605469,35.8880190253906],[113.377838164063,35.8402480292969],[113.412857695313,35.83507346875],[113.436619902344,35.8658571601563],[113.547122832031,35.8470851875001],[113.56170046875,35.8281996894532],[113.577345,35.823843],[113.581519804688,35.8080178046876],[113.594320097656,35.798843],[113.580799589844,35.7891518378907],[113.59369265625,35.768843],[113.577821074219,35.7438430000001],[113.594925566406,35.7169020820313],[113.5907434375,35.6957411933594],[113.621519804688,35.6736830878906],[113.611214628906,35.6296681953125],[113.56818484375,35.6387197089844],[113.547186308594,35.6680178046875],[113.541322050781,35.6490236640626],[113.547459746094,35.6179555488281],[113.533170195313,35.5980178046875],[113.500252714844,35.5744252753907],[113.50341921875,35.5584096503907],[113.49127078125,35.5392763496094],[113.496038847656,35.5151491523438],[113.472340117188,35.5198317695313],[113.412349882813,35.5078542304688],[113.390484648438,35.5121742988281],[113.377345,35.493843],[113.332347441406,35.4682619453125],[113.311363554688,35.4799697089844],[113.291180449219,35.4783473945313],[113.292760039063,35.4586708808594],[113.287345,35.4338430000001]]]]}},{"type":"Feature","properties":{"name":"沁水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.607345,35.5538430000001],[112.617345,35.533843],[112.583914824219,35.538843],[112.607345,35.5538430000001]]],[[[112.651007109375,36.037505109375],[112.67435671875,36.0036891914063],[112.717669707031,36.0133998847657],[112.74384890625,35.996352765625],[112.781429472656,35.9879274726563],[112.787345,35.983843],[112.778631621094,35.9626381660157],[112.783592558594,35.9375258613281],[112.770084257813,35.8863259101563],[112.747135039063,35.8908608222657],[112.723170195313,35.8736830878907],[112.731519804688,35.8580178046875],[112.751519804688,35.8436830878907],[112.738604765625,35.8194521308594],[112.693170195313,35.807464826172],[112.701649199219,35.7877175117188],[112.720831328125,35.7915077949219],[112.725186796875,35.7694631171875],[112.703392363281,35.753843],[112.723170195313,35.7396681953125],[112.727345,35.713843],[112.667266875,35.7063283515626],[112.642899199219,35.6954116035157],[112.667337675781,35.6758412910156],[112.651790800781,35.6493959785157],[112.622845488281,35.57815940625],[112.611829863281,35.5795290351563],[112.607345,35.563843],[112.572379179688,35.5580995917969],[112.562345,35.5595815253907],[112.552345,35.5581044746094],[112.537345,35.5603212714844],[112.522345,35.5581044746094],[112.502345,35.561059796875],[112.472857695313,35.5567018867188],[112.459427519531,35.5741005683594],[112.463140898438,35.599233625],[112.451549101563,35.618452375],[112.453463164063,35.6314028144532],[112.43170046875,35.6481996894531],[112.42298953125,35.659486310547],[112.366307402344,35.6801674628907],[112.347345,35.6773647285157],[112.322345,35.6810597968751],[112.295264921875,35.6770571113281],[112.26978640625,35.6440492988282],[112.217345,35.6517983222657],[112.188836699219,35.6475856757813],[112.195418730469,35.6030495429687],[112.213160429688,35.5893544746094],[112.210311308594,35.5700746894532],[112.233721953125,35.5384987617188],[112.185496855469,35.5187624335938],[112.171204863281,35.4838393378907],[112.113880644531,35.4923110175782],[112.10298953125,35.4781996894532],[112.09170046875,35.4694863105469],[112.05298953125,35.3981996894532],[112.017345,35.3938430000001],[112.00170046875,35.3981996894532],[111.967345,35.423843],[111.956734648438,35.4820156074219],[111.941693144531,35.5089736152344],[111.953524199219,35.5191664863282],[111.951942167969,35.538843],[111.954276152344,35.5678713203125],[111.94197390625,35.5784706855469],[111.93271609375,35.6026247382813],[111.953470488281,35.6398232246094],[111.9519153125,35.6591970039063],[111.98271609375,35.6684706855469],[111.99197390625,35.6792153144532],[112.024483671875,35.7072243476562],[112.021060820313,35.7498146796875],[112.051846953125,35.7763368964844],[112.021741972656,35.8187990546875],[112.036766386719,35.8457265449219],[112.027345,35.8538430000001],[112.035553007813,35.8657314277344],[112.071429472656,35.8379274726563],[112.123260527344,35.8297585273437],[112.177318144531,35.8164809394532],[112.221429472656,35.8272145820313],[112.200318632813,35.8596340156251],[112.151429472656,35.8779274726563],[112.137345,35.903843],[112.172830839844,35.9119033027344],[112.302298613281,35.8957277656251],[112.337345,35.9000868964844],[112.385806914063,35.8940590644531],[112.479732695313,35.9501015449219],[112.525404082031,35.9693459296876],[112.517345,36.033843],[112.531429472656,36.0397585273438],[112.573260527344,36.0479274726562],[112.612215605469,36.0642885566407],[112.651007109375,36.037505109375]]]]}},{"type":"Feature","properties":{"name":"阳城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.287345,35.223843],[112.283922148438,35.2116506171875],[112.275152617188,35.2204201484376],[112.287345,35.223843]]],[[[112.623922148438,35.2960353828126],[112.627345,35.2838430000001],[112.615152617188,35.2872658515625],[112.623922148438,35.2960353828126]]],[[[112.617345,35.443843],[112.629537382813,35.4404201484375],[112.620767851563,35.4316506171875],[112.617345,35.443843]]],[[[112.617345,35.443843],[112.611065703125,35.4401210761719],[112.599830351563,35.4211659980469],[112.610189238281,35.3909975410156],[112.568392363281,35.4053517890625],[112.574437285156,35.3877504707032],[112.557345,35.383843],[112.553922148438,35.3960353828125],[112.545152617188,35.3872658515625],[112.557345,35.383843],[112.557345,35.373843],[112.587345,35.373843],[112.587345,35.3638430000001],[112.575152617188,35.3604201484375],[112.583922148438,35.3516506171875],[112.587345,35.3638430000001],[112.599185820313,35.3578530097656],[112.589896269531,35.3388283515625],[112.609720488281,35.2989455390625],[112.599246855469,35.2774965644532],[112.617345,35.273843],[112.611824980469,35.2485366035157],[112.64197390625,35.2350844550781],[112.5566809375,35.2158046699219],[112.482489042969,35.2292568183594],[112.472345,35.2284413886719],[112.462345,35.2292446113281],[112.444410429688,35.2278041816407],[112.3955090625,35.2411879707031],[112.37271609375,35.2284706855469],[112.287345,35.223843],[112.297479277344,35.2479714179688],[112.273973417969,35.2579274726563],[112.232345,35.2308193183594],[112.197428007813,35.2535561347656],[112.132957792969,35.2701015449219],[112.115545683594,35.2661977363282],[112.082623320313,35.2800258613282],[112.065545683594,35.2761977363281],[112.047345,35.2838430000001],[112.063861113281,35.3088356757813],[112.043875761719,35.3395290351563],[112.021429472656,35.3479274726563],[112.017345,35.3938430000001],[112.05298953125,35.3981996894532],[112.09170046875,35.4694863105469],[112.10298953125,35.4781996894532],[112.113880644531,35.4923110175782],[112.171204863281,35.4838393378907],[112.185496855469,35.5187624335938],[112.233721953125,35.5384987617188],[112.210311308594,35.5700746894532],[112.213160429688,35.5893544746094],[112.195418730469,35.6030495429687],[112.188836699219,35.6475856757813],[112.217345,35.6517983222657],[112.26978640625,35.6440492988282],[112.295264921875,35.6770571113281],[112.322345,35.6810597968751],[112.347345,35.6773647285157],[112.366307402344,35.6801674628907],[112.42298953125,35.659486310547],[112.43170046875,35.6481996894531],[112.453463164063,35.6314028144532],[112.451549101563,35.618452375],[112.463140898438,35.599233625],[112.459427519531,35.5741005683594],[112.472857695313,35.5567018867188],[112.502345,35.561059796875],[112.522345,35.5581044746094],[112.537345,35.5603212714844],[112.552345,35.5581044746094],[112.562345,35.5595815253907],[112.572379179688,35.5580995917969],[112.607345,35.563843],[112.607345,35.5538430000001],[112.583914824219,35.538843],[112.617345,35.533843],[112.608319121094,35.5145241523437],[112.614229765625,35.498843],[112.604146757813,35.4720925117188],[112.617345,35.443843]]]]}},{"type":"Feature","properties":{"name":"泽州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.587345,35.3638430000001],[112.583922148438,35.3516506171875],[112.575152617188,35.3604201484375],[112.587345,35.3638430000001]]],[[[112.557345,35.383843],[112.545152617188,35.3872658515625],[112.553922148438,35.3960353828125],[112.557345,35.383843]]],[[[113.057345,35.653843],[113.047345,35.653843],[113.047345,35.6638430000001],[113.057345,35.6638430000001],[113.057345,35.653843]]],[[[112.587345,35.3638430000001],[112.587345,35.373843],[112.557345,35.373843],[112.557345,35.383843],[112.574437285156,35.3877504707032],[112.568392363281,35.4053517890625],[112.610189238281,35.3909975410156],[112.599830351563,35.4211659980469],[112.611065703125,35.4401210761719],[112.617345,35.443843],[112.620767851563,35.4316506171875],[112.629537382813,35.4404201484375],[112.617345,35.443843],[112.604146757813,35.4720925117188],[112.614229765625,35.498843],[112.608319121094,35.5145241523437],[112.617345,35.533843],[112.607345,35.5538430000001],[112.607345,35.563843],[112.611829863281,35.5795290351563],[112.622845488281,35.57815940625],[112.651790800781,35.6493959785157],[112.667337675781,35.6758412910156],[112.642899199219,35.6954116035157],[112.667266875,35.7063283515626],[112.727345,35.713843],[112.731790800781,35.7082900214844],[112.743023710938,35.6992958808594],[112.741346464844,35.6858083320313],[112.822928496094,35.6756606269532],[112.852899199219,35.6882900214844],[112.865345488281,35.7038356757813],[112.918844023438,35.672387921875],[112.963704863281,35.6668080878907],[112.988914824219,35.6982900214844],[113.034307890625,35.6694191718751],[113.020772734375,35.6585805488282],[113.037345,35.653843],[113.029620390625,35.6328090644532],[113.04197390625,35.6184706855469],[113.063687773438,35.6087819648438],[113.13271609375,35.5592153144532],[113.14197390625,35.5484706855469],[113.17572390625,35.5273317695313],[113.196600371094,35.5030995917969],[113.213524199219,35.4885195136719],[113.211917753906,35.4685195136719],[113.22271609375,35.4592153144531],[113.227345,35.453843],[113.202386503906,35.4477126289063],[113.191636992188,35.450122296875],[113.173260527344,35.4179274726563],[113.161073027344,35.4095131660157],[113.165557890625,35.3895131660157],[113.142393828125,35.373520734375],[113.137345,35.3538430000001],[113.137345,35.333843],[113.127345,35.333843],[113.102486601563,35.3396034980469],[113.09205203125,35.3380605292969],[113.035953398438,35.3601149726562],[113.022345,35.3581044746094],[112.99000125,35.3628835273438],[112.97298953125,35.3149245429688],[112.987345,35.303843],[112.98298953125,35.2981996894531],[112.933748808594,35.28448753125],[112.915633574219,35.24022971875],[112.815928984375,35.2549636054688],[112.801832304688,35.2367018867187],[112.771253691406,35.2412209296875],[112.773765898438,35.2242360664063],[112.747345,35.2038430000001],[112.725816679688,35.214544904297],[112.701644316406,35.1953432441407],[112.687266875,35.223764875],[112.65406375,35.24056175],[112.643336210938,35.2617690253906],[112.631353789063,35.2559169746094],[112.623985625,35.270483625],[112.617345,35.273843],[112.599246855469,35.2774965644532],[112.609720488281,35.2989455390625],[112.589896269531,35.3388283515625],[112.599185820313,35.3578530097656],[112.587345,35.3638430000001]],[[112.615152617188,35.2872658515625],[112.627345,35.2838430000001],[112.623922148438,35.2960353828126],[112.615152617188,35.2872658515625]],[[112.847345,35.423843],[112.852406035156,35.4398317695313],[112.882528105469,35.438637921875],[112.900706816406,35.4771572089844],[112.871312285156,35.5198744941406],[112.902523222656,35.5186379218751],[112.919132109375,35.5365651679688],[112.900628691406,35.5715346503907],[112.88134890625,35.5893984199219],[112.850628691406,35.5881801582031],[112.810106230469,35.5444448066407],[112.77994265625,35.5604055],[112.752535429688,35.5120693183594],[112.8226965625,35.4789577460937],[112.811236601563,35.4572988105469],[112.847345,35.423843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"怀仁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,39.903843],[113.377345,39.8938430000001],[113.387345,39.8938430000001],[113.438258085938,39.8499794746094],[113.36197390625,39.8292153144532],[113.35271609375,39.8184706855469],[113.316859160156,39.7960121894532],[113.338970976563,39.7703481269532],[113.397345,39.7338430000001],[113.404866972656,39.7187111640626],[113.393985625,39.697202375],[113.387345,39.693843],[113.345028105469,39.7007949042969],[113.309906035156,39.6869875312501],[113.260191679688,39.6943337226563],[113.167237578125,39.7366591621094],[113.141539335938,39.7033644843751],[113.09170046875,39.6894863105469],[113.063631621094,39.6725551582032],[113.03170046875,39.659486310547],[113.02298953125,39.6481996894531],[112.998365507813,39.6381215644532],[112.98298953125,39.6181996894531],[112.947345,39.613843],[112.88170046875,39.6181996894531],[112.83298953125,39.659486310547],[112.805030546875,39.6709291816406],[112.78298953125,39.699486310547],[112.771529570313,39.7083315253906],[112.773558378906,39.7220619941407],[112.81298953125,39.7381996894532],[112.84170046875,39.7663075996094],[112.797345,39.773843],[112.803734160156,39.7987416816406],[112.873260527344,39.8079274726563],[112.91392703125,39.8344081855469],[112.931673613281,39.8601137519531],[112.952059355469,39.8555446601563],[112.961429472656,39.8741188789063],[112.941429472656,39.8879274726563],[112.937345,39.8938430000001],[112.942579375,39.9112282539062],[113.042489042969,39.9192568183594],[113.134290800781,39.9026113105469],[113.234410429688,39.9584706855469],[113.284012480469,39.9464858222657],[113.32271609375,39.9292153144532],[113.35197390625,39.9084706855469],[113.377345,39.903843]]]]}},{"type":"Feature","properties":{"name":"平鲁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.25298953125,39.8494863105469],[112.266204863281,39.8171962714844],[112.310872832031,39.8237978339844],[112.313160429688,39.8083315253907],[112.294388457031,39.793843],[112.318631621094,39.7751308417969],[112.33170046875,39.7581996894531],[112.36298953125,39.7494863105469],[112.371903105469,39.7277053046876],[112.41170046875,39.6981996894532],[112.437345,39.693843],[112.451241484375,39.6827150703125],[112.454378691406,39.6574843574219],[112.430887480469,39.6386708808594],[112.452899199219,39.6293959785157],[112.461790800781,39.6082900214844],[112.472899199219,39.5993959785156],[112.483704863281,39.5859023261719],[112.554947539063,39.5947634101563],[112.551615019531,39.5679726386719],[112.583275175781,39.5158486152344],[112.650850859375,39.5242543769532],[112.661790800781,39.4982900214844],[112.686746855469,39.478305890625],[112.677345,39.453843],[112.66197390625,39.4492153144532],[112.638846464844,39.4363112617188],[112.591373320313,39.4401259589844],[112.57271609375,39.4184706855469],[112.558563261719,39.4092153144532],[112.518846464844,39.4313747382813],[112.452345,39.4260305000001],[112.365257597656,39.4330287910157],[112.351590605469,39.4171645332032],[112.284613066406,39.3969985175782],[112.26271609375,39.4092153144532],[112.23197390625,39.4184706855469],[112.19654421875,39.4382375312501],[112.134808378906,39.4155666328125],[112.12271609375,39.3884706855469],[112.11197390625,39.3792153144532],[112.10271609375,39.3684706855469],[112.089149199219,39.3567824531251],[112.017345,39.3638430000001],[112.00298953125,39.3994863105469],[111.997345,39.4038430000001],[111.98084109375,39.4330361152344],[111.945753203125,39.4611330390626],[111.921890898438,39.4581642890625],[111.904908476563,39.4793740058594],[111.892899199219,39.513735578125],[111.992899199219,39.5282900214844],[112.001790800781,39.5326271796875],[111.941790800781,39.5782900214844],[111.927345,39.613843],[111.921671171875,39.6592470527344],[111.952899199219,39.6982900214844],[111.96388796875,39.7614394355469],[111.960311308594,39.7902016425781],[112.020203886719,39.8381630683594],[112.043057890625,39.8924025703125],[112.062899199219,39.9082900214844],[112.092569609375,39.9571401191407],[112.097345,39.9738430000001],[112.107345,39.9738430000001],[112.14298953125,39.9494863105469],[112.153065214844,39.9248647285157],[112.17298953125,39.9094863105469],[112.188663359375,39.8711867500001],[112.22170046875,39.8581996894532],[112.25298953125,39.8494863105469]]]]}},{"type":"Feature","properties":{"name":"山阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.027345,39.463843],[113.030767851563,39.4760353828125],[113.039537382813,39.4672658515625],[113.027345,39.463843]]],[[[113.027345,39.463843],[113.020943632813,39.41261253125],[113.041790800781,39.3782900214844],[113.058450957031,39.3649489570313],[113.067345,39.3538430000001],[113.05170046875,39.3494863105469],[113.027181425781,39.3177211738281],[112.924600859375,39.2891555000001],[112.89298953125,39.2481996894532],[112.88170046875,39.2394863105469],[112.87298953125,39.2181996894532],[112.84170046875,39.2094863105469],[112.809451933594,39.1855763984375],[112.774783964844,39.19069846875],[112.757345,39.183843],[112.751300078125,39.1985536933594],[112.753333769531,39.2088430000001],[112.75127078125,39.2192763496094],[112.764925566406,39.2407839179688],[112.760369902344,39.263843],[112.763333769531,39.2788430000001],[112.753343535156,39.3293935371094],[112.741519804688,39.3480178046876],[112.733170195313,39.3896681953125],[112.70502078125,39.434007794922],[112.677345,39.453843],[112.686746855469,39.478305890625],[112.661790800781,39.4982900214844],[112.650850859375,39.5242543769532],[112.583275175781,39.5158486152344],[112.551615019531,39.5679726386719],[112.554947539063,39.5947634101563],[112.483704863281,39.5859023261719],[112.472899199219,39.5993959785156],[112.461790800781,39.6082900214844],[112.452899199219,39.6293959785157],[112.430887480469,39.6386708808594],[112.454378691406,39.6574843574219],[112.451241484375,39.6827150703125],[112.437345,39.693843],[112.444605742188,39.7213600898438],[112.466019316406,39.7171291328126],[112.509032011719,39.7444374824219],[112.582608671875,39.7298989082032],[112.612056914063,39.717798078125],[112.628702421875,39.7210878730469],[112.637345,39.753843],[112.673441191406,39.7577455878907],[112.686112089844,39.7775392890625],[112.740767851563,39.7535707832032],[112.751248808594,39.7699404121094],[112.797345,39.773843],[112.84170046875,39.7663075996094],[112.81298953125,39.7381996894532],[112.773558378906,39.7220619941407],[112.771529570313,39.7083315253906],[112.78298953125,39.699486310547],[112.805030546875,39.6709291816406],[112.83298953125,39.659486310547],[112.88170046875,39.6181996894531],[112.947345,39.613843],[112.968590117188,39.5816957832032],[112.960472441406,39.5454921699219],[112.983616972656,39.5295131660157],[112.980186796875,39.5142116523438],[113.003682890625,39.480180890625],[113.027345,39.463843]]]]}},{"type":"Feature","properties":{"name":"朔城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.677345,39.453843],[112.70502078125,39.434007794922],[112.733170195313,39.3896681953125],[112.741519804688,39.3480178046876],[112.753343535156,39.3293935371094],[112.763333769531,39.2788430000001],[112.760369902344,39.263843],[112.764925566406,39.2407839179688],[112.75127078125,39.2192763496094],[112.753333769531,39.2088430000001],[112.751300078125,39.1985536933594],[112.757345,39.183843],[112.741041289063,39.1796584296875],[112.743475371094,39.1688014960938],[112.737345,39.143843],[112.721158476563,39.1400307441407],[112.68435671875,39.1235451484376],[112.655426054688,39.1325551582031],[112.640699492188,39.0893434882813],[112.617345,39.083843],[112.617345,39.0938430000001],[112.607345,39.0938430000001],[112.583035917969,39.0836330390626],[112.573260527344,39.1097585273438],[112.551429472656,39.1179274726563],[112.537310820313,39.1383754707032],[112.509329863281,39.1479274726563],[112.441124296875,39.1035121894532],[112.397345,39.1133266425781],[112.365545683594,39.1061977363282],[112.314393339844,39.1276821113281],[112.303260527344,39.0979274726562],[112.297345,39.0938430000001],[112.287345,39.0938430000001],[112.287345,39.103843],[112.277345,39.103843],[112.280614042969,39.1105739570312],[112.300101347656,39.1200380683594],[112.257345,39.123843],[112.263155546875,39.1592116523438],[112.249351835938,39.182094953125],[112.211253691406,39.1764650703126],[112.214486113281,39.1983315253907],[112.20170046875,39.2081996894532],[112.181033964844,39.2349745917969],[112.183160429688,39.2493544746094],[112.158465605469,39.2684157539063],[112.108426542969,39.2781996894532],[112.09298953125,39.2581996894532],[112.078426542969,39.2494863105469],[112.049793730469,39.2865810371094],[112.053084746094,39.308843],[112.050941191406,39.3233498359375],[112.022511015625,39.3452931953126],[112.017345,39.3638430000001],[112.089149199219,39.3567824531251],[112.10271609375,39.3684706855469],[112.11197390625,39.3792153144532],[112.12271609375,39.3884706855469],[112.134808378906,39.4155666328125],[112.19654421875,39.4382375312501],[112.23197390625,39.4184706855469],[112.26271609375,39.4092153144532],[112.284613066406,39.3969985175782],[112.351590605469,39.4171645332032],[112.365257597656,39.4330287910157],[112.452345,39.4260305000001],[112.518846464844,39.4313747382813],[112.558563261719,39.4092153144532],[112.57271609375,39.4184706855469],[112.591373320313,39.4401259589844],[112.638846464844,39.4363112617188],[112.66197390625,39.4492153144532],[112.677345,39.453843]]]]}},{"type":"Feature","properties":{"name":"应县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.027345,39.463843],[113.039537382813,39.4672658515625],[113.030767851563,39.4760353828125],[113.003682890625,39.480180890625],[112.980186796875,39.5142116523438],[112.983616972656,39.5295131660157],[112.960472441406,39.5454921699219],[112.968590117188,39.5816957832032],[112.947345,39.613843],[112.98298953125,39.6181996894531],[112.998365507813,39.6381215644532],[113.02298953125,39.6481996894531],[113.03170046875,39.659486310547],[113.063631621094,39.6725551582032],[113.09170046875,39.6894863105469],[113.141539335938,39.7033644843751],[113.167237578125,39.7366591621094],[113.260191679688,39.6943337226563],[113.309906035156,39.6869875312501],[113.345028105469,39.7007949042969],[113.387345,39.693843],[113.381160917969,39.6791213203125],[113.383565703125,39.6683962226563],[113.37060671875,39.6484950996094],[113.383260527344,39.6397585273438],[113.395513945313,39.6220119453126],[113.413260527344,39.6097585273438],[113.421529570313,39.5775392890626],[113.441673613281,39.582055890625],[113.459598417969,39.5560964179688],[113.508699980469,39.5221938300782],[113.500435820313,39.4853298164063],[113.559046660156,39.445863263672],[113.567345,39.4338430000001],[113.561883574219,39.4293056464844],[113.55107546875,39.4162953925782],[113.552896757813,39.3984194160156],[113.531883574219,39.3893056464844],[113.502806425781,39.3483803535157],[113.451883574219,39.3393056464844],[113.431156035156,39.3274355292969],[113.411954375,39.3293923164063],[113.402806425781,39.3183803535157],[113.387611113281,39.3057582832032],[113.263861113281,39.3183718085938],[113.177345,39.293843],[113.172806425781,39.2993056464844],[113.151883574219,39.3083803535157],[113.123509550781,39.3246315742188],[113.104744902344,39.367895734375],[113.067345,39.3538430000001],[113.058450957031,39.3649489570313],[113.041790800781,39.3782900214844],[113.020943632813,39.41261253125],[113.027345,39.463843]]]]}},{"type":"Feature","properties":{"name":"右玉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.590311308594,39.8285195136719],[112.615028105469,39.8072243476563],[112.611365996094,39.761664044922],[112.637345,39.753843],[112.628702421875,39.7210878730469],[112.612056914063,39.717798078125],[112.582608671875,39.7298989082032],[112.509032011719,39.7444374824219],[112.466019316406,39.7171291328126],[112.444605742188,39.7213600898438],[112.437345,39.693843],[112.41170046875,39.6981996894532],[112.371903105469,39.7277053046876],[112.36298953125,39.7494863105469],[112.33170046875,39.7581996894531],[112.318631621094,39.7751308417969],[112.294388457031,39.793843],[112.313160429688,39.8083315253907],[112.310872832031,39.8237978339844],[112.266204863281,39.8171962714844],[112.25298953125,39.8494863105469],[112.22170046875,39.8581996894532],[112.188663359375,39.8711867500001],[112.17298953125,39.9094863105469],[112.153065214844,39.9248647285157],[112.14298953125,39.9494863105469],[112.107345,39.9738430000001],[112.14197390625,40.0292153144531],[112.203460722656,40.1077272773438],[112.230479765625,40.1682802558594],[112.278089628906,40.1980995917969],[112.29197390625,40.2292153144531],[112.307345,40.253843],[112.360462675781,40.2589125800782],[112.413453398438,40.2981996894531],[112.46298953125,40.2894863105469],[112.523878203125,40.2628774238282],[112.61298953125,40.2394863105469],[112.617345,40.2338430000001],[112.598407011719,40.2035012031251],[112.623170195313,40.1685744453125],[112.579547148438,40.1586635566407],[112.582747832031,40.1188430000001],[112.581485625,40.1031508613281],[112.6127746875,40.0891896796875],[112.611219511719,40.0698232246094],[112.636783476563,40.0240041328125],[112.597401152344,39.9167641425782],[112.590311308594,39.8285195136719]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"和顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.348253203125,37.5760243964844],[113.33099734375,37.548843],[113.34341921875,37.5292763496094],[113.34084109375,37.5162270332031],[113.362940703125,37.4540200019532],[113.392345,37.4598305488282],[113.402345,37.4578554511719],[113.447345,37.4667470527344],[113.504205351563,37.4555117011719],[113.534671660156,37.4980178046875],[113.583170195313,37.4896681953125],[113.598219023438,37.4506459785156],[113.612345,37.4478554511719],[113.632345,37.4518068671875],[113.652345,37.4478554511719],[113.682965117188,37.4539052558594],[113.701724882813,37.4277321601563],[113.740079375,37.4353115058594],[113.743455839844,37.4182228828125],[113.730369902344,37.408843],[113.743170195313,37.3996681953125],[113.757603789063,37.3622463203125],[113.836197539063,37.3258522773438],[113.853170195313,37.3380178046875],[113.887193632813,37.3880043769531],[113.901519804688,37.3680178046876],[113.918995390625,37.355493390625],[113.927345,37.3438430000001],[113.922899199219,37.3382900214844],[113.893270292969,37.3145632148438],[113.871749296875,37.2392922187501],[113.819320097656,37.1738210273438],[113.792899199219,37.1582900214844],[113.769115019531,37.1482680488282],[113.761790800781,37.0893959785156],[113.757345,37.083843],[113.739539824219,37.0769985175781],[113.672899199219,37.1193959785156],[113.610115996094,37.1285341621094],[113.592899199219,37.1693959785156],[113.575533476563,37.1989382148438],[113.521790800781,37.2082900214844],[113.492899199219,37.2193959785157],[113.443936796875,37.2333950019531],[113.396456328125,37.2274892402344],[113.362899199219,37.2693959785157],[113.34291140625,37.2782900214844],[113.292899199219,37.2382900214844],[113.211214628906,37.2149355292969],[113.171441679688,37.1915554023438],[113.117345,37.203843],[113.121790800781,37.2193959785157],[113.132899199219,37.2382900214844],[113.141790800781,37.2622743964845],[113.113355742188,37.2850453925781],[113.13322390625,37.318843],[113.117762480469,37.3451467109376],[113.071658964844,37.3583278632813],[113.074378691406,37.3802016425782],[113.057345,37.393843],[113.06406375,37.4071242500001],[113.089261503906,37.4198708320313],[113.069896269531,37.4588283515626],[113.0772278125,37.473843],[113.067347441406,37.4940785957032],[113.08406375,37.5271242500001],[113.097345,37.5338430000001],[113.11298953125,37.5381996894532],[113.14170046875,37.5594863105469],[113.206346464844,37.5704677558594],[113.232345,37.566626203125],[113.272345,37.5725368476563],[113.307345,37.5673647285156],[113.326851835938,37.5702480292969],[113.337345,37.583843],[113.348253203125,37.5760243964844]]]]}},{"type":"Feature","properties":{"name":"介休市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.964105253906,37.1640529609376],[112.007345,37.1543593574219],[112.032345,37.1599636054688],[112.047345,37.1566017890625],[112.086239042969,37.1653200507813],[112.134217558594,37.1321938300781],[112.131051054688,37.1180690742188],[112.157777128906,37.1080690742187],[112.151224394531,37.078843],[112.156900664063,37.0535182929688],[112.14060671875,37.0284950996095],[112.159176054688,37.0156740546875],[112.167345,37.003843],[112.151519804688,36.9996681953125],[112.123995390625,36.982192609375],[112.054959746094,36.9683522773438],[112.076431914063,36.9345290351563],[112.069503203125,36.8994631171876],[112.084320097656,36.8888430000001],[112.067554960938,36.8768251777344],[112.0230871875,36.8856117988282],[112.013170195313,36.8480178046875],[111.997345,36.8438430000001],[111.981429472656,36.8479274726563],[111.953260527344,36.8697585273438],[111.927254667969,36.8794887519531],[111.905697050781,36.9107155585938],[111.891571074219,36.9075490546875],[111.881698027344,36.9339321113281],[111.856976347656,36.9510024238282],[111.837345,36.9466017890625],[111.815980253906,36.9513906074219],[111.837447539063,36.9843569160156],[111.826929960938,36.9979274726563],[111.793260527344,36.9479274726563],[111.776944609375,36.9397585273438],[111.784158964844,36.971938703125],[111.741429472656,36.9879274726563],[111.737345,36.9938430000001],[111.745513945313,37.0056740546876],[111.781097441406,37.0302431464844],[111.800230742188,37.0259548164063],[111.821429472656,37.0397585273438],[111.853260527344,37.0479274726563],[111.883031035156,37.0673134589845],[111.891429472656,37.0897585273437],[111.903260527344,37.0979274726563],[111.927345,37.1438430000001],[111.947345,37.1838430000001],[111.953260527344,37.1797585273438],[111.964105253906,37.1640529609376]]]]}},{"type":"Feature","properties":{"name":"灵石县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,36.703843],[111.839537382813,36.7072658515626],[111.830767851563,36.7160353828125],[111.81263796875,36.7096254707032],[111.802345,36.7081044746094],[111.792345,36.7095815253906],[111.763880644531,36.7053749824219],[111.749298125,36.7242665839844],[111.668988066406,36.6926955390625],[111.683140898438,36.669233625],[111.680941191406,36.6543361640625],[111.667345,36.643843],[111.663260527344,36.6497585273438],[111.651429472656,36.6579274726562],[111.643260527344,36.6697585273437],[111.621429472656,36.6779274726563],[111.613260527344,36.6897585273438],[111.591429472656,36.6979274726562],[111.561658964844,36.7173134589844],[111.553260527344,36.7397585273438],[111.537191191406,36.7508534980469],[111.543616972656,36.7795131660157],[111.526976347656,36.7910024238281],[111.511898222656,36.787622296875],[111.491998320313,36.80058128125],[111.476927519531,36.778755109375],[111.437069121094,36.7697585273438],[111.423260527344,36.7897585273438],[111.411429472656,36.7979274726563],[111.407345,36.8038430000001],[111.412476835938,36.8364089179688],[111.443260527344,36.8479274726563],[111.491429472656,36.8797585273438],[111.551329375,36.8951308417969],[111.561429472656,36.9097585273438],[111.57498171875,36.9191152167969],[111.547254667969,36.9294887519532],[111.525091582031,36.9615895820313],[111.501429472656,36.9779274726563],[111.497345,36.9938430000001],[111.522899199219,36.9893959785157],[111.531890898438,36.9781642890625],[111.542650175781,36.9795034003907],[111.592039824219,36.9581825996094],[111.602703886719,36.9595095039063],[111.622662382813,36.9477773261719],[111.672899199219,36.9782900214844],[111.681890898438,36.9895217109375],[111.692347441406,36.9882204414062],[111.737345,36.9938430000001],[111.741429472656,36.9879274726563],[111.784158964844,36.971938703125],[111.776944609375,36.9397585273438],[111.793260527344,36.9479274726563],[111.826929960938,36.9979274726563],[111.837447539063,36.9843569160156],[111.815980253906,36.9513906074219],[111.837345,36.9466017890625],[111.856976347656,36.9510024238282],[111.881698027344,36.9339321113281],[111.891571074219,36.9075490546875],[111.905697050781,36.9107155585938],[111.927254667969,36.8794887519531],[111.953260527344,36.8697585273438],[111.981429472656,36.8479274726563],[111.997345,36.8438430000001],[112.00630984375,36.8246559882813],[111.973922148438,36.8061891914063],[111.984229765625,36.778843],[111.98029421875,36.7683998847657],[111.996890898438,36.7459047675781],[111.990460234375,36.7288430000001],[111.996370878906,36.7131618476562],[111.987345,36.6938430000001],[111.976143828125,36.6798537421876],[111.932056914063,36.7057692695313],[111.897345,36.7100868964844],[111.882345,36.7082216621094],[111.853704863281,36.7117836738282],[111.837345,36.6913552070313],[111.827345,36.703843]]]]}},{"type":"Feature","properties":{"name":"平遥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.34170046875,37.2681996894532],[112.366324492188,37.2581215644531],[112.386058378906,37.2325551582032],[112.40298953125,37.2194863105469],[112.42170046875,37.1881996894532],[112.440941191406,37.1733498359375],[112.445301542969,37.1438430000001],[112.441529570313,37.1183315253906],[112.447345,37.1138430000001],[112.456239042969,37.1027370429688],[112.481241484375,37.0827150703125],[112.483587675781,37.063843],[112.481615019531,37.0479726386719],[112.511790800781,36.9982900214844],[112.542899199219,36.9793959785156],[112.547345,36.973843],[112.541429472656,36.9697585273438],[112.533016386719,36.9575722480469],[112.521898222656,36.960063703125],[112.50002078125,36.9458168769532],[112.467345,36.9538430000001],[112.461158476563,36.9500307441406],[112.453531523438,36.9376552558594],[112.428179960938,36.9300307441407],[112.383531523438,36.9500307441406],[112.345855742188,36.9576552558594],[112.332816191406,36.9364919257812],[112.313531523438,36.9500307441406],[112.291158476563,36.9576552558594],[112.273531523438,36.9700307441407],[112.239969511719,36.9814675117188],[112.213531523438,37.0000307441407],[112.167345,37.003843],[112.159176054688,37.0156740546875],[112.14060671875,37.0284950996095],[112.156900664063,37.0535182929688],[112.151224394531,37.078843],[112.157777128906,37.1080690742187],[112.131051054688,37.1180690742188],[112.134217558594,37.1321938300781],[112.086239042969,37.1653200507813],[112.047345,37.1566017890625],[112.032345,37.1599636054688],[112.007345,37.1543593574219],[111.964105253906,37.1640529609376],[111.953260527344,37.1797585273438],[111.947345,37.1838430000001],[111.938878203125,37.1903786445312],[111.944561796875,37.2288430000001],[111.941522246094,37.2494130683594],[111.991209746094,37.2697499824219],[112.002857695313,37.2680287910156],[112.007345,37.273843],[112.032625761719,37.2785622382813],[112.068365507813,37.3185622382813],[112.1123059375,37.2894814277344],[112.131712675781,37.2677626777345],[112.207345,37.333843],[112.261041289063,37.3426638007813],[112.263084746094,37.328843],[112.260318632813,37.3101332832032],[112.32298953125,37.2994863105469],[112.34170046875,37.2681996894532]]]]}},{"type":"Feature","properties":{"name":"祁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.396551542969,37.4619155097657],[112.422857695313,37.4580287910156],[112.433880644531,37.4723110175781],[112.462379179688,37.4680995917969],[112.497345,37.473843],[112.477144804688,37.3626308417969],[112.49271609375,37.3492153144532],[112.50197390625,37.3384706855469],[112.51271609375,37.3292153144531],[112.525484648438,37.3005995917969],[112.552345,37.2984413886719],[112.589857207031,37.3014553046876],[112.61271609375,37.2692153144532],[112.62197390625,37.2484706855469],[112.63271609375,37.2392153144532],[112.64197390625,37.2184706855469],[112.657345,37.213843],[112.681429472656,37.1773976875],[112.673260527344,37.1479274726563],[112.655513945313,37.1356740546875],[112.647345,37.123843],[112.59298953125,37.0881996894531],[112.548426542969,37.0794863105469],[112.53298953125,37.0994863105469],[112.511522246094,37.1082729316406],[112.513961210938,37.1247866035156],[112.447345,37.1138430000001],[112.441529570313,37.1183315253906],[112.445301542969,37.1438430000001],[112.440941191406,37.1733498359375],[112.42170046875,37.1881996894532],[112.40298953125,37.2194863105469],[112.386058378906,37.2325551582032],[112.366324492188,37.2581215644531],[112.34170046875,37.2681996894532],[112.32298953125,37.2994863105469],[112.260318632813,37.3101332832032],[112.263084746094,37.328843],[112.261041289063,37.3426638007813],[112.207345,37.333843],[112.23298953125,37.3681996894531],[112.267308378906,37.4295034003907],[112.316324492188,37.4495644355469],[112.327345,37.463843],[112.34298953125,37.4681996894532],[112.358426542969,37.4881996894532],[112.38298953125,37.4794863105469],[112.396551542969,37.4619155097657]]]]}},{"type":"Feature","properties":{"name":"寿阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.253638945313,38.0796169257813],[113.246800566406,38.0491139960938],[113.261429472656,38.0279274726563],[113.273260527344,38.0197585273438],[113.286571074219,37.9841860175781],[113.318377714844,37.9913161445313],[113.337345,37.963843],[113.330819121094,37.9598220039063],[113.313531523438,37.9065175605469],[113.353531523438,37.8600307441407],[113.363699980469,37.8301967597657],[113.393531523438,37.8200307441407],[113.40281375,37.7927968574219],[113.423531523438,37.7800307441407],[113.427345,37.773843],[113.44170046875,37.7381996894531],[113.457345,37.713843],[113.39170046875,37.7094863105469],[113.324244414063,37.6505605292969],[113.343155546875,37.6192116523438],[113.337345,37.583843],[113.326851835938,37.5702480292969],[113.307345,37.5673647285156],[113.272345,37.5725368476563],[113.232345,37.566626203125],[113.206346464844,37.5704677558594],[113.14170046875,37.5594863105469],[113.11298953125,37.5381996894532],[113.097345,37.5338430000001],[113.103240996094,37.5592909980469],[113.09170046875,37.5681996894532],[113.081624785156,37.5928212714844],[113.057088652344,37.6117604804688],[113.032345,37.6081044746094],[113.000709257813,37.612778546875],[113.003160429688,37.6293544746094],[112.99170046875,37.6381996894532],[112.98298953125,37.6494863105469],[112.948795195313,37.659009015625],[112.907496367188,37.7125148750001],[112.926392851563,37.743843],[112.911549101563,37.7684523750001],[112.913140898438,37.779233625],[112.899744902344,37.8014443183594],[112.92490359375,37.7977260566407],[112.948519316406,37.8283193183594],[112.90170046875,37.8381996894532],[112.892542753906,37.87108909375],[112.872345,37.8681044746095],[112.857345,37.8703212714844],[112.826517363281,37.8657656074219],[112.777345,37.8738430000001],[112.767345,37.8738430000001],[112.763985625,37.900483625],[112.757345,37.9138430000001],[112.769261503906,37.9198708320313],[112.757345,37.943843],[112.802806425781,37.9783803535157],[112.820394316406,37.9995510078125],[112.91127078125,37.9902883125001],[112.964212675781,38.0101808906251],[113.000279570313,38.0065053535156],[113.012886992188,38.028520734375],[113.010882597656,38.0481838203126],[113.022345,38.0493520332032],[113.040477324219,38.0475051093751],[113.057345,38.053843],[113.083260527344,38.0579274726563],[113.112264433594,38.0804067207032],[113.159329863281,38.0497585273438],[113.187310820313,38.059310529297],[113.2120715625,38.095171125],[113.253638945313,38.0796169257813]]]]}},{"type":"Feature","properties":{"name":"太谷县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.833260527344,37.5097585273437],[112.851429472656,37.4979274726562],[112.883260527344,37.4897585273438],[112.901429472656,37.4779274726563],[112.943260527344,37.4697585273437],[112.971429472656,37.4479274726563],[113.008370390625,37.4268422675782],[113.021429472656,37.4079274726563],[113.033260527344,37.3997585273438],[113.037345,37.393843],[113.00298953125,37.3681996894531],[112.96170046875,37.3594863105469],[112.94298953125,37.3481996894532],[112.916737089844,37.3374550605469],[112.882916289063,37.3424526191406],[112.87298953125,37.3181996894531],[112.855968046875,37.2899819160156],[112.838426542969,37.2794863105469],[112.822740507813,37.2998085761719],[112.742884550781,37.2750685859376],[112.704783964844,37.2806984687501],[112.660924101563,37.2634560371094],[112.667139921875,37.2214028144532],[112.657345,37.213843],[112.64197390625,37.2184706855469],[112.63271609375,37.2392153144532],[112.62197390625,37.2484706855469],[112.61271609375,37.2692153144532],[112.589857207031,37.3014553046876],[112.552345,37.2984413886719],[112.525484648438,37.3005995917969],[112.51271609375,37.3292153144531],[112.50197390625,37.3384706855469],[112.49271609375,37.3492153144532],[112.477144804688,37.3626308417969],[112.497345,37.473843],[112.515145292969,37.5180348945313],[112.58170046875,37.5081996894531],[112.587345,37.503843],[112.613260527344,37.5079274726563],[112.647345,37.5343434882813],[112.684891386719,37.5052443671876],[112.703616972656,37.5181728339844],[112.700943632813,37.5300893378907],[112.727069121094,37.5679274726563],[112.763260527344,37.5497585273438],[112.771429472656,37.5379274726562],[112.793638945313,37.5296169257813],[112.79103640625,37.5180043769532],[112.833260527344,37.5097585273437]]]]}},{"type":"Feature","properties":{"name":"昔阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.127345,37.693843],[114.12271609375,37.6484706855469],[114.111219511719,37.6278627753906],[114.114241972656,37.5902284980469],[114.06271609375,37.5184706855469],[114.033856230469,37.4936061835938],[114.027345,37.443843],[114.008377714844,37.4163698554688],[113.987713652344,37.4210024238282],[113.970584746094,37.4091762519531],[113.951429472656,37.3797585273438],[113.947345,37.363843],[113.947345,37.3438430000001],[113.927345,37.3438430000001],[113.918995390625,37.355493390625],[113.901519804688,37.3680178046876],[113.887193632813,37.3880043769531],[113.853170195313,37.3380178046875],[113.836197539063,37.3258522773438],[113.757603789063,37.3622463203125],[113.743170195313,37.3996681953125],[113.730369902344,37.408843],[113.743455839844,37.4182228828125],[113.740079375,37.4353115058594],[113.701724882813,37.4277321601563],[113.682965117188,37.4539052558594],[113.652345,37.4478554511719],[113.632345,37.4518068671875],[113.612345,37.4478554511719],[113.598219023438,37.4506459785156],[113.583170195313,37.4896681953125],[113.534671660156,37.4980178046875],[113.504205351563,37.4555117011719],[113.447345,37.4667470527344],[113.402345,37.4578554511719],[113.392345,37.4598305488282],[113.362940703125,37.4540200019532],[113.34084109375,37.5162270332031],[113.34341921875,37.5292763496094],[113.33099734375,37.548843],[113.348253203125,37.5760243964844],[113.337345,37.583843],[113.343155546875,37.6192116523438],[113.324244414063,37.6505605292969],[113.39170046875,37.7094863105469],[113.457345,37.713843],[113.48170046875,37.6981996894531],[113.547127714844,37.6714223457032],[113.610767851563,37.6808266425782],[113.63170046875,37.6681996894531],[113.658546171875,37.6594863105469],[113.69170046875,37.6794863105469],[113.746263457031,37.6881996894532],[113.761832304688,37.6680287910157],[113.825032988281,37.677368390625],[113.881173125,37.7112331367188],[113.916322050781,37.7060390449219],[113.979149199219,37.6813405585938],[113.997345,37.713843],[114.047662382813,37.7221083808594],[114.09298953125,37.7094863105469],[114.127345,37.693843]]]]}},{"type":"Feature","properties":{"name":"榆次区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.767345,37.8738430000001],[112.772345,37.8610353828125],[112.777345,37.8738430000001],[112.826517363281,37.8657656074219],[112.857345,37.8703212714844],[112.872345,37.8681044746095],[112.892542753906,37.87108909375],[112.90170046875,37.8381996894532],[112.948519316406,37.8283193183594],[112.92490359375,37.7977260566407],[112.899744902344,37.8014443183594],[112.913140898438,37.779233625],[112.911549101563,37.7684523750001],[112.926392851563,37.743843],[112.907496367188,37.7125148750001],[112.948795195313,37.659009015625],[112.98298953125,37.6494863105469],[112.99170046875,37.6381996894532],[113.003160429688,37.6293544746094],[113.000709257813,37.612778546875],[113.032345,37.6081044746094],[113.057088652344,37.6117604804688],[113.081624785156,37.5928212714844],[113.09170046875,37.5681996894532],[113.103240996094,37.5592909980469],[113.097345,37.5338430000001],[113.08406375,37.5271242500001],[113.067347441406,37.4940785957032],[113.0772278125,37.473843],[113.069896269531,37.4588283515626],[113.089261503906,37.4198708320313],[113.06406375,37.4071242500001],[113.057345,37.393843],[113.037345,37.393843],[113.033260527344,37.3997585273438],[113.021429472656,37.4079274726563],[113.008370390625,37.4268422675782],[112.971429472656,37.4479274726563],[112.943260527344,37.4697585273437],[112.901429472656,37.4779274726563],[112.883260527344,37.4897585273438],[112.851429472656,37.4979274726562],[112.833260527344,37.5097585273437],[112.79103640625,37.5180043769532],[112.793638945313,37.5296169257813],[112.771429472656,37.5379274726562],[112.763260527344,37.5497585273438],[112.727069121094,37.5679274726563],[112.700943632813,37.5300893378907],[112.703616972656,37.5181728339844],[112.684891386719,37.5052443671876],[112.647345,37.5343434882813],[112.613260527344,37.5079274726563],[112.587345,37.503843],[112.590704375,37.520483625],[112.61541140625,37.5276137519532],[112.599896269531,37.5588283515625],[112.60478640625,37.5688430000001],[112.591090117188,37.596889875],[112.577345,37.6038430000001],[112.581429472656,37.6297585273438],[112.620858183594,37.6445119453125],[112.60060671875,37.6584950996094],[112.613260527344,37.6779274726563],[112.621429472656,37.6997585273437],[112.639176054688,37.7120119453126],[112.657889433594,37.7391139960938],[112.651112089844,37.7693483710938],[112.673577910156,37.7983376289063],[112.669449492188,37.8167617011719],[112.687345,37.843843],[112.72298953125,37.8581996894531],[112.742579375,37.883579328125],[112.767345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"榆社县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.117762480469,37.3451467109376],[113.13322390625,37.318843],[113.113355742188,37.2850453925781],[113.141790800781,37.2622743964845],[113.132899199219,37.2382900214844],[113.121790800781,37.2193959785157],[113.117345,37.203843],[113.09968875,37.1660329414063],[113.134217558594,37.1421938300781],[113.131224394531,37.128843],[113.133529082031,37.1185646796876],[113.11982546875,37.0859389472657],[113.152562285156,37.0633364082031],[113.161429472656,37.0179274726563],[113.173260527344,37.0097585273437],[113.181429472656,36.9979274726563],[113.194105253906,36.9891762519531],[113.213260527344,36.9597585273438],[113.217345,36.943843],[113.184046660156,36.9307521796875],[113.151956816406,36.9501100898438],[113.14298953125,36.9281996894532],[113.093558378906,36.91776878125],[113.009227324219,36.937309796875],[112.908856230469,36.8628945136719],[112.869163847656,36.8923220039063],[112.874486113281,36.9283315253906],[112.857054472656,36.9417848945313],[112.878448515625,36.9772524238282],[112.85170046875,36.9881996894531],[112.83298953125,36.9994863105469],[112.78170046875,37.0081996894532],[112.759659453125,37.0367568183594],[112.731522246094,37.0482729316407],[112.733822050781,37.063843],[112.731004667969,37.0829140449219],[112.658526640625,37.1093581367188],[112.647345,37.123843],[112.655513945313,37.1356740546875],[112.673260527344,37.1479274726563],[112.681429472656,37.1773976875],[112.657345,37.213843],[112.667139921875,37.2214028144532],[112.660924101563,37.2634560371094],[112.704783964844,37.2806984687501],[112.742884550781,37.2750685859376],[112.822740507813,37.2998085761719],[112.838426542969,37.2794863105469],[112.855968046875,37.2899819160156],[112.87298953125,37.3181996894531],[112.882916289063,37.3424526191406],[112.916737089844,37.3374550605469],[112.94298953125,37.3481996894532],[112.96170046875,37.3594863105469],[113.00298953125,37.3681996894531],[113.037345,37.393843],[113.057345,37.393843],[113.074378691406,37.3802016425782],[113.071658964844,37.3583278632813],[113.117762480469,37.3451467109376]]]]}},{"type":"Feature","properties":{"name":"左权县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.362899199219,37.2693959785157],[113.396456328125,37.2274892402344],[113.443936796875,37.2333950019531],[113.492899199219,37.2193959785157],[113.521790800781,37.2082900214844],[113.575533476563,37.1989382148438],[113.592899199219,37.1693959785156],[113.610115996094,37.1285341621094],[113.672899199219,37.1193959785156],[113.739539824219,37.0769985175781],[113.757345,37.083843],[113.762393828125,37.064165265625],[113.784185820313,37.0491200996094],[113.757379179688,37.0145326972656],[113.787345,36.9938430000001],[113.783260527344,36.9879274726563],[113.76490359375,36.9752529121094],[113.757191191406,36.9408534980469],[113.777135039063,36.9270839667969],[113.7867590625,36.8841518378907],[113.751429472656,36.8597585273437],[113.747345,36.853843],[113.731429472656,36.8579274726563],[113.720797148438,36.8863417792969],[113.678377714844,36.8768325019532],[113.661087675781,36.8094557929688],[113.664932890625,36.7922951484375],[113.631429472656,36.7797585273438],[113.591124296875,36.7535121894531],[113.562345,36.7599636054688],[113.545936308594,36.7562856269532],[113.537345,36.743843],[113.503153105469,36.7629848457031],[113.49298953125,36.7994863105469],[113.457464628906,36.8207338691407],[113.44298953125,36.8394863105469],[113.410086699219,36.8648830390625],[113.357345,36.873843],[113.364647246094,36.9035732246094],[113.359586210938,36.9261476875],[113.321429472656,36.9479274726563],[113.293892851563,36.9878102851563],[113.273260527344,36.9579274726563],[113.226175566406,36.9310524726563],[113.217345,36.943843],[113.213260527344,36.9597585273438],[113.194105253906,36.9891762519531],[113.181429472656,36.9979274726563],[113.173260527344,37.0097585273437],[113.161429472656,37.0179274726563],[113.152562285156,37.0633364082031],[113.11982546875,37.0859389472657],[113.133529082031,37.1185646796876],[113.131224394531,37.128843],[113.134217558594,37.1421938300781],[113.09968875,37.1660329414063],[113.117345,37.203843],[113.171441679688,37.1915554023438],[113.211214628906,37.2149355292969],[113.292899199219,37.2382900214844],[113.34291140625,37.2782900214844],[113.362899199219,37.2693959785157]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"新绛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.225894804688,35.7086769843751],[111.248426542969,35.6794863105469],[111.27298953125,35.6881996894531],[111.286551542969,35.7057704902344],[111.331087675781,35.7123513007813],[111.333084746094,35.6988430000001],[111.33156375,35.6885512519531],[111.337345,35.673843],[111.28572390625,35.6699086738282],[111.294405546875,35.648843],[111.284881621094,35.6257363105469],[111.256793242188,35.6373146796875],[111.264405546875,35.618843],[111.260240507813,35.6087367988282],[111.274449492188,35.5789492011719],[111.266541777344,35.5597646308594],[111.283804960938,35.5503029609375],[111.287345,35.533843],[111.268233671875,35.5280886054688],[111.24271609375,35.4984706855469],[111.21197390625,35.4892153144532],[111.186329375,35.474907453125],[111.102948027344,35.481606671875],[111.027345,35.453843],[111.031790800781,35.4893959785156],[111.062899199219,35.5282900214844],[111.093074980469,35.5779726386719],[111.0884778125,35.6149269843751],[111.071790800781,35.6282900214844],[111.052899199219,35.7193959785156],[111.047345,35.7338430000001],[111.053531523438,35.7376552558594],[111.068782988281,35.7824050117188],[111.094154082031,35.7980373359375],[111.090521269531,35.8096950507813],[111.117345,35.823843],[111.126058378906,35.8125551582031],[111.180687285156,35.7703871894532],[111.19170046875,35.7181996894531],[111.225894804688,35.7086769843751]]]]}},{"type":"Feature","properties":{"name":"河津市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.672535429688,35.7401210761719],[110.688414335938,35.7376967597657],[110.739857207031,35.7397353339844],[110.782154570313,35.7286525703125],[110.817345,35.723843],[110.823529082031,35.7091213203125],[110.813377714844,35.6638430000001],[110.824586210938,35.613843],[110.821224394531,35.598843],[110.825706816406,35.578843],[110.819132109375,35.5495131660156],[110.833260527344,35.5397585273438],[110.837345,35.523843],[110.757437773438,35.5171645332031],[110.732020292969,35.4876638007813],[110.712345,35.4892446113281],[110.684583769531,35.4870143867188],[110.662623320313,35.4992665839844],[110.650250273438,35.4982729316406],[110.612345,35.5194228339844],[110.59271609375,35.5084706855469],[110.537345,35.503843],[110.541790800781,35.5193959785156],[110.578111601563,35.548481671875],[110.601790800781,35.6282509589844],[110.581790800781,35.6982900214844],[110.577345,35.7438430000001],[110.592535429688,35.7486525703126],[110.644698515625,35.7886525703125],[110.695404082031,35.7613100410157],[110.672535429688,35.7401210761719]]]]}},{"type":"Feature","properties":{"name":"临猗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.794781523438,35.2847133613281],[110.789383574219,35.2606276679688],[110.802345,35.2577223945313],[110.812345,35.2599636054688],[110.832345,35.2554799628907],[110.852791777344,35.260063703125],[110.871429472656,35.2479274726563],[110.887345,35.2438430000001],[110.8821496875,35.2261415839844],[110.846199980469,35.1962783027344],[110.872889433594,35.1591909003906],[110.871737089844,35.1478871894531],[110.901883574219,35.0783803535157],[110.914046660156,35.0571401191406],[110.892078886719,35.0593801093751],[110.862806425781,35.0483803535157],[110.791883574219,35.0293056464844],[110.772181425781,35.0180214667969],[110.767345,35.023843],[110.758172636719,35.035298078125],[110.709752226563,35.0482900214844],[110.692899199219,35.0082900214844],[110.644605742188,34.9879396796875],[110.627345,34.9900868964844],[110.607345,34.9875991035156],[110.587345,34.9900868964844],[110.552345,34.9857338691407],[110.512345,34.9907082343751],[110.491983671875,34.9881764960938],[110.395340605469,35.0458388496094],[110.351790800781,35.0582900214845],[110.337345,35.063843],[110.341429472656,35.0797585273438],[110.366534453125,35.13515159375],[110.356527128906,35.1797975898438],[110.3755090625,35.2570778632813],[110.397345,35.303843],[110.413260527344,35.2997585273438],[110.452506132813,35.2832753730469],[110.517652617188,35.2978798652344],[110.54033328125,35.2650295234376],[110.562623320313,35.2700258613282],[110.599027128906,35.2547365546875],[110.632345,35.2622060371094],[110.644486113281,35.2297585273438],[110.655455351563,35.2399697089844],[110.650186796875,35.2634743476563],[110.665936308594,35.2862856269531],[110.682345,35.2899636054688],[110.709901152344,35.2837868476563],[110.787782011719,35.3079274726563],[110.794781523438,35.2847133613281]]]]}},{"type":"Feature","properties":{"name":"平陆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.253260527344,35.0097585273438],[111.307074003906,34.9965407539062],[111.332345,35.0022060371094],[111.357345,34.9966017890626],[111.38435671875,35.0026564765625],[111.419249296875,34.9521181464844],[111.431429472656,34.9697585273438],[111.453260527344,34.9779274726563],[111.479097929688,34.9947524238282],[111.503053007813,35.000122296875],[111.522967558594,34.9652309394531],[111.583260527344,34.9497585273438],[111.611429472656,34.9379274726563],[111.627345,34.9338430000001],[111.61298953125,34.8981996894532],[111.59170046875,34.8894863105469],[111.580260039063,34.8615297675782],[111.557345,34.843843],[111.544344511719,34.8583913398438],[111.471302519531,34.8280117011719],[111.437345,34.8300356269532],[111.410377226563,34.8284279609376],[111.397345,34.813843],[111.371429472656,34.8179274726563],[111.337345,34.8322426582032],[111.288702421875,34.8118129707032],[111.248992949219,34.8207155585938],[111.230094023438,34.7933425117187],[111.14513796875,34.8142104316407],[111.137345,34.7838430000001],[111.10298953125,34.7581996894532],[111.035084257813,34.7438698554688],[111.027345,34.733843],[111.003765898438,34.7277919746094],[110.96509890625,34.7026125312501],[110.953260527344,34.7197585273438],[110.941429472656,34.7279274726563],[110.937345,34.733843],[110.957652617188,34.7386257148438],[110.921998320313,34.7507765937501],[110.913531523438,34.8200307441406],[110.901158476563,34.8276552558594],[110.897345,34.843843],[110.939454375,34.8716701484375],[111.002034941406,34.9000331855469],[111.013016386719,34.8975722480469],[111.027254667969,34.9181972480469],[111.053260527344,34.9279274726563],[111.081429472656,34.9497585273438],[111.1157825,34.96261253125],[111.145513945313,35.0056740546875],[111.177345,35.0138430000001],[111.253260527344,35.0097585273438]]]]}},{"type":"Feature","properties":{"name":"万荣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.843475371094,35.4988845039063],[110.840186796875,35.4842116523438],[110.851673613281,35.4675722480469],[110.862791777344,35.4700637031251],[110.884459257813,35.4559548164063],[110.903016386719,35.4601137519532],[110.911429472656,35.4479274726563],[110.983260527344,35.4297585273438],[110.991429472656,35.3879274726563],[110.997345,35.383843],[110.997345,35.373843],[110.991790800781,35.3693959785156],[110.955716582031,35.3100014472657],[110.921790800781,35.2893959785156],[110.912899199219,35.2782900214844],[110.892530546875,35.2619802070313],[110.887345,35.2438430000001],[110.871429472656,35.2479274726563],[110.852791777344,35.260063703125],[110.832345,35.2554799628907],[110.812345,35.2599636054688],[110.802345,35.2577223945313],[110.789383574219,35.2606276679688],[110.794781523438,35.2847133613281],[110.787782011719,35.3079274726563],[110.709901152344,35.2837868476563],[110.682345,35.2899636054688],[110.665936308594,35.2862856269531],[110.650186796875,35.2634743476563],[110.655455351563,35.2399697089844],[110.644486113281,35.2297585273438],[110.632345,35.2622060371094],[110.599027128906,35.2547365546875],[110.562623320313,35.2700258613282],[110.54033328125,35.2650295234376],[110.517652617188,35.2978798652344],[110.452506132813,35.2832753730469],[110.413260527344,35.2997585273438],[110.397345,35.303843],[110.407345,35.3238430000001],[110.412862578125,35.3285964179688],[110.466490507813,35.4145156074219],[110.488253203125,35.4632912421875],[110.50197390625,35.4792153144532],[110.537345,35.503843],[110.59271609375,35.5084706855469],[110.612345,35.5194228339844],[110.650250273438,35.4982729316406],[110.662623320313,35.4992665839844],[110.684583769531,35.4870143867188],[110.712345,35.4892446113281],[110.732020292969,35.4876638007813],[110.757437773438,35.5171645332031],[110.837345,35.523843],[110.843475371094,35.4988845039063]]]]}},{"type":"Feature","properties":{"name":"闻喜县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.365201445313,35.5079714179688],[111.386868925781,35.4738430000001],[111.367545195313,35.4434072089844],[111.403170195313,35.4296681953125],[111.424205351563,35.4003188300781],[111.488526640625,35.4130287910157],[111.530386992188,35.3968849921876],[111.544710722656,35.3597475410157],[111.607345,35.343843],[111.620421171875,35.2906069160157],[111.589173613281,35.2789150214844],[111.561429472656,35.2597585273437],[111.553260527344,35.2479274726563],[111.51896609375,35.239126203125],[111.507345,35.193843],[111.500943632813,35.1708522773438],[111.481832304688,35.1680287910157],[111.47298953125,35.1794863105469],[111.461529570313,35.1883315253907],[111.463206816406,35.1996694160156],[111.409151640625,35.2397450996094],[111.32170046875,35.2581996894531],[111.30490359375,35.2799599433594],[111.281253691406,35.2764650703125],[111.284022246094,35.2951918769532],[111.272857695313,35.3096572089844],[111.262345,35.3081044746094],[111.235889921875,35.3120131660157],[111.210767851563,35.2968593574219],[111.182857695313,35.3009841132813],[111.152738066406,35.2619618964844],[111.13170046875,35.2781996894532],[111.116263457031,35.2981996894531],[111.08170046875,35.2894863105469],[111.077345,35.2838430000001],[111.051429472656,35.2979274726563],[111.043260527344,35.3297585273438],[111.001429472656,35.3579274726563],[110.997345,35.373843],[110.997345,35.383843],[111.022252226563,35.4215358710938],[111.027345,35.453843],[111.102948027344,35.481606671875],[111.186329375,35.474907453125],[111.21197390625,35.4892153144532],[111.24271609375,35.4984706855469],[111.268233671875,35.5280886054688],[111.287345,35.533843],[111.312899199219,35.5382900214844],[111.331829863281,35.5494179511719],[111.404312773438,35.5701161933594],[111.417345,35.5538430000001],[111.405694609375,35.545493390625],[111.393170195313,35.5280178046875],[111.365201445313,35.5079714179688]]]]}},{"type":"Feature","properties":{"name":"夏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.235889921875,35.3120131660157],[111.262345,35.3081044746094],[111.272857695313,35.3096572089844],[111.284022246094,35.2951918769532],[111.281253691406,35.2764650703125],[111.30490359375,35.2799599433594],[111.32170046875,35.2581996894531],[111.409151640625,35.2397450996094],[111.463206816406,35.1996694160156],[111.461529570313,35.1883315253907],[111.47298953125,35.1794863105469],[111.481832304688,35.1680287910157],[111.500943632813,35.1708522773438],[111.507345,35.193843],[111.52170046875,35.1881996894531],[111.55298953125,35.1794863105469],[111.56170046875,35.1581996894531],[111.620616484375,35.134087140625],[111.584129667969,35.1059242988282],[111.578878203125,35.0703774238281],[111.660472441406,35.0565163398438],[111.665301542969,35.023843],[111.66156375,34.9985512519531],[111.667345,34.983843],[111.676256132813,34.9475661445313],[111.633260527344,34.9379274726563],[111.627345,34.9338430000001],[111.611429472656,34.9379274726563],[111.583260527344,34.9497585273438],[111.522967558594,34.9652309394531],[111.503053007813,35.000122296875],[111.479097929688,34.9947524238282],[111.453260527344,34.9779274726563],[111.431429472656,34.9697585273438],[111.419249296875,34.9521181464844],[111.38435671875,35.0026564765625],[111.357345,34.9966017890626],[111.332345,35.0022060371094],[111.307074003906,34.9965407539062],[111.253260527344,35.0097585273438],[111.177345,35.0138430000001],[111.173260527344,35.0297585273437],[111.143682890625,35.050180890625],[111.123260527344,35.0797585273438],[111.101429472656,35.0879274726563],[111.08896609375,35.1059767890625],[111.106900664063,35.1335182929687],[111.099281035156,35.167505109375],[111.071429472656,35.1779274726563],[111.053260527344,35.2297585273438],[111.035811796875,35.2565529609376],[111.073260527344,35.2779274726563],[111.077345,35.2838430000001],[111.08170046875,35.2894863105469],[111.116263457031,35.2981996894531],[111.13170046875,35.2781996894532],[111.152738066406,35.2619618964844],[111.182857695313,35.3009841132813],[111.210767851563,35.2968593574219],[111.235889921875,35.3120131660157]]]]}},{"type":"Feature","properties":{"name":"盐湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.123260527344,35.0797585273438],[111.143682890625,35.050180890625],[111.173260527344,35.0297585273437],[111.177345,35.0138430000001],[111.145513945313,35.0056740546875],[111.1157825,34.96261253125],[111.081429472656,34.9497585273438],[111.053260527344,34.9279274726563],[111.027254667969,34.9181972480469],[111.013016386719,34.8975722480469],[111.002034941406,34.9000331855469],[110.939454375,34.8716701484375],[110.897345,34.843843],[110.879144316406,34.8361977363282],[110.862303496094,34.8399733710937],[110.813260527344,34.8279274726562],[110.767345,34.8238430000001],[110.756698027344,34.8304030585937],[110.733988066406,34.8994521308594],[110.765460234375,34.918843],[110.733531523438,34.9385158515626],[110.741158476563,34.9700307441406],[110.753531523438,34.9876552558594],[110.761158476563,35.0200307441407],[110.767345,35.023843],[110.772181425781,35.0180214667969],[110.791883574219,35.0293056464844],[110.862806425781,35.0483803535157],[110.892078886719,35.0593801093751],[110.914046660156,35.0571401191406],[110.901883574219,35.0783803535157],[110.871737089844,35.1478871894531],[110.872889433594,35.1591909003906],[110.846199980469,35.1962783027344],[110.8821496875,35.2261415839844],[110.887345,35.2438430000001],[110.892530546875,35.2619802070313],[110.912899199219,35.2782900214844],[110.921790800781,35.2893959785156],[110.955716582031,35.3100014472657],[110.991790800781,35.3693959785156],[110.997345,35.373843],[111.001429472656,35.3579274726563],[111.043260527344,35.3297585273438],[111.051429472656,35.2979274726563],[111.077345,35.2838430000001],[111.073260527344,35.2779274726563],[111.035811796875,35.2565529609376],[111.053260527344,35.2297585273438],[111.071429472656,35.1779274726563],[111.099281035156,35.167505109375],[111.106900664063,35.1335182929687],[111.08896609375,35.1059767890625],[111.101429472656,35.0879274726563],[111.123260527344,35.0797585273438]]]]}},{"type":"Feature","properties":{"name":"永济市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.395340605469,35.0458388496094],[110.491983671875,34.9881764960938],[110.512345,34.9907082343751],[110.552345,34.9857338691407],[110.587345,34.9900868964844],[110.607345,34.9875991035156],[110.627345,34.9900868964844],[110.644605742188,34.9879396796875],[110.692899199219,35.0082900214844],[110.709752226563,35.0482900214844],[110.758172636719,35.035298078125],[110.767345,35.023843],[110.761158476563,35.0200307441407],[110.753531523438,34.9876552558594],[110.741158476563,34.9700307441406],[110.733531523438,34.9385158515626],[110.765460234375,34.918843],[110.733988066406,34.8994521308594],[110.756698027344,34.8304030585937],[110.767345,34.8238430000001],[110.762899199219,34.8182900214844],[110.721790800781,34.8093959785156],[110.702703886719,34.7981764960937],[110.675477324219,34.8015627265626],[110.649198027344,34.7861147285157],[110.500750761719,34.8046620917969],[110.459371367188,34.7803395820313],[110.442345,34.7782216621094],[110.431986113281,34.7795095039063],[110.412899199219,34.7682900214844],[110.346922636719,34.7568080878906],[110.298114042969,34.7271620917969],[110.281790800781,34.6993959785157],[110.272899199219,34.6782900214845],[110.247345,34.6738430000001],[110.24271609375,34.6792153144532],[110.2290246875,34.8311879707032],[110.243697539063,34.8711391425782],[110.203758574219,34.9055495429688],[110.23271609375,34.9184706855469],[110.257918730469,34.9325319648438],[110.267345,34.963843],[110.273985625,34.967202375],[110.280704375,34.9904836250001],[110.303985625,35.017202375],[110.324032011719,35.0571083808594],[110.337345,35.063843],[110.351790800781,35.0582900214845],[110.395340605469,35.0458388496094]]]]}},{"type":"Feature","properties":{"name":"垣曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.017345,35.3938430000001],[112.021429472656,35.3479274726563],[112.043875761719,35.3395290351563],[112.063861113281,35.3088356757813],[112.047345,35.2838430000001],[112.051610136719,35.2681081367188],[112.081082792969,35.22894065625],[112.038062773438,35.1969374824219],[112.059283476563,35.1441432929687],[112.050623808594,35.0938430000001],[112.057808867188,35.0521022773438],[112.027345,35.043843],[112.017008085938,35.0588149238282],[111.957345,35.073843],[111.937174101563,35.0817726875001],[111.907345,35.0773647285157],[111.892310820313,35.0795864082032],[111.815150175781,35.0669118476563],[111.79298953125,35.0381996894531],[111.77170046875,35.0294863105469],[111.759605742188,35.0138161445313],[111.69170046875,34.9994863105469],[111.667345,34.983843],[111.66156375,34.9985512519531],[111.665301542969,35.023843],[111.660472441406,35.0565163398438],[111.578878203125,35.0703774238281],[111.584129667969,35.1059242988282],[111.620616484375,35.134087140625],[111.56170046875,35.1581996894531],[111.55298953125,35.1794863105469],[111.52170046875,35.1881996894531],[111.507345,35.193843],[111.51896609375,35.239126203125],[111.553260527344,35.2479274726563],[111.561429472656,35.2597585273437],[111.589173613281,35.2789150214844],[111.620421171875,35.2906069160157],[111.607345,35.343843],[111.641539335938,35.353364484375],[111.667977324219,35.3876161933594],[111.761832304688,35.3737465644532],[111.78170046875,35.3994863105469],[111.847345,35.403843],[111.888736601563,35.3875710273438],[111.902345,35.3895815253906],[111.932857695313,35.38507346875],[111.956058378906,35.4151308417969],[111.967345,35.423843],[112.00170046875,35.3981996894532],[112.017345,35.3938430000001]]]]}},{"type":"Feature","properties":{"name":"芮城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.897345,34.843843],[110.901158476563,34.8276552558594],[110.913531523438,34.8200307441406],[110.921998320313,34.7507765937501],[110.957652617188,34.7386257148438],[110.937345,34.733843],[110.911883574219,34.7293056464844],[110.902806425781,34.6883803535156],[110.890692167969,34.6561367011719],[110.851883574219,34.6393056464844],[110.822323027344,34.6180312324219],[110.778138457031,34.6530007148438],[110.725494414063,34.6476357246094],[110.705228300781,34.6009047675781],[110.596553984375,34.6119814277344],[110.572806425781,34.5983803535156],[110.533890410156,34.5815029121094],[110.480931425781,34.6118349433594],[110.409342070313,34.5918202949219],[110.377345,34.603843],[110.297606230469,34.6104714179688],[110.272105742188,34.6084218574219],[110.257345,34.613843],[110.251429472656,34.6379274726563],[110.247345,34.6738430000001],[110.272899199219,34.6782900214845],[110.281790800781,34.6993959785157],[110.298114042969,34.7271620917969],[110.346922636719,34.7568080878906],[110.412899199219,34.7682900214844],[110.431986113281,34.7795095039063],[110.442345,34.7782216621094],[110.459371367188,34.7803395820313],[110.500750761719,34.8046620917969],[110.649198027344,34.7861147285157],[110.675477324219,34.8015627265626],[110.702703886719,34.7981764960937],[110.721790800781,34.8093959785156],[110.762899199219,34.8182900214844],[110.767345,34.8238430000001],[110.813260527344,34.8279274726562],[110.862303496094,34.8399733710937],[110.879144316406,34.8361977363282],[110.897345,34.843843]]]]}},{"type":"Feature","properties":{"name":"绛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7172278125,35.637856671875],[111.790953398438,35.5967226386719],[111.844124785156,35.6009950996094],[111.822838164063,35.5628420234375],[111.86197390625,35.5484706855469],[111.90197390625,35.5364284492188],[111.88271609375,35.5184706855469],[111.848053007813,35.5080348945313],[111.831219511719,35.4778627753907],[111.832769804688,35.4585646796875],[111.821693144531,35.4387123847657],[111.842154570313,35.4210842109376],[111.847345,35.403843],[111.78170046875,35.3994863105469],[111.761832304688,35.3737465644532],[111.667977324219,35.3876161933594],[111.641539335938,35.353364484375],[111.607345,35.343843],[111.544710722656,35.3597475410157],[111.530386992188,35.3968849921876],[111.488526640625,35.4130287910157],[111.424205351563,35.4003188300781],[111.403170195313,35.4296681953125],[111.367545195313,35.4434072089844],[111.386868925781,35.4738430000001],[111.365201445313,35.5079714179688],[111.393170195313,35.5280178046875],[111.405694609375,35.545493390625],[111.417345,35.5538430000001],[111.430704375,35.5604836250001],[111.447345,35.563843],[111.520213652344,35.5699001289063],[111.571546660156,35.5558510566407],[111.58197390625,35.5792153144531],[111.59271609375,35.5984706855469],[111.60197390625,35.6292153144532],[111.61271609375,35.6384706855469],[111.617345,35.643843],[111.677650175781,35.6497731757813],[111.7172278125,35.637856671875]]]]}},{"type":"Feature","properties":{"name":"稷山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.961090117188,35.8037514472656],[110.998643828125,35.7346511054687],[111.022386503906,35.7399733710938],[111.047345,35.7338430000001],[111.052899199219,35.7193959785156],[111.071790800781,35.6282900214844],[111.0884778125,35.6149269843751],[111.093074980469,35.5779726386719],[111.062899199219,35.5282900214844],[111.031790800781,35.4893959785156],[111.027345,35.453843],[111.022252226563,35.4215358710938],[110.997345,35.383843],[110.991429472656,35.3879274726563],[110.983260527344,35.4297585273438],[110.911429472656,35.4479274726563],[110.903016386719,35.4601137519532],[110.884459257813,35.4559548164063],[110.862791777344,35.4700637031251],[110.851673613281,35.4675722480469],[110.840186796875,35.4842116523438],[110.843475371094,35.4988845039063],[110.837345,35.523843],[110.833260527344,35.5397585273438],[110.819132109375,35.5495131660156],[110.825706816406,35.578843],[110.821224394531,35.598843],[110.824586210938,35.613843],[110.813377714844,35.6638430000001],[110.823529082031,35.7091213203125],[110.817345,35.723843],[110.843260527344,35.7197585273438],[110.909451933594,35.6897585273438],[110.937718535156,35.7232009101563],[110.944586210938,35.753843],[110.940186796875,35.7734743476563],[110.961090117188,35.8037514472656]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"保德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.327093535156,38.8741493964844],[111.292425566406,38.8472792792969],[111.260716582031,38.8679274726562],[111.241429472656,38.8397585273437],[111.233260527344,38.7979274726563],[111.207398710938,38.7882497382813],[111.225513945313,38.7620119453125],[111.251429472656,38.7441188789063],[111.232891875,38.7275991035156],[111.222066679688,38.7300258613282],[111.207345,38.723843],[111.178968535156,38.7302883125],[111.151527128906,38.7268752265625],[111.102899199219,38.6982900214844],[111.071790800781,38.6893959785156],[111.014949980469,38.6559828925782],[110.979827910156,38.6816396308594],[110.951890898438,38.6781642890626],[110.940863066406,38.6919362617188],[110.944154082031,38.7183901191407],[110.937345,38.723843],[110.954053984375,38.7501064277344],[110.951441679688,38.7711074042969],[110.974049101563,38.7892104316406],[111.003155546875,38.8387270332032],[110.99146609375,38.86913596875],[111.011790800781,38.8854116035156],[111.001976347656,38.9339516425781],[110.97353640625,38.9823342109376],[111.031790800781,39.0193959785157],[111.08931765625,39.0294069648438],[111.131419707031,39.0631227851563],[111.141790800781,39.0993959785157],[111.167345,39.113843],[111.179176054688,39.1056740546876],[111.203905058594,39.069858625],[111.255824003906,39.0565346503906],[111.273565703125,39.0292897773438],[111.269757109375,39.0122951484375],[111.317750273438,38.9943361640625],[111.325233183594,38.9609572578125],[111.308409453125,38.9351198554688],[111.317345,38.913843],[111.327093535156,38.8741493964844]]]]}},{"type":"Feature","properties":{"name":"静乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.212899199219,38.6593959785157],[112.228463164063,38.6224599433594],[112.282899199219,38.5893959785157],[112.317345,38.5638430000001],[112.301676054688,38.5392153144532],[112.306092558594,38.5037221503907],[112.289757109375,38.4759352851563],[112.325284453125,38.4474843574219],[112.320535917969,38.4092958808594],[112.339832792969,38.393843],[112.311441679688,38.3711074042969],[112.313026152344,38.3583681464844],[112.2554309375,38.323384015625],[112.267345,38.313843],[112.263441191406,38.3077455878907],[112.233914824219,38.2888430000001],[112.265926542969,38.2683486152344],[112.223531523438,38.2580690742188],[112.218343535156,38.2396059394531],[112.24412234375,38.2231020332031],[112.2601575,38.1660414863282],[112.233441191406,38.1477455878907],[112.211248808594,38.1399404121094],[112.207345,38.1338430000001],[112.20170046875,38.1381996894532],[112.152486601563,38.1496034980469],[112.125889921875,38.1456728339844],[112.095592070313,38.1639479804688],[112.037345,38.1738430000001],[111.993175078125,38.184692609375],[111.952623320313,38.1676601386719],[111.922017851563,38.1745204902344],[111.882791777344,38.200063703125],[111.858011503906,38.1945082832031],[111.863616972656,38.2195131660156],[111.843802519531,38.2331935859375],[111.833260527344,38.2179274726563],[111.807345,38.2138430000001],[111.79400515625,38.2305019355469],[111.764830351563,38.2538649726563],[111.760650664063,38.2874575019531],[111.841790800781,38.3015773750001],[111.832899199219,38.3193959785157],[111.821790800781,38.3282900214844],[111.812899199219,38.3693959785157],[111.781663847656,38.3883681464844],[111.782967558594,38.398843],[111.781102324219,38.413843],[111.78556765625,38.4497536445313],[111.713233671875,38.5048036933594],[111.767345,38.533843],[111.783260527344,38.5379274726563],[111.802076445313,38.565180890625],[111.861429472656,38.5797585273438],[111.867345,38.583843],[111.892899199219,38.5793959785156],[111.921239042969,38.5627370429688],[111.952899199219,38.5493959785157],[111.964578886719,38.52167503125],[112.002515898438,38.5169557929688],[112.011790800781,38.5493959785157],[112.032899199219,38.5582900214844],[112.045213652344,38.5875148750001],[112.109781523438,38.6059767890626],[112.12322390625,38.628843],[112.106390410156,38.6574806953126],[112.122345,38.6594643378907],[112.135638457031,38.6578115058594],[112.19263796875,38.6797206855469],[112.201790800781,38.6682900214844],[112.212899199219,38.6593959785157]]]]}},{"type":"Feature","properties":{"name":"代县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.180291777344,39.2099440742188],[113.221610136719,39.1588198066407],[113.225955839844,39.1294130683594],[113.19298953125,39.1159206367188],[113.202203398438,39.0866054511719],[113.231832304688,39.0909841132813],[113.241832304688,39.0780287910157],[113.253480253906,39.0797499824219],[113.321131621094,39.0520619941407],[113.323084746094,39.038843],[113.320128203125,39.0188430000001],[113.346324492188,39.0081215644531],[113.357345,38.993843],[113.280115996094,38.9717617011719],[113.284210234375,38.9388430000001],[113.280067167969,38.9055239082032],[113.241790800781,38.8893959785157],[113.231890898438,38.8770339179687],[113.186317167969,38.8827028632813],[113.146966582031,38.8539565253907],[113.071961699219,38.8753749824219],[113.042899199219,38.8582900214844],[113.007345,38.853843],[112.991519804688,38.8580178046875],[112.964920683594,38.8951308417969],[112.953170195313,38.9396681953125],[112.911519804688,38.9480178046875],[112.878997832031,38.9728542304688],[112.817628203125,38.9890444160156],[112.768111601563,39.0617922187501],[112.723392363281,39.0938430000001],[112.743170195313,39.1080178046875],[112.751519804688,39.1336830878906],[112.737345,39.143843],[112.743475371094,39.1688014960938],[112.741041289063,39.1796584296875],[112.757345,39.183843],[112.774783964844,39.19069846875],[112.809451933594,39.1855763984375],[112.84170046875,39.2094863105469],[112.87298953125,39.2181996894532],[112.88170046875,39.2394863105469],[112.89298953125,39.2481996894532],[112.924600859375,39.2891555000001],[113.027181425781,39.3177211738281],[113.05170046875,39.3494863105469],[113.067345,39.3538430000001],[113.104744902344,39.367895734375],[113.123509550781,39.3246315742188],[113.151883574219,39.3083803535157],[113.172806425781,39.2993056464844],[113.177345,39.293843],[113.168138457031,39.2867372871094],[113.151077910156,39.2584535957031],[113.185384550781,39.2444130683594],[113.180291777344,39.2099440742188]]]]}},{"type":"Feature","properties":{"name":"定襄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.087139921875,38.6562831855469],[113.081517363281,38.6182497382812],[113.115894804688,38.6086769843751],[113.140413847656,38.5769118476563],[113.18298953125,38.5594863105469],[113.19978640625,38.5377260566406],[113.228638945313,38.5419899726563],[113.26298953125,38.4994863105469],[113.277345,38.463843],[113.271007109375,38.4391481757813],[113.211429472656,38.4297585273438],[113.193260527344,38.4179274726563],[113.137345,38.413843],[113.119696074219,38.4201747871094],[113.090377226563,38.4184279609375],[113.063609648438,38.3884694648438],[113.052345,38.3891408515625],[113.040377226563,38.3884279609375],[112.996820097656,38.3396791816407],[112.957345,38.353843],[112.948450957031,38.3649489570313],[112.898055449219,38.3793581367187],[112.904244414063,38.4291054511719],[112.861214628906,38.4384145332032],[112.877337675781,38.4658412910157],[112.849857207031,38.4878469062501],[112.862899199219,38.4982900214844],[112.877845488281,38.5169557929688],[112.837064238281,38.5863307929688],[112.781790800781,38.5982900214844],[112.747142363281,38.6116091132813],[112.737345,38.623843],[112.754783964844,38.63069846875],[112.772554960938,38.6280727363281],[112.822225371094,38.6425551582032],[112.857345,38.6373647285156],[112.896832304688,38.6432009101563],[112.952723417969,38.6094863105469],[112.98298953125,38.6181996894531],[113.019205351563,38.6400453925782],[113.032857695313,38.6380287910156],[113.04170046875,38.6494863105469],[113.077345,38.663843],[113.087139921875,38.6562831855469]]]]}},{"type":"Feature","properties":{"name":"繁峙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.567345,39.4338430000001],[113.591964140625,39.4177272773438],[113.64255984375,39.4299184394531],[113.681798125,39.413794171875],[113.715303984375,39.420415265625],[113.750999785156,39.4066481757813],[113.771619902344,39.3778786445313],[113.832345,39.3658791328125],[113.888001738281,39.3768776679688],[113.897345,39.3638430000001],[113.888817167969,39.3435390449219],[113.930440703125,39.3148000312501],[113.957469511719,39.2732949042969],[113.943260527344,39.2179274726563],[113.925855742188,39.2059096503906],[113.943499785156,39.1489894843751],[113.941160917969,39.1385646796876],[113.953260527344,39.1097585273438],[113.957345,39.0938430000001],[113.940704375,39.090483625],[113.913985625,39.067202375],[113.880704375,39.060483625],[113.843985625,39.027202375],[113.810704375,39.010483625],[113.803985625,38.9972023750001],[113.777345,38.993843],[113.753704863281,39.0233657050781],[113.682799101563,39.0145461250001],[113.647528105469,39.0585903144532],[113.591790800781,39.0682900214844],[113.572345,39.0797206855469],[113.543116484375,39.0625405097656],[113.532899199219,39.0382900214844],[113.480623808594,38.9729286933594],[113.428914824219,38.9593959785156],[113.412799101563,38.9795217109376],[113.402061796875,38.9781862617188],[113.372899199219,38.9893959785156],[113.357345,38.993843],[113.346324492188,39.0081215644531],[113.320128203125,39.0188430000001],[113.323084746094,39.038843],[113.321131621094,39.0520619941407],[113.253480253906,39.0797499824219],[113.241832304688,39.0780287910157],[113.231832304688,39.0909841132813],[113.202203398438,39.0866054511719],[113.19298953125,39.1159206367188],[113.225955839844,39.1294130683594],[113.221610136719,39.1588198066407],[113.180291777344,39.2099440742188],[113.185384550781,39.2444130683594],[113.151077910156,39.2584535957031],[113.168138457031,39.2867372871094],[113.177345,39.293843],[113.263861113281,39.3183718085938],[113.387611113281,39.3057582832032],[113.402806425781,39.3183803535157],[113.411954375,39.3293923164063],[113.431156035156,39.3274355292969],[113.451883574219,39.3393056464844],[113.502806425781,39.3483803535157],[113.531883574219,39.3893056464844],[113.552896757813,39.3984194160156],[113.55107546875,39.4162953925782],[113.561883574219,39.4293056464844],[113.567345,39.4338430000001]]]]}},{"type":"Feature","properties":{"name":"河曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.397345,38.913843],[111.409537382813,38.9104201484375],[111.400767851563,38.9016506171875],[111.397345,38.913843]]],[[[111.397345,38.913843],[111.378292265625,38.9053090644532],[111.332161894531,38.9204811835938],[111.317345,38.913843],[111.308409453125,38.9351198554688],[111.325233183594,38.9609572578125],[111.317750273438,38.9943361640625],[111.269757109375,39.0122951484375],[111.273565703125,39.0292897773438],[111.255824003906,39.0565346503906],[111.203905058594,39.069858625],[111.179176054688,39.1056740546876],[111.167345,39.113843],[111.160386992188,39.1570058417969],[111.188675566406,39.2051296210938],[111.213016386719,39.2384511542969],[111.209549589844,39.2663246894532],[111.233595,39.2992446113281],[111.179498320313,39.3109499335938],[111.185264921875,39.3573159003906],[111.150213652344,39.3367116523438],[111.152967558594,39.3588430000001],[111.151383085938,39.3715749335938],[111.117345,39.3638430000001],[111.12197390625,39.3792153144532],[111.160369902344,39.4282424140626],[111.282345,39.4184413886719],[111.3482825,39.4237392402344],[111.357345,39.453843],[111.402899199219,39.4493959785156],[111.421790800781,39.3982900214844],[111.448074980469,39.3772426582032],[111.432899199219,39.3582900214844],[111.402899199219,39.3342665839844],[111.481439238281,39.2814882636719],[111.569051542969,39.2478115058594],[111.600748320313,39.2517543769532],[111.607345,39.213843],[111.601158476563,39.2100307441406],[111.593531523438,39.1976552558594],[111.547464628906,39.1725759101562],[111.521539335938,39.1806508613281],[111.509720488281,39.1614675117188],[111.485311308594,39.1464272285157],[111.495511503906,39.1136745429688],[111.481158476563,39.0700307441407],[111.473531523438,39.0123537421875],[111.495579863281,38.9987697578125],[111.461158476563,38.9800307441406],[111.457345,38.9738430000001],[111.406058378906,38.9651308417969],[111.397345,38.913843]]]]}},{"type":"Feature","properties":{"name":"宁武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457345,38.683843],[112.467345,38.683843],[112.467345,38.6738430000001],[112.457345,38.6738430000001],[112.457345,38.683843]]],[[[112.277345,39.103843],[112.287345,39.103843],[112.287345,39.0938430000001],[112.277345,39.0938430000001],[112.277345,39.103843]]],[[[112.277345,39.103843],[112.257345,39.103843],[112.257345,39.123843],[112.300101347656,39.1200380683594],[112.280614042969,39.1105739570312],[112.277345,39.103843]]],[[[112.457345,38.683843],[112.431656523438,38.6793727851562],[112.433924589844,38.6611428046875],[112.37068484375,38.6105019355469],[112.352899199219,38.5882900214844],[112.321790800781,38.5693959785156],[112.317345,38.5638430000001],[112.282899199219,38.5893959785157],[112.228463164063,38.6224599433594],[112.212899199219,38.6593959785157],[112.201790800781,38.6682900214844],[112.19263796875,38.6797206855469],[112.135638457031,38.6578115058594],[112.122345,38.6594643378907],[112.106390410156,38.6574806953126],[112.12322390625,38.628843],[112.109781523438,38.6059767890626],[112.045213652344,38.5875148750001],[112.032899199219,38.5582900214844],[112.011790800781,38.5493959785157],[112.002515898438,38.5169557929688],[111.964578886719,38.52167503125],[111.952899199219,38.5493959785157],[111.921239042969,38.5627370429688],[111.892899199219,38.5793959785156],[111.867345,38.583843],[111.85298953125,38.6194863105469],[111.833116484375,38.6524330878906],[111.847345,38.7138430000001],[111.861429472656,38.7197585273438],[111.893260527344,38.7279274726563],[111.901429472656,38.7397585273438],[111.923260527344,38.7479274726563],[111.931429472656,38.7697585273438],[111.950369902344,38.798843],[111.930833769531,38.8288430000001],[111.943260527344,38.8479274726563],[111.95298953125,38.8977516914063],[111.985303984375,38.9187929511719],[112.017345,38.923843],[112.02298953125,38.9281996894531],[112.031937285156,38.9397927070313],[112.090941191406,38.9225893378907],[112.11170046875,38.9494863105469],[112.143765898438,38.9742360664063],[112.13912234375,39.0056508613282],[112.21298953125,39.0181996894532],[112.230064726563,39.0599184394532],[112.242345,39.0581044746094],[112.25263796875,39.0596254707031],[112.282689238281,39.0478115058594],[112.294022246094,39.0624941230469],[112.29156375,39.0791347480469],[112.297345,39.0938430000001],[112.303260527344,39.0979274726562],[112.314393339844,39.1276821113281],[112.365545683594,39.1061977363282],[112.397345,39.1133266425781],[112.441124296875,39.1035121894532],[112.509329863281,39.1479274726563],[112.537310820313,39.1383754707032],[112.551429472656,39.1179274726563],[112.573260527344,39.1097585273438],[112.583035917969,39.0836330390626],[112.607345,39.0938430000001],[112.607345,39.083843],[112.617345,39.083843],[112.612408476563,39.0670180488282],[112.562611113281,39.0483058906251],[112.528348417969,39.0517983222657],[112.488409453125,39.0271633125],[112.457432890625,38.9898708320313],[112.437345,38.9878237128907],[112.396553984375,38.9919814277344],[112.371156035156,38.9774355292969],[112.343858671875,38.9802175117188],[112.316656523438,38.9327211738281],[112.333363066406,38.918843],[112.300206328125,38.8913002753906],[112.2815246875,38.8586782050782],[112.301663847656,38.8419496894532],[112.281097441406,38.7872133613281],[112.302806425781,38.7493056464844],[112.320155058594,38.7093056464844],[112.362869902344,38.7264186835938],[112.382181425781,38.7496645332031],[112.403533964844,38.7374355292969],[112.429178496094,38.7400490546875],[112.464945097656,38.7179860664063],[112.457345,38.683843]]]]}},{"type":"Feature","properties":{"name":"偏关县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.437345,39.6238430000001],[111.449852324219,39.6010243964844],[111.460885039063,39.6187795234375],[111.427345,39.643843],[111.46271609375,39.6484706855469],[111.505101347656,39.6640358710937],[111.60400515625,39.6369680000001],[111.655982695313,39.6411440253906],[111.7012121875,39.620962140625],[111.718997832031,39.600317609375],[111.788143339844,39.59476096875],[111.832218046875,39.6193520332031],[111.87216921875,39.6084169746094],[111.927345,39.613843],[111.941790800781,39.5782900214844],[112.001790800781,39.5326271796875],[111.992899199219,39.5282900214844],[111.892899199219,39.513735578125],[111.904908476563,39.4793740058594],[111.921890898438,39.4581642890625],[111.945753203125,39.4611330390626],[111.98084109375,39.4330361152344],[111.997345,39.4038430000001],[111.979906035156,39.39698753125],[111.947515898438,39.4017726875],[111.91298953125,39.3881996894531],[111.87170046875,39.3794863105469],[111.858062773438,39.3305104804688],[111.833863554688,39.3194863105469],[111.753062773438,39.3512514472656],[111.717496367188,39.305171125],[111.744110136719,39.2610500312501],[111.737345,39.2438430000001],[111.72263796875,39.2496254707031],[111.697345,39.2458876777344],[111.671832304688,39.2496572089844],[111.660811796875,39.2353774238282],[111.607345,39.213843],[111.600748320313,39.2517543769532],[111.569051542969,39.2478115058594],[111.481439238281,39.2814882636719],[111.402899199219,39.3342665839844],[111.432899199219,39.3582900214844],[111.448074980469,39.3772426582032],[111.421790800781,39.3982900214844],[111.402899199219,39.4493959785156],[111.357345,39.453843],[111.363275175781,39.4745803046875],[111.425350371094,39.5096767402344],[111.420960722656,39.5449758125001],[111.431790800781,39.6193959785157],[111.437345,39.6238430000001]]]]}},{"type":"Feature","properties":{"name":"神池县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.00298953125,39.3994863105469],[112.017345,39.3638430000001],[112.022511015625,39.3452931953126],[112.050941191406,39.3233498359375],[112.053084746094,39.308843],[112.049793730469,39.2865810371094],[112.078426542969,39.2494863105469],[112.09298953125,39.2581996894532],[112.108426542969,39.2781996894532],[112.158465605469,39.2684157539063],[112.183160429688,39.2493544746094],[112.181033964844,39.2349745917969],[112.20170046875,39.2081996894532],[112.214486113281,39.1983315253907],[112.211253691406,39.1764650703126],[112.249351835938,39.182094953125],[112.263155546875,39.1592116523438],[112.257345,39.123843],[112.257345,39.103843],[112.277345,39.103843],[112.277345,39.0938430000001],[112.287345,39.0938430000001],[112.297345,39.0938430000001],[112.29156375,39.0791347480469],[112.294022246094,39.0624941230469],[112.282689238281,39.0478115058594],[112.25263796875,39.0596254707031],[112.242345,39.0581044746094],[112.230064726563,39.0599184394532],[112.21298953125,39.0181996894532],[112.13912234375,39.0056508613282],[112.143765898438,38.9742360664063],[112.11170046875,38.9494863105469],[112.090941191406,38.9225893378907],[112.031937285156,38.9397927070313],[112.02298953125,38.9281996894531],[112.017345,38.923843],[111.972899199219,38.9793959785157],[111.944324980469,39.0022768378907],[111.924686308594,39.0488845039063],[111.876239042969,39.0627370429688],[111.832899199219,39.0793959785157],[111.801790800781,39.0882900214844],[111.788450957031,39.1049489570313],[111.769915800781,39.1197914863281],[111.742899199219,39.1622743964844],[111.778768339844,39.1909987617188],[111.791790800781,39.2139943671875],[111.741790800781,39.2282900214844],[111.737345,39.2438430000001],[111.744110136719,39.2610500312501],[111.717496367188,39.305171125],[111.753062773438,39.3512514472656],[111.833863554688,39.3194863105469],[111.858062773438,39.3305104804688],[111.87170046875,39.3794863105469],[111.91298953125,39.3881996894531],[111.947515898438,39.4017726875],[111.979906035156,39.39698753125],[111.997345,39.4038430000001],[112.00298953125,39.3994863105469]]]]}},{"type":"Feature","properties":{"name":"五台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.647528105469,39.0585903144532],[113.682799101563,39.0145461250001],[113.753704863281,39.0233657050781],[113.777345,38.993843],[113.761812773438,38.9804616523438],[113.768851347656,38.8928749824219],[113.794947539063,38.8560683417969],[113.851485625,38.8308400703126],[113.821849394531,38.7890395332032],[113.827345,38.763843],[113.81263796875,38.7580605292969],[113.785064726563,38.7621352363281],[113.761204863281,38.7038393378906],[113.712042265625,38.7111037421876],[113.702413359375,38.665473859375],[113.678695097656,38.6471657539063],[113.642345,38.6525368476563],[113.606651640625,38.6472621894531],[113.590560332031,38.5894814277344],[113.55170046875,38.5594863105469],[113.54298953125,38.5281996894532],[113.537345,38.5238430000001],[113.512386503906,38.5177126289063],[113.501898222656,38.5200637031251],[113.470780058594,38.49980003125],[113.419144316406,38.5214882636719],[113.389097929688,38.5147524238281],[113.363260527344,38.4979274726563],[113.307122832031,38.483520734375],[113.277345,38.463843],[113.26298953125,38.4994863105469],[113.228638945313,38.5419899726563],[113.19978640625,38.5377260566406],[113.18298953125,38.5594863105469],[113.140413847656,38.5769118476563],[113.115894804688,38.6086769843751],[113.081517363281,38.6182497382812],[113.087139921875,38.6562831855469],[113.077345,38.663843],[113.061429472656,38.6879274726563],[113.053260527344,38.7097585273438],[113.039132109375,38.7195131660156],[113.043565703125,38.7392897773437],[113.026820097656,38.7650051093751],[112.961048613281,38.7880605292969],[112.964490996094,38.8034206367188],[113.003260527344,38.8179274726563],[113.007345,38.853843],[113.042899199219,38.8582900214844],[113.071961699219,38.8753749824219],[113.146966582031,38.8539565253907],[113.186317167969,38.8827028632813],[113.231890898438,38.8770339179687],[113.241790800781,38.8893959785157],[113.280067167969,38.9055239082032],[113.284210234375,38.9388430000001],[113.280115996094,38.9717617011719],[113.357345,38.993843],[113.372899199219,38.9893959785156],[113.402061796875,38.9781862617188],[113.412799101563,38.9795217109376],[113.428914824219,38.9593959785156],[113.480623808594,38.9729286933594],[113.532899199219,39.0382900214844],[113.543116484375,39.0625405097656],[113.572345,39.0797206855469],[113.591790800781,39.0682900214844],[113.647528105469,39.0585903144532]]]]}},{"type":"Feature","properties":{"name":"五寨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.671832304688,39.2496572089844],[111.697345,39.2458876777344],[111.72263796875,39.2496254707031],[111.737345,39.2438430000001],[111.741790800781,39.2282900214844],[111.791790800781,39.2139943671875],[111.778768339844,39.1909987617188],[111.742899199219,39.1622743964844],[111.769915800781,39.1197914863281],[111.788450957031,39.1049489570313],[111.801790800781,39.0882900214844],[111.832899199219,39.0793959785157],[111.876239042969,39.0627370429688],[111.924686308594,39.0488845039063],[111.944324980469,39.0022768378907],[111.972899199219,38.9793959785157],[112.017345,38.923843],[111.985303984375,38.9187929511719],[111.95298953125,38.8977516914063],[111.943260527344,38.8479274726563],[111.930833769531,38.8288430000001],[111.950369902344,38.798843],[111.931429472656,38.7697585273438],[111.923260527344,38.7479274726563],[111.901429472656,38.7397585273438],[111.893260527344,38.7279274726563],[111.861429472656,38.7197585273438],[111.847345,38.7138430000001],[111.833240996094,38.7255580878907],[111.862806425781,38.7383803535157],[111.881883574219,38.7681447578126],[111.799986601563,38.7786232734375],[111.782806425781,38.7993056464844],[111.771883574219,38.8083803535157],[111.756756621094,38.8432558417969],[111.721883574219,38.8583803535157],[111.663270292969,38.9047682929688],[111.586300078125,38.9218361640625],[111.562806425781,38.9083803535156],[111.536156035156,38.8993056464844],[111.552806425781,38.9283803535157],[111.561883574219,38.9550759101563],[111.495875273438,38.9697121406251],[111.474212675781,38.967505109375],[111.457345,38.9738430000001],[111.461158476563,38.9800307441406],[111.495579863281,38.9987697578125],[111.473531523438,39.0123537421875],[111.481158476563,39.0700307441407],[111.495511503906,39.1136745429688],[111.485311308594,39.1464272285157],[111.509720488281,39.1614675117188],[111.521539335938,39.1806508613281],[111.547464628906,39.1725759101562],[111.593531523438,39.1976552558594],[111.601158476563,39.2100307441406],[111.607345,39.213843],[111.660811796875,39.2353774238282],[111.671832304688,39.2496572089844]]]]}},{"type":"Feature","properties":{"name":"忻府区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457345,38.683843],[112.457345,38.6738430000001],[112.467345,38.6738430000001],[112.497005644531,38.6572377753907],[112.512323027344,38.6373952460938],[112.55170046875,38.6081996894532],[112.59298953125,38.5994863105469],[112.626143828125,38.5794863105469],[112.65298953125,38.5881996894531],[112.6819153125,38.6096450019532],[112.710809355469,38.6053749824219],[112.72170046875,38.6194863105469],[112.737345,38.623843],[112.747142363281,38.6116091132813],[112.781790800781,38.5982900214844],[112.837064238281,38.5863307929688],[112.877845488281,38.5169557929688],[112.862899199219,38.4982900214844],[112.849857207031,38.4878469062501],[112.877337675781,38.4658412910157],[112.861214628906,38.4384145332032],[112.904244414063,38.4291054511719],[112.898055449219,38.3793581367187],[112.948450957031,38.3649489570313],[112.957345,38.353843],[112.945882597656,38.3389931464844],[112.89298953125,38.3181996894531],[112.827508574219,38.2999648261719],[112.789737578125,38.2510317207032],[112.722428007813,38.2380922675782],[112.702345,38.2410597968751],[112.677345,38.2373647285157],[112.642916289063,38.2424526191407],[112.629920683594,38.2107009101563],[112.607345,38.2073647285157],[112.592345,38.2095815253907],[112.566773710938,38.2058034492188],[112.545562773438,38.2576284003906],[112.522857695313,38.2609841132813],[112.506851835938,38.2402480292969],[112.487952910156,38.2374550605469],[112.455030546875,38.2509291816407],[112.432689238281,38.2798744941407],[112.394390898438,38.2648195625001],[112.36170046875,38.2781996894531],[112.318204375,38.3104482246094],[112.296097441406,38.3071804023438],[112.267345,38.313843],[112.2554309375,38.323384015625],[112.313026152344,38.3583681464844],[112.311441679688,38.3711074042969],[112.339832792969,38.393843],[112.320535917969,38.4092958808594],[112.325284453125,38.4474843574219],[112.289757109375,38.4759352851563],[112.306092558594,38.5037221503907],[112.301676054688,38.5392153144532],[112.317345,38.5638430000001],[112.321790800781,38.5693959785156],[112.352899199219,38.5882900214844],[112.37068484375,38.6105019355469],[112.433924589844,38.6611428046875],[112.431656523438,38.6793727851562],[112.457345,38.683843]]]]}},{"type":"Feature","properties":{"name":"原平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.617345,39.083843],[112.607345,39.083843],[112.607345,39.0938430000001],[112.617345,39.0938430000001],[112.617345,39.083843]]],[[[112.617345,39.083843],[112.640699492188,39.0893434882813],[112.655426054688,39.1325551582031],[112.68435671875,39.1235451484376],[112.721158476563,39.1400307441407],[112.737345,39.143843],[112.751519804688,39.1336830878906],[112.743170195313,39.1080178046875],[112.723392363281,39.0938430000001],[112.768111601563,39.0617922187501],[112.817628203125,38.9890444160156],[112.878997832031,38.9728542304688],[112.911519804688,38.9480178046875],[112.953170195313,38.9396681953125],[112.964920683594,38.8951308417969],[112.991519804688,38.8580178046875],[113.007345,38.853843],[113.003260527344,38.8179274726563],[112.964490996094,38.8034206367188],[112.961048613281,38.7880605292969],[113.026820097656,38.7650051093751],[113.043565703125,38.7392897773437],[113.039132109375,38.7195131660156],[113.053260527344,38.7097585273438],[113.061429472656,38.6879274726563],[113.077345,38.663843],[113.04170046875,38.6494863105469],[113.032857695313,38.6380287910156],[113.019205351563,38.6400453925782],[112.98298953125,38.6181996894531],[112.952723417969,38.6094863105469],[112.896832304688,38.6432009101563],[112.857345,38.6373647285156],[112.822225371094,38.6425551582032],[112.772554960938,38.6280727363281],[112.754783964844,38.63069846875],[112.737345,38.623843],[112.72170046875,38.6194863105469],[112.710809355469,38.6053749824219],[112.6819153125,38.6096450019532],[112.65298953125,38.5881996894531],[112.626143828125,38.5794863105469],[112.59298953125,38.5994863105469],[112.55170046875,38.6081996894532],[112.512323027344,38.6373952460938],[112.497005644531,38.6572377753907],[112.467345,38.6738430000001],[112.467345,38.683843],[112.457345,38.683843],[112.464945097656,38.7179860664063],[112.429178496094,38.7400490546875],[112.403533964844,38.7374355292969],[112.382181425781,38.7496645332031],[112.362869902344,38.7264186835938],[112.320155058594,38.7093056464844],[112.302806425781,38.7493056464844],[112.281097441406,38.7872133613281],[112.301663847656,38.8419496894532],[112.2815246875,38.8586782050782],[112.300206328125,38.8913002753906],[112.333363066406,38.918843],[112.316656523438,38.9327211738281],[112.343858671875,38.9802175117188],[112.371156035156,38.9774355292969],[112.396553984375,38.9919814277344],[112.437345,38.9878237128907],[112.457432890625,38.9898708320313],[112.488409453125,39.0271633125],[112.528348417969,39.0517983222657],[112.562611113281,39.0483058906251],[112.612408476563,39.0670180488282],[112.617345,39.083843]]]]}},{"type":"Feature","properties":{"name":"岢岚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.397345,38.913843],[111.400767851563,38.9016506171875],[111.409537382813,38.9104201484375],[111.406058378906,38.9651308417969],[111.457345,38.9738430000001],[111.474212675781,38.967505109375],[111.495875273438,38.9697121406251],[111.561883574219,38.9550759101563],[111.552806425781,38.9283803535157],[111.536156035156,38.8993056464844],[111.562806425781,38.9083803535156],[111.586300078125,38.9218361640625],[111.663270292969,38.9047682929688],[111.721883574219,38.8583803535157],[111.756756621094,38.8432558417969],[111.771883574219,38.8083803535157],[111.782806425781,38.7993056464844],[111.799986601563,38.7786232734375],[111.881883574219,38.7681447578126],[111.862806425781,38.7383803535157],[111.833240996094,38.7255580878907],[111.847345,38.7138430000001],[111.833116484375,38.6524330878906],[111.85298953125,38.6194863105469],[111.867345,38.583843],[111.861429472656,38.5797585273438],[111.802076445313,38.565180890625],[111.783260527344,38.5379274726563],[111.767345,38.533843],[111.752535429688,38.5590334296876],[111.727181425781,38.5958803535157],[111.708365507813,38.6086525703126],[111.682535429688,38.5686525703126],[111.590384550781,38.5346962714844],[111.548023710938,38.5055471015625],[111.505079375,38.5282704902344],[111.49248171875,38.4884792304688],[111.454561796875,38.5085439277344],[111.442535429688,38.5590334296876],[111.417345,38.573843],[111.349705839844,38.5794960761719],[111.330079375,38.6022768378906],[111.262691679688,38.5968617988281],[111.25271609375,38.6192153144532],[111.241917753906,38.6285195136719],[111.243470488281,38.6478627753906],[111.225291777344,38.6804457832032],[111.207345,38.723843],[111.222066679688,38.7300258613282],[111.232891875,38.7275991035156],[111.251429472656,38.7441188789063],[111.225513945313,38.7620119453125],[111.207398710938,38.7882497382813],[111.233260527344,38.7979274726563],[111.241429472656,38.8397585273437],[111.260716582031,38.8679274726562],[111.292425566406,38.8472792792969],[111.327093535156,38.8741493964844],[111.317345,38.913843],[111.332161894531,38.9204811835938],[111.378292265625,38.9053090644532],[111.397345,38.913843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"侯马市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.40271609375,35.6992153144531],[111.420726347656,35.6783107734376],[111.442847929688,35.6800881171875],[111.441541777344,35.6638430000001],[111.442747832031,35.648843],[111.441920195313,35.6385646796875],[111.452779570313,35.6191030097656],[111.447345,35.563843],[111.430704375,35.5604836250001],[111.417345,35.5538430000001],[111.404312773438,35.5701161933594],[111.331829863281,35.5494179511719],[111.312899199219,35.5382900214844],[111.287345,35.533843],[111.283804960938,35.5503029609375],[111.266541777344,35.5597646308594],[111.274449492188,35.5789492011719],[111.260240507813,35.6087367988282],[111.264405546875,35.618843],[111.256793242188,35.6373146796875],[111.284881621094,35.6257363105469],[111.294405546875,35.648843],[111.28572390625,35.6699086738282],[111.337345,35.673843],[111.346676054688,35.6603285957031],[111.361429472656,35.6997585273438],[111.387345,35.7038430000001],[111.40271609375,35.6992153144531]]]]}},{"type":"Feature","properties":{"name":"洪洞县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,36.4638430000001],[111.605152617188,36.4672658515625],[111.613922148438,36.4760353828126],[111.617345,36.4638430000001]]],[[[111.617345,36.4638430000001],[111.641429472656,36.4797585273437],[111.673260527344,36.4879274726563],[111.677345,36.5038430000001],[111.703175078125,36.4994557929688],[111.698680449219,36.4690431953126],[111.752249785156,36.447983625],[111.799310332031,36.4617055488282],[111.833924589844,36.4408266425781],[111.85263796875,36.4380605292969],[111.867345,36.443843],[111.88021609375,36.4346181464844],[111.8839465625,36.4157411933594],[111.856768828125,36.3962636542969],[111.871519804688,36.3580178046875],[111.89021609375,36.3446181464844],[111.894722929688,36.3218093085938],[111.883170195313,36.2780178046875],[111.853172636719,36.2307692695313],[111.894032011719,36.1683510566407],[111.871519804688,36.1596681953125],[111.852862578125,36.1336379218751],[111.811519804688,36.1096681953125],[111.807345,36.103843],[111.792496367188,36.1092958808594],[111.701990996094,36.0952553535157],[111.639647246094,36.1002651191407],[111.643560820313,36.1489614082031],[111.607916289063,36.159692609375],[111.575123320313,36.1570571113282],[111.56271609375,36.1626247382813],[111.590738554688,36.2128493476562],[111.52197390625,36.2284706855469],[111.491214628906,36.2397670722657],[111.493416777344,36.2671718574219],[111.417015410156,36.3220302558594],[111.363902617188,36.3177626777344],[111.347345,36.323843],[111.339564238281,36.3412136054688],[111.354969511719,36.3662184882813],[111.379378691406,36.3812587714844],[111.364857207031,36.4278835273438],[111.394456816406,36.4379714179688],[111.379720488281,36.4812184882813],[111.355091582031,36.5162929511719],[111.367345,36.523843],[111.370767851563,36.5116506171875],[111.379537382813,36.5204201484376],[111.367345,36.523843],[111.367345,36.5338430000001],[111.387345,36.5338430000001],[111.423260527344,36.5097585273438],[111.431429472656,36.4979274726563],[111.452615996094,36.4832997871094],[111.482345,36.4899636054688],[111.497615996094,36.4865407539063],[111.55310671875,36.500171125],[111.561429472656,36.4779274726563],[111.573260527344,36.4697585273438],[111.581429472656,36.4579274726563],[111.607620878906,36.4497585273438],[111.617345,36.4638430000001]]]]}},{"type":"Feature","properties":{"name":"安泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.203016386719,36.4192372871094],[112.201163359375,36.4043422675782],[112.249251738281,36.4103237128906],[112.268450957031,36.3949489570312],[112.281790800781,36.3782900214844],[112.332899199219,36.3593959785156],[112.341834746094,36.3482350898438],[112.422628203125,36.3381862617188],[112.437345,36.3438430000001],[112.476121855469,36.2600807929688],[112.540418730469,36.2575319648437],[112.564588652344,36.2703212714844],[112.557345,36.1938430000001],[112.549595976563,36.1622927070313],[112.566165800781,36.1228432441406],[112.543260527344,36.1079274726563],[112.496024199219,36.0902529121094],[112.484537382813,36.0390138984375],[112.517345,36.033843],[112.525404082031,35.9693459296876],[112.479732695313,35.9501015449219],[112.385806914063,35.8940590644531],[112.337345,35.9000868964844],[112.302298613281,35.8957277656251],[112.172830839844,35.9119033027344],[112.137345,35.903843],[112.142908964844,35.9189919257813],[112.071429472656,36.0024599433594],[112.072760039063,36.0190151191407],[112.067345,36.0438430000001],[112.08556765625,36.0494704414063],[112.112064238281,36.0791237617187],[112.152225371094,36.0915261054688],[112.192064238281,36.1247927070313],[112.155208769531,36.1417079902344],[112.142625761719,36.2091237617188],[112.12531375,36.2245925117188],[112.112625761719,36.2791237617188],[112.086219511719,36.3027175117188],[112.060062285156,36.3319936347656],[112.020155058594,36.3176747871094],[111.992625761719,36.3206923652344],[112.012625761719,36.3385622382813],[112.022064238281,36.3491237617188],[112.061888457031,36.3674025703126],[112.084757109375,36.4033608222657],[112.082047148438,36.448843],[112.082642851563,36.4588430000001],[112.080199003906,36.4998647285156],[112.10656375,36.4982936835938],[112.142064238281,36.4585622382813],[112.177345,36.453843],[112.203016386719,36.4192372871094]]]]}},{"type":"Feature","properties":{"name":"大宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.757345,36.303843],[110.769537382813,36.3004201484375],[110.760767851563,36.2916506171876],[110.757345,36.303843]]],[[[110.757345,36.303843],[110.692982207031,36.2932692695313],[110.63298953125,36.3194863105469],[110.572996855469,36.3296779609376],[110.537857695313,36.3244850898438],[110.510767851563,36.3408266425782],[110.492203398438,36.3380825019532],[110.467345,36.3438430000001],[110.471158476563,36.3700307441407],[110.488543730469,36.4228932929687],[110.465091582031,36.4562929511719],[110.49281375,36.4733730292969],[110.501158476563,36.5230092597657],[110.487345,36.553843],[110.513170195313,36.5496681953126],[110.551046171875,36.5256215644531],[110.582345,36.5318068671875],[110.642659941406,36.5198891425782],[110.671519804688,36.5696681953125],[110.726971464844,36.5893679023438],[110.741519804688,36.6096681953125],[110.747345,36.6138430000001],[110.751004667969,36.5957204414063],[110.767345,36.603843],[110.773985625,36.600483625],[110.784298125,36.5800978828126],[110.812345,36.56640159375],[110.826031523438,36.5730849433594],[110.848001738281,36.5454274726562],[110.83990359375,36.528843],[110.8472278125,36.513843],[110.839713164063,36.4984511542969],[110.853985625,36.4804836250001],[110.857345,36.4638430000001],[110.843392363281,36.453843],[110.868995390625,36.435493390625],[110.885760527344,36.4120998359376],[110.870799589844,36.3885341621094],[110.886329375,36.3774037910157],[110.904703398438,36.3297634101563],[111.001790800781,36.3048989082032],[111.007345,36.283843],[110.992633085938,36.2777980781251],[110.942647734375,36.2876747871094],[110.90252078125,36.2998659492188],[110.877345,36.2948903632813],[110.852345,36.2998305488281],[110.828651152344,36.2951491523438],[110.833333769531,36.318843],[110.830831328125,36.3315077949219],[110.768319121094,36.3191555000001],[110.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"汾西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,36.4638430000001],[111.613922148438,36.4760353828126],[111.605152617188,36.4672658515625],[111.607620878906,36.4497585273438],[111.581429472656,36.4579274726563],[111.573260527344,36.4697585273438],[111.561429472656,36.4779274726563],[111.55310671875,36.500171125],[111.497615996094,36.4865407539063],[111.482345,36.4899636054688],[111.452615996094,36.4832997871094],[111.431429472656,36.4979274726563],[111.423260527344,36.5097585273438],[111.387345,36.5338430000001],[111.381214628906,36.5588014960937],[111.383529082031,36.5691213203126],[111.370784941406,36.5994594550782],[111.318917265625,36.6188674140626],[111.261429472656,36.6279274726563],[111.257345,36.633843],[111.262779570313,36.6891030097657],[111.251920195313,36.7085646796875],[111.253629179688,36.7298146796875],[111.237345,36.743843],[111.24154421875,36.7611598945312],[111.274002714844,36.7497426582032],[111.268675566406,36.730786359375],[111.302345,36.7402480292969],[111.31310671875,36.7372231269531],[111.321248808594,36.7499404121094],[111.348084746094,36.759380109375],[111.361248808594,36.7799404121094],[111.407345,36.8038430000001],[111.411429472656,36.7979274726563],[111.423260527344,36.7897585273438],[111.437069121094,36.7697585273438],[111.476927519531,36.778755109375],[111.491998320313,36.80058128125],[111.511898222656,36.787622296875],[111.526976347656,36.7910024238281],[111.543616972656,36.7795131660157],[111.537191191406,36.7508534980469],[111.553260527344,36.7397585273438],[111.561658964844,36.7173134589844],[111.591429472656,36.6979274726562],[111.613260527344,36.6897585273438],[111.621429472656,36.6779274726563],[111.643260527344,36.6697585273437],[111.651429472656,36.6579274726562],[111.663260527344,36.6497585273438],[111.667345,36.643843],[111.66259890625,36.6385305],[111.634293242188,36.6402175117188],[111.652760039063,36.5887526679688],[111.622711210938,36.5457338691407],[111.677345,36.5038430000001],[111.673260527344,36.4879274726563],[111.641429472656,36.4797585273437],[111.617345,36.4638430000001]]]]}},{"type":"Feature","properties":{"name":"浮山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.891429472656,36.0779274726563],[111.933260527344,36.0697585273438],[111.962542753906,36.0574599433594],[111.982345,36.0703554511719],[112.016051054688,36.0484059882812],[112.067345,36.0438430000001],[112.072760039063,36.0190151191407],[112.071429472656,36.0024599433594],[112.142908964844,35.9189919257813],[112.137345,35.903843],[112.151429472656,35.8779274726563],[112.200318632813,35.8596340156251],[112.221429472656,35.8272145820313],[112.177318144531,35.8164809394532],[112.123260527344,35.8297585273437],[112.071429472656,35.8379274726563],[112.035553007813,35.8657314277344],[112.027345,35.8538430000001],[112.01263796875,35.8480605292969],[111.997345,35.8503212714844],[111.977345,35.8473647285157],[111.952345,35.851059796875],[111.922345,35.846626203125],[111.902345,35.8495815253907],[111.873975859375,35.8453896308594],[111.849298125,35.8134194160156],[111.78298953125,35.8394863105469],[111.745213652344,35.8500063300781],[111.732345,35.8481044746094],[111.722345,35.8495815253907],[111.712310820313,35.8480995917969],[111.677345,35.8538430000001],[111.67062625,35.86712425],[111.650704375,35.8772023750001],[111.647345,35.903843],[111.663260527344,35.9079274726563],[111.677254667969,35.9281972480469],[111.703638945313,35.9380690742188],[111.699891386719,35.9547927070312],[111.716378203125,36.0079885078126],[111.773260527344,36.0279274726563],[111.812042265625,36.0531813789063],[111.817345,36.073843],[111.823016386719,36.082055890625],[111.843016386719,36.0775722480469],[111.861705351563,36.1046413398438],[111.883260527344,36.0897585273438],[111.891429472656,36.0779274726563]]]]}},{"type":"Feature","properties":{"name":"古县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.09267703125,36.5546962714844],[112.171676054688,36.4991677070313],[112.177345,36.453843],[112.142064238281,36.4585622382813],[112.10656375,36.4982936835938],[112.080199003906,36.4998647285156],[112.082642851563,36.4588430000001],[112.082047148438,36.448843],[112.084757109375,36.4033608222657],[112.061888457031,36.3674025703126],[112.022064238281,36.3491237617188],[112.012625761719,36.3385622382813],[111.992625761719,36.3206923652344],[112.020155058594,36.3176747871094],[112.060062285156,36.3319936347656],[112.086219511719,36.3027175117188],[112.112625761719,36.2791237617188],[112.12531375,36.2245925117188],[112.142625761719,36.2091237617188],[112.155208769531,36.1417079902344],[112.192064238281,36.1247927070313],[112.152225371094,36.0915261054688],[112.112064238281,36.0791237617187],[112.08556765625,36.0494704414063],[112.067345,36.0438430000001],[112.016051054688,36.0484059882812],[111.982345,36.0703554511719],[111.962542753906,36.0574599433594],[111.933260527344,36.0697585273438],[111.891429472656,36.0779274726563],[111.883260527344,36.0897585273438],[111.861705351563,36.1046413398438],[111.843016386719,36.0775722480469],[111.823016386719,36.082055890625],[111.817345,36.073843],[111.804349394531,36.0798964667969],[111.815814238281,36.0998964667969],[111.807345,36.103843],[111.811519804688,36.1096681953125],[111.852862578125,36.1336379218751],[111.871519804688,36.1596681953125],[111.894032011719,36.1683510566407],[111.853172636719,36.2307692695313],[111.883170195313,36.2780178046875],[111.894722929688,36.3218093085938],[111.89021609375,36.3446181464844],[111.871519804688,36.3580178046875],[111.856768828125,36.3962636542969],[111.8839465625,36.4157411933594],[111.88021609375,36.4346181464844],[111.867345,36.443843],[111.8576965625,36.4683864570313],[111.88170046875,36.4994863105469],[111.941204863281,36.5238405585938],[111.95170046875,36.5494863105469],[111.973463164063,36.5662831855469],[111.970924101563,36.5834609199219],[112.012486601563,36.5896034980469],[112.037345,36.5838430000001],[112.072899199219,36.5793959785157],[112.09267703125,36.5546962714844]]]]}},{"type":"Feature","properties":{"name":"霍州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,36.703843],[111.830767851563,36.7160353828125],[111.839537382813,36.7072658515626],[111.827345,36.703843]]],[[[111.827345,36.703843],[111.837345,36.6913552070313],[111.853704863281,36.7117836738282],[111.882345,36.7082216621094],[111.897345,36.7100868964844],[111.932056914063,36.7057692695313],[111.976143828125,36.6798537421876],[111.987345,36.6938430000001],[112.010184355469,36.6879824042969],[112.021429472656,36.6579274726562],[112.036900664063,36.6341677070312],[112.031214628906,36.6088014960938],[112.037345,36.5838430000001],[112.012486601563,36.5896034980469],[111.970924101563,36.5834609199219],[111.973463164063,36.5662831855469],[111.95170046875,36.5494863105469],[111.941204863281,36.5238405585938],[111.88170046875,36.4994863105469],[111.8576965625,36.4683864570313],[111.867345,36.443843],[111.85263796875,36.4380605292969],[111.833924589844,36.4408266425781],[111.799310332031,36.4617055488282],[111.752249785156,36.447983625],[111.698680449219,36.4690431953126],[111.703175078125,36.4994557929688],[111.677345,36.5038430000001],[111.622711210938,36.5457338691407],[111.652760039063,36.5887526679688],[111.634293242188,36.6402175117188],[111.66259890625,36.6385305],[111.667345,36.643843],[111.680941191406,36.6543361640625],[111.683140898438,36.669233625],[111.668988066406,36.6926955390625],[111.749298125,36.7242665839844],[111.763880644531,36.7053749824219],[111.792345,36.7095815253906],[111.802345,36.7081044746094],[111.81263796875,36.7096254707032],[111.827345,36.703843]]]]}},{"type":"Feature","properties":{"name":"吉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.757345,36.303843],[110.760767851563,36.2916506171876],[110.769537382813,36.3004201484375],[110.768319121094,36.3191555000001],[110.830831328125,36.3315077949219],[110.833333769531,36.318843],[110.828651152344,36.2951491523438],[110.852345,36.2998305488281],[110.877345,36.2948903632813],[110.90252078125,36.2998659492188],[110.942647734375,36.2876747871094],[110.992633085938,36.2777980781251],[111.007345,36.283843],[111.015794707031,36.2728945136719],[111.075401640625,36.2484987617188],[111.118631621094,36.2151308417969],[111.127345,36.203843],[111.112991972656,36.1939321113282],[111.103260527344,36.1679274726563],[111.087345,36.143843],[111.07052859375,36.1503066230469],[111.03568484375,36.1067934394531],[110.996182890625,36.121977765625],[110.97095828125,36.1071498847657],[110.951986113281,36.1095095039063],[110.932899199219,36.0982900214844],[110.872623320313,36.0878005195313],[110.852259550781,36.099770734375],[110.801795683594,36.0594106269531],[110.792159453125,36.0257057929688],[110.745592070313,35.9884157539063],[110.732899199219,35.9582900214844],[110.684893828125,35.9479042792969],[110.671986113281,35.9495095039063],[110.652899199219,35.9382900214844],[110.597034941406,35.9176381660157],[110.57705203125,35.9201235175782],[110.522459746094,35.888032453125],[110.507345,35.8938430000001],[110.501099882813,35.9438307929688],[110.504039335938,35.96745628125],[110.490650664063,35.9902297187501],[110.493377714844,36.0121352363281],[110.465155058594,36.0855580878907],[110.451790800781,36.1082900214844],[110.441356230469,36.1682607246094],[110.453001738281,36.198559796875],[110.449625273438,36.2257094550781],[110.462899199219,36.2482900214844],[110.467345,36.293843],[110.456844511719,36.3365932441407],[110.467345,36.3438430000001],[110.492203398438,36.3380825019532],[110.510767851563,36.3408266425782],[110.537857695313,36.3244850898438],[110.572996855469,36.3296779609376],[110.63298953125,36.3194863105469],[110.692982207031,36.2932692695313],[110.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"蒲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.367345,36.523843],[111.379537382813,36.5204201484376],[111.370767851563,36.5116506171875],[111.367345,36.523843]]],[[[111.367345,36.523843],[111.355091582031,36.5162929511719],[111.379720488281,36.4812184882813],[111.394456816406,36.4379714179688],[111.364857207031,36.4278835273438],[111.379378691406,36.3812587714844],[111.354969511719,36.3662184882813],[111.339564238281,36.3412136054688],[111.347345,36.323843],[111.32197390625,36.3092153144531],[111.291771269531,36.2609938789063],[111.293980742188,36.2334963203125],[111.251600371094,36.2145864082032],[111.217345,36.195473859375],[111.191107207031,36.21011253125],[111.127345,36.203843],[111.118631621094,36.2151308417969],[111.075401640625,36.2484987617188],[111.015794707031,36.2728945136719],[111.007345,36.283843],[111.001790800781,36.3048989082032],[110.904703398438,36.3297634101563],[110.886329375,36.3774037910157],[110.870799589844,36.3885341621094],[110.885760527344,36.4120998359376],[110.868995390625,36.435493390625],[110.843392363281,36.453843],[110.857345,36.4638430000001],[110.877899199219,36.4557631660157],[110.89170046875,36.4894863105469],[110.91298953125,36.4981996894532],[110.927464628906,36.5169521308594],[110.967225371094,36.5407338691406],[110.982689238281,36.5607656074219],[111.042345,36.5695815253907],[111.062345,36.566626203125],[111.087345,36.5703212714844],[111.107345,36.5673647285157],[111.127345,36.5703212714844],[111.191773710938,36.5607997871094],[111.212345,36.611059796875],[111.23490359375,36.6077260566407],[111.25170046875,36.6294863105469],[111.257345,36.633843],[111.261429472656,36.6279274726563],[111.318917265625,36.6188674140626],[111.370784941406,36.5994594550782],[111.383529082031,36.5691213203126],[111.381214628906,36.5588014960937],[111.387345,36.5338430000001],[111.367345,36.5338430000001],[111.367345,36.523843]]]]}},{"type":"Feature","properties":{"name":"曲沃县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.590103789063,35.803843],[111.593602324219,35.7882302070313],[111.583260527344,35.7479274726563],[111.563260527344,35.7341188789063],[111.574129667969,35.7258803535157],[111.594622832031,35.730473859375],[111.624361601563,35.7193471503907],[111.595455351563,35.6820510078126],[111.613616972656,35.6695131660156],[111.609132109375,35.6495131660157],[111.617345,35.643843],[111.61271609375,35.6384706855469],[111.60197390625,35.6292153144532],[111.59271609375,35.5984706855469],[111.58197390625,35.5792153144531],[111.571546660156,35.5558510566407],[111.520213652344,35.5699001289063],[111.447345,35.563843],[111.452779570313,35.6191030097656],[111.441920195313,35.6385646796875],[111.442747832031,35.648843],[111.441541777344,35.6638430000001],[111.442847929688,35.6800881171875],[111.420726347656,35.6783107734376],[111.40271609375,35.6992153144531],[111.387345,35.7038430000001],[111.391976347656,35.7332326484375],[111.414105253906,35.7485097480469],[111.433260527344,35.7779274726563],[111.442345,35.8022060371094],[111.462791777344,35.797622296875],[111.481429472656,35.8097585273438],[111.541329375,35.8251308417969],[111.551429472656,35.8397585273438],[111.577345,35.8538430000001],[111.600008574219,35.8480275703126],[111.590103789063,35.803843]]]]}},{"type":"Feature","properties":{"name":"襄汾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.346724882813,36.0417690253907],[111.384508085938,36.0272463203125],[111.411890898438,36.0306520820313],[111.421790800781,36.0182900214844],[111.494078398438,36.00776878125],[111.490584746094,35.9796840644531],[111.512345,35.976977765625],[111.545767851563,35.9811342597657],[111.571868925781,35.9381618476563],[111.582799101563,35.9395217109375],[111.592799101563,35.9270339179688],[111.625516386719,35.9311025214844],[111.647345,35.903843],[111.650704375,35.8772023750001],[111.67062625,35.86712425],[111.677345,35.8538430000001],[111.667650175781,35.8398000312501],[111.585277128906,35.8653322578126],[111.577345,35.8538430000001],[111.551429472656,35.8397585273438],[111.541329375,35.8251308417969],[111.481429472656,35.8097585273438],[111.462791777344,35.797622296875],[111.442345,35.8022060371094],[111.433260527344,35.7779274726563],[111.414105253906,35.7485097480469],[111.391976347656,35.7332326484375],[111.387345,35.7038430000001],[111.361429472656,35.6997585273438],[111.346676054688,35.6603285957031],[111.337345,35.673843],[111.33156375,35.6885512519531],[111.333084746094,35.6988430000001],[111.331087675781,35.7123513007813],[111.286551542969,35.7057704902344],[111.27298953125,35.6881996894531],[111.248426542969,35.6794863105469],[111.225894804688,35.7086769843751],[111.19170046875,35.7181996894531],[111.180687285156,35.7703871894532],[111.126058378906,35.8125551582031],[111.117345,35.823843],[111.14170046875,35.8394863105469],[111.18298953125,35.8481996894532],[111.201207304688,35.8718019843751],[111.21170046875,35.9094863105469],[111.23298953125,35.9181996894531],[111.278533964844,35.9519655585938],[111.271549101563,35.9992336250001],[111.284879179688,36.0213320136719],[111.277345,36.053843],[111.346724882813,36.0417690253907]]]]}},{"type":"Feature","properties":{"name":"乡宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.094647246094,36.1347231269531],[111.194154082031,36.1159584785156],[111.224615507813,36.1197475410157],[111.277345,36.053843],[111.284879179688,36.0213320136719],[111.271549101563,35.9992336250001],[111.278533964844,35.9519655585938],[111.23298953125,35.9181996894531],[111.21170046875,35.9094863105469],[111.201207304688,35.8718019843751],[111.18298953125,35.8481996894532],[111.14170046875,35.8394863105469],[111.117345,35.823843],[111.090521269531,35.8096950507813],[111.094154082031,35.7980373359375],[111.068782988281,35.7824050117188],[111.053531523438,35.7376552558594],[111.047345,35.7338430000001],[111.022386503906,35.7399733710938],[110.998643828125,35.7346511054687],[110.961090117188,35.8037514472656],[110.940186796875,35.7734743476563],[110.944586210938,35.753843],[110.937718535156,35.7232009101563],[110.909451933594,35.6897585273438],[110.843260527344,35.7197585273438],[110.817345,35.723843],[110.782154570313,35.7286525703125],[110.739857207031,35.7397353339844],[110.688414335938,35.7376967597657],[110.672535429688,35.7401210761719],[110.695404082031,35.7613100410157],[110.644698515625,35.7886525703125],[110.592535429688,35.7486525703126],[110.577345,35.7438430000001],[110.571429472656,35.7479274726563],[110.561087675781,35.7882302070313],[110.564989042969,35.8056410957032],[110.551429472656,35.8379274726563],[110.547345,35.8538430000001],[110.543504667969,35.8809584785157],[110.512708769531,35.8703823066407],[110.507345,35.8938430000001],[110.522459746094,35.888032453125],[110.57705203125,35.9201235175782],[110.597034941406,35.9176381660157],[110.652899199219,35.9382900214844],[110.671986113281,35.9495095039063],[110.684893828125,35.9479042792969],[110.732899199219,35.9582900214844],[110.745592070313,35.9884157539063],[110.792159453125,36.0257057929688],[110.801795683594,36.0594106269531],[110.852259550781,36.099770734375],[110.872623320313,36.0878005195313],[110.932899199219,36.0982900214844],[110.951986113281,36.1095095039063],[110.97095828125,36.1071498847657],[110.996182890625,36.121977765625],[111.03568484375,36.1067934394531],[111.07052859375,36.1503066230469],[111.087345,36.143843],[111.094647246094,36.1347231269531]]]]}},{"type":"Feature","properties":{"name":"尧都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.347345,36.323843],[111.363902617188,36.3177626777344],[111.417015410156,36.3220302558594],[111.493416777344,36.2671718574219],[111.491214628906,36.2397670722657],[111.52197390625,36.2284706855469],[111.590738554688,36.2128493476562],[111.56271609375,36.1626247382813],[111.575123320313,36.1570571113282],[111.607916289063,36.159692609375],[111.643560820313,36.1489614082031],[111.639647246094,36.1002651191407],[111.701990996094,36.0952553535157],[111.792496367188,36.1092958808594],[111.807345,36.103843],[111.815814238281,36.0998964667969],[111.804349394531,36.0798964667969],[111.817345,36.073843],[111.812042265625,36.0531813789063],[111.773260527344,36.0279274726563],[111.716378203125,36.0079885078126],[111.699891386719,35.9547927070312],[111.703638945313,35.9380690742188],[111.677254667969,35.9281972480469],[111.663260527344,35.9079274726563],[111.647345,35.903843],[111.625516386719,35.9311025214844],[111.592799101563,35.9270339179688],[111.582799101563,35.9395217109375],[111.571868925781,35.9381618476563],[111.545767851563,35.9811342597657],[111.512345,35.976977765625],[111.490584746094,35.9796840644531],[111.494078398438,36.00776878125],[111.421790800781,36.0182900214844],[111.411890898438,36.0306520820313],[111.384508085938,36.0272463203125],[111.346724882813,36.0417690253907],[111.277345,36.053843],[111.224615507813,36.1197475410157],[111.194154082031,36.1159584785156],[111.094647246094,36.1347231269531],[111.087345,36.143843],[111.103260527344,36.1679274726563],[111.112991972656,36.1939321113282],[111.127345,36.203843],[111.191107207031,36.21011253125],[111.217345,36.195473859375],[111.251600371094,36.2145864082032],[111.293980742188,36.2334963203125],[111.291771269531,36.2609938789063],[111.32197390625,36.3092153144531],[111.347345,36.323843]]]]}},{"type":"Feature","properties":{"name":"翼城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.585277128906,35.8653322578126],[111.667650175781,35.8398000312501],[111.677345,35.8538430000001],[111.712310820313,35.8480995917969],[111.722345,35.8495815253907],[111.732345,35.8481044746094],[111.745213652344,35.8500063300781],[111.78298953125,35.8394863105469],[111.849298125,35.8134194160156],[111.873975859375,35.8453896308594],[111.902345,35.8495815253907],[111.922345,35.846626203125],[111.952345,35.851059796875],[111.977345,35.8473647285157],[111.997345,35.8503212714844],[112.01263796875,35.8480605292969],[112.027345,35.8538430000001],[112.036766386719,35.8457265449219],[112.021741972656,35.8187990546875],[112.051846953125,35.7763368964844],[112.021060820313,35.7498146796875],[112.024483671875,35.7072243476562],[111.99197390625,35.6792153144532],[111.98271609375,35.6684706855469],[111.9519153125,35.6591970039063],[111.953470488281,35.6398232246094],[111.93271609375,35.6026247382813],[111.94197390625,35.5784706855469],[111.954276152344,35.5678713203125],[111.951942167969,35.538843],[111.953524199219,35.5191664863282],[111.941693144531,35.5089736152344],[111.956734648438,35.4820156074219],[111.967345,35.423843],[111.956058378906,35.4151308417969],[111.932857695313,35.38507346875],[111.902345,35.3895815253906],[111.888736601563,35.3875710273438],[111.847345,35.403843],[111.842154570313,35.4210842109376],[111.821693144531,35.4387123847657],[111.832769804688,35.4585646796875],[111.831219511719,35.4778627753907],[111.848053007813,35.5080348945313],[111.88271609375,35.5184706855469],[111.90197390625,35.5364284492188],[111.86197390625,35.5484706855469],[111.822838164063,35.5628420234375],[111.844124785156,35.6009950996094],[111.790953398438,35.5967226386719],[111.7172278125,35.637856671875],[111.677650175781,35.6497731757813],[111.617345,35.643843],[111.609132109375,35.6495131660157],[111.613616972656,35.6695131660156],[111.595455351563,35.6820510078126],[111.624361601563,35.7193471503907],[111.594622832031,35.730473859375],[111.574129667969,35.7258803535157],[111.563260527344,35.7341188789063],[111.583260527344,35.7479274726563],[111.593602324219,35.7882302070313],[111.590103789063,35.803843],[111.600008574219,35.8480275703126],[111.577345,35.8538430000001],[111.585277128906,35.8653322578126]]]]}},{"type":"Feature","properties":{"name":"永和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.747345,36.6138430000001],[110.767345,36.6138430000001],[110.767345,36.603843],[110.751004667969,36.5957204414063],[110.747345,36.6138430000001]]],[[[110.747345,36.6138430000001],[110.741519804688,36.6096681953125],[110.726971464844,36.5893679023438],[110.671519804688,36.5696681953125],[110.642659941406,36.5198891425782],[110.582345,36.5318068671875],[110.551046171875,36.5256215644531],[110.513170195313,36.5496681953126],[110.487345,36.553843],[110.48271609375,36.5792153144532],[110.427345,36.643843],[110.418631621094,36.6551308417969],[110.394344511719,36.6738771796875],[110.38298953125,36.6924428535156],[110.422345,36.686626203125],[110.43170046875,36.7094863105469],[110.444945097656,36.7314443183595],[110.409744902344,36.7262416816407],[110.427379179688,36.7554787421876],[110.379830351563,36.7687209296875],[110.40298953125,36.7781996894532],[110.42170046875,36.8127614570313],[110.400867949219,36.828843],[110.41298953125,36.8381996894532],[110.42170046875,36.8577358222656],[110.370115996094,36.8788478828125],[110.407345,36.893843],[110.432203398438,36.8880825019532],[110.442735625,36.8896401191407],[110.463922148438,36.8768593574219],[110.489193144531,36.8805934882812],[110.532135039063,36.8680727363281],[110.547345,36.8703212714844],[110.588778105469,36.8641982246094],[110.643421660156,36.8865615058594],[110.637391386719,36.9273720527344],[110.706712675781,36.9376161933594],[110.728365507813,36.9095644355469],[110.756324492188,36.8981215644532],[110.778389921875,36.8695326972656],[110.817345,36.853843],[110.827345,36.853843],[110.79298953125,36.8081996894532],[110.780867949219,36.798843],[110.809386015625,36.7768288398438],[110.781095,36.7386684394531],[110.794486113281,36.7283315253906],[110.791605253906,36.708843],[110.798741484375,36.6605544257813],[110.770128203125,36.648843],[110.773167753906,36.6282729316407],[110.75170046875,36.6194863105469],[110.747345,36.6138430000001]]]]}},{"type":"Feature","properties":{"name":"隰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.827345,36.853843],[110.817345,36.853843],[110.822345,36.8666506171876],[110.827345,36.853843]]],[[[110.827345,36.853843],[110.86298953125,36.8681996894531],[110.909390898438,36.8961904121094],[110.942345,36.9010597968751],[110.981087675781,36.8953346992188],[110.983084746094,36.908843],[110.980223417969,36.9281996894532],[110.99298953125,36.9194863105469],[111.005286894531,36.9035536933594],[111.046937285156,36.9286769843751],[111.077345,36.933843],[111.084139433594,36.9165615058594],[111.058468046875,36.8512636542969],[111.097515898438,36.8359133125],[111.170960722656,36.8467665839844],[111.18170046875,36.8081996894532],[111.198631621094,36.7801308417969],[111.21170046875,36.7481996894531],[111.237345,36.743843],[111.253629179688,36.7298146796875],[111.251920195313,36.7085646796875],[111.262779570313,36.6891030097657],[111.257345,36.633843],[111.25170046875,36.6294863105469],[111.23490359375,36.6077260566407],[111.212345,36.611059796875],[111.191773710938,36.5607997871094],[111.127345,36.5703212714844],[111.107345,36.5673647285157],[111.087345,36.5703212714844],[111.062345,36.566626203125],[111.042345,36.5695815253907],[110.982689238281,36.5607656074219],[110.967225371094,36.5407338691406],[110.927464628906,36.5169521308594],[110.91298953125,36.4981996894532],[110.89170046875,36.4894863105469],[110.877899199219,36.4557631660157],[110.857345,36.4638430000001],[110.853985625,36.4804836250001],[110.839713164063,36.4984511542969],[110.8472278125,36.513843],[110.83990359375,36.528843],[110.848001738281,36.5454274726562],[110.826031523438,36.5730849433594],[110.812345,36.56640159375],[110.784298125,36.5800978828126],[110.773985625,36.600483625],[110.767345,36.603843],[110.767345,36.6138430000001],[110.747345,36.6138430000001],[110.75170046875,36.6194863105469],[110.773167753906,36.6282729316407],[110.770128203125,36.648843],[110.798741484375,36.6605544257813],[110.791605253906,36.708843],[110.794486113281,36.7283315253906],[110.781095,36.7386684394531],[110.809386015625,36.7768288398438],[110.780867949219,36.798843],[110.79298953125,36.8081996894532],[110.827345,36.853843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"交城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.897345,37.503843],[111.909537382813,37.5004201484375],[111.900767851563,37.4916506171875],[111.897345,37.503843]]],[[[111.897345,37.503843],[111.856453886719,37.5107888007813],[111.873377714844,37.538843],[111.856553984375,37.5667336250001],[111.789193144531,37.5470925117188],[111.719657011719,37.557368390625],[111.67486453125,37.5843874335938],[111.611253691406,37.5749867988281],[111.557345,37.583843],[111.553260527344,37.5997585273438],[111.541429472656,37.6179274726563],[111.531698027344,37.6439321113282],[111.511073027344,37.6581728339844],[111.513465605469,37.668843],[111.508565703125,37.6906984687501],[111.457345,37.703843],[111.45170046875,37.7181996894532],[111.44298953125,37.7794863105469],[111.414129667969,37.8017617011719],[111.411021757813,37.8228054023438],[111.434132109375,37.8861464667969],[111.501673613281,37.9017971015626],[111.547345,37.883843],[111.553531523438,37.8800307441407],[111.56547,37.8450038886719],[111.612313261719,37.8604103828125],[111.622345,37.8572853828125],[111.632345,37.8604006171875],[111.648455839844,37.8553823066407],[111.681158476563,37.8700307441406],[111.727345,37.8738430000001],[111.733079863281,37.8695778632813],[111.760701933594,37.8324428535156],[111.796715117188,37.8181325507813],[111.811610136719,37.7981081367188],[111.903079863281,37.7895778632812],[111.932821074219,37.7359267402344],[111.964107695313,37.7165639472656],[112.003643828125,37.7233705878906],[112.04205203125,37.7079311347657],[112.097235136719,37.7174318671875],[112.113778105469,37.6951955390626],[112.156715117188,37.6781325507813],[112.167345,37.663843],[112.172056914063,37.6380165839844],[112.23197390625,37.5684706855469],[112.288736601563,37.5581166816407],[112.267345,37.523843],[112.22170046875,37.5194863105469],[112.21298953125,37.4981996894532],[112.171517363281,37.4894472480469],[112.173436308594,37.4764650703125],[112.133880644531,37.4823110175782],[112.121832304688,37.4667018867188],[112.100282011719,37.4698867011719],[112.104561796875,37.4988430000001],[112.078365507813,37.5095644355469],[112.062857695313,37.5296572089844],[112.017435332031,37.5229457832031],[111.980386992188,37.5005983710938],[111.984327421875,37.5272634101563],[111.906551542969,37.5157704902344],[111.897345,37.503843]]]]}},{"type":"Feature","properties":{"name":"方山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.367345,38.1738430000001],[111.527584257813,38.1154555488282],[111.537345,38.083843],[111.511541777344,38.0492739082032],[111.513822050781,38.033843],[111.511549101563,38.018452375],[111.52298953125,37.9994863105469],[111.546397734375,37.9422939277344],[111.57170046875,37.9227614570312],[111.56298953125,37.8981996894531],[111.55170046875,37.8894863105469],[111.547345,37.883843],[111.501673613281,37.9017971015626],[111.434132109375,37.8861464667969],[111.411021757813,37.8228054023438],[111.414129667969,37.8017617011719],[111.44298953125,37.7794863105469],[111.45170046875,37.7181996894532],[111.457345,37.703843],[111.45271609375,37.6884706855469],[111.44197390625,37.6792153144531],[111.421185332031,37.6550881171875],[111.319207792969,37.6925368476562],[111.263001738281,37.6573329902345],[111.24197390625,37.6392153144531],[111.225692167969,37.620317609375],[111.202066679688,37.6184194160156],[111.182623320313,37.6292665839844],[111.163326445313,37.6277162910157],[111.14271609375,37.6392153144531],[111.062708769531,37.6496828437501],[111.057345,37.713843],[111.065697050781,37.7259377265626],[111.112345,37.7154799628907],[111.142345,37.7222060371094],[111.162596464844,37.7176650214844],[111.181429472656,37.7250954414063],[111.141429472656,37.7479274726563],[111.133260527344,37.7597585273438],[111.110472441406,37.7754921699219],[111.11795046875,37.808843],[111.111124296875,37.8392897773438],[111.123565703125,37.8583962226563],[111.119842558594,37.8750087714844],[111.167669707031,37.8642861152344],[111.193136015625,37.8808705878906],[111.211429472656,37.9297585273437],[111.223565703125,37.9483962226563],[111.221112089844,37.9593483710938],[111.243260527344,37.9879274726563],[111.251429472656,38.0097585273438],[111.28013796875,38.0295790839844],[111.300079375,38.082876203125],[111.257345,38.093843],[111.261846953125,38.1161391425782],[111.297345,38.1337844062501],[111.332476835938,38.1163210273438],[111.354295683594,38.127358625],[111.36478640625,38.148843],[111.355504179688,38.1678530097657],[111.367345,38.1738430000001]]]]}},{"type":"Feature","properties":{"name":"汾阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.70271609375,37.4692153144532],[111.733902617188,37.4577626777345],[111.752345,37.4592446113282],[111.767345,37.4580397773438],[111.795809355469,37.4603261542969],[111.83271609375,37.4492153144531],[111.85197390625,37.4184706855469],[111.884586210938,37.4086525703125],[111.902020292969,37.3884157539062],[111.922020292969,37.3900221992188],[111.936600371094,37.3730995917969],[111.958089628906,37.3545864082032],[111.97197390625,37.3384706855469],[111.98271609375,37.3292153144531],[112.007345,37.273843],[112.002857695313,37.2680287910156],[111.991209746094,37.2697499824219],[111.941522246094,37.2494130683594],[111.944561796875,37.2288430000001],[111.938878203125,37.1903786445312],[111.947345,37.1838430000001],[111.927345,37.1438430000001],[111.91170046875,37.1481996894532],[111.844974394531,37.177358625],[111.782345,37.1681044746094],[111.747345,37.17327659375],[111.712345,37.1681044746094],[111.697345,37.1703212714844],[111.667515898438,37.1659133125],[111.612689238281,37.1874672675781],[111.58298953125,37.2094863105469],[111.53170046875,37.2281996894532],[111.514276152344,37.2507741523438],[111.443111601563,37.2799001289063],[111.437345,37.313843],[111.443641386719,37.3240615058594],[111.483531523438,37.3376552558594],[111.487345,37.3438430000001],[111.491429472656,37.3497585273438],[111.57076296875,37.3698244453126],[111.600877714844,37.4134438300782],[111.577345,37.463843],[111.59271609375,37.4684706855469],[111.620824003906,37.4841530585938],[111.70271609375,37.4692153144532]]]]}},{"type":"Feature","properties":{"name":"文水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.897345,37.503843],[111.900767851563,37.4916506171875],[111.909537382813,37.5004201484375],[111.906551542969,37.5157704902344],[111.984327421875,37.5272634101563],[111.980386992188,37.5005983710938],[112.017435332031,37.5229457832031],[112.062857695313,37.5296572089844],[112.078365507813,37.5095644355469],[112.104561796875,37.4988430000001],[112.100282011719,37.4698867011719],[112.121832304688,37.4667018867188],[112.133880644531,37.4823110175782],[112.173436308594,37.4764650703125],[112.171517363281,37.4894472480469],[112.21298953125,37.4981996894532],[112.22170046875,37.5194863105469],[112.267345,37.523843],[112.284530058594,37.5210268378907],[112.290159941406,37.5066591621094],[112.310103789063,37.4988430000001],[112.285596953125,37.4892385078125],[112.310159941406,37.4666591621094],[112.327345,37.463843],[112.316324492188,37.4495644355469],[112.267308378906,37.4295034003907],[112.23298953125,37.3681996894531],[112.207345,37.333843],[112.131712675781,37.2677626777345],[112.1123059375,37.2894814277344],[112.068365507813,37.3185622382813],[112.032625761719,37.2785622382813],[112.007345,37.273843],[111.98271609375,37.3292153144531],[111.97197390625,37.3384706855469],[111.958089628906,37.3545864082032],[111.936600371094,37.3730995917969],[111.922020292969,37.3900221992188],[111.902020292969,37.3884157539062],[111.884586210938,37.4086525703125],[111.85197390625,37.4184706855469],[111.83271609375,37.4492153144531],[111.795809355469,37.4603261542969],[111.767345,37.4580397773438],[111.752345,37.4592446113282],[111.733902617188,37.4577626777345],[111.70271609375,37.4692153144532],[111.620824003906,37.4841530585938],[111.59271609375,37.4684706855469],[111.577345,37.463843],[111.551158476563,37.4676552558594],[111.539029570313,37.5032436347656],[111.503873320313,37.5466481757813],[111.515091582031,37.5826601386719],[111.549930449219,37.5718080878907],[111.557345,37.583843],[111.611253691406,37.5749867988281],[111.67486453125,37.5843874335938],[111.719657011719,37.557368390625],[111.789193144531,37.5470925117188],[111.856553984375,37.5667336250001],[111.873377714844,37.538843],[111.856453886719,37.5107888007813],[111.897345,37.503843]]]]}},{"type":"Feature","properties":{"name":"交口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.363985625,37.172036359375],[111.427074003906,37.1565407539063],[111.457948027344,37.1634609199219],[111.463616972656,37.1381728339844],[111.443260527344,37.1241188789062],[111.451429472656,37.1079274726563],[111.46978640625,37.0952529121094],[111.476197539063,37.0666628242187],[111.463260527344,37.0479274726563],[111.445618925781,37.035747296875],[111.483260527344,37.0097585273437],[111.491429472656,36.9979274726563],[111.497345,36.9938430000001],[111.501429472656,36.9779274726563],[111.525091582031,36.9615895820313],[111.547254667969,36.9294887519532],[111.57498171875,36.9191152167969],[111.561429472656,36.9097585273438],[111.551329375,36.8951308417969],[111.491429472656,36.8797585273438],[111.443260527344,36.8479274726563],[111.412476835938,36.8364089179688],[111.407345,36.8038430000001],[111.361248808594,36.7799404121094],[111.348084746094,36.759380109375],[111.321248808594,36.7499404121094],[111.31310671875,36.7372231269531],[111.302345,36.7402480292969],[111.268675566406,36.730786359375],[111.274002714844,36.7497426582032],[111.24154421875,36.7611598945312],[111.237345,36.743843],[111.21170046875,36.7481996894531],[111.198631621094,36.7801308417969],[111.18170046875,36.8081996894532],[111.170960722656,36.8467665839844],[111.097515898438,36.8359133125],[111.058468046875,36.8512636542969],[111.084139433594,36.9165615058594],[111.077345,36.933843],[111.081429472656,36.9497585273438],[111.093616972656,36.9581728339844],[111.087699003906,36.9845693183594],[111.103543730469,37.0490834785156],[111.097345,37.063843],[111.134488554688,37.07812034375],[111.222183867188,37.0582009101563],[111.232345,37.0594643378907],[111.257327910156,37.0563576484375],[111.305777617188,37.1168617988281],[111.351790800781,37.1362514472656],[111.340245390625,37.1663002753907],[111.306632109375,37.1804640937501],[111.330081816406,37.2097475410157],[111.377345,37.203843],[111.363985625,37.172036359375]]]]}},{"type":"Feature","properties":{"name":"离石区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.14271609375,37.6392153144531],[111.163326445313,37.6277162910157],[111.182623320313,37.6292665839844],[111.202066679688,37.6184194160156],[111.225692167969,37.620317609375],[111.24197390625,37.6392153144531],[111.263001738281,37.6573329902345],[111.319207792969,37.6925368476562],[111.421185332031,37.6550881171875],[111.44197390625,37.6792153144531],[111.45271609375,37.6884706855469],[111.457345,37.703843],[111.508565703125,37.6906984687501],[111.513465605469,37.668843],[111.511073027344,37.6581728339844],[111.531698027344,37.6439321113282],[111.541429472656,37.6179274726563],[111.553260527344,37.5997585273438],[111.557345,37.583843],[111.549930449219,37.5718080878907],[111.515091582031,37.5826601386719],[111.503873320313,37.5466481757813],[111.539029570313,37.5032436347656],[111.551158476563,37.4676552558594],[111.577345,37.463843],[111.600877714844,37.4134438300782],[111.57076296875,37.3698244453126],[111.491429472656,37.3497585273438],[111.487345,37.3438430000001],[111.45170046875,37.3581996894531],[111.43298953125,37.3694863105469],[111.41170046875,37.3781996894532],[111.39978640625,37.3936367011719],[111.362345,37.3881044746094],[111.295426054688,37.3979933906251],[111.27298953125,37.4594863105469],[111.257747832031,37.4712502265626],[111.209193144531,37.4570925117188],[111.170679960938,37.4627834296876],[111.142735625,37.4796401191407],[111.132345,37.4781044746094],[111.122345,37.4795815253906],[111.11205203125,37.4780605292969],[111.097345,37.483843],[111.06170046875,37.4981996894532],[111.05298953125,37.5094863105469],[111.04170046875,37.5181996894531],[111.03298953125,37.5294863105469],[111.008365507813,37.5395644355469],[110.981033964844,37.5749745917969],[110.983167753906,37.5894130683594],[110.96170046875,37.5981996894531],[110.948631621094,37.6151308417969],[110.937345,37.623843],[110.94170046875,37.6394863105469],[110.981307402344,37.6556960273438],[110.956495390625,37.696830060547],[110.988426542969,37.7381996894531],[111.01298953125,37.7294863105469],[111.03170046875,37.7181996894532],[111.057345,37.713843],[111.062708769531,37.6496828437501],[111.14271609375,37.6392153144531]]]]}},{"type":"Feature","properties":{"name":"临县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.083118925781,38.2002931953126],[111.112345,38.1973146796875],[111.132345,38.1993520332032],[111.147345,38.1978237128906],[111.172345,38.2003713203125],[111.192667265625,38.1983010078125],[111.227728300781,38.2183803535156],[111.2330090625,38.1985475898438],[111.21318484375,38.1820803046875],[111.209444609375,38.1453920722656],[111.24095828125,38.1074550605469],[111.257345,38.093843],[111.300079375,38.082876203125],[111.28013796875,38.0295790839844],[111.251429472656,38.0097585273438],[111.243260527344,37.9879274726563],[111.221112089844,37.9593483710938],[111.223565703125,37.9483962226563],[111.211429472656,37.9297585273437],[111.193136015625,37.8808705878906],[111.167669707031,37.8642861152344],[111.119842558594,37.8750087714844],[111.123565703125,37.8583962226563],[111.111124296875,37.8392897773438],[111.11795046875,37.808843],[111.110472441406,37.7754921699219],[111.133260527344,37.7597585273438],[111.141429472656,37.7479274726563],[111.181429472656,37.7250954414063],[111.162596464844,37.7176650214844],[111.142345,37.7222060371094],[111.112345,37.7154799628907],[111.065697050781,37.7259377265626],[111.057345,37.713843],[111.03170046875,37.7181996894532],[111.01298953125,37.7294863105469],[110.988426542969,37.7381996894531],[110.956495390625,37.696830060547],[110.981307402344,37.6556960273438],[110.94170046875,37.6394863105469],[110.937345,37.623843],[110.851773710938,37.6309560371094],[110.8527746875,37.6184841132813],[110.81197390625,37.6092153144532],[110.792508574219,37.5983547187501],[110.767345,37.6038430000001],[110.758768339844,37.6387624335938],[110.783260527344,37.6479274726562],[110.791429472656,37.6725295234375],[110.731429472656,37.6879274726562],[110.697345,37.703843],[110.703878203125,37.7273085761719],[110.754195585938,37.7413198066407],[110.751488066406,37.7596364570313],[110.671058378906,37.7925551582031],[110.633631621094,37.8551308417969],[110.578975859375,37.9288503242188],[110.53170046875,37.9481996894532],[110.507620878906,37.9627236152344],[110.523140898438,37.9884523750001],[110.520941191406,38.0033498359375],[110.497550078125,38.0214028144532],[110.503822050781,38.0638430000001],[110.499173613281,38.095298078125],[110.515675078125,38.1226528144532],[110.494071074219,38.1776076484375],[110.517345,38.2138430000001],[110.547345,38.2138430000001],[110.551910429688,38.1982888007813],[110.562691679688,38.1993886542969],[110.601470976563,38.1714809394532],[110.652345,38.1662953925782],[110.682345,38.1693520332031],[110.692345,38.1683339667969],[110.71547,38.1706899238282],[110.772022734375,38.1383010078125],[110.825113554688,38.1437123847657],[110.853509550781,38.1274489570313],[110.902806425781,38.1383803535157],[110.94095828125,38.1602309394532],[110.982806425781,38.1783803535156],[111.001883574219,38.1893056464844],[111.034427519531,38.2034194160157],[111.030916777344,38.2378639960938],[111.083118925781,38.2002931953126]]]]}},{"type":"Feature","properties":{"name":"柳林县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.948631621094,37.6151308417969],[110.96170046875,37.5981996894531],[110.983167753906,37.5894130683594],[110.981033964844,37.5749745917969],[111.008365507813,37.5395644355469],[111.03298953125,37.5294863105469],[111.04170046875,37.5181996894531],[111.05298953125,37.5094863105469],[111.06170046875,37.4981996894532],[111.097345,37.483843],[111.092078886719,37.4627407050781],[111.050240507813,37.4392324042969],[111.081302519531,37.3997414375001],[111.061339140625,37.3698488593751],[111.050689726563,37.3404994941407],[111.016922636719,37.328247296875],[111.003062773438,37.3074025703125],[110.965618925781,37.3168361640625],[110.95982546875,37.293843],[110.96486453125,37.273843],[110.960970488281,37.2583876777344],[110.975831328125,37.2361354804688],[110.938023710938,37.2109950996094],[110.946776152344,37.1762587714844],[110.902345,37.165063703125],[110.881827421875,37.1702333808594],[110.852030058594,37.1467971015626],[110.843350859375,37.159848859375],[110.837345,37.163843],[110.816478300781,37.1782497382813],[110.803260527344,37.2297585273438],[110.787613554688,37.2537856269532],[110.762791777344,37.2376222968751],[110.748992949219,37.2407155585938],[110.731673613281,37.2156301093751],[110.705936308594,37.2214003730469],[110.693016386719,37.2401137519531],[110.681571074219,37.2375490546875],[110.671654082031,37.2640529609375],[110.647345,37.253843],[110.647345,37.273843],[110.683167753906,37.2882717109376],[110.679173613281,37.315298078125],[110.697899199219,37.3463405585938],[110.62298953125,37.3621474433594],[110.63482546875,37.4264601875],[110.657345,37.443843],[110.734454375,37.4494167304688],[110.753150664063,37.4703395820313],[110.752034941406,37.4890444160157],[110.766002226563,37.5279677558594],[110.785496855469,37.5638430000001],[110.772064238281,37.5885622382813],[110.767345,37.6038430000001],[110.792508574219,37.5983547187501],[110.81197390625,37.6092153144532],[110.8527746875,37.6184841132813],[110.851773710938,37.6309560371094],[110.937345,37.623843],[110.948631621094,37.6151308417969]]]]}},{"type":"Feature","properties":{"name":"石楼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.407345,37.023843],[110.421988554688,37.0000771308594],[110.451158476563,37.0192275214844],[110.419207792969,37.038657453125],[110.460648222656,37.0505055976563],[110.491790800781,37.0893959785156],[110.522899199219,37.1082900214844],[110.532530546875,37.1419802070313],[110.591768828125,37.1894179511719],[110.636239042969,37.2449489570313],[110.647345,37.253843],[110.671654082031,37.2640529609375],[110.681571074219,37.2375490546875],[110.693016386719,37.2401137519531],[110.705936308594,37.2214003730469],[110.731673613281,37.2156301093751],[110.748992949219,37.2407155585938],[110.762791777344,37.2376222968751],[110.787613554688,37.2537856269532],[110.803260527344,37.2297585273438],[110.816478300781,37.1782497382813],[110.837345,37.163843],[110.826258574219,37.1169350410156],[110.859815703125,37.1227114082031],[110.957345,37.0996645332032],[111.046966582031,37.1208437324219],[111.083309355469,37.0994423652344],[111.08048953125,37.0830605292969],[111.091610136719,37.0681081367187],[111.097345,37.063843],[111.103543730469,37.0490834785156],[111.087699003906,36.9845693183594],[111.093616972656,36.9581728339844],[111.081429472656,36.9497585273438],[111.077345,36.933843],[111.046937285156,36.9286769843751],[111.005286894531,36.9035536933594],[110.99298953125,36.9194863105469],[110.980223417969,36.9281996894532],[110.983084746094,36.908843],[110.981087675781,36.8953346992188],[110.942345,36.9010597968751],[110.909390898438,36.8961904121094],[110.86298953125,36.8681996894531],[110.827345,36.853843],[110.822345,36.8666506171876],[110.817345,36.853843],[110.778389921875,36.8695326972656],[110.756324492188,36.8981215644532],[110.728365507813,36.9095644355469],[110.706712675781,36.9376161933594],[110.637391386719,36.9273720527344],[110.643421660156,36.8865615058594],[110.588778105469,36.8641982246094],[110.547345,36.8703212714844],[110.532135039063,36.8680727363281],[110.489193144531,36.8805934882812],[110.463922148438,36.8768593574219],[110.442735625,36.8896401191407],[110.432203398438,36.8880825019532],[110.407345,36.893843],[110.414598417969,36.9675942207032],[110.407345,36.973843],[110.397906523438,36.9844057441406],[110.363026152344,37.0155715156251],[110.407345,37.023843]]]]}},{"type":"Feature","properties":{"name":"孝义市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.612689238281,37.1874672675781],[111.667515898438,37.1659133125],[111.697345,37.1703212714844],[111.712345,37.1681044746094],[111.747345,37.17327659375],[111.782345,37.1681044746094],[111.844974394531,37.177358625],[111.91170046875,37.1481996894532],[111.927345,37.1438430000001],[111.903260527344,37.0979274726563],[111.891429472656,37.0897585273437],[111.883031035156,37.0673134589845],[111.853260527344,37.0479274726563],[111.821429472656,37.0397585273438],[111.800230742188,37.0259548164063],[111.781097441406,37.0302431464844],[111.745513945313,37.0056740546876],[111.737345,36.9938430000001],[111.692347441406,36.9882204414062],[111.681890898438,36.9895217109375],[111.672899199219,36.9782900214844],[111.622662382813,36.9477773261719],[111.602703886719,36.9595095039063],[111.592039824219,36.9581825996094],[111.542650175781,36.9795034003907],[111.531890898438,36.9781642890625],[111.522899199219,36.9893959785157],[111.497345,36.9938430000001],[111.491429472656,36.9979274726563],[111.483260527344,37.0097585273437],[111.445618925781,37.035747296875],[111.463260527344,37.0479274726563],[111.476197539063,37.0666628242187],[111.46978640625,37.0952529121094],[111.451429472656,37.1079274726563],[111.443260527344,37.1241188789062],[111.463616972656,37.1381728339844],[111.457948027344,37.1634609199219],[111.427074003906,37.1565407539063],[111.363985625,37.172036359375],[111.377345,37.203843],[111.387362089844,37.2271816230469],[111.369698515625,37.2389272285157],[111.410416289063,37.2618068671876],[111.398394804688,37.3095229316406],[111.437345,37.313843],[111.443111601563,37.2799001289063],[111.514276152344,37.2507741523438],[111.53170046875,37.2281996894532],[111.58298953125,37.2094863105469],[111.612689238281,37.1874672675781]]]]}},{"type":"Feature","properties":{"name":"兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.225291777344,38.6804457832032],[111.243470488281,38.6478627753906],[111.241917753906,38.6285195136719],[111.25271609375,38.6192153144532],[111.262691679688,38.5968617988281],[111.330079375,38.6022768378906],[111.349705839844,38.5794960761719],[111.417345,38.573843],[111.412899199219,38.5682900214844],[111.371214628906,38.559271466797],[111.383011503906,38.5392031074219],[111.380096464844,38.5157582832031],[111.394483671875,38.4524147773438],[111.378053007813,38.4096718574219],[111.450477324219,38.3828981757813],[111.465479765625,38.330356671875],[111.443057890625,38.3124025703125],[111.430679960938,38.2830275703126],[111.359559355469,38.1941005683594],[111.367345,38.1738430000001],[111.355504179688,38.1678530097657],[111.36478640625,38.148843],[111.354295683594,38.127358625],[111.332476835938,38.1163210273438],[111.297345,38.1337844062501],[111.261846953125,38.1161391425782],[111.257345,38.093843],[111.24095828125,38.1074550605469],[111.209444609375,38.1453920722656],[111.21318484375,38.1820803046875],[111.2330090625,38.1985475898438],[111.227728300781,38.2183803535156],[111.192667265625,38.1983010078125],[111.172345,38.2003713203125],[111.147345,38.1978237128906],[111.132345,38.1993520332032],[111.112345,38.1973146796875],[111.083118925781,38.2002931953126],[111.030916777344,38.2378639960938],[111.034427519531,38.2034194160157],[111.001883574219,38.1893056464844],[110.982806425781,38.1783803535156],[110.94095828125,38.1602309394532],[110.902806425781,38.1383803535157],[110.853509550781,38.1274489570313],[110.825113554688,38.1437123847657],[110.772022734375,38.1383010078125],[110.71547,38.1706899238282],[110.692345,38.1683339667969],[110.682345,38.1693520332031],[110.652345,38.1662953925782],[110.601470976563,38.1714809394532],[110.562691679688,38.1993886542969],[110.551910429688,38.1982888007813],[110.547345,38.2138430000001],[110.562569609375,38.2260353828125],[110.573089628906,38.2983071113281],[110.659539824219,38.3091200996094],[110.691790800781,38.3493959785156],[110.74295046875,38.3709535957032],[110.777843046875,38.4537563300781],[110.837345,38.4463552070313],[110.873953886719,38.4509084296875],[110.866932402344,38.507348859375],[110.901519804688,38.5219228339844],[110.913865996094,38.5789882636719],[110.891790800781,38.5882900214844],[110.878709746094,38.6046254707031],[110.884830351563,38.6538210273438],[110.902899199219,38.6682900214844],[110.911790800781,38.6993959785157],[110.917345,38.7138430000001],[110.937345,38.7138430000001],[110.937345,38.723843],[110.944154082031,38.7183901191407],[110.940863066406,38.6919362617188],[110.951890898438,38.6781642890626],[110.979827910156,38.6816396308594],[111.014949980469,38.6559828925782],[111.071790800781,38.6893959785156],[111.102899199219,38.6982900214844],[111.151527128906,38.7268752265625],[111.178968535156,38.7302883125],[111.207345,38.723843],[111.225291777344,38.6804457832032]]]]}},{"type":"Feature","properties":{"name":"中阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.097345,37.483843],[111.11205203125,37.4780605292969],[111.122345,37.4795815253906],[111.132345,37.4781044746094],[111.142735625,37.4796401191407],[111.170679960938,37.4627834296876],[111.209193144531,37.4570925117188],[111.257747832031,37.4712502265626],[111.27298953125,37.4594863105469],[111.295426054688,37.3979933906251],[111.362345,37.3881044746094],[111.39978640625,37.3936367011719],[111.41170046875,37.3781996894532],[111.43298953125,37.3694863105469],[111.45170046875,37.3581996894531],[111.487345,37.3438430000001],[111.483531523438,37.3376552558594],[111.443641386719,37.3240615058594],[111.437345,37.313843],[111.398394804688,37.3095229316406],[111.410416289063,37.2618068671876],[111.369698515625,37.2389272285157],[111.387362089844,37.2271816230469],[111.377345,37.203843],[111.330081816406,37.2097475410157],[111.306632109375,37.1804640937501],[111.340245390625,37.1663002753907],[111.351790800781,37.1362514472656],[111.305777617188,37.1168617988281],[111.257327910156,37.0563576484375],[111.232345,37.0594643378907],[111.222183867188,37.0582009101563],[111.134488554688,37.07812034375],[111.097345,37.063843],[111.091610136719,37.0681081367187],[111.08048953125,37.0830605292969],[111.083309355469,37.0994423652344],[111.046966582031,37.1208437324219],[110.957345,37.0996645332032],[110.859815703125,37.1227114082031],[110.826258574219,37.1169350410156],[110.837345,37.163843],[110.843350859375,37.159848859375],[110.852030058594,37.1467971015626],[110.881827421875,37.1702333808594],[110.902345,37.165063703125],[110.946776152344,37.1762587714844],[110.938023710938,37.2109950996094],[110.975831328125,37.2361354804688],[110.960970488281,37.2583876777344],[110.96486453125,37.273843],[110.95982546875,37.293843],[110.965618925781,37.3168361640625],[111.003062773438,37.3074025703125],[111.016922636719,37.328247296875],[111.050689726563,37.3404994941407],[111.061339140625,37.3698488593751],[111.081302519531,37.3997414375001],[111.050240507813,37.4392324042969],[111.092078886719,37.4627407050781],[111.097345,37.483843]]]]}},{"type":"Feature","properties":{"name":"岚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.767345,38.533843],[111.713233671875,38.5048036933594],[111.78556765625,38.4497536445313],[111.781102324219,38.413843],[111.782967558594,38.398843],[111.781663847656,38.3883681464844],[111.812899199219,38.3693959785157],[111.821790800781,38.3282900214844],[111.832899199219,38.3193959785157],[111.841790800781,38.3015773750001],[111.760650664063,38.2874575019531],[111.764830351563,38.2538649726563],[111.79400515625,38.2305019355469],[111.807345,38.2138430000001],[111.791463652344,38.1916860175782],[111.716534453125,38.1766640449219],[111.6884778125,38.1375209785157],[111.603170195313,38.0980178046875],[111.551519804688,38.0896681953125],[111.537345,38.083843],[111.527584257813,38.1154555488282],[111.367345,38.1738430000001],[111.359559355469,38.1941005683594],[111.430679960938,38.2830275703126],[111.443057890625,38.3124025703125],[111.465479765625,38.330356671875],[111.450477324219,38.3828981757813],[111.378053007813,38.4096718574219],[111.394483671875,38.4524147773438],[111.380096464844,38.5157582832031],[111.383011503906,38.5392031074219],[111.371214628906,38.559271466797],[111.412899199219,38.5682900214844],[111.417345,38.573843],[111.442535429688,38.5590334296876],[111.454561796875,38.5085439277344],[111.49248171875,38.4884792304688],[111.505079375,38.5282704902344],[111.548023710938,38.5055471015625],[111.590384550781,38.5346962714844],[111.682535429688,38.5686525703126],[111.708365507813,38.6086525703126],[111.727181425781,38.5958803535157],[111.752535429688,38.5590334296876],[111.767345,38.533843]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.033539,40.288195],[111.052326,40.265653],[111.114757,40.256564],[111.178055,40.222995],[111.237306,40.16911],[111.315634,40.151256],[111.361879,40.10222],[111.420263,40.021758],[111.427778,39.946822],[111.443096,39.894299],[111.415349,39.865122],[111.417373,39.831184],[111.370549,39.789134],[111.363613,39.721694],[111.442807,39.669176],[111.438183,39.643078],[111.502059,39.663181],[111.616515,39.633377],[111.646574,39.644313],[111.722589,39.60603],[111.787621,39.589617],[111.842537,39.620146],[111.878955,39.605854],[111.92838,39.610265],[111.925489,39.667413],[111.956416,39.687685],[111.970578,39.796349],[112.035032,39.854398],[112.042547,39.886215],[112.076363,39.919424],[112.174923,40.051219],[112.183594,40.083997],[112.223191,40.128844],[112.233018,40.170336],[112.300074,40.211452],[112.31019,40.256389],[112.292559,40.30741],[112.266257,40.329589],[112.270014,40.357869],[112.235909,40.355077],[112.264523,40.388406],[112.2177,40.42939],[112.225214,40.448565],[112.184172,40.463902],[112.134748,40.511109],[112.111914,40.510064],[112.053819,40.558109],[112.056131,40.581597],[112.098619,40.583511],[112.086769,40.620377],[112.047171,40.644017],[112.080121,40.667127],[112.115383,40.658961],[112.130412,40.697696],[112.093416,40.740748],[112.151222,40.762957],[112.181571,40.81082],[112.18764,40.85016],[112.15498,40.880645],[112.12521,40.961468],[112.094861,40.948321],[112.04168,40.969423],[112.017979,41.013508],[112.034454,41.047373],[111.930403,41.094858],[111.883869,41.129199],[111.853809,41.224533],[111.828086,41.222983],[111.840514,41.252263],[111.791668,41.264315],[111.730971,41.310955],[111.673454,41.301837],[111.582409,41.306826],[111.541367,41.328501],[111.425754,41.318869],[111.35552,41.313192],[111.279505,41.290307],[111.23615,41.24038],[111.162736,41.283423],[111.102618,41.308375],[111.093947,41.287209],[111.034984,41.299772],[111.011284,41.335381],[110.966195,41.348106],[110.950587,41.318697],[110.887,41.334865],[110.875728,41.357046],[110.823703,41.357734],[110.828905,41.383173],[110.762139,41.374236],[110.742196,41.385579],[110.647683,41.333317],[110.633809,41.317321],[110.582073,41.331769],[110.552302,41.288758],[110.519353,41.285144],[110.56502,41.261905],[110.557794,41.234007],[110.601438,41.220571],[110.627161,41.16628],[110.654619,41.166625],[110.64537,41.101935],[110.677742,41.053764],[110.660689,41.008496],[110.628607,40.989135],[110.645659,40.919944],[110.712426,40.939325],[110.745086,40.918905],[110.713004,40.810127],[110.73497,40.785852],[110.783816,40.793829],[110.797401,40.760702],[110.788441,40.68884],[110.807806,40.615162],[110.830928,40.586989],[110.880064,40.586468],[110.843068,40.53531],[110.889024,40.511806],[110.908678,40.481848],[110.959547,40.496306],[110.965906,40.471569],[111.020533,40.459197],[111.035851,40.423113],[111.083542,40.425729],[111.106664,40.381078],[111.115046,40.331335],[111.034117,40.315445],[111.033539,40.288195]]]]},"properties":{"adcode":150100,"name":"呼和浩特市","center":[111.670801,40.818311],"centroid":[111.50328,40.597159],"childrenNum":9,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":0,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.425754,41.318869],[111.420552,41.350513],[111.385001,41.379908],[111.430668,41.416847],[111.443385,41.46149],[111.437316,41.530454],[111.349161,41.646771],[111.303783,41.645744],[111.243665,41.669702],[111.161002,41.724257],[111.121116,41.771592],[111.062153,41.798234],[111.021689,41.854386],[110.994231,41.915772],[110.924285,42.022546],[110.795667,42.1738],[110.790464,42.218427],[110.743352,42.323508],[110.72312,42.394253],[110.730057,42.442781],[110.704333,42.47117],[110.639301,42.491778],[110.554326,42.596739],[110.434956,42.692434],[110.339865,42.738543],[110.139566,42.674755],[110.108351,42.642751],[109.906029,42.635843],[109.684053,42.55896],[109.544162,42.472353],[109.486934,42.458667],[109.383172,42.447683],[109.433752,42.427567],[109.441556,42.378689],[109.459765,42.361937],[109.507166,42.265905],[109.539248,42.147314],[109.515548,42.139672],[109.48809,42.077651],[109.37479,41.932984],[109.338083,41.902988],[109.283745,41.88611],[109.277386,41.869909],[109.317272,41.80882],[109.364963,41.766296],[109.34184,41.742545],[109.399068,41.691598],[109.4193,41.651563],[109.441556,41.564394],[109.425948,41.537312],[109.449071,41.506445],[109.58347,41.494437],[109.66411,41.49924],[109.66093,41.473504],[109.626247,41.433849],[109.662376,41.39606],[109.698794,41.379736],[109.695614,41.322653],[109.627981,41.310095],[109.61931,41.280325],[109.686365,41.173694],[109.721916,41.138514],[109.717581,41.115913],[109.677694,41.104351],[109.691857,41.041327],[109.736946,41.03148],[109.746195,41.00936],[109.812961,41.002101],[109.836083,40.945207],[109.875681,40.919598],[109.900826,40.882377],[109.816718,40.807526],[109.780878,40.754803],[109.708332,40.743177],[109.528554,40.732417],[109.481731,40.748557],[109.41352,40.704989],[109.405427,40.630112],[109.438955,40.608554],[109.421902,40.585772],[109.435775,40.50902],[109.47306,40.521905],[109.512368,40.513025],[109.576822,40.556543],[109.602835,40.552193],[109.700817,40.482371],[109.730298,40.495609],[109.82799,40.513721],[109.861807,40.50693],[109.903139,40.529391],[109.973951,40.521557],[110.008346,40.501009],[110.027133,40.531654],[110.06066,40.51703],[110.091009,40.527998],[110.162688,40.508671],[110.178585,40.550974],[110.238415,40.530087],[110.252288,40.486377],[110.297955,40.494042],[110.313852,40.444731],[110.36501,40.460765],[110.434378,40.396779],[110.485247,40.395558],[110.496519,40.366944],[110.514439,40.39172],[110.556638,40.334653],[110.57687,40.337621],[110.642769,40.301472],[110.691904,40.321208],[110.718784,40.301472],[110.771099,40.305489],[110.768787,40.273343],[110.802603,40.26041],[110.854629,40.263381],[110.925442,40.246775],[110.965617,40.276663],[110.977178,40.253418],[111.033539,40.288195],[111.034117,40.315445],[111.115046,40.331335],[111.106664,40.381078],[111.083542,40.425729],[111.035851,40.423113],[111.020533,40.459197],[110.965906,40.471569],[110.959547,40.496306],[110.908678,40.481848],[110.889024,40.511806],[110.843068,40.53531],[110.880064,40.586468],[110.830928,40.586989],[110.807806,40.615162],[110.788441,40.68884],[110.797401,40.760702],[110.783816,40.793829],[110.73497,40.785852],[110.713004,40.810127],[110.745086,40.918905],[110.712426,40.939325],[110.645659,40.919944],[110.628607,40.989135],[110.660689,41.008496],[110.677742,41.053764],[110.64537,41.101935],[110.654619,41.166625],[110.627161,41.16628],[110.601438,41.220571],[110.557794,41.234007],[110.56502,41.261905],[110.519353,41.285144],[110.552302,41.288758],[110.582073,41.331769],[110.633809,41.317321],[110.647683,41.333317],[110.742196,41.385579],[110.762139,41.374236],[110.828905,41.383173],[110.823703,41.357734],[110.875728,41.357046],[110.887,41.334865],[110.950587,41.318697],[110.966195,41.348106],[111.011284,41.335381],[111.034984,41.299772],[111.093947,41.287209],[111.102618,41.308375],[111.162736,41.283423],[111.23615,41.24038],[111.279505,41.290307],[111.35552,41.313192],[111.425754,41.318869]]]]},"properties":{"adcode":150200,"name":"包头市","center":[109.840405,40.658168],"centroid":[110.266038,41.559669],"childrenNum":9,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":1,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.749809,39.858442],[106.752699,39.789134],[106.766573,39.764314],[106.759925,39.711476],[106.79432,39.6898],[106.76455,39.65507],[106.769752,39.633906],[106.639688,39.57426],[106.611363,39.541238],[106.620034,39.499541],[106.66888,39.459764],[106.752988,39.431464],[106.751254,39.381558],[106.781603,39.371821],[106.806748,39.318683],[106.796054,39.214238],[106.825535,39.193827],[106.853571,39.116568],[106.881318,39.090262],[106.967161,39.054699],[106.993751,39.036555],[107.035372,39.037089],[107.060229,39.061813],[107.078438,39.047406],[107.136533,39.280044],[107.05965,39.222933],[107.052136,39.238368],[106.942882,39.299189],[106.958779,39.340474],[106.964848,39.450037],[106.940859,39.584322],[106.923806,39.633201],[106.887677,39.677638],[106.915713,39.704075],[106.900394,39.755158],[106.883631,39.757447],[106.878139,39.805675],[106.930743,39.856859],[106.966293,39.859496],[106.963403,39.911343],[106.933344,39.915032],[106.868023,39.862837],[106.863398,39.843144],[106.778134,39.812537],[106.769174,39.866353],[106.749809,39.858442]]]]},"properties":{"adcode":150300,"name":"乌海市","center":[106.825563,39.673734],"centroid":[106.874373,39.426964],"childrenNum":3,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":2,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.883141,42.269803],[120.76724,42.366506],[120.768685,42.394084],[120.664923,42.442612],[120.653073,42.465426],[120.569832,42.540399],[120.564918,42.598594],[120.536882,42.612586],[120.480232,42.72744],[120.459711,42.755868],[120.446415,42.820413],[120.42416,42.867267],[120.396702,42.885562],[120.420692,42.914924],[120.403928,42.939074],[120.428495,42.986508],[120.386586,42.985336],[120.348434,43.058511],[120.381672,43.1],[120.460289,43.134943],[120.46896,43.175545],[120.574167,43.256668],[120.631106,43.293188],[120.714058,43.381813],[120.768396,43.41127],[120.744984,43.429736],[120.65972,43.40062],[120.422137,43.379815],[120.479943,43.412268],[120.542374,43.428572],[120.602781,43.425744],[120.681976,43.474131],[120.681976,43.499224],[120.762037,43.554856],[120.802213,43.558507],[120.863776,43.592856],[120.934011,43.611598],[120.984591,43.650887],[120.94008,43.6981],[120.876205,43.739485],[120.836318,43.788778],[120.786894,43.8144],[120.795854,43.885591],[120.774755,43.935423],[120.69267,44.036938],[120.708567,44.081378],[120.745273,44.113618],[120.705965,44.129238],[120.688912,44.182643],[120.653362,44.185764],[120.645558,44.23518],[120.574456,44.235344],[120.560872,44.261595],[120.496996,44.249455],[120.454508,44.262579],[120.388609,44.337656],[120.378204,44.386453],[120.339185,44.391036],[120.312016,44.418363],[120.325022,44.440607],[120.286292,44.517742],[120.214612,44.551212],[120.159407,44.6088],[120.180218,44.635047],[120.126169,44.647595],[120.082236,44.688481],[120.081369,44.710134],[120.02443,44.774069],[119.994371,44.784799],[119.925581,44.846865],[119.864885,44.872193],[119.848988,44.89475],[119.757943,44.922651],[119.717768,44.968853],[119.712854,45.000119],[119.682506,45.042536],[119.656782,45.102545],[119.507642,45.195105],[119.492035,45.223989],[119.337692,45.252375],[119.307633,45.191393],[119.361682,45.165722],[119.370063,45.100605],[119.342316,45.076188],[119.293759,45.087023],[119.289135,45.120488],[119.215721,45.153125],[119.159071,45.10012],[119.157048,45.07457],[119.196934,45.032501],[119.229883,45.023112],[119.209073,44.997365],[119.170632,45.015988],[119.15329,44.99364],[119.1741,44.965774],[119.230172,44.935624],[119.224392,44.909838],[119.145775,44.925084],[119.108201,44.920867],[119.081321,44.937407],[119.067448,44.872355],[119.078142,44.857095],[119.149244,44.826076],[119.182193,44.776996],[119.173522,44.760572],[119.125832,44.762199],[119.148377,44.731779],[119.065714,44.710623],[119.00126,44.714041],[118.970044,44.732105],[118.928713,44.717296],[119.000971,44.652484],[118.967154,44.542234],[118.871196,44.501735],[118.840848,44.502225],[118.782463,44.453524],[118.750381,44.4684],[118.646908,44.44306],[118.609912,44.463824],[118.557019,44.431285],[118.552105,44.402819],[118.483027,44.388909],[118.478692,44.346829],[118.446031,44.34257],[118.403254,44.307669],[118.371461,44.319633],[118.246311,44.326187],[118.226945,44.308325],[118.250935,44.281111],[118.245154,44.235344],[118.211627,44.257002],[118.1807,44.21138],[118.142837,44.207604],[118.113934,44.130882],[118.063932,44.102764],[117.92433,44.126936],[117.878085,44.102599],[117.867969,44.074138],[117.832996,44.066239],[117.78993,44.019811],[117.699753,44.017176],[117.64397,44.042865],[117.686457,44.09602],[117.621425,44.126443],[117.634721,44.148634],[117.552347,44.187571],[117.522866,44.22681],[117.452342,44.23518],[117.206377,44.220245],[117.165912,44.192826],[117.120823,44.179523],[117.011281,44.057681],[116.961567,44.024917],[116.971105,43.988344],[117.021975,43.97005],[117.031802,43.942845],[116.999719,43.912492],[117.013593,43.850584],[116.986424,43.840343],[117.001164,43.78266],[117.054346,43.753383],[116.972261,43.673587],[116.858672,43.657516],[116.838151,43.614748],[116.813583,43.612924],[116.804623,43.565312],[116.830925,43.507032],[116.790172,43.484103],[116.734967,43.509025],[116.681207,43.516998],[116.621956,43.505204],[116.60577,43.419921],[116.536113,43.375154],[116.436687,43.328687],[116.414142,43.256835],[116.37021,43.243489],[116.356625,43.157002],[116.419345,43.104348],[116.436109,43.078088],[116.504031,43.049306],[116.500852,43.01532],[116.599989,42.975952],[116.639876,42.952487],[116.67427,42.88959],[116.666177,42.816885],[116.673981,42.761417],[116.619354,42.671892],[116.588139,42.599943],[116.63554,42.614777],[116.638141,42.577346],[116.669646,42.555923],[116.69826,42.59539],[116.801444,42.583081],[116.820809,42.546981],[116.885841,42.534661],[116.876881,42.480799],[116.909542,42.438048],[116.893645,42.387825],[116.993072,42.425708],[117.016772,42.45647],[117.079492,42.460695],[117.098568,42.484009],[117.176028,42.465595],[117.275455,42.481982],[117.332105,42.46154],[117.413034,42.47117],[117.415346,42.515587],[117.387021,42.517444],[117.433266,42.555755],[117.435289,42.585442],[117.473441,42.602471],[117.528068,42.591512],[117.539918,42.605506],[117.600326,42.602977],[117.667381,42.582406],[117.707267,42.587971],[117.779814,42.618654],[117.874038,42.510184],[117.997744,42.416746],[118.024335,42.38478],[118.016242,42.333329],[118.059885,42.29827],[118.047457,42.280649],[117.96913,42.245562],[118.033584,42.199087],[118.106419,42.171933],[118.088789,42.11708],[118.155266,42.081221],[118.125206,42.032925],[118.189082,42.030543],[118.220298,42.058608],[118.226656,42.09023],[118.272323,42.083261],[118.296891,42.048404],[118.23764,42.022887],[118.313944,41.988167],[118.30614,41.93997],[118.268855,41.930088],[118.340246,41.872467],[118.292266,41.772787],[118.246889,41.773983],[118.235905,41.807625],[118.16596,41.813258],[118.140236,41.78406],[118.130698,41.742375],[118.169139,41.670728],[118.206713,41.650708],[118.209893,41.610648],[118.230414,41.582214],[118.301515,41.569707],[118.315678,41.512448],[118.272034,41.471273],[118.32695,41.450847],[118.361056,41.384891],[118.349206,41.342775],[118.380132,41.31216],[118.412503,41.331941],[118.519156,41.353952],[118.629855,41.346386],[118.676967,41.350513],[118.741999,41.324029],[118.770035,41.353092],[118.839691,41.374236],[118.844894,41.342431],[118.89085,41.300804],[118.974669,41.306482],[119.093172,41.293577],[119.155024,41.297707],[119.197801,41.282907],[119.252139,41.325577],[119.296361,41.325233],[119.330755,41.385063],[119.309945,41.406025],[119.376422,41.422171],[119.377867,41.459773],[119.403302,41.47522],[119.404458,41.510733],[119.361971,41.566451],[119.414863,41.562338],[119.416019,41.590095],[119.342606,41.618011],[119.307922,41.657553],[119.299829,41.711434],[119.317749,41.763221],[119.29347,41.792257],[119.312835,41.805747],[119.334513,41.869397],[119.34116,41.922419],[119.324686,41.969267],[119.374399,42.021015],[119.385093,42.08955],[119.35012,42.118949],[119.304453,42.128972],[119.276417,42.186021],[119.237976,42.200954],[119.28451,42.265227],[119.337114,42.294205],[119.431916,42.316564],[119.482497,42.347042],[119.50244,42.387994],[119.572096,42.359398],[119.541459,42.292171],[119.608514,42.277091],[119.642331,42.240644],[119.719791,42.229452],[119.744648,42.211642],[119.846676,42.215204],[119.854769,42.170235],[119.839739,42.148673],[119.84552,42.097199],[119.869798,42.083431],[119.924425,41.989188],[119.954484,41.968245],[119.954484,41.920374],[119.985122,41.904693],[120.023274,41.816502],[120.041772,41.818721],[120.050443,41.776033],[120.024719,41.738615],[120.036858,41.708015],[120.09611,41.69707],[120.138308,41.729214],[120.127036,41.772616],[120.251608,41.883893],[120.300455,41.888156],[120.260279,41.904182],[120.28687,41.934858],[120.374447,41.994465],[120.456531,42.016251],[120.450751,42.057248],[120.493527,42.072551],[120.466647,42.105356],[120.584283,42.16718],[120.624748,42.154616],[120.722151,42.203668],[120.745273,42.223516],[120.820711,42.228095],[120.829382,42.252513],[120.883719,42.242679],[120.883141,42.269803]]]]},"properties":{"adcode":150400,"name":"赤峰市","center":[118.956806,42.275317],"centroid":[118.878285,43.239277],"childrenNum":12,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":3,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.883141,42.269803],[120.936034,42.279802],[121.028813,42.24251],[121.069277,42.252682],[121.087197,42.278446],[121.121592,42.280988],[121.218706,42.371921],[121.284895,42.387825],[121.304549,42.435682],[121.385188,42.473029],[121.570168,42.48688],[121.607742,42.516094],[121.605141,42.493974],[121.637802,42.480462],[121.666127,42.437203],[121.711215,42.443626],[121.747344,42.484516],[121.818157,42.504781],[121.828851,42.531961],[121.869315,42.52791],[121.921341,42.60618],[121.916139,42.657239],[121.940417,42.688561],[121.992443,42.70489],[122.018745,42.699167],[122.060943,42.723402],[122.133201,42.689403],[122.19621,42.690918],[122.203724,42.732151],[122.259507,42.696642],[122.307776,42.690413],[122.341303,42.671218],[122.398531,42.686709],[122.399688,42.712127],[122.46154,42.758054],[122.374831,42.774868],[122.349974,42.821589],[122.358356,42.835867],[122.436973,42.842921],[122.563857,42.825957],[122.58091,42.789662],[122.625132,42.773187],[122.732362,42.786468],[122.84653,42.720204],[122.887283,42.770161],[122.928904,42.772178],[122.945956,42.753681],[122.980351,42.777558],[123.058389,42.769152],[123.084113,42.788485],[123.227473,42.83234],[123.171112,42.851653],[123.188742,42.895799],[123.184118,42.925994],[123.259555,42.993377],[123.321986,43.000748],[123.471993,43.042778],[123.537603,43.007113],[123.572576,43.004601],[123.627203,43.080765],[123.636163,43.141461],[123.667956,43.18089],[123.646279,43.213282],[123.676916,43.224132],[123.6668,43.268177],[123.696281,43.281351],[123.703796,43.370659],[123.608705,43.366329],[123.545118,43.415097],[123.519683,43.402451],[123.486734,43.445369],[123.441934,43.437719],[123.419967,43.410105],[123.375746,43.476624],[123.315916,43.492079],[123.32979,43.518991],[123.304644,43.550706],[123.352912,43.567636],[123.452339,43.545726],[123.46101,43.568631],[123.421123,43.598329],[123.510434,43.592192],[123.510723,43.62536],[123.537314,43.649727],[123.517371,43.71383],[123.482687,43.73783],[123.49685,43.785636],[123.463322,43.819524],[123.468236,43.853062],[123.443957,43.877336],[123.428349,43.92734],[123.375168,43.965599],[123.400891,43.97928],[123.332391,44.028375],[123.328344,44.083846],[123.3506,44.092565],[123.38644,44.161944],[123.32372,44.179851],[123.287302,44.21335],[123.277186,44.252573],[123.196835,44.345027],[123.127179,44.368773],[123.114461,44.402492],[123.142208,44.428177],[123.124,44.457939],[123.124867,44.509576],[123.024862,44.492913],[122.856068,44.398237],[122.760687,44.369755],[122.675423,44.285703],[122.641896,44.283407],[122.512988,44.250276],[122.483218,44.236985],[122.319337,44.232883],[122.271358,44.25569],[122.226269,44.263727],[122.163838,44.255361],[122.019034,44.3039],[121.983194,44.330284],[121.934347,44.343553],[121.882611,44.402165],[121.829429,44.411491],[121.77856,44.446657],[121.760062,44.478207],[121.697631,44.534724],[121.651097,44.563289],[121.585487,44.640099],[121.595892,44.659327],[121.548491,44.667635],[121.530282,44.720388],[121.409178,44.790977],[121.42045,44.818278],[121.401663,44.851412],[121.240095,44.934002],[121.033437,44.998337],[120.977654,45.073276],[120.973897,45.118548],[120.947017,45.121296],[120.97303,45.157163],[120.967827,45.18429],[120.881696,45.217697],[120.835162,45.216084],[120.82678,45.253665],[120.74325,45.260114],[120.660298,45.297827],[120.581104,45.352901],[120.554513,45.357568],[120.559426,45.416925],[120.497285,45.46337],[120.435143,45.464494],[120.420113,45.499021],[120.344965,45.519727],[120.327624,45.55037],[120.269239,45.552134],[120.165766,45.594942],[120.02732,45.595102],[119.994949,45.578753],[119.99466,45.551974],[120.029054,45.526146],[120.031078,45.498379],[119.998706,45.482322],[119.906794,45.505763],[119.918934,45.558229],[119.876157,45.548125],[119.819796,45.572821],[119.791182,45.564162],[119.655626,45.623622],[119.565448,45.65581],[119.559379,45.616253],[119.49637,45.55037],[119.396943,45.512665],[119.304453,45.468189],[119.313413,45.385565],[119.248092,45.303627],[119.322084,45.246086],[119.337692,45.252375],[119.492035,45.223989],[119.507642,45.195105],[119.656782,45.102545],[119.682506,45.042536],[119.712854,45.000119],[119.717768,44.968853],[119.757943,44.922651],[119.848988,44.89475],[119.864885,44.872193],[119.925581,44.846865],[119.994371,44.784799],[120.02443,44.774069],[120.081369,44.710134],[120.082236,44.688481],[120.126169,44.647595],[120.180218,44.635047],[120.159407,44.6088],[120.214612,44.551212],[120.286292,44.517742],[120.325022,44.440607],[120.312016,44.418363],[120.339185,44.391036],[120.378204,44.386453],[120.388609,44.337656],[120.454508,44.262579],[120.496996,44.249455],[120.560872,44.261595],[120.574456,44.235344],[120.645558,44.23518],[120.653362,44.185764],[120.688912,44.182643],[120.705965,44.129238],[120.745273,44.113618],[120.708567,44.081378],[120.69267,44.036938],[120.774755,43.935423],[120.795854,43.885591],[120.786894,43.8144],[120.836318,43.788778],[120.876205,43.739485],[120.94008,43.6981],[120.984591,43.650887],[120.934011,43.611598],[120.863776,43.592856],[120.802213,43.558507],[120.762037,43.554856],[120.681976,43.499224],[120.681976,43.474131],[120.602781,43.425744],[120.542374,43.428572],[120.479943,43.412268],[120.422137,43.379815],[120.65972,43.40062],[120.744984,43.429736],[120.768396,43.41127],[120.714058,43.381813],[120.631106,43.293188],[120.574167,43.256668],[120.46896,43.175545],[120.460289,43.134943],[120.381672,43.1],[120.348434,43.058511],[120.386586,42.985336],[120.428495,42.986508],[120.403928,42.939074],[120.420692,42.914924],[120.396702,42.885562],[120.42416,42.867267],[120.446415,42.820413],[120.459711,42.755868],[120.480232,42.72744],[120.536882,42.612586],[120.564918,42.598594],[120.569832,42.540399],[120.653073,42.465426],[120.664923,42.442612],[120.768685,42.394084],[120.76724,42.366506],[120.883141,42.269803]]]]},"properties":{"adcode":150500,"name":"通辽市","center":[122.263119,43.617429],"centroid":[121.569548,43.834485],"childrenNum":8,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":4,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.967161,39.054699],[106.971496,39.016983],[106.954443,38.941133],[106.837386,38.847544],[106.755879,38.748473],[106.702697,38.70827],[106.662522,38.601489],[106.648648,38.472675],[106.601825,38.392475],[106.482455,38.319555],[106.555291,38.263827],[106.627838,38.232529],[106.728132,38.204097],[106.755879,38.181235],[106.945194,38.131707],[107.014851,38.120356],[107.068899,38.139094],[107.125839,38.137112],[107.138845,38.160708],[107.190293,38.154044],[107.242318,38.110625],[107.331629,38.086473],[107.39377,38.015049],[107.440015,37.995016],[107.41169,37.949155],[107.450132,37.93326],[107.492619,37.94482],[107.560541,37.893686],[107.650141,37.86458],[107.68338,37.887721],[107.741186,37.845411],[107.842636,37.82895],[107.884834,37.808324],[107.981949,37.78733],[107.993221,37.735362],[108.024436,37.698763],[108.013164,37.665591],[108.133979,37.622065],[108.19352,37.638209],[108.246412,37.665773],[108.301039,37.640748],[108.422432,37.648909],[108.532553,37.690607],[108.611169,37.654168],[108.777651,37.683538],[108.792103,37.700213],[108.784588,37.7647],[108.793259,37.815923],[108.798173,37.933621],[108.826787,37.995197],[108.797595,38.047884],[108.830544,38.049868],[108.882859,38.013786],[108.893842,37.978228],[108.935751,37.921697],[108.974193,37.931814],[108.982574,37.963783],[109.017547,37.969923],[109.038068,38.021545],[109.069573,38.022988],[109.050786,38.054918],[109.068995,38.091159],[108.947313,38.170612],[108.938931,38.209496],[108.975927,38.245121],[108.961764,38.265086],[109.00772,38.359077],[109.051364,38.385294],[109.052231,38.428549],[109.175936,38.518745],[109.196747,38.552606],[109.276808,38.622965],[109.331435,38.597909],[109.367564,38.629765],[109.328834,38.660533],[109.338661,38.701478],[109.40167,38.716313],[109.450805,38.788832],[109.517282,38.833807],[109.549653,38.80579],[109.624513,38.854501],[109.683764,38.93561],[109.665266,38.981738],[109.725384,39.018406],[109.757467,39.053454],[109.860073,39.124386],[109.922215,39.106971],[109.89389,39.141264],[109.960945,39.191874],[109.869033,39.24972],[109.902849,39.271888],[109.962679,39.211931],[110.010947,39.208559],[110.088697,39.23482],[110.193037,39.280753],[110.217604,39.281108],[110.18321,39.356415],[110.136676,39.391826],[110.132051,39.446854],[110.152572,39.453928],[110.243328,39.42368],[110.340443,39.341714],[110.391023,39.311772],[110.429175,39.342069],[110.430042,39.379257],[110.482646,39.360665],[110.524266,39.382798],[110.559239,39.352165],[110.566754,39.319923],[110.626294,39.266746],[110.702888,39.273838],[110.732947,39.308405],[110.738438,39.348622],[110.808095,39.411825],[110.890758,39.508907],[110.959258,39.519509],[111.017353,39.552011],[111.100883,39.559428],[111.136723,39.58697],[111.154932,39.568963],[111.148863,39.532229],[111.106375,39.49848],[111.088744,39.459057],[111.058396,39.447738],[111.064466,39.40103],[111.097993,39.401915],[111.108109,39.356592],[111.145394,39.409524],[111.172274,39.423326],[111.289332,39.417133],[111.352341,39.426688],[111.364191,39.467368],[111.426622,39.503429],[111.438183,39.643078],[111.442807,39.669176],[111.363613,39.721694],[111.370549,39.789134],[111.417373,39.831184],[111.415349,39.865122],[111.443096,39.894299],[111.427778,39.946822],[111.420263,40.021758],[111.361879,40.10222],[111.315634,40.151256],[111.237306,40.16911],[111.178055,40.222995],[111.114757,40.256564],[111.052326,40.265653],[111.033539,40.288195],[110.977178,40.253418],[110.965617,40.276663],[110.925442,40.246775],[110.854629,40.263381],[110.802603,40.26041],[110.768787,40.273343],[110.771099,40.305489],[110.718784,40.301472],[110.691904,40.321208],[110.642769,40.301472],[110.57687,40.337621],[110.556638,40.334653],[110.514439,40.39172],[110.496519,40.366944],[110.485247,40.395558],[110.434378,40.396779],[110.36501,40.460765],[110.313852,40.444731],[110.297955,40.494042],[110.252288,40.486377],[110.238415,40.530087],[110.178585,40.550974],[110.162688,40.508671],[110.091009,40.527998],[110.06066,40.51703],[110.027133,40.531654],[110.008346,40.501009],[109.973951,40.521557],[109.903139,40.529391],[109.861807,40.50693],[109.82799,40.513721],[109.730298,40.495609],[109.700817,40.482371],[109.602835,40.552193],[109.576822,40.556543],[109.512368,40.513025],[109.47306,40.521905],[109.435775,40.50902],[109.410051,40.456583],[109.402826,40.476447],[109.333458,40.479235],[109.319296,40.501009],[109.257732,40.502924],[109.227673,40.485855],[109.223915,40.519119],[109.172179,40.516333],[109.156282,40.535832],[109.084313,40.529739],[109.079111,40.54906],[109.000494,40.542098],[108.97795,40.527476],[108.880257,40.559502],[108.826209,40.566984],[108.774472,40.550104],[108.761466,40.578466],[108.776206,40.612554],[108.731406,40.609424],[108.690075,40.640715],[108.658282,40.635327],[108.604522,40.656181],[108.611748,40.673555],[108.562034,40.728078],[108.481105,40.735889],[108.48573,40.754282],[108.436595,40.794003],[108.344394,40.805273],[108.302195,40.818447],[108.234562,40.820354],[108.223579,40.853625],[108.171553,40.86731],[108.16664,40.852759],[108.03224,40.855011],[108.000736,40.845309],[107.968942,40.867656],[107.914605,40.848774],[107.855353,40.874238],[107.820669,40.836472],[107.758528,40.861767],[107.728179,40.84219],[107.735983,40.814981],[107.698409,40.8129],[107.696386,40.768508],[107.664015,40.757405],[107.613145,40.778221],[107.584531,40.73988],[107.529904,40.702385],[107.487127,40.712108],[107.454467,40.680155],[107.38481,40.643669],[107.285673,40.649404],[107.2507,40.582641],[107.226999,40.559502],[107.164858,40.574291],[107.1611,40.525387],[107.203299,40.506059],[107.155031,40.451877],[107.171795,40.39015],[107.089132,40.359964],[107.044332,40.328891],[107.022655,40.258312],[106.972363,40.218798],[106.866867,40.16806],[106.839409,40.14793],[106.823223,40.108701],[106.729288,40.047362],[106.720328,39.915559],[106.749809,39.858442],[106.769174,39.866353],[106.778134,39.812537],[106.863398,39.843144],[106.868023,39.862837],[106.933344,39.915032],[106.963403,39.911343],[106.966293,39.859496],[106.930743,39.856859],[106.878139,39.805675],[106.883631,39.757447],[106.900394,39.755158],[106.915713,39.704075],[106.887677,39.677638],[106.923806,39.633201],[106.940859,39.584322],[106.964848,39.450037],[106.958779,39.340474],[106.942882,39.299189],[107.052136,39.238368],[107.05965,39.222933],[107.136533,39.280044],[107.078438,39.047406],[107.060229,39.061813],[107.035372,39.037089],[106.993751,39.036555],[106.967161,39.054699]]]]},"properties":{"adcode":150600,"name":"鄂尔多斯市","center":[109.99029,39.817179],"centroid":[108.637375,39.425314],"childrenNum":9,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":5,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[122.418186,47.350378],[122.299394,47.300077],[122.246501,47.253458],[122.193319,47.230289],[122.125686,47.213645],[122.079441,47.182519],[122.048515,47.201352],[121.927122,47.241486],[121.856309,47.256567],[121.795323,47.280347],[121.760062,47.280968],[121.673352,47.250349],[121.640114,47.204776],[121.648496,47.177693],[121.588088,47.170376],[121.551959,47.195905],[121.436058,47.183453],[121.380275,47.142341],[121.255124,47.113356],[121.173329,47.14125],[121.099048,47.152155],[121.055115,47.145924],[120.976787,47.096207],[120.932855,47.107433],[120.876494,47.149818],[120.823023,47.145612],[120.773888,47.177226],[120.738048,47.218312],[120.626482,47.241953],[120.617522,47.287649],[120.633129,47.307687],[120.703364,47.334082],[120.736314,47.379389],[120.72533,47.397532],[120.650471,47.44046],[120.578503,47.50734],[120.60307,47.533172],[120.590064,47.548324],[120.53457,47.543995],[120.473295,47.555126],[120.377915,47.593756],[120.323866,47.607964],[120.264904,47.658127],[120.233688,47.630505],[120.205363,47.635135],[120.179929,47.612133],[120.118943,47.602559],[120.07501,47.573054],[120.013158,47.554817],[119.959109,47.582015],[119.907661,47.569963],[119.868064,47.538893],[119.854191,47.525903],[119.836271,47.508733],[119.814593,47.499294],[119.811125,47.494033],[119.811703,47.490474],[119.813148,47.471434],[119.770372,47.438601],[119.763724,47.436277],[119.671812,47.412103],[119.661696,47.408848],[119.652447,47.402338],[119.616318,47.36093],[119.483364,47.338118],[119.444633,47.371013],[119.386827,47.397532],[119.354745,47.43008],[119.322084,47.427136],[119.365728,47.477472],[119.205316,47.520335],[119.152134,47.540594],[119.134214,47.664451],[118.773214,47.771085],[118.568002,47.99213],[118.441985,47.995808],[118.424354,48.01481],[118.350651,48.006076],[118.27637,48.009294],[118.240241,48.040544],[118.107576,48.031049],[118.015375,48.011286],[117.926353,48.015883],[117.886756,48.025228],[117.813342,48.016189],[117.528935,47.782937],[117.493674,47.758461],[117.384131,47.641154],[117.094811,47.824013],[116.879193,47.893936],[116.791328,47.897621],[116.669935,47.890557],[116.452872,47.837544],[116.265869,47.876733],[116.110949,47.811709],[115.968167,47.689897],[115.938975,47.683113],[115.580577,47.921725],[115.529418,48.15527],[115.822785,48.259371],[115.799373,48.515059],[115.830299,48.5601],[116.078288,48.822421],[116.048518,48.873516],[116.350845,49.317592],[116.717914,49.847283],[116.736701,49.847579],[117.069087,49.695514],[117.278056,49.636364],[117.485003,49.6331],[117.638189,49.574914],[117.809585,49.521268],[117.849471,49.551442],[117.866524,49.59214],[117.950921,49.596],[117.980691,49.621231],[118.082719,49.616631],[118.118848,49.666466],[118.154688,49.66024],[118.185325,49.687809],[118.205846,49.684697],[118.220876,49.730022],[118.282439,49.74364],[118.315967,49.767168],[118.388514,49.785952],[118.402387,49.811381],[118.385334,49.826898],[118.469732,49.825715],[118.496033,49.846249],[118.485917,49.866922],[118.523202,49.881093],[118.572916,49.930952],[118.617715,49.927856],[118.651243,49.950852],[118.741999,49.946578],[118.763098,49.959694],[118.824662,49.963525],[118.96542,49.98886],[119.050395,49.980613],[119.092016,49.985915],[119.123809,50.018156],[119.188263,50.054493],[119.191731,50.088745],[119.234797,50.074782],[119.290291,50.121651],[119.309656,50.161285],[119.334224,50.162899],[119.359658,50.197074],[119.318616,50.220381],[119.350987,50.303548],[119.386827,50.321685],[119.358502,50.358961],[119.277284,50.365974],[119.237109,50.346539],[119.23393,50.365098],[119.195489,50.349316],[119.155602,50.364659],[119.176702,50.378683],[119.146064,50.411098],[119.190864,50.422774],[119.206761,50.410368],[119.239999,50.459095],[119.264567,50.469447],[119.238265,50.505587],[119.262544,50.510831],[119.26659,50.56091],[119.299251,50.583893],[119.282487,50.60483],[119.361393,50.632732],[119.394053,50.667296],[119.387405,50.682827],[119.433072,50.684568],[119.496659,50.745478],[119.515735,50.814124],[119.498971,50.827726],[119.491457,50.878913],[119.569784,50.933797],[119.598687,50.984723],[119.629902,51.008508],[119.683084,51.018883],[119.725572,51.049562],[119.722681,51.076192],[119.764302,51.092594],[119.785112,51.163603],[119.760255,51.213272],[119.786268,51.225466],[119.82153,51.21442],[119.797251,51.24712],[119.827889,51.263749],[119.810836,51.278508],[119.879336,51.2967],[119.883961,51.336926],[119.922402,51.345225],[119.945813,51.365965],[119.912864,51.375259],[119.922113,51.396557],[119.971248,51.400415],[119.982809,51.444976],[120.002464,51.459392],[119.985989,51.505748],[120.046685,51.545364],[120.035124,51.585799],[120.06605,51.639135],[120.102179,51.650221],[120.094375,51.682043],[120.172414,51.679912],[120.226174,51.717674],[120.293518,51.750724],[120.311149,51.781767],[120.363463,51.789984],[120.406818,51.816469],[120.400459,51.833457],[120.459422,51.845061],[120.496996,51.88735],[120.533414,51.87915],[120.547865,51.907137],[120.660876,51.929457],[120.662611,51.957978],[120.701341,51.980555],[120.71955,52.010171],[120.686022,52.034976],[120.769552,52.114093],[120.763193,52.142777],[120.785738,52.165542],[120.747008,52.20402],[120.758569,52.256346],[120.717526,52.260832],[120.696138,52.289842],[120.628505,52.322753],[120.624169,52.361514],[120.649315,52.363752],[120.648448,52.389619],[120.688045,52.427623],[120.683132,52.466571],[120.706543,52.490147],[120.692959,52.518309],[120.73429,52.536842],[120.629372,52.570265],[120.596711,52.592811],[120.561161,52.595593],[120.4837,52.630084],[120.437166,52.639675],[120.396702,52.616319],[120.286292,52.622993],[120.185998,52.579312],[120.080502,52.585436],[120.049287,52.598515],[120.035124,52.646346],[120.070675,52.707587],[120.031367,52.772762],[120.099,52.787309],[120.141198,52.812927],[120.187732,52.807943],[120.222416,52.842819],[120.296986,52.869926],[120.294963,52.890659],[120.344676,52.900884],[120.363174,52.941345],[120.408263,52.956387],[120.453063,53.010028],[120.529078,53.045981],[120.541507,53.070346],[120.611163,53.100336],[120.642089,53.105149],[120.660009,53.137038],[120.686889,53.142396],[120.690936,53.172611],[120.748164,53.210348],[120.814063,53.239692],[120.840076,53.241063],[120.822734,53.270112],[120.93112,53.286957],[120.954821,53.298594],[121.047022,53.288874],[121.096735,53.307354],[121.129396,53.277371],[121.153674,53.285314],[121.234603,53.280932],[121.285473,53.291338],[121.329405,53.322816],[121.416115,53.319395],[121.499356,53.337178],[121.511495,53.31748],[121.579706,53.289285],[121.615257,53.259016],[121.648207,53.260797],[121.678844,53.241337],[121.679133,53.199511],[121.665259,53.170551],[121.719597,53.146243],[121.753125,53.147342],[121.784629,53.104599],[121.775669,53.089746],[121.814978,53.069108],[121.785496,53.018571],[121.715551,52.998037],[121.677399,52.948108],[121.662369,52.912487],[121.610344,52.892317],[121.620171,52.851119],[121.591268,52.824693],[121.482014,52.774286],[121.454845,52.735333],[121.373049,52.683157],[121.321023,52.678852],[121.292698,52.651765],[121.182289,52.596289],[121.232002,52.577642],[121.277091,52.587662],[121.325648,52.572631],[121.353106,52.535727],[121.409756,52.523466],[121.416404,52.49935],[121.49502,52.484847],[121.518721,52.456663],[121.565255,52.460292],[121.5904,52.443123],[121.640114,52.444379],[121.678844,52.419801],[121.658612,52.390318],[121.715551,52.343047],[121.714106,52.318133],[121.769311,52.308191],[121.841279,52.282697],[121.90082,52.280595],[121.947643,52.298387],[121.976835,52.343747],[122.035508,52.377596],[122.040422,52.413096],[122.091291,52.427204],[122.16933,52.51357],[122.207771,52.469222],[122.310377,52.475222],[122.34217,52.414074],[122.367027,52.413794],[122.416451,52.37424],[122.439863,52.393672],[122.484085,52.341508],[122.478304,52.296286],[122.560678,52.282556],[122.585824,52.26644],[122.678892,52.276671],[122.710685,52.256206],[122.760976,52.26686],[122.787278,52.252701],[122.766179,52.232646],[122.769358,52.179729],[122.738143,52.153458],[122.690742,52.140387],[122.629178,52.136592],[122.643919,52.111702],[122.625132,52.067513],[122.650567,52.059064],[122.665018,51.99875],[122.683805,51.974489],[122.726293,51.978862],[122.729472,51.919287],[122.706061,51.890177],[122.725715,51.87816],[122.732651,51.832608],[122.77196,51.779499],[122.749993,51.747746],[122.77485,51.703907],[122.816181,51.655195],[122.820806,51.633164],[122.856357,51.606714],[122.832656,51.581672],[122.873988,51.561172],[122.880057,51.511023],[122.854623,51.477655],[122.900289,51.445261],[122.898555,51.422558],[122.965899,51.386981],[122.960119,51.361675],[122.978039,51.331489],[123.014457,51.310017],[123.059257,51.321899],[123.15377,51.300853],[123.231519,51.268621],[123.294239,51.254145],[123.339617,51.27249],[123.376613,51.266901],[123.463033,51.286817],[123.582692,51.294695],[123.582403,51.306867],[123.661886,51.31918],[123.660441,51.342793],[123.711022,51.398272],[123.794552,51.361246],[123.842531,51.367538],[123.88762,51.320897],[123.926061,51.30071],[123.994561,51.322758],[124.071733,51.320754],[124.090231,51.341362],[124.128094,51.347514],[124.192548,51.339359],[124.239371,51.344653],[124.271453,51.308299],[124.297466,51.298562],[124.406431,51.27206],[124.430131,51.301283],[124.426663,51.331918],[124.443716,51.358099],[124.49025,51.380406],[124.55586,51.375402],[124.587075,51.363677],[124.624649,51.328626],[124.693438,51.332777],[124.751245,51.356955],[124.783616,51.392269],[124.864545,51.379691],[124.885066,51.408131],[124.942583,51.447403],[124.917727,51.474231],[124.92871,51.498477],[124.983626,51.508315],[125.004436,51.529265],[125.047502,51.529693],[125.072936,51.553482],[125.05993,51.596756],[125.098949,51.658321],[125.12843,51.659031],[125.130453,51.635439],[125.17612,51.639277],[125.289132,51.633875],[125.316011,51.609986],[125.351562,51.623923],[125.379598,51.586795],[125.424687,51.563023],[125.524114,51.49149],[125.568914,51.439408],[125.622384,51.399701],[125.625853,51.379262],[125.673254,51.341505],[125.695509,51.337785],[125.711117,51.302715],[125.764299,51.261169],[125.75794,51.227331],[125.817769,51.227044],[125.851875,51.212555],[125.868928,51.140328],[125.908814,51.139179],[125.946388,51.108127],[125.990032,51.119199],[125.976158,51.084538],[126.009108,51.057193],[126.057087,51.045242],[126.033676,51.010525],[126.042347,50.981839],[126.068359,50.96785],[126.044081,50.928022],[126.021247,50.927878],[125.995524,50.897118],[125.996391,50.871542],[125.958817,50.900296],[125.945521,50.855495],[125.906791,50.855206],[125.920375,50.831343],[125.878466,50.816585],[125.889449,50.804862],[125.831932,50.784882],[125.840025,50.756202],[125.805341,50.772717],[125.758518,50.747217],[125.794647,50.73997],[125.782219,50.724024],[125.825284,50.70488],[125.787421,50.678037],[125.814301,50.624596],[125.808231,50.603667],[125.829331,50.561637],[125.752737,50.506898],[125.740598,50.523356],[125.654467,50.471196],[125.632211,50.443928],[125.59088,50.452242],[125.561977,50.438239],[125.574694,50.401318],[125.536542,50.420001],[125.513131,50.409346],[125.537409,50.379852],[125.522669,50.367143],[125.530473,50.331043],[125.466308,50.297403],[125.466019,50.266961],[125.442896,50.26169],[125.464573,50.229905],[125.388558,50.178449],[125.33422,50.164953],[125.375841,50.137362],[125.313121,50.139417],[125.27757,50.12635],[125.257627,50.100794],[125.289132,50.091243],[125.278726,50.071842],[125.337689,50.059639],[125.316011,50.045668],[125.285663,50.058757],[125.256182,50.039049],[125.286819,50.034489],[125.296646,50.009472],[125.242019,49.987829],[125.231614,49.957631],[125.189994,49.959841],[125.225545,49.924612],[125.212827,49.907209],[125.24173,49.866775],[125.2241,49.835762],[125.177855,49.829409],[125.222943,49.798964],[125.228146,49.774564],[125.205313,49.733575],[125.224967,49.726468],[125.219764,49.669135],[125.189994,49.64986],[125.164559,49.669431],[125.127274,49.65505],[125.154154,49.616779],[125.168317,49.629985],[125.205313,49.59407],[125.226412,49.596],[125.235661,49.54089],[125.212538,49.541336],[125.228435,49.486909],[125.263986,49.46146],[125.257049,49.393976],[125.277281,49.380409],[125.257049,49.359528],[125.258205,49.314008],[125.214851,49.280251],[125.227568,49.248864],[125.219475,49.189023],[125.185369,49.18528],[125.160224,49.146341],[125.117447,49.125961],[125.039409,49.151885],[125.039987,49.176297],[124.982759,49.16252],[124.906454,49.183933],[124.860787,49.166563],[124.847492,49.129708],[124.80934,49.115918],[124.828994,49.071974],[124.808184,49.020481],[124.765407,48.981262],[124.744308,48.920496],[124.711936,48.921248],[124.714827,48.886771],[124.697196,48.84187],[124.65413,48.834333],[124.653552,48.777161],[124.613955,48.751193],[124.624938,48.700275],[124.601816,48.632356],[124.578982,48.596468],[124.518575,48.554188],[124.548923,48.53129],[124.534471,48.51779],[124.555571,48.467851],[124.508748,48.448257],[124.526378,48.421664],[124.52002,48.374521],[124.54372,48.362805],[124.541119,48.335253],[124.57956,48.297479],[124.55875,48.268215],[124.578982,48.262116],[124.547189,48.200935],[124.512505,48.164589],[124.531003,48.148699],[124.488515,48.126383],[124.463948,48.097633],[124.416258,48.087995],[124.430131,48.121032],[124.472619,48.134485],[124.476954,48.164131],[124.410477,48.190401],[124.428397,48.230085],[124.404985,48.264251],[124.365099,48.284678],[124.35585,48.314846],[124.318854,48.347128],[124.331571,48.379846],[124.306715,48.399618],[124.330126,48.435646],[124.302668,48.456764],[124.31423,48.50383],[124.259025,48.536447],[124.24255,48.522189],[124.083294,48.438533],[123.979821,48.363718],[123.866231,48.27477],[123.746283,48.197577],[123.705241,48.152061],[123.61911,48.077896],[123.537603,48.021858],[123.429505,47.991516],[123.289036,47.943209],[123.254642,47.874736],[123.215044,47.82555],[123.161863,47.782014],[123.075442,47.757691],[122.980929,47.717179],[122.857513,47.678332],[122.763289,47.613523],[122.593049,47.547087],[122.543336,47.495426],[122.505762,47.400477],[122.418186,47.350378]],[[124.342555,50.188129],[124.344289,50.219062],[124.368567,50.258175],[124.348624,50.292428],[124.374059,50.310862],[124.347757,50.316566],[124.364232,50.36086],[124.403829,50.362468],[124.439958,50.385548],[124.416547,50.449616],[124.444872,50.476298],[124.43331,50.546649],[124.393135,50.547522],[124.315964,50.532674],[124.266539,50.556254],[124.183009,50.557709],[124.143123,50.566148],[124.084161,50.568621],[124.087051,50.539953],[124.026355,50.538352],[124.023464,50.51855],[123.983578,50.510248],[124.003521,50.478922],[124.005255,50.434592],[123.969994,50.399274],[123.939934,50.397376],[123.92028,50.372987],[123.879527,50.402485],[123.840508,50.411536],[123.825767,50.449471],[123.780389,50.437072],[123.787326,50.373717],[123.777788,50.344492],[123.870278,50.273987],[123.862763,50.226389],[123.954097,50.186956],[124.007568,50.219355],[124.061905,50.19898],[124.103526,50.222139],[124.102659,50.238696],[124.189368,50.216863],[124.283014,50.230785],[124.286483,50.189595],[124.342555,50.188129]]]},"properties":{"adcode":150700,"name":"呼伦贝尔市","center":[119.758168,49.215333],"centroid":[120.906902,49.635232],"childrenNum":14,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":6,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.866867,40.16806],[106.972363,40.218798],[107.022655,40.258312],[107.044332,40.328891],[107.089132,40.359964],[107.171795,40.39015],[107.155031,40.451877],[107.203299,40.506059],[107.1611,40.525387],[107.164858,40.574291],[107.226999,40.559502],[107.2507,40.582641],[107.285673,40.649404],[107.38481,40.643669],[107.454467,40.680155],[107.487127,40.712108],[107.529904,40.702385],[107.584531,40.73988],[107.613145,40.778221],[107.664015,40.757405],[107.696386,40.768508],[107.698409,40.8129],[107.735983,40.814981],[107.728179,40.84219],[107.758528,40.861767],[107.820669,40.836472],[107.855353,40.874238],[107.914605,40.848774],[107.968942,40.867656],[108.000736,40.845309],[108.03224,40.855011],[108.16664,40.852759],[108.171553,40.86731],[108.223579,40.853625],[108.234562,40.820354],[108.302195,40.818447],[108.344394,40.805273],[108.436595,40.794003],[108.48573,40.754282],[108.481105,40.735889],[108.562034,40.728078],[108.611748,40.673555],[108.604522,40.656181],[108.658282,40.635327],[108.690075,40.640715],[108.731406,40.609424],[108.776206,40.612554],[108.761466,40.578466],[108.774472,40.550104],[108.826209,40.566984],[108.880257,40.559502],[108.97795,40.527476],[109.000494,40.542098],[109.079111,40.54906],[109.084313,40.529739],[109.156282,40.535832],[109.172179,40.516333],[109.223915,40.519119],[109.227673,40.485855],[109.257732,40.502924],[109.319296,40.501009],[109.333458,40.479235],[109.402826,40.476447],[109.410051,40.456583],[109.435775,40.50902],[109.421902,40.585772],[109.438955,40.608554],[109.405427,40.630112],[109.41352,40.704989],[109.481731,40.748557],[109.528554,40.732417],[109.708332,40.743177],[109.780878,40.754803],[109.816718,40.807526],[109.900826,40.882377],[109.875681,40.919598],[109.836083,40.945207],[109.812961,41.002101],[109.746195,41.00936],[109.736946,41.03148],[109.691857,41.041327],[109.677694,41.104351],[109.717581,41.115913],[109.721916,41.138514],[109.686365,41.173694],[109.61931,41.280325],[109.627981,41.310095],[109.695614,41.322653],[109.698794,41.379736],[109.662376,41.39606],[109.626247,41.433849],[109.66093,41.473504],[109.66411,41.49924],[109.58347,41.494437],[109.449071,41.506445],[109.425948,41.537312],[109.441556,41.564394],[109.4193,41.651563],[109.399068,41.691598],[109.34184,41.742545],[109.364963,41.766296],[109.317272,41.80882],[109.277386,41.869909],[109.283745,41.88611],[109.338083,41.902988],[109.37479,41.932984],[109.48809,42.077651],[109.515548,42.139672],[109.539248,42.147314],[109.507166,42.265905],[109.459765,42.361937],[109.441556,42.378689],[109.433752,42.427567],[109.383172,42.447683],[109.291549,42.435851],[109.02564,42.458498],[108.983153,42.448866],[108.845574,42.395776],[108.798751,42.415225],[108.704816,42.413364],[108.532842,42.44295],[108.298438,42.438386],[108.23803,42.460357],[108.089179,42.436358],[108.022413,42.433315],[107.939172,42.403725],[107.736561,42.415055],[107.574415,42.413026],[107.501868,42.456808],[107.466317,42.458836],[107.304171,42.412688],[107.271799,42.364137],[107.051269,42.319274],[106.785938,42.291494],[106.613097,42.241831],[106.344877,42.149522],[106.013069,42.032074],[105.741669,41.94934],[105.589638,41.888497],[105.385293,41.797209],[105.291647,41.749894],[105.233841,41.75109],[105.226326,41.679795],[105.201469,41.542798],[105.222858,41.396748],[105.248003,41.319557],[105.317082,41.201273],[105.334135,41.131614],[105.317949,41.113325],[105.379224,41.059636],[105.398589,40.983949],[105.504663,40.926866],[105.558712,40.890342],[105.63675,40.854491],[105.704384,40.810127],[105.781266,40.785506],[105.835604,40.782037],[105.944279,40.739533],[106.115386,40.71801],[106.155561,40.69266],[106.18273,40.704642],[106.211344,40.673207],[106.241981,40.668517],[106.247184,40.626288],[106.299788,40.592033],[106.319442,40.598816],[106.479565,40.555151],[106.498352,40.483416],[106.48101,40.493868],[106.374069,40.491952],[106.344588,40.519815],[106.281001,40.539661],[106.279266,40.509368],[106.209321,40.516333],[106.229264,40.465296],[106.328402,40.346698],[106.432742,40.348619],[106.468004,40.325573],[106.521186,40.37375],[106.60327,40.386836],[106.673794,40.384742],[106.813685,40.369911],[106.820044,40.355251],[106.765706,40.294834],[106.705587,40.262332],[106.740271,40.196408],[106.810795,40.182411],[106.866289,40.185385],[106.866867,40.16806]]]]},"properties":{"adcode":150800,"name":"巴彦淖尔市","center":[107.416959,40.757402],"centroid":[107.575749,41.453305],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":7,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.31019,40.256389],[112.345451,40.256389],[112.418287,40.295358],[112.45615,40.300074],[112.509043,40.270372],[112.629858,40.23576],[112.677837,40.201132],[112.750673,40.16806],[112.848655,40.207079],[112.892876,40.326446],[113.039704,40.370086],[113.11543,40.381078],[113.251275,40.413348],[113.316018,40.32016],[113.387698,40.319112],[113.55996,40.348619],[113.680486,40.444034],[113.763438,40.474008],[113.794942,40.5179],[113.851014,40.460591],[113.890034,40.466516],[113.948707,40.517378],[114.011427,40.515811],[114.062007,40.528869],[114.076748,40.575856],[114.041775,40.608728],[114.070389,40.660351],[114.06403,40.707073],[114.093223,40.731897],[114.134554,40.737798],[114.044665,40.8311],[114.073568,40.857263],[114.055359,40.867829],[114.041486,40.917348],[114.057383,40.925136],[113.991195,40.94019],[113.975587,40.976513],[113.868356,41.068961],[113.820377,41.10159],[113.877894,41.115568],[113.920382,41.17197],[113.961135,41.17128],[113.996686,41.192483],[114.01634,41.232113],[113.992351,41.269824],[113.97154,41.239519],[113.951308,41.282907],[113.899572,41.316288],[113.926741,41.326265],[113.948707,41.392109],[113.871247,41.413412],[113.92096,41.456512],[113.92992,41.484486],[114.032237,41.529597],[114.101315,41.537826],[114.23109,41.513648],[114.221552,41.582214],[114.228778,41.620922],[114.259415,41.623319],[114.215194,41.684756],[114.237449,41.69861],[114.206812,41.738444],[114.203054,41.793453],[114.346703,41.928043],[114.352483,41.953939],[114.421562,41.942185],[114.509427,41.972502],[114.466073,42.038028],[114.502491,42.06711],[114.510872,42.110963],[114.565788,42.133728],[114.624751,42.112153],[114.67562,42.120478],[114.755393,42.115891],[114.807129,42.149522],[114.789787,42.187887],[114.809153,42.200275],[114.757127,42.21741],[114.676487,42.197899],[114.687181,42.220972],[114.666949,42.248274],[114.686603,42.262345],[114.599027,42.280988],[114.575326,42.297762],[114.525613,42.235218],[114.498444,42.220972],[114.405665,42.199596],[114.437748,42.171424],[114.465495,42.170914],[114.479079,42.114192],[114.447864,42.098898],[114.377051,42.109774],[114.375895,42.149692],[114.291209,42.191451],[114.238316,42.165312],[114.226755,42.134917],[114.132242,42.11708],[114.100159,42.125914],[114.093801,42.06541],[114.065186,42.043982],[114.10594,41.9834],[114.075592,41.992082],[114.062296,41.966202],[114.006802,41.977951],[113.955066,41.950702],[113.913156,41.985954],[113.916046,42.050105],[113.795231,42.0649],[113.743206,42.083431],[113.709678,42.129821],[113.644646,42.109434],[113.572677,42.131859],[113.372379,42.143748],[113.282779,42.075611],[113.250986,42.031224],[113.149536,41.976078],[113.17208,41.950191],[113.127281,41.954109],[113.086527,41.932814],[113.042305,41.985954],[112.964845,41.99821],[112.939699,42.018293],[112.856169,42.11708],[112.788536,42.138993],[112.737956,42.144597],[112.689976,42.254547],[112.637084,42.28048],[112.654715,42.316056],[112.589683,42.347042],[112.397766,42.387656],[112.254696,42.482826],[112.178391,42.511029],[112.180704,42.53483],[112.028962,42.584598],[112.026361,42.602809],[111.935027,42.707583],[111.858434,42.818397],[111.854966,42.841745],[111.752649,42.987681],[111.658424,43.02386],[111.619116,43.054328],[111.503504,43.178719],[111.379798,43.18256],[111.215629,43.276849],[111.150886,43.380315],[111.069668,43.358003],[111.020533,43.33002],[110.820234,43.148981],[110.769943,43.099331],[110.736415,43.089631],[110.68728,43.036417],[110.689303,43.021516],[110.631497,42.936056],[110.46964,42.839058],[110.437268,42.781425],[110.339865,42.738543],[110.434956,42.692434],[110.554326,42.596739],[110.639301,42.491778],[110.704333,42.47117],[110.730057,42.442781],[110.72312,42.394253],[110.743352,42.323508],[110.790464,42.218427],[110.795667,42.1738],[110.924285,42.022546],[110.994231,41.915772],[111.021689,41.854386],[111.062153,41.798234],[111.121116,41.771592],[111.161002,41.724257],[111.243665,41.669702],[111.303783,41.645744],[111.349161,41.646771],[111.437316,41.530454],[111.443385,41.46149],[111.430668,41.416847],[111.385001,41.379908],[111.420552,41.350513],[111.425754,41.318869],[111.541367,41.328501],[111.582409,41.306826],[111.673454,41.301837],[111.730971,41.310955],[111.791668,41.264315],[111.840514,41.252263],[111.828086,41.222983],[111.853809,41.224533],[111.883869,41.129199],[111.930403,41.094858],[112.034454,41.047373],[112.017979,41.013508],[112.04168,40.969423],[112.094861,40.948321],[112.12521,40.961468],[112.15498,40.880645],[112.18764,40.85016],[112.181571,40.81082],[112.151222,40.762957],[112.093416,40.740748],[112.130412,40.697696],[112.115383,40.658961],[112.080121,40.667127],[112.047171,40.644017],[112.086769,40.620377],[112.098619,40.583511],[112.056131,40.581597],[112.053819,40.558109],[112.111914,40.510064],[112.134748,40.511109],[112.184172,40.463902],[112.225214,40.448565],[112.2177,40.42939],[112.264523,40.388406],[112.235909,40.355077],[112.270014,40.357869],[112.266257,40.329589],[112.292559,40.30741],[112.31019,40.256389]]]]},"properties":{"adcode":150900,"name":"乌兰察布市","center":[113.114543,41.034126],"centroid":[112.443087,41.696874],"childrenNum":11,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":8,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.271358,44.25569],[122.29159,44.310292],[122.29448,44.411],[122.286098,44.477717],[122.228003,44.480168],[122.223957,44.526234],[122.195921,44.559862],[122.131756,44.577485],[122.103142,44.673987],[122.117304,44.702158],[122.161526,44.728199],[122.152566,44.743819],[122.102853,44.736335],[122.110656,44.76789],[122.142739,44.753741],[122.169041,44.770167],[122.114992,44.776671],[122.049671,44.912758],[122.079152,44.914217],[122.086667,44.95297],[122.074528,45.006597],[122.098806,45.021493],[122.119327,45.068585],[122.109789,45.141978],[122.143317,45.182999],[122.192741,45.180738],[122.230026,45.206887],[122.238986,45.276234],[122.147363,45.295571],[122.146785,45.374465],[122.179735,45.409368],[122.163549,45.443768],[122.023369,45.49019],[122.002559,45.50785],[121.99331,45.552936],[121.96643,45.596064],[121.9962,45.598948],[122.003426,45.623302],[121.970187,45.692779],[121.934058,45.710535],[121.867003,45.71981],[121.812376,45.704777],[121.81122,45.687019],[121.714106,45.701738],[121.644449,45.752422],[121.656878,45.770159],[121.690116,45.76281],[121.754281,45.794917],[121.784918,45.860194],[121.81729,45.875664],[121.821336,45.918224],[121.809197,45.961548],[121.761796,45.998951],[121.845037,46.023448],[121.863824,46.002611],[121.923653,46.004838],[122.040133,45.959001],[122.083488,45.917268],[122.09158,45.882042],[122.200834,45.856844],[122.262687,45.794917],[122.320782,45.830518],[122.337546,45.860035],[122.373097,45.856047],[122.362114,45.917428],[122.445933,45.91695],[122.495935,45.85828],[122.505762,45.786293],[122.554897,45.82142],[122.603454,45.778147],[122.640739,45.771118],[122.671377,45.700618],[122.7419,45.705097],[122.751149,45.736119],[122.792481,45.766165],[122.752305,45.834827],[122.800285,45.856685],[122.82861,45.912328],[122.793059,46.073205],[123.045672,46.100052],[123.069951,46.123552],[123.112438,46.13006],[123.1029,46.171949],[123.127757,46.174645],[123.128624,46.210478],[123.178626,46.248029],[123.140474,46.300274],[123.094807,46.342191],[123.011566,46.434928],[123.007231,46.576966],[123.052898,46.580114],[123.045672,46.617255],[123.077755,46.622132],[123.098565,46.603094],[123.181517,46.613636],[123.22834,46.5883],[123.279209,46.61694],[123.277475,46.661601],[123.366497,46.67779],[123.482109,46.686903],[123.604658,46.690046],[123.631827,46.729466],[123.629226,46.81355],[123.580091,46.827969],[123.625758,46.84771],[123.599167,46.864939],[123.605525,46.891241],[123.576911,46.890615],[123.562749,46.825931],[123.514192,46.826088],[123.483843,46.844734],[123.522284,46.922224],[123.527776,46.958035],[123.48789,46.959599],[123.427482,46.934425],[123.336437,46.989136],[123.301754,46.999759],[123.304066,46.964913],[123.360427,46.971009],[123.404649,46.935519],[123.406672,46.906422],[123.374589,46.837684],[123.34164,46.826872],[123.308979,46.86212],[123.230941,46.859928],[123.18643,46.786739],[123.171112,46.743907],[123.103478,46.734803],[123.077176,46.745006],[123.026596,46.718789],[122.996537,46.76164],[122.907226,46.807906],[122.893642,46.895154],[122.895376,46.960224],[122.839304,46.936927],[122.797394,46.938178],[122.77485,46.973979],[122.778318,47.002883],[122.845952,47.046756],[122.852021,47.072346],[122.821962,47.065637],[122.698835,47.09839],[122.679759,47.09418],[122.610969,47.129876],[122.600275,47.151688],[122.556342,47.172556],[122.509808,47.242886],[122.462696,47.278482],[122.460095,47.298523],[122.420787,47.330201],[122.418186,47.350378],[122.299394,47.300077],[122.246501,47.253458],[122.193319,47.230289],[122.125686,47.213645],[122.079441,47.182519],[122.048515,47.201352],[121.927122,47.241486],[121.856309,47.256567],[121.795323,47.280347],[121.760062,47.280968],[121.673352,47.250349],[121.640114,47.204776],[121.648496,47.177693],[121.588088,47.170376],[121.551959,47.195905],[121.436058,47.183453],[121.380275,47.142341],[121.255124,47.113356],[121.173329,47.14125],[121.099048,47.152155],[121.055115,47.145924],[120.976787,47.096207],[120.932855,47.107433],[120.876494,47.149818],[120.823023,47.145612],[120.773888,47.177226],[120.738048,47.218312],[120.626482,47.241953],[120.617522,47.287649],[120.633129,47.307687],[120.703364,47.334082],[120.736314,47.379389],[120.72533,47.397532],[120.650471,47.44046],[120.578503,47.50734],[120.60307,47.533172],[120.590064,47.548324],[120.53457,47.543995],[120.473295,47.555126],[120.377915,47.593756],[120.323866,47.607964],[120.264904,47.658127],[120.233688,47.630505],[120.205363,47.635135],[120.179929,47.612133],[120.118943,47.602559],[120.07501,47.573054],[120.013158,47.554817],[119.959109,47.582015],[119.907661,47.569963],[119.868064,47.538893],[119.868064,47.538893],[119.854191,47.525903],[119.854191,47.525903],[119.836271,47.508733],[119.836271,47.508733],[119.814593,47.499294],[119.814593,47.499294],[119.811125,47.494033],[119.811125,47.494033],[119.811703,47.490474],[119.811703,47.490474],[119.813148,47.471434],[119.770372,47.438601],[119.770372,47.438601],[119.763724,47.436277],[119.763724,47.436277],[119.671812,47.412103],[119.671812,47.412103],[119.661696,47.408848],[119.661696,47.408848],[119.652447,47.402338],[119.652447,47.402338],[119.616318,47.36093],[119.483364,47.338118],[119.561113,47.301164],[119.565159,47.249727],[119.62181,47.248483],[119.716034,47.195594],[119.762857,47.130967],[119.8065,47.054871],[119.794939,47.013035],[119.844942,46.96507],[119.859682,46.917062],[119.928761,46.903762],[119.920379,46.853193],[119.936275,46.790189],[119.91691,46.758345],[119.935119,46.712822],[119.911708,46.669775],[119.910263,46.653112],[119.952172,46.604196],[119.907372,46.537277],[119.948993,46.493617],[119.909685,46.428929],[119.984544,46.418825],[119.96171,46.395609],[119.901014,46.403665],[119.837716,46.375544],[119.874134,46.34567],[119.838005,46.320683],[119.835693,46.235357],[119.889163,46.210161],[119.858237,46.184795],[119.879336,46.144344],[119.855347,46.108151],[119.833958,46.00452],[119.807946,45.991313],[119.829912,45.974602],[119.807946,45.820941],[119.751295,45.762969],[119.700426,45.736598],[119.708808,45.703017],[119.681639,45.669576],[119.596375,45.670057],[119.565448,45.65581],[119.655626,45.623622],[119.791182,45.564162],[119.819796,45.572821],[119.876157,45.548125],[119.918934,45.558229],[119.906794,45.505763],[119.998706,45.482322],[120.031078,45.498379],[120.029054,45.526146],[119.99466,45.551974],[119.994949,45.578753],[120.02732,45.595102],[120.165766,45.594942],[120.269239,45.552134],[120.327624,45.55037],[120.344965,45.519727],[120.420113,45.499021],[120.435143,45.464494],[120.497285,45.46337],[120.559426,45.416925],[120.554513,45.357568],[120.581104,45.352901],[120.660298,45.297827],[120.74325,45.260114],[120.82678,45.253665],[120.835162,45.216084],[120.881696,45.217697],[120.967827,45.18429],[120.97303,45.157163],[120.947017,45.121296],[120.973897,45.118548],[120.977654,45.073276],[121.033437,44.998337],[121.240095,44.934002],[121.401663,44.851412],[121.42045,44.818278],[121.409178,44.790977],[121.530282,44.720388],[121.548491,44.667635],[121.595892,44.659327],[121.585487,44.640099],[121.651097,44.563289],[121.697631,44.534724],[121.760062,44.478207],[121.77856,44.446657],[121.829429,44.411491],[121.882611,44.402165],[121.934347,44.343553],[121.983194,44.330284],[122.019034,44.3039],[122.163838,44.255361],[122.226269,44.263727],[122.271358,44.25569]]]]},"properties":{"adcode":152200,"name":"兴安盟","center":[122.070317,46.076268],"centroid":[121.341355,46.241397],"childrenNum":6,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":9,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.807129,42.149522],[114.856265,42.109944],[114.860889,42.054867],[114.901932,42.01557],[114.916961,41.981016],[114.921586,41.875878],[114.939217,41.846197],[114.922453,41.825207],[114.867248,41.803015],[114.896151,41.767663],[114.902799,41.689374],[114.895573,41.636501],[114.8606,41.601057],[115.025059,41.615272],[115.055985,41.602256],[115.087779,41.622805],[115.195009,41.602085],[115.204258,41.57142],[115.257729,41.581186],[115.264377,41.613045],[115.290389,41.622977],[115.310911,41.592664],[115.377677,41.602428],[115.345594,41.635645],[115.362358,41.668162],[115.319003,41.691427],[115.347039,41.712289],[115.429991,41.728701],[115.51988,41.767833],[115.574218,41.805405],[115.653991,41.828962],[115.688096,41.867691],[115.724514,41.868033],[115.837236,41.937755],[115.853133,41.927702],[115.916431,41.945081],[115.946779,41.885598],[115.995047,41.82862],[116.016725,41.777058],[116.098809,41.776545],[116.128869,41.806088],[116.106902,41.831522],[116.123088,41.861721],[116.19419,41.861892],[116.233498,41.941503],[116.298241,41.968075],[116.327144,42.005699],[116.373678,42.009954],[116.414431,41.986975],[116.386684,41.952406],[116.427438,41.938948],[116.482643,41.975908],[116.514147,41.970118],[116.533801,41.938948],[116.566462,41.928724],[116.640743,41.930428],[116.652304,41.943888],[116.727452,41.951043],[116.766471,41.99038],[116.814161,41.981867],[116.832081,42.005359],[116.879482,42.018463],[116.890755,42.09261],[116.85029,42.156314],[116.825145,42.155635],[116.789305,42.200275],[116.903472,42.190772],[116.918502,42.229961],[116.884974,42.353305],[116.893645,42.387825],[116.909542,42.438048],[116.876881,42.480799],[116.885841,42.534661],[116.820809,42.546981],[116.801444,42.583081],[116.69826,42.59539],[116.669646,42.555923],[116.638141,42.577346],[116.63554,42.614777],[116.588139,42.599943],[116.619354,42.671892],[116.673981,42.761417],[116.666177,42.816885],[116.67427,42.88959],[116.639876,42.952487],[116.599989,42.975952],[116.500852,43.01532],[116.504031,43.049306],[116.436109,43.078088],[116.419345,43.104348],[116.356625,43.157002],[116.37021,43.243489],[116.414142,43.256835],[116.436687,43.328687],[116.536113,43.375154],[116.60577,43.419921],[116.621956,43.505204],[116.681207,43.516998],[116.734967,43.509025],[116.790172,43.484103],[116.830925,43.507032],[116.804623,43.565312],[116.813583,43.612924],[116.838151,43.614748],[116.858672,43.657516],[116.972261,43.673587],[117.054346,43.753383],[117.001164,43.78266],[116.986424,43.840343],[117.013593,43.850584],[116.999719,43.912492],[117.031802,43.942845],[117.021975,43.97005],[116.971105,43.988344],[116.961567,44.024917],[117.011281,44.057681],[117.120823,44.179523],[117.165912,44.192826],[117.206377,44.220245],[117.452342,44.23518],[117.522866,44.22681],[117.552347,44.187571],[117.634721,44.148634],[117.621425,44.126443],[117.686457,44.09602],[117.64397,44.042865],[117.699753,44.017176],[117.78993,44.019811],[117.832996,44.066239],[117.867969,44.074138],[117.878085,44.102599],[117.92433,44.126936],[118.063932,44.102764],[118.113934,44.130882],[118.142837,44.207604],[118.1807,44.21138],[118.211627,44.257002],[118.245154,44.235344],[118.250935,44.281111],[118.226945,44.308325],[118.246311,44.326187],[118.371461,44.319633],[118.403254,44.307669],[118.446031,44.34257],[118.478692,44.346829],[118.483027,44.388909],[118.552105,44.402819],[118.557019,44.431285],[118.609912,44.463824],[118.646908,44.44306],[118.750381,44.4684],[118.782463,44.453524],[118.840848,44.502225],[118.871196,44.501735],[118.967154,44.542234],[119.000971,44.652484],[118.928713,44.717296],[118.970044,44.732105],[119.00126,44.714041],[119.065714,44.710623],[119.148377,44.731779],[119.125832,44.762199],[119.173522,44.760572],[119.182193,44.776996],[119.149244,44.826076],[119.078142,44.857095],[119.067448,44.872355],[119.081321,44.937407],[119.108201,44.920867],[119.145775,44.925084],[119.224392,44.909838],[119.230172,44.935624],[119.1741,44.965774],[119.15329,44.99364],[119.170632,45.015988],[119.209073,44.997365],[119.229883,45.023112],[119.196934,45.032501],[119.157048,45.07457],[119.159071,45.10012],[119.215721,45.153125],[119.289135,45.120488],[119.293759,45.087023],[119.342316,45.076188],[119.370063,45.100605],[119.361682,45.165722],[119.307633,45.191393],[119.337692,45.252375],[119.322084,45.246086],[119.248092,45.303627],[119.313413,45.385565],[119.304453,45.468189],[119.396943,45.512665],[119.49637,45.55037],[119.559379,45.616253],[119.565448,45.65581],[119.596375,45.670057],[119.681639,45.669576],[119.708808,45.703017],[119.700426,45.736598],[119.751295,45.762969],[119.807946,45.820941],[119.829912,45.974602],[119.807946,45.991313],[119.833958,46.00452],[119.855347,46.108151],[119.879336,46.144344],[119.858237,46.184795],[119.889163,46.210161],[119.835693,46.235357],[119.838005,46.320683],[119.874134,46.34567],[119.837716,46.375544],[119.901014,46.403665],[119.96171,46.395609],[119.984544,46.418825],[119.909685,46.428929],[119.948993,46.493617],[119.907372,46.537277],[119.952172,46.604196],[119.910263,46.653112],[119.911708,46.669775],[119.813437,46.66836],[119.783667,46.625907],[119.739734,46.615367],[119.677593,46.58468],[119.656782,46.625592],[119.598976,46.618199],[119.558223,46.633771],[119.491746,46.62921],[119.431916,46.638646],[119.37411,46.603251],[119.357924,46.6193],[119.313413,46.610804],[119.262833,46.648867],[119.152423,46.6583],[119.123231,46.642892],[119.040857,46.708896],[119.011376,46.745634],[118.950968,46.722087],[118.912527,46.733391],[118.91455,46.774975],[118.845183,46.771838],[118.788244,46.717533],[118.787955,46.687061],[118.676967,46.698058],[118.638815,46.721459],[118.585922,46.693031],[118.446609,46.704498],[118.410191,46.72821],[118.316545,46.739513],[118.238796,46.709524],[118.19284,46.682818],[118.124339,46.678261],[118.04659,46.631412],[117.993119,46.631569],[117.982425,46.614895],[117.914503,46.607972],[117.868547,46.575706],[117.870859,46.549879],[117.813342,46.530817],[117.769987,46.537592],[117.703799,46.516791],[117.641079,46.558227],[117.630096,46.591605],[117.595991,46.603566],[117.495697,46.600576],[117.419971,46.582003],[117.447718,46.528138],[117.392224,46.463176],[117.375749,46.416456],[117.371991,46.360214],[117.247708,46.36701],[117.097412,46.35721],[116.82659,46.380442],[116.813294,46.355946],[116.745661,46.3278],[116.673403,46.325112],[116.585249,46.292361],[116.573398,46.258957],[116.536113,46.232663],[116.439577,46.137679],[116.414142,46.134028],[116.27165,45.966802],[116.243036,45.876142],[116.288703,45.838976],[116.286969,45.775112],[116.260956,45.77591],[116.223093,45.747308],[116.217312,45.722369],[116.174246,45.688619],[116.115573,45.679659],[116.035512,45.685099],[116.026841,45.661093],[115.936663,45.632912],[115.863827,45.572981],[115.699657,45.459514],[115.530285,45.428982],[115.36467,45.392321],[115.16784,45.396342],[114.974189,45.377039],[114.920719,45.386048],[114.744988,45.438304],[114.551048,45.387657],[114.539776,45.326015],[114.519543,45.283647],[114.459714,45.213341],[114.409712,45.179608],[114.347281,45.119356],[114.313464,45.107395],[114.190915,45.036709],[114.116923,44.95686],[114.065186,44.931246],[113.907376,44.915191],[113.861998,44.863264],[113.798989,44.849464],[113.71228,44.788213],[113.631062,44.745446],[113.540595,44.759434],[113.504177,44.777484],[113.129015,44.79699],[113.03797,44.822502],[112.937965,44.840207],[112.850678,44.840694],[112.712232,44.879334],[112.599799,44.930597],[112.540547,45.00109],[112.438808,45.071497],[112.39661,45.064541],[112.113648,45.073115],[112.071161,45.096078],[112.002661,45.090743],[111.903523,45.052245],[111.764499,44.969339],[111.692241,44.86018],[111.624608,44.778296],[111.560732,44.646944],[111.569981,44.576179],[111.530673,44.550233],[111.514487,44.507453],[111.478358,44.488828],[111.4272,44.39431],[111.415927,44.357147],[111.428645,44.319469],[111.506683,44.294228],[111.534141,44.262087],[111.541656,44.206619],[111.559287,44.171309],[111.663049,44.061137],[111.702357,44.033974],[111.77317,44.010587],[111.870284,43.940206],[111.959884,43.823159],[111.970578,43.74842],[111.950924,43.693132],[111.891673,43.674084],[111.794269,43.671931],[111.643973,43.543733],[111.564489,43.490251],[111.456681,43.494405],[111.40032,43.472801],[111.354075,43.436056],[111.183546,43.396127],[111.150886,43.380315],[111.215629,43.276849],[111.379798,43.18256],[111.503504,43.178719],[111.619116,43.054328],[111.658424,43.02386],[111.752649,42.987681],[111.854966,42.841745],[111.858434,42.818397],[111.935027,42.707583],[112.026361,42.602809],[112.028962,42.584598],[112.180704,42.53483],[112.178391,42.511029],[112.254696,42.482826],[112.397766,42.387656],[112.589683,42.347042],[112.654715,42.316056],[112.637084,42.28048],[112.689976,42.254547],[112.737956,42.144597],[112.788536,42.138993],[112.856169,42.11708],[112.939699,42.018293],[112.964845,41.99821],[113.042305,41.985954],[113.086527,41.932814],[113.127281,41.954109],[113.17208,41.950191],[113.149536,41.976078],[113.250986,42.031224],[113.282779,42.075611],[113.372379,42.143748],[113.572677,42.131859],[113.644646,42.109434],[113.709678,42.129821],[113.743206,42.083431],[113.795231,42.0649],[113.916046,42.050105],[113.913156,41.985954],[113.955066,41.950702],[114.006802,41.977951],[114.062296,41.966202],[114.075592,41.992082],[114.10594,41.9834],[114.065186,42.043982],[114.093801,42.06541],[114.100159,42.125914],[114.132242,42.11708],[114.226755,42.134917],[114.238316,42.165312],[114.291209,42.191451],[114.375895,42.149692],[114.377051,42.109774],[114.447864,42.098898],[114.479079,42.114192],[114.465495,42.170914],[114.437748,42.171424],[114.405665,42.199596],[114.498444,42.220972],[114.525613,42.235218],[114.575326,42.297762],[114.599027,42.280988],[114.686603,42.262345],[114.666949,42.248274],[114.687181,42.220972],[114.676487,42.197899],[114.757127,42.21741],[114.809153,42.200275],[114.789787,42.187887],[114.807129,42.149522]]]]},"properties":{"adcode":152500,"name":"锡林郭勒盟","center":[116.090996,43.944018],"centroid":[115.51632,44.232965],"childrenNum":12,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":10,"acroutes":[100000,150000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.233841,41.75109],[105.211586,41.737931],[105.009553,41.583242],[104.923133,41.65413],[104.689017,41.645231],[104.52427,41.661831],[104.53005,41.874855],[104.095636,41.808649],[103.868747,41.802503],[103.418437,41.882358],[103.207444,41.962796],[103.021886,42.028161],[102.712045,42.152748],[102.540938,42.162256],[102.449026,42.144088],[102.093807,42.223686],[102.070395,42.232166],[101.981952,42.326556],[101.80362,42.503768],[101.581644,42.525209],[101.155034,42.613935],[100.862824,42.671218],[100.576683,42.682837],[100.325515,42.690077],[100.272622,42.636349],[99.969139,42.647806],[99.507557,42.56807],[98.962733,42.606855],[98.546528,42.638202],[98.195355,42.653365],[97.831754,42.706068],[97.282595,42.782097],[97.172763,42.795208],[97.371328,42.456977],[97.500814,42.243866],[97.847073,41.656526],[97.614114,41.477279],[97.629432,41.440546],[97.971934,41.097965],[98.142463,41.001755],[98.18495,40.988098],[98.250271,40.939152],[98.333223,40.919079],[98.344206,40.568375],[98.628035,40.677897],[98.56994,40.746821],[98.668499,40.772845],[98.687864,40.696828],[98.715611,40.661741],[98.800298,40.610293],[98.807234,40.659309],[98.791049,40.705337],[98.984988,40.782904],[99.041638,40.693702],[99.102046,40.676334],[99.125747,40.715233],[99.173148,40.747342],[99.174882,40.858302],[99.565941,40.846695],[99.673171,40.932923],[99.985903,40.909732],[100.057005,40.908001],[100.108163,40.875623],[100.23736,40.716795],[100.242563,40.618639],[100.169727,40.541402],[100.169727,40.277536],[100.0018,40.196933],[99.955844,40.150906],[99.928386,40.064893],[99.875493,40.027196],[99.833295,40.012111],[99.75121,40.006848],[99.713925,39.972102],[99.524609,39.888149],[99.459577,39.898165],[99.441079,39.885864],[99.487903,39.876021],[99.672593,39.887973],[99.822022,39.860024],[99.904396,39.78579],[100.040819,39.757095],[100.127817,39.702137],[100.250078,39.685041],[100.314242,39.606913],[100.300947,39.572318],[100.326382,39.509084],[100.44315,39.485577],[100.500668,39.481335],[100.499222,39.400499],[100.617436,39.3874],[100.707903,39.404569],[100.842013,39.405808],[100.84288,39.200217],[100.864269,39.106971],[100.829296,39.074972],[100.835077,39.026058],[100.875541,39.002389],[100.901843,39.029972],[100.969476,38.996693],[100.969187,38.947011],[101.117171,38.975151],[101.228737,39.02072],[101.198678,38.94327],[101.237697,38.907277],[101.242032,38.861278],[101.335389,38.84683],[101.341459,38.822209],[101.306197,38.801864],[101.331343,38.777227],[101.412272,38.764191],[101.557654,38.715062],[101.601876,38.655168],[101.679047,38.690931],[101.777029,38.660533],[101.873854,38.734003],[101.941488,38.808825],[102.07502,38.891591],[102.045828,38.904603],[101.955072,38.986011],[101.926169,39.000609],[101.8305,39.093462],[101.897555,39.111059],[102.008254,39.125808],[102.059701,39.143574],[102.286591,39.192584],[102.352201,39.231272],[102.453651,39.255219],[102.583426,39.18069],[102.947027,39.106793],[103.013215,39.101106],[103.133163,39.192762],[103.188079,39.21548],[103.346468,39.332503],[103.428842,39.353581],[103.595324,39.386692],[103.729145,39.430049],[103.848804,39.461179],[103.955745,39.457111],[104.090145,39.419788],[104.073381,39.35181],[104.047657,39.297771],[104.177432,39.1521],[104.207202,39.083685],[104.191017,39.042248],[104.196219,38.988148],[104.167894,38.94042],[104.044478,38.894978],[104.011528,38.859138],[103.859787,38.644435],[103.416413,38.40504],[103.466416,38.350995],[103.507747,38.280909],[103.534916,38.156746],[103.368723,38.088996],[103.368145,37.98563],[103.385487,37.946988],[103.401962,37.861868],[103.636077,37.795475],[103.683189,37.777916],[103.841,37.647458],[103.871348,37.605736],[103.93349,37.574156],[104.082919,37.46934],[104.183502,37.406779],[104.23784,37.411873],[104.322526,37.448431],[104.407501,37.464613],[104.41964,37.511865],[104.623696,37.522584],[104.806075,37.539657],[104.866482,37.566713],[105.028051,37.581054],[105.111003,37.633856],[105.221991,37.677013],[105.31477,37.702025],[105.403791,37.709998],[105.467378,37.694957],[105.598887,37.699307],[105.616229,37.7225],[105.62201,37.777735],[105.677504,37.771942],[105.760745,37.799818],[105.808724,37.875428],[105.799764,37.940124],[105.839939,38.007831],[105.782133,38.082326],[105.76797,38.121618],[105.775196,38.186816],[105.797163,38.217054],[105.84254,38.241164],[105.865952,38.297269],[105.82173,38.368236],[105.835604,38.390321],[105.83676,38.475902],[105.862773,38.52645],[105.856703,38.572127],[105.875201,38.591822],[105.852946,38.641573],[105.893121,38.69111],[105.905838,38.731323],[105.898613,38.789546],[105.935898,38.810074],[106.002953,38.875901],[105.973183,38.911376],[106.018849,38.951108],[106.060759,38.968562],[106.089373,39.015915],[106.078101,39.026592],[106.098333,39.087596],[106.146023,39.153165],[106.250941,39.131493],[106.295452,39.167906],[106.279845,39.262135],[106.402972,39.291744],[106.506445,39.270115],[106.525232,39.308405],[106.555869,39.322227],[106.602692,39.375362],[106.680731,39.355884],[106.751254,39.381558],[106.752988,39.431464],[106.66888,39.459764],[106.620034,39.499541],[106.611363,39.541238],[106.639688,39.57426],[106.769752,39.633906],[106.76455,39.65507],[106.79432,39.6898],[106.759925,39.711476],[106.766573,39.764314],[106.752699,39.789134],[106.749809,39.858442],[106.720328,39.915559],[106.729288,40.047362],[106.823223,40.108701],[106.839409,40.14793],[106.866867,40.16806],[106.866289,40.185385],[106.810795,40.182411],[106.740271,40.196408],[106.705587,40.262332],[106.765706,40.294834],[106.820044,40.355251],[106.813685,40.369911],[106.673794,40.384742],[106.60327,40.386836],[106.521186,40.37375],[106.468004,40.325573],[106.432742,40.348619],[106.328402,40.346698],[106.229264,40.465296],[106.209321,40.516333],[106.279266,40.509368],[106.281001,40.539661],[106.344588,40.519815],[106.374069,40.491952],[106.48101,40.493868],[106.498352,40.483416],[106.479565,40.555151],[106.319442,40.598816],[106.299788,40.592033],[106.247184,40.626288],[106.241981,40.668517],[106.211344,40.673207],[106.18273,40.704642],[106.155561,40.69266],[106.115386,40.71801],[105.944279,40.739533],[105.835604,40.782037],[105.781266,40.785506],[105.704384,40.810127],[105.63675,40.854491],[105.558712,40.890342],[105.504663,40.926866],[105.398589,40.983949],[105.379224,41.059636],[105.317949,41.113325],[105.334135,41.131614],[105.317082,41.201273],[105.248003,41.319557],[105.222858,41.396748],[105.201469,41.542798],[105.226326,41.679795],[105.233841,41.75109]]]]},"properties":{"adcode":152900,"name":"阿拉善盟","center":[105.706422,38.844814],"centroid":[102.42556,40.532392],"childrenNum":3,"level":"city","parent":"{ \"adcode\": 150000 }","subFeatureIndex":11,"acroutes":[100000,150000]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"和林格尔县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.527345,40.553843],[111.517345,40.553843],[111.522345,40.5666506171875],[111.527345,40.553843]]],[[[111.517345,40.553843],[111.522345,40.5410353828125],[111.527345,40.553843],[111.542144804688,40.5485329414063],[111.552532988281,40.5491518378907],[111.722157011719,40.4985341621094],[111.732345,40.4991408515625],[111.758883085938,40.4975588203125],[111.811107207031,40.5115468574219],[111.772891875,40.5456923652344],[111.797345,40.6138430000001],[111.821204863281,40.6046718574219],[111.822967558594,40.6188430000001],[111.820667753906,40.6373268867188],[111.876512480469,40.6614345527344],[111.934791289063,40.6541847968751],[111.930584746094,40.6880019355469],[111.947486601563,40.6901039863281],[111.972899199219,40.6793959785157],[111.988465605469,40.65995628125],[112.037345,40.6538430000001],[112.045513945313,40.6420119453126],[112.091429472656,40.6103102851563],[112.08209109375,40.5732949042969],[112.043260527344,40.5820009589844],[112.052801542969,40.5538845039063],[112.073260527344,40.5397585273438],[112.08201296875,40.5270839667969],[112.111898222656,40.5076222968751],[112.123592558594,40.5102431464844],[112.153260527344,40.4897585273438],[112.169598417969,40.4660964179688],[112.215706816406,40.448843],[112.210472441406,40.4254921699219],[112.233260527344,40.4097585273438],[112.241429472656,40.3979274726562],[112.254185820313,40.3891200996094],[112.230245390625,40.3582314277344],[112.263648710938,40.3496584296876],[112.259132109375,40.3295131660157],[112.286158476563,40.3108534980469],[112.279132109375,40.2795131660156],[112.293260527344,40.2697585273438],[112.301429472656,40.2579274726563],[112.307345,40.253843],[112.29197390625,40.2292153144531],[112.278089628906,40.1980995917969],[112.230479765625,40.1682802558594],[112.203460722656,40.1077272773438],[112.14197390625,40.0292153144531],[112.107345,39.9738430000001],[112.097345,39.9738430000001],[112.080181914063,39.9804396796875],[112.061890898438,39.9781642890625],[112.052799101563,39.9895217109375],[112.03373171875,39.9871498847657],[111.991812773438,40.0117897773438],[111.951615019531,40.0779726386719],[111.954261503906,40.0992580390625],[111.864930449219,40.1082900214844],[111.802847929688,40.0844264960938],[111.727345,40.0938185859375],[111.660057402344,40.0854482246094],[111.665738554688,40.1311305976562],[111.632345,40.126977765625],[111.584049101563,40.1329848457032],[111.556832304688,40.1669716621094],[111.517345,40.173843],[111.521158476563,40.1800307441407],[111.535460234375,40.188843],[111.520535917969,40.1980373359375],[111.525460234375,40.213843],[111.520787382813,40.228843],[111.527020292969,40.2488564277344],[111.464129667969,40.2700209785157],[111.483531523438,40.2976552558595],[111.497796660156,40.3395095039063],[111.431158476563,40.3476552558594],[111.423531523438,40.3674318671876],[111.460990019531,40.3801967597656],[111.471158476563,40.4100307441407],[111.496317167969,40.4410927558594],[111.488883085938,40.4649550605469],[111.508543730469,40.508843],[111.497345,40.533843],[111.507345,40.533843],[111.507345,40.553843],[111.517345,40.553843]]]]}},{"type":"Feature","properties":{"name":"回民区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.577345,40.793843],[111.577345,40.783843],[111.564537382813,40.788843],[111.577345,40.793843]]],[[[111.577345,40.793843],[111.571890898438,40.8006520820313],[111.544644804688,40.7972634101563],[111.502899199219,40.8493959785157],[111.443807402344,40.8621816230469],[111.437345,40.913843],[111.451400175781,40.9349794746094],[111.509947539063,40.909848859375],[111.533350859375,40.917837140625],[111.544237089844,40.947837140625],[111.589681425781,40.9353688789063],[111.597345,40.9238430000001],[111.633260527344,40.8697585273438],[111.649598417969,40.8260964179688],[111.667345,40.813843],[111.667345,40.8038430000001],[111.63298953125,40.7981996894531],[111.577345,40.793843]]]]}},{"type":"Feature","properties":{"name":"清水河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.49435671875,40.1841408515625],[111.517345,40.173843],[111.556832304688,40.1669716621094],[111.584049101563,40.1329848457032],[111.632345,40.126977765625],[111.665738554688,40.1311305976562],[111.660057402344,40.0854482246094],[111.727345,40.0938185859375],[111.802847929688,40.0844264960938],[111.864930449219,40.1082900214844],[111.954261503906,40.0992580390625],[111.951615019531,40.0779726386719],[111.991812773438,40.0117897773438],[112.03373171875,39.9871498847657],[112.052799101563,39.9895217109375],[112.061890898438,39.9781642890625],[112.080181914063,39.9804396796875],[112.097345,39.9738430000001],[112.092569609375,39.9571401191407],[112.062899199219,39.9082900214844],[112.043057890625,39.8924025703125],[112.020203886719,39.8381630683594],[111.960311308594,39.7902016425781],[111.96388796875,39.7614394355469],[111.952899199219,39.6982900214844],[111.921671171875,39.6592470527344],[111.927345,39.613843],[111.87216921875,39.6084169746094],[111.832218046875,39.6193520332031],[111.788143339844,39.59476096875],[111.718997832031,39.600317609375],[111.7012121875,39.620962140625],[111.655982695313,39.6411440253906],[111.60400515625,39.6369680000001],[111.505101347656,39.6640358710937],[111.46271609375,39.6484706855469],[111.427345,39.643843],[111.42146609375,39.65913596875],[111.433682890625,39.6689186835938],[111.386278105469,39.6977138496094],[111.348870878906,39.7444264960938],[111.362899199219,39.7682900214844],[111.371790800781,39.7893959785156],[111.393248320313,39.8065785957031],[111.391666289063,39.8192958808594],[111.402899199219,39.8282900214844],[111.411790800781,39.8693959785156],[111.432899199219,39.8982900214844],[111.441790800781,39.9322743964844],[111.421790800781,39.9482900214844],[111.409276152344,40.0342897773437],[111.376976347656,40.0601528144532],[111.367345,40.093843],[111.371158476563,40.1000307441407],[111.395907011719,40.1152809882812],[111.415220976563,40.1719521308594],[111.442345,40.1804006171875],[111.452345,40.1772853828125],[111.462345,40.1804006171875],[111.472345,40.1772853828125],[111.49435671875,40.1841408515625]]]]}},{"type":"Feature","properties":{"name":"赛罕区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.063441191406,40.9599404121094],[112.084796171875,40.9453163886719],[112.127345,40.9572731757813],[112.141248808594,40.9177455878906],[112.153878203125,40.8993019843751],[112.148714628906,40.8809218574219],[112.173441191406,40.8499404121094],[112.177345,40.813843],[112.17271609375,40.8084706855469],[112.152977324219,40.7914638496094],[112.139032011719,40.7602138496094],[112.086287871094,40.7366774726563],[112.10197390625,40.7184706855469],[112.127125273438,40.696801984375],[112.10271609375,40.6684706855469],[112.037345,40.6538430000001],[111.988465605469,40.65995628125],[111.972899199219,40.6793959785157],[111.947486601563,40.6901039863281],[111.930584746094,40.6880019355469],[111.934791289063,40.6541847968751],[111.876512480469,40.6614345527344],[111.820667753906,40.6373268867188],[111.822967558594,40.6188430000001],[111.821204863281,40.6046718574219],[111.797345,40.6138430000001],[111.78521609375,40.6368715644532],[111.757030058594,40.6242079902344],[111.717345,40.643843],[111.721883574219,40.6693056464844],[111.741734648438,40.7403102851563],[111.722022734375,40.7383010078126],[111.693509550781,40.7546315742188],[111.682806425781,40.7793056464844],[111.667345,40.8038430000001],[111.667345,40.813843],[111.68271609375,40.8184706855469],[111.70197390625,40.8292153144532],[111.74271609375,40.8384706855469],[111.787943144531,40.8508486152344],[111.81197390625,40.8892153144532],[111.83814578125,40.9117641425781],[111.877174101563,40.8899904609375],[111.999947539063,40.8998561835938],[112.021998320313,40.9492726875001],[112.032699003906,40.9484133125],[112.037345,40.9638430000001],[112.063441191406,40.9599404121094]]]]}},{"type":"Feature","properties":{"name":"土默特左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.517345,40.553843],[111.527345,40.553843],[111.522345,40.5410353828125],[111.517345,40.553843]]],[[[111.527345,40.553843],[111.522345,40.5666506171875],[111.517345,40.553843],[111.507345,40.553843],[111.507345,40.533843],[111.497345,40.533843],[111.453582792969,40.5460292792969],[111.473179960938,40.5785158515626],[111.469300566406,40.5981996894531],[111.381707792969,40.563764875],[111.337345,40.5703212714844],[111.322345,40.5681044746094],[111.312345,40.5695815253906],[111.270924101563,40.5634609199219],[111.274605742188,40.538540265625],[111.23170046875,40.5294863105469],[111.208533964844,40.515512921875],[111.16384890625,40.5330788398438],[111.142884550781,40.4980239082032],[111.116436796875,40.5019325996094],[111.10298953125,40.4381996894532],[111.08170046875,40.4294863105469],[111.077345,40.4238430000001],[111.021656523438,40.4283010078126],[111.024232207031,40.4490151191406],[110.991790800781,40.4582900214844],[110.965369902344,40.4738210273438],[110.950985136719,40.4917836738282],[110.89334109375,40.4846132636719],[110.882899199219,40.5093959785156],[110.854334746094,40.5214321113281],[110.842899199219,40.5522743964844],[110.874832792969,40.57784690625],[110.857906523438,40.5914003730469],[110.827345,40.5875991035157],[110.806983671875,40.5901320625001],[110.78779421875,40.6572499824219],[110.793587675781,40.703843],[110.784810820313,40.7744228339844],[110.777345,40.793843],[110.824127226563,40.8017897773438],[110.820924101563,40.8234609199219],[110.862345,40.8295815253906],[110.882345,40.8266262031251],[110.917345,40.8317983222657],[110.948343535156,40.8272182441407],[111.01298953125,40.8381996894531],[111.02170046875,40.8594863105469],[111.074244414063,40.8809914375001],[111.070282011719,40.9077992988281],[111.087345,40.9103212714844],[111.156712675781,40.9000698066407],[111.174329863281,40.9228908515625],[111.245064726563,40.8950832343751],[111.284625273438,40.9106362128906],[111.34218875,40.8880068183594],[111.43170046875,40.9094863105469],[111.437345,40.913843],[111.443807402344,40.8621816230469],[111.502899199219,40.8493959785157],[111.544644804688,40.7972634101563],[111.571890898438,40.8006520820313],[111.577345,40.793843],[111.564537382813,40.788843],[111.577345,40.783843],[111.573350859375,40.757837140625],[111.55533328125,40.7458559394532],[111.543350859375,40.7278371406251],[111.506832304688,40.7145851875],[111.525941191406,40.6859694648438],[111.542345,40.690102765625],[111.561627226563,40.6852443671875],[111.571339140625,40.699848859375],[111.593350859375,40.707837140625],[111.611890898438,40.7202175117188],[111.628778105469,40.715962140625],[111.609141875,40.6865590644532],[111.613719511719,40.6683876777345],[111.600970488281,40.6492983222657],[111.605618925781,40.6308498359376],[111.672345,40.647661359375],[111.713062773438,40.6374025703126],[111.717345,40.643843],[111.757030058594,40.6242079902344],[111.78521609375,40.6368715644532],[111.797345,40.6138430000001],[111.772891875,40.5456923652344],[111.811107207031,40.5115468574219],[111.758883085938,40.4975588203125],[111.732345,40.4991408515625],[111.722157011719,40.4985341621094],[111.552532988281,40.5491518378907],[111.542144804688,40.5485329414063],[111.527345,40.553843]]]]}},{"type":"Feature","properties":{"name":"托克托县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.473179960938,40.5785158515626],[111.453582792969,40.5460292792969],[111.497345,40.533843],[111.508543730469,40.508843],[111.488883085938,40.4649550605469],[111.496317167969,40.4410927558594],[111.471158476563,40.4100307441407],[111.460990019531,40.3801967597656],[111.423531523438,40.3674318671876],[111.431158476563,40.3476552558594],[111.497796660156,40.3395095039063],[111.483531523438,40.2976552558595],[111.464129667969,40.2700209785157],[111.527020292969,40.2488564277344],[111.520787382813,40.228843],[111.525460234375,40.213843],[111.520535917969,40.1980373359375],[111.535460234375,40.188843],[111.521158476563,40.1800307441407],[111.517345,40.173843],[111.49435671875,40.1841408515625],[111.472345,40.1772853828125],[111.462345,40.1804006171875],[111.452345,40.1772853828125],[111.442345,40.1804006171875],[111.415220976563,40.1719521308594],[111.395907011719,40.1152809882812],[111.371158476563,40.1000307441407],[111.367345,40.093843],[111.30271609375,40.1492153144531],[111.217100859375,40.1725197578126],[111.18173953125,40.2135634589844],[111.115484648438,40.2550612617188],[111.041121855469,40.2686257148438],[111.0427746875,40.2891970039063],[111.027345,40.293843],[111.03170046875,40.309486310547],[111.094095488281,40.3350234199219],[111.12170046875,40.3759206367188],[111.08670046875,40.3902455878907],[111.077345,40.4238430000001],[111.08170046875,40.4294863105469],[111.10298953125,40.4381996894532],[111.116436796875,40.5019325996094],[111.142884550781,40.4980239082032],[111.16384890625,40.5330788398438],[111.208533964844,40.515512921875],[111.23170046875,40.5294863105469],[111.274605742188,40.538540265625],[111.270924101563,40.5634609199219],[111.312345,40.5695815253906],[111.322345,40.5681044746094],[111.337345,40.5703212714844],[111.381707792969,40.563764875],[111.469300566406,40.5981996894531],[111.473179960938,40.5785158515626]]]]}},{"type":"Feature","properties":{"name":"武川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,41.2238430000001],[111.815152617188,41.2204201484375],[111.823922148438,41.2116506171876],[111.840704375,41.217202375],[111.857345,41.213843],[111.863089628906,41.1788771796875],[111.861600371094,41.1688088203125],[111.867345,41.133843],[111.862899199219,41.1282900214844],[111.835777617188,41.1168617988281],[111.812799101563,41.0881642890625],[111.801829863281,41.0895290351563],[111.788004179688,41.0411769843751],[111.731790800781,41.0093959785156],[111.722899199219,40.9982900214844],[111.7062121875,40.9849269843751],[111.701722441406,40.948843],[111.703211699219,40.9368691230469],[111.682310820313,40.9394692207031],[111.602899199219,40.9282900214845],[111.597345,40.9238430000001],[111.589681425781,40.9353688789063],[111.544237089844,40.947837140625],[111.533350859375,40.917837140625],[111.509947539063,40.909848859375],[111.451400175781,40.9349794746094],[111.437345,40.913843],[111.43170046875,40.9094863105469],[111.34218875,40.8880068183594],[111.284625273438,40.9106362128906],[111.245064726563,40.8950832343751],[111.174329863281,40.9228908515625],[111.156712675781,40.9000698066407],[111.087345,40.9103212714844],[111.070282011719,40.9077992988281],[111.074244414063,40.8809914375001],[111.02170046875,40.8594863105469],[111.01298953125,40.8381996894531],[110.948343535156,40.8272182441407],[110.917345,40.8317983222657],[110.882345,40.8266262031251],[110.862345,40.8295815253906],[110.820924101563,40.8234609199219],[110.824127226563,40.8017897773438],[110.777345,40.793843],[110.722525664063,40.7869936347656],[110.707345,40.813843],[110.72744265625,40.8293544746094],[110.721549101563,40.869233625],[110.73298953125,40.8881996894532],[110.74170046875,40.9127614570313],[110.716378203125,40.9323085761719],[110.634168730469,40.9165041328125],[110.620579863281,40.9809023261719],[110.653463164063,41.0062831855469],[110.65156375,41.0191347480469],[110.665675078125,41.0550331855469],[110.65170046875,41.0781996894532],[110.636615019531,41.1150624824219],[110.643167753906,41.1594130683594],[110.62170046875,41.1681996894531],[110.6001965625,41.2207424140626],[110.577345,41.2173647285157],[110.550496855469,41.2213332343751],[110.55677859375,41.2638430000001],[110.518365507813,41.2795644355469],[110.507345,41.293843],[110.5460559375,41.287837140625],[110.572081328125,41.3293886542969],[110.619725371094,41.3163491035157],[110.65822390625,41.3436464667969],[110.723326445313,41.3799697089844],[110.762345,41.3768337226563],[110.811998320313,41.3808242011719],[110.82197390625,41.3584706855469],[110.86271609375,41.3492153144532],[110.894564238281,41.3314455390626],[110.943695097656,41.3179994941406],[110.969947539063,41.3484706855469],[111.008326445313,41.3259194160157],[111.038997832031,41.2903176093751],[111.080106230469,41.2870143867188],[111.104605742188,41.3006838203125],[111.183831816406,41.2653310371094],[111.237518339844,41.2353774238281],[111.252772246094,41.2485195136719],[111.251253691406,41.2674330878907],[111.29404421875,41.2977748847657],[111.312669707031,41.2992702460938],[111.328038359375,41.2814321113281],[111.35197390625,41.3092153144532],[111.417345,41.313843],[111.455628691406,41.3279018378907],[111.477345,41.3296462226563],[111.502345,41.3276381660157],[111.522623320313,41.3292665839844],[111.543326445313,41.3177162910157],[111.562669707031,41.3192702460938],[111.572303496094,41.3080861640626],[111.701363554688,41.2977162910157],[111.722569609375,41.3095473457031],[111.732345,41.2876381660157],[111.752640410156,41.2892690253906],[111.796751738281,41.2579921699219],[111.831785917969,41.2608071113281],[111.832760039063,41.2486708808594],[111.827345,41.2238430000001]]]]}},{"type":"Feature","properties":{"name":"新城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.920413847656,41.0969118476563],[111.96298953125,41.0794863105469],[111.97170046875,41.0681996894532],[112.020765410156,41.054536359375],[112.023084746094,41.0388430000001],[112.018211699219,41.0058657050782],[112.037345,40.9638430000001],[112.032699003906,40.9484133125],[112.021998320313,40.9492726875001],[111.999947539063,40.8998561835938],[111.877174101563,40.8899904609375],[111.83814578125,40.9117641425781],[111.81197390625,40.8892153144532],[111.787943144531,40.8508486152344],[111.74271609375,40.8384706855469],[111.70197390625,40.8292153144532],[111.68271609375,40.8184706855469],[111.667345,40.813843],[111.649598417969,40.8260964179688],[111.633260527344,40.8697585273438],[111.597345,40.9238430000001],[111.602899199219,40.9282900214845],[111.682310820313,40.9394692207031],[111.703211699219,40.9368691230469],[111.701722441406,40.948843],[111.7062121875,40.9849269843751],[111.722899199219,40.9982900214844],[111.731790800781,41.0093959785156],[111.788004179688,41.0411769843751],[111.801829863281,41.0895290351563],[111.812799101563,41.0881642890625],[111.835777617188,41.1168617988281],[111.862899199219,41.1282900214844],[111.867345,41.133843],[111.90298953125,41.1194863105469],[111.920413847656,41.0969118476563]]]]}},{"type":"Feature","properties":{"name":"玉泉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.693509550781,40.7546315742188],[111.722022734375,40.7383010078126],[111.741734648438,40.7403102851563],[111.721883574219,40.6693056464844],[111.717345,40.643843],[111.713062773438,40.6374025703126],[111.672345,40.647661359375],[111.605618925781,40.6308498359376],[111.600970488281,40.6492983222657],[111.613719511719,40.6683876777345],[111.609141875,40.6865590644532],[111.628778105469,40.715962140625],[111.611890898438,40.7202175117188],[111.593350859375,40.707837140625],[111.571339140625,40.699848859375],[111.561627226563,40.6852443671875],[111.542345,40.690102765625],[111.525941191406,40.6859694648438],[111.506832304688,40.7145851875],[111.543350859375,40.7278371406251],[111.55533328125,40.7458559394532],[111.573350859375,40.757837140625],[111.577345,40.783843],[111.577345,40.793843],[111.63298953125,40.7981996894531],[111.667345,40.8038430000001],[111.682806425781,40.7793056464844],[111.693509550781,40.7546315742188]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.978311796875,40.6223073554688],[110.001954375,40.6080458808594],[110.019906035156,40.61069846875],[110.05170046875,40.5981996894531],[110.08298953125,40.5894863105469],[110.11170046875,40.5781996894532],[110.19298953125,40.5694863105469],[110.197345,40.553843],[110.167345,40.553843],[110.042242460938,40.5594985175782],[110.037345,40.533843],[110.017345,40.533843],[109.991749296875,40.5279116035156],[109.9805871875,40.5936208320313],[109.960867949219,40.608843],[109.978311796875,40.6223073554688]]]]}},{"type":"Feature","properties":{"name":"白云鄂博矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.877994414063,41.8196096015625],[109.927345,41.8176540351563],[110.014407988281,41.8211049628907],[110.052655058594,41.8089955878906],[110.042154570313,41.7790334296875],[110.032535429688,41.7486525703125],[110.003997832031,41.7222096992188],[109.982154570313,41.6690334296875],[109.977345,41.653843],[109.916365996094,41.6654848457031],[109.902154570313,41.6786525703125],[109.883533964844,41.7181093574219],[109.848487578125,41.7505800605469],[109.820277128906,41.8854225898438],[109.86951296875,41.9385622382812],[109.845472441406,41.8699709296875],[109.877994414063,41.8196096015625]]]]}},{"type":"Feature","properties":{"name":"达尔罕茂明安联合旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.962064238281,41.9485622382813],[110.982625761719,41.9191237617188],[111.046239042969,41.8025954414063],[111.072064238281,41.7885622382813],[111.113189726563,41.7696865058594],[111.151292753906,41.7270412421875],[111.246715117188,41.6603871894531],[111.302064238281,41.6485622382813],[111.364461699219,41.6369155097656],[111.383895292969,41.5945729804688],[111.442064238281,41.5112978339844],[111.429439726563,41.4273793769532],[111.412625761719,41.4085622382813],[111.379364042969,41.3788430000001],[111.412625761719,41.3491237617188],[111.417345,41.313843],[111.35197390625,41.3092153144532],[111.328038359375,41.2814321113281],[111.312669707031,41.2992702460938],[111.29404421875,41.2977748847657],[111.251253691406,41.2674330878907],[111.252772246094,41.2485195136719],[111.237518339844,41.2353774238281],[111.183831816406,41.2653310371094],[111.104605742188,41.3006838203125],[111.080106230469,41.2870143867188],[111.038997832031,41.2903176093751],[111.008326445313,41.3259194160157],[110.969947539063,41.3484706855469],[110.943695097656,41.3179994941406],[110.894564238281,41.3314455390626],[110.86271609375,41.3492153144532],[110.82197390625,41.3584706855469],[110.811998320313,41.3808242011719],[110.762345,41.3768337226563],[110.723326445313,41.3799697089844],[110.65822390625,41.3436464667969],[110.619725371094,41.3163491035157],[110.572081328125,41.3293886542969],[110.5460559375,41.287837140625],[110.507345,41.293843],[110.47271609375,41.3192153144532],[110.412347441406,41.3570265937501],[110.36197390625,41.368470685547],[110.34271609375,41.3792153144532],[110.31197390625,41.3884706855469],[110.288949003906,41.4013173652344],[110.23197390625,41.4184706855469],[110.200787382813,41.4299233222656],[110.181180449219,41.4283473945313],[110.183089628906,41.4045668769531],[110.139947539063,41.3792153144532],[110.12271609375,41.3992153144532],[110.051912871094,41.4084792304688],[110.0532825,41.4255251289063],[110.02271609375,41.408470685547],[110.00197390625,41.3992153144532],[109.991373320313,41.3869118476563],[109.946978789063,41.3904799628907],[109.92271609375,41.4292153144532],[109.89197390625,41.4384706855469],[109.877137480469,41.4556899238282],[109.848563261719,41.4784706855469],[109.79654421875,41.4494484687501],[109.74271609375,41.4692153144532],[109.71197390625,41.4784706855469],[109.68271609375,41.4892153144531],[109.657345,41.4938430000001],[109.456898222656,41.4991493964844],[109.442445097656,41.5289430976563],[109.432244902344,41.5487429023438],[109.419156523438,41.6424941230469],[109.401688261719,41.6592775703126],[109.382088652344,41.6996779609376],[109.341905546875,41.7382851386719],[109.352645292969,41.7591310859376],[109.352166777344,41.7825685859376],[109.312244902344,41.8087429023437],[109.2910559375,41.8410622382813],[109.254036894531,41.8766286445313],[109.332445097656,41.8987429023438],[109.342244902344,41.9189430976563],[109.369178496094,41.9320095039063],[109.478372832031,42.0697377753906],[109.502957792969,42.1204116035156],[109.532491484375,42.1487868476563],[109.504088164063,42.2469313789063],[109.472244902344,42.3087429023438],[109.462445097656,42.3489430976563],[109.442244902344,42.3787429023437],[109.419566679688,42.4254872871094],[109.392244902344,42.4387429023438],[109.387345,42.4438430000001],[109.402064238281,42.4491237617188],[109.504678984375,42.4611452460938],[109.556400175781,42.4848842597657],[109.692628203125,42.5653652167969],[109.892064238281,42.6291237617188],[110.094232207031,42.6426979804688],[110.139837675781,42.6745534492188],[110.282064238281,42.7191237617188],[110.337345,42.733843],[110.400130644531,42.7076491523438],[110.558885527344,42.5867409492187],[110.632635527344,42.4921865058594],[110.709940214844,42.4624684882813],[110.7226575,42.4390688300782],[110.719156523438,42.3803591132813],[110.742642851563,42.3042983222656],[110.772625761719,42.2491237617188],[110.782064238281,42.1785622382813],[110.888795195313,42.0561904121094],[110.942625761719,41.9791237617188],[110.962064238281,41.9485622382813]],[[109.916365996094,41.6654848457031],[109.977345,41.653843],[109.982154570313,41.6690334296875],[110.003997832031,41.7222096992188],[110.032535429688,41.7486525703125],[110.042154570313,41.7790334296875],[110.052655058594,41.8089955878906],[110.014407988281,41.8211049628907],[109.927345,41.8176540351563],[109.877994414063,41.8196096015625],[109.845472441406,41.8699709296875],[109.86951296875,41.9385622382812],[109.820277128906,41.8854225898438],[109.848487578125,41.7505800605469],[109.883533964844,41.7181093574219],[109.902154570313,41.6786525703125],[109.916365996094,41.6654848457031]]]]}},{"type":"Feature","properties":{"name":"固阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.657345,41.1138430000001],[109.645152617188,41.1172658515625],[109.653922148438,41.1260353828126],[109.657345,41.1138430000001]]],[[[109.657345,41.1138430000001],[109.720289335938,41.1175759101562],[109.704476347656,41.1499526191406],[109.660704375,41.197202375],[109.653985625,41.220483625],[109.647345,41.2238430000001],[109.647345,41.233843],[109.637345,41.233843],[109.63298953125,41.2494863105469],[109.62156375,41.2785512519532],[109.625816679688,41.3073403144531],[109.68298953125,41.3281996894531],[109.699791289063,41.3692555976563],[109.620858183594,41.4288356757813],[109.641624785156,41.4448647285157],[109.65170046875,41.4694863105469],[109.663377714844,41.4784987617188],[109.657345,41.4938430000001],[109.68271609375,41.4892153144531],[109.71197390625,41.4784706855469],[109.74271609375,41.4692153144532],[109.79654421875,41.4494484687501],[109.848563261719,41.4784706855469],[109.877137480469,41.4556899238282],[109.89197390625,41.4384706855469],[109.92271609375,41.4292153144532],[109.946978789063,41.3904799628907],[109.991373320313,41.3869118476563],[110.00197390625,41.3992153144532],[110.02271609375,41.408470685547],[110.0532825,41.4255251289063],[110.051912871094,41.4084792304688],[110.12271609375,41.3992153144532],[110.139947539063,41.3792153144532],[110.183089628906,41.4045668769531],[110.181180449219,41.4283473945313],[110.200787382813,41.4299233222656],[110.23197390625,41.4184706855469],[110.288949003906,41.4013173652344],[110.31197390625,41.3884706855469],[110.34271609375,41.3792153144532],[110.36197390625,41.368470685547],[110.412347441406,41.3570265937501],[110.47271609375,41.3192153144532],[110.507345,41.293843],[110.518365507813,41.2795644355469],[110.55677859375,41.2638430000001],[110.550496855469,41.2213332343751],[110.577345,41.2173647285157],[110.6001965625,41.2207424140626],[110.62170046875,41.1681996894531],[110.643167753906,41.1594130683594],[110.636615019531,41.1150624824219],[110.65170046875,41.0781996894532],[110.665675078125,41.0550331855469],[110.65156375,41.0191347480469],[110.653463164063,41.0062831855469],[110.620579863281,40.9809023261719],[110.634168730469,40.9165041328125],[110.716378203125,40.9323085761719],[110.74170046875,40.9127614570313],[110.73298953125,40.8881996894532],[110.721549101563,40.869233625],[110.72744265625,40.8293544746094],[110.707345,40.813843],[110.672379179688,40.8080995917969],[110.662345,40.8095815253907],[110.652345,40.8081044746094],[110.637345,40.8103212714844],[110.622345,40.8081044746094],[110.585264921875,40.8135842109375],[110.568631621094,40.8351308417969],[110.537345,40.8438430000001],[110.526160917969,40.8568239570313],[110.385863066406,40.8711342597657],[110.342345,40.8676381660157],[110.315628691406,40.8697841621094],[110.253485136719,40.8926052070313],[110.24271609375,40.8684706855469],[110.210057402344,40.8224111152344],[110.151124296875,40.8090224433594],[110.15310671875,40.7843630195313],[110.172769804688,40.7491213203125],[110.171361113281,40.7315932441407],[110.127345,40.763843],[110.121495390625,40.8106032539063],[110.057266875,40.8026137519532],[110.032899199219,40.7882900214844],[110.001790800781,40.7793959785156],[109.946480742188,40.7555202460938],[109.838844023438,40.7758180976563],[109.817345,40.813843],[109.82271609375,40.8184706855469],[109.83197390625,40.8292153144532],[109.860824003906,40.8420888496094],[109.88197390625,40.9134169746094],[109.83896609375,40.9403542304688],[109.821302519531,40.9608571601562],[109.822747832031,40.978843],[109.820924101563,41.0015407539063],[109.782345,40.9984413886719],[109.757511015625,41.0004372382813],[109.73271609375,41.0292153144531],[109.689151640625,41.0423317695313],[109.657345,41.1138430000001]]]]}},{"type":"Feature","properties":{"name":"九原区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,40.4638430000001],[110.307345,40.4638430000001],[110.307345,40.473843],[110.317345,40.473843],[110.317345,40.4638430000001]]],[[[109.437345,40.523843],[109.437345,40.513843],[109.427345,40.513843],[109.427345,40.523843],[109.437345,40.523843]]],[[[110.167345,40.553843],[110.1590246875,40.504868390625],[110.073736601563,40.521264875],[110.04978640625,40.5177260566406],[110.037345,40.533843],[110.042242460938,40.5594985175782],[110.167345,40.553843]]],[[[109.437345,40.523843],[109.43298953125,40.5394863105469],[109.421529570313,40.5483315253906],[109.423084746094,40.558843],[109.420128203125,40.5788430000001],[109.425955839844,40.6182729316407],[109.3997278125,40.6290065742187],[109.41281375,40.7060292792969],[109.473140898438,40.7424196601563],[109.517345,40.7358876777344],[109.567345,40.74327659375],[109.619390898438,40.7355849433594],[109.700953398438,40.751264875],[109.722996855469,40.7480080390626],[109.784937773438,40.7585305000001],[109.803065214844,40.8028212714844],[109.817345,40.813843],[109.838844023438,40.7758180976563],[109.946480742188,40.7555202460938],[110.001790800781,40.7793959785156],[110.032899199219,40.7882900214844],[110.057266875,40.8026137519532],[110.121495390625,40.8106032539063],[110.127345,40.763843],[110.118905058594,40.7403188300782],[110.162000761719,40.7018129707032],[110.174776640625,40.6469020820312],[110.224307890625,40.6498537421875],[110.272625761719,40.6191237617188],[110.28275515625,40.5863222480469],[110.328026152344,40.6369911933594],[110.437345,40.643843],[110.433260527344,40.6379274726563],[110.406590605469,40.6195131660156],[110.421380644531,40.5535341621094],[110.401429472656,40.5397585273438],[110.393016386719,40.5275722480469],[110.381673613281,40.5301137519532],[110.368114042969,40.5104726386719],[110.317345,40.483843],[110.312159453125,40.5176149726563],[110.272345,40.5075832343751],[110.262083769531,40.5101686835938],[110.247345,40.5038430000001],[110.247345,40.513843],[110.237345,40.513843],[110.231844511719,40.5371974921876],[110.201158476563,40.5476552558594],[110.197345,40.553843],[110.19298953125,40.5694863105469],[110.11170046875,40.5781996894532],[110.08298953125,40.5894863105469],[110.05170046875,40.5981996894531],[110.019906035156,40.61069846875],[110.001954375,40.6080458808594],[109.978311796875,40.6223073554688],[109.960867949219,40.608843],[109.9805871875,40.5936208320313],[109.991749296875,40.5279116035156],[110.017345,40.533843],[110.000128203125,40.5033901191407],[109.964740019531,40.5241921210938],[109.906512480469,40.5314345527344],[109.848177519531,40.5062514472657],[109.812799101563,40.5106520820312],[109.802799101563,40.4981642890625],[109.772799101563,40.5018959785157],[109.692891875,40.48374534375],[109.631663847656,40.5183620429688],[109.63431765625,40.5397109199219],[109.622061796875,40.5381862617188],[109.580135527344,40.5543019843751],[109.552703886719,40.5381764960938],[109.541951933594,40.5395131660156],[109.508355742188,40.5149709296876],[109.437345,40.523843]],[[109.84156375,40.6091347480469],[109.847345,40.6238430000001],[109.898509550781,40.6115151191406],[109.91189578125,40.6301918769532],[109.942943144531,40.6174330878907],[109.951519804688,40.6396681953125],[109.985284453125,40.6592446113282],[109.932410917969,40.6698439765626],[109.921859160156,40.6677590156251],[109.893170195313,40.6896681953125],[109.853721953125,40.6980178046875],[109.847345,40.673843],[109.82170046875,40.6881996894532],[109.808033476563,40.7059072089844],[109.748631621094,40.6825551582032],[109.695037871094,40.6676308417969],[109.66298953125,40.62897971875],[109.742943144531,40.6067153144531],[109.762345,40.6095815253907],[109.820499296875,40.6009877753906],[109.844945097656,40.5862416816407],[109.84156375,40.6091347480469]]]]}},{"type":"Feature","properties":{"name":"昆都仑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.847345,40.6238430000001],[109.84156375,40.6091347480469],[109.844945097656,40.5862416816407],[109.820499296875,40.6009877753906],[109.762345,40.6095815253907],[109.742943144531,40.6067153144531],[109.66298953125,40.62897971875],[109.695037871094,40.6676308417969],[109.748631621094,40.6825551582032],[109.808033476563,40.7059072089844],[109.82170046875,40.6881996894532],[109.847345,40.673843],[109.840054960938,40.6294692207032],[109.847345,40.6238430000001]]]]}},{"type":"Feature","properties":{"name":"青山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.893170195313,40.6896681953125],[109.921859160156,40.6677590156251],[109.932410917969,40.6698439765626],[109.985284453125,40.6592446113282],[109.951519804688,40.6396681953125],[109.942943144531,40.6174330878907],[109.91189578125,40.6301918769532],[109.898509550781,40.6115151191406],[109.847345,40.6238430000001],[109.840054960938,40.6294692207032],[109.847345,40.673843],[109.853721953125,40.6980178046875],[109.893170195313,40.6896681953125]]]]}},{"type":"Feature","properties":{"name":"石拐区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.315628691406,40.8697841621094],[110.342345,40.8676381660157],[110.385863066406,40.8711342597657],[110.526160917969,40.8568239570313],[110.537345,40.8438430000001],[110.545850859375,40.8195766425782],[110.517345,40.8184462714844],[110.483460722656,40.819790265625],[110.441976347656,40.7688161445313],[110.452740507813,40.758843],[110.415760527344,40.7245778632812],[110.442093535156,40.7001772285156],[110.442550078125,40.6886598945312],[110.421671171875,40.6788051582031],[110.461478300781,40.6662026191407],[110.437345,40.643843],[110.328026152344,40.6369911933594],[110.28275515625,40.5863222480469],[110.272625761719,40.6191237617188],[110.224307890625,40.6498537421875],[110.174776640625,40.6469020820312],[110.162000761719,40.7018129707032],[110.118905058594,40.7403188300782],[110.127345,40.763843],[110.171361113281,40.7315932441407],[110.172769804688,40.7491213203125],[110.15310671875,40.7843630195313],[110.151124296875,40.8090224433594],[110.210057402344,40.8224111152344],[110.24271609375,40.8684706855469],[110.253485136719,40.8926052070313],[110.315628691406,40.8697841621094]]]]}},{"type":"Feature","properties":{"name":"土默特右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.307345,40.4638430000001],[110.294537382813,40.4688430000001],[110.307345,40.473843],[110.307345,40.4638430000001]]],[[[110.247345,40.5038430000001],[110.237345,40.5038430000001],[110.237345,40.513843],[110.247345,40.513843],[110.247345,40.5038430000001]]],[[[110.317345,40.483843],[110.296068144531,40.4927797675782],[110.273260527344,40.4779274726563],[110.238973417969,40.4697585273438],[110.247345,40.5038430000001],[110.262083769531,40.5101686835938],[110.272345,40.5075832343751],[110.312159453125,40.5176149726563],[110.317345,40.483843]]],[[[110.467345,40.3938430000001],[110.479537382813,40.3972658515625],[110.470767851563,40.4060353828126],[110.431429472656,40.3979274726562],[110.393260527344,40.4297585273438],[110.371429472656,40.4379274726563],[110.36033328125,40.4539968085938],[110.297271757813,40.4398598457031],[110.307345,40.4638430000001],[110.317345,40.4638430000001],[110.317345,40.473843],[110.317345,40.483843],[110.368114042969,40.5104726386719],[110.381673613281,40.5301137519532],[110.393016386719,40.5275722480469],[110.401429472656,40.5397585273438],[110.421380644531,40.5535341621094],[110.406590605469,40.6195131660156],[110.433260527344,40.6379274726563],[110.437345,40.643843],[110.461478300781,40.6662026191407],[110.421671171875,40.6788051582031],[110.442550078125,40.6886598945312],[110.442093535156,40.7001772285156],[110.415760527344,40.7245778632812],[110.452740507813,40.758843],[110.441976347656,40.7688161445313],[110.483460722656,40.819790265625],[110.517345,40.8184462714844],[110.545850859375,40.8195766425782],[110.537345,40.8438430000001],[110.568631621094,40.8351308417969],[110.585264921875,40.8135842109375],[110.622345,40.8081044746094],[110.637345,40.8103212714844],[110.652345,40.8081044746094],[110.662345,40.8095815253907],[110.672379179688,40.8080995917969],[110.707345,40.813843],[110.722525664063,40.7869936347656],[110.777345,40.793843],[110.784810820313,40.7744228339844],[110.793587675781,40.703843],[110.78779421875,40.6572499824219],[110.806983671875,40.5901320625001],[110.827345,40.5875991035157],[110.857906523438,40.5914003730469],[110.874832792969,40.57784690625],[110.842899199219,40.5522743964844],[110.854334746094,40.5214321113281],[110.882899199219,40.5093959785156],[110.89334109375,40.4846132636719],[110.950985136719,40.4917836738282],[110.965369902344,40.4738210273438],[110.991790800781,40.4582900214844],[111.024232207031,40.4490151191406],[111.021656523438,40.4283010078126],[111.077345,40.4238430000001],[111.08670046875,40.3902455878907],[111.12170046875,40.3759206367188],[111.094095488281,40.3350234199219],[111.03170046875,40.309486310547],[111.027345,40.293843],[111.01830203125,40.2807460761719],[110.97509890625,40.25261253125],[110.959136992188,40.2757314277344],[110.9191028125,40.2447048164063],[110.883260527344,40.2597585273438],[110.850406523438,40.2681899238282],[110.869771757813,40.2979274726563],[110.83103640625,40.2896755195313],[110.836964140625,40.2632411933594],[110.804459257813,40.2559548164063],[110.783260527344,40.2697585273438],[110.761051054688,40.2780690742188],[110.76720828125,40.3055373359375],[110.723016386719,40.295630109375],[110.711673613281,40.312055890625],[110.691673613281,40.3075722480469],[110.682691679688,40.32058128125],[110.663260527344,40.3079274726563],[110.637345,40.303843],[110.631883574219,40.3083803535157],[110.621954375,40.3203322578125],[110.593533964844,40.317435529297],[110.572806425781,40.3293056464844],[110.549234648438,40.3395290351562],[110.509039335938,40.3879201484375],[110.492735625,40.3682936835938],[110.474290800781,40.3701735664063],[110.467345,40.3938430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海勃湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.91298953125,39.8381996894531],[106.868900175781,39.8041689277344],[106.88170046875,39.7581996894531],[106.899271269531,39.7446364570312],[106.904561796875,39.7088430000001],[106.901605253906,39.688843],[106.903160429688,39.6783315253907],[106.888023710938,39.6666481757813],[106.929227324219,39.6110732246094],[106.94298953125,39.5394863105469],[106.947345,39.503843],[106.912767363281,39.5127162910156],[106.903260527344,39.5497585273438],[106.873023710938,39.5579274726562],[106.863260527344,39.5079274726563],[106.747345,39.503843],[106.763568144531,39.5283913398438],[106.759456816406,39.5467287421875],[106.773260527344,39.5679274726563],[106.78447390625,39.597895734375],[106.771429472656,39.6179274726563],[106.767345,39.633843],[106.761512480469,39.6490151191406],[106.788016386719,39.6852968574219],[106.766239042969,39.7027370429688],[106.745479765625,39.7286586738282],[106.764039335938,39.7602297187501],[106.755755644531,39.8268141914063],[106.747345,39.863843],[106.76298953125,39.8594863105469],[106.773482695313,39.8097524238282],[106.84298953125,39.8381996894531],[106.931322050781,39.9181996894531],[106.963765898438,39.9092726875],[106.95298953125,39.8581996894532],[106.92170046875,39.8494863105469],[106.91298953125,39.8381996894531]]]]}},{"type":"Feature","properties":{"name":"海南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.042535429688,39.2390334296876],[107.056195097656,39.2242897773438],[107.1351965625,39.2786525703125],[107.132535429688,39.2686525703125],[107.121771269531,39.2483107734375],[107.122918730469,39.2193752265625],[107.112154570313,39.1990334296876],[107.102535429688,39.1586525703125],[107.092154570313,39.1190334296876],[107.075360136719,39.0485256171875],[107.052877226563,39.0494167304688],[107.031812773438,39.0382692695313],[107.007345,39.0392397285157],[106.992215605469,39.0386391425781],[106.967345,39.043843],[106.95162234375,39.0620925117188],[106.867345,39.0938430000001],[106.84170046875,39.1281996894532],[106.816668730469,39.1968068671875],[106.789173613281,39.2423879218751],[106.79677859375,39.293843],[106.790867949219,39.333843],[106.793084746094,39.348843],[106.791131621094,39.3620619941406],[106.75170046875,39.3781996894531],[106.747345,39.383843],[106.734918242188,39.408843],[106.747345,39.4338430000001],[106.755941191406,39.4688430000001],[106.747345,39.503843],[106.863260527344,39.5079274726563],[106.873023710938,39.5579274726562],[106.903260527344,39.5497585273438],[106.912767363281,39.5127162910156],[106.947345,39.503843],[106.962154570313,39.4330593085938],[106.952535429688,39.3386525703125],[106.932576933594,39.3009316230469],[107.042535429688,39.2390334296876]]]]}},{"type":"Feature","properties":{"name":"乌达区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.755941191406,39.4688430000001],[106.747345,39.4338430000001],[106.645826445313,39.4659841132813],[106.613038359375,39.4963649726562],[106.611011992188,39.5474831367188],[106.6570325,39.5827736640625],[106.767345,39.633843],[106.771429472656,39.6179274726563],[106.78447390625,39.597895734375],[106.773260527344,39.5679274726563],[106.759456816406,39.5467287421875],[106.763568144531,39.5283913398438],[106.747345,39.503843],[106.755941191406,39.4688430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"林西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.567345,43.273843],[118.577345,43.273843],[118.577345,43.263843],[118.567345,43.263843],[118.567345,43.273843]]],[[[118.567345,43.273843],[118.50197390625,43.2692153144531],[118.437345,43.263843],[118.401793242188,43.2682900214844],[118.312515898438,43.2894863105469],[118.297345,43.2875991035157],[118.282345,43.2894643378906],[118.239947539063,43.2841921210938],[118.212896757813,43.2682900214844],[118.144449492188,43.242983625],[118.07951296875,43.2510610175782],[118.084381132813,43.2902016425781],[118.061793242188,43.3082900214844],[118.04978640625,43.3232802558594],[118.053023710938,43.3492958808594],[118.041793242188,43.3582900214844],[118.02400515625,43.3805025458985],[117.999249296875,43.4003237128907],[117.972345,43.3969771552734],[117.946729765625,43.4001638007813],[117.920543242188,43.4432747626954],[117.898272734375,43.4611074042969],[117.903721953125,43.5049275947266],[117.944136992188,43.5372896552735],[117.931676054688,43.5584828925781],[117.933013945313,43.5692153144532],[117.897135039063,43.6256093574219],[117.881632109375,43.6624025703125],[117.853057890625,43.6852834296876],[117.842896757813,43.7093959785157],[117.821793242188,43.7382900214844],[117.805269804688,43.7774959541016],[117.78068484375,43.7971834541016],[117.762896757813,43.8393959785156],[117.71849734375,43.894911725586],[117.701666289063,43.9083901191406],[117.703013945313,43.9192031074219],[117.691793242188,43.9382900214844],[117.667642851563,43.995595319336],[117.642530546875,44.0157064033203],[117.637345,44.033843],[117.668365507813,44.0216475654297],[117.717345,44.0144100166016],[117.757345,44.0203206611329],[117.781832304688,44.0167018867188],[117.808990507813,44.0518837714844],[117.85298953125,44.0781990791016],[117.862320585938,44.0902907539063],[117.911534453125,44.1267757392578],[117.999991484375,44.1062783027344],[118.022345,44.1095821357422],[118.056832304688,44.1044857001953],[118.08170046875,44.1194869208985],[118.111910429688,44.1318508125],[118.12466921875,44.2069698310548],[118.142345,44.2095821357423],[118.163883085938,44.2063991523438],[118.200826445313,44.254267194336],[118.24170046875,44.2381990791016],[118.257345,44.2338430000001],[118.29244265625,44.2189430976563],[118.31224734375,44.1687429023438],[118.330845976563,44.1508724189453],[118.352642851563,44.108554303711],[118.352222929688,44.0879775214844],[118.38244265625,44.0589430976562],[118.401510039063,44.0390993476563],[118.431514921875,44.0245430732422],[118.432642851563,43.9693593574219],[118.382345,43.9683327460937],[118.32312625,43.9695412421875],[118.265030546875,43.9301601386719],[118.249263945313,43.9787429023437],[118.212535429688,43.9575936103516],[118.23244265625,43.9189430976563],[118.25224734375,43.8687429023438],[118.267545195313,43.8540431953125],[118.286646757813,43.7562044501953],[118.33224734375,43.7087429023438],[118.34244265625,43.6989430976563],[118.35224734375,43.6787429023438],[118.36244265625,43.6589430976563],[118.381246367188,43.6201918769532],[118.397144804688,43.6036428046875],[118.413531523438,43.5879006171876],[118.362345,43.588944928711],[118.337345,43.5884346748047],[118.284400664063,43.5895149970703],[118.216666289063,43.5627980781251],[118.192877226563,43.5399428535156],[118.192042265625,43.4989394355469],[118.2122278125,43.4795430732422],[118.212447539063,43.4688430000001],[118.21162234375,43.4285219550781],[118.241871367188,43.4291396308594],[118.272345,43.4187087226563],[118.314381132813,43.4330971503906],[118.352144804688,43.4136428046875],[118.41244265625,43.3989430976563],[118.43224734375,43.3887429023438],[118.46244265625,43.3789430976563],[118.477144804688,43.3636428046876],[118.492447539063,43.3489394355469],[118.49216921875,43.3353475166016],[118.53244265625,43.3089430976563],[118.54224734375,43.2987429023438],[118.56244265625,43.2889430976563],[118.567345,43.273843]]]]}},{"type":"Feature","properties":{"name":"阿鲁科尔沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.66271609375,45.0792147041016],[119.6766028125,45.0480989814454],[119.6980871875,45.0095870185547],[119.718253203125,44.9643947578126],[119.756363554688,44.9201595283203],[119.836964140625,44.8958931708984],[119.8534778125,44.8767238593751],[119.90607546875,44.8532546210937],[119.97271609375,44.7992147041016],[119.98197390625,44.7884712958985],[120.034254179688,44.758329694336],[120.07271609375,44.7092147041016],[120.09689578125,44.6550240302735],[120.14197390625,44.6384712958985],[120.173150664063,44.6290840888672],[120.148590117188,44.594442975586],[120.187213164063,44.5772078681641],[120.21197390625,44.5484712958985],[120.23271609375,44.5392147041016],[120.24197390625,44.5284712958985],[120.27271609375,44.5192147041016],[120.28197390625,44.5084712958985],[120.2927746875,44.4991664863282],[120.291920195313,44.4885646796875],[120.31431765625,44.4484188056641],[120.31125125,44.4102529121094],[120.34197390625,44.3884712958984],[120.36271609375,44.3792147041016],[120.380225859375,44.3399764228516],[120.401715117188,44.3214638496094],[120.419854765625,44.2808132148438],[120.44197390625,44.2684712958985],[120.47271609375,44.2592147041016],[120.492066679688,44.2484188056641],[120.546329375,44.2527791572266],[120.57197390625,44.2384712958984],[120.64271609375,44.2292147041016],[120.65197390625,44.1884712958985],[120.68271609375,44.1792147041016],[120.692965117188,44.1341146064454],[120.737828398438,44.1060127998047],[120.72271609375,44.0884712958985],[120.68271609375,44.054009015625],[120.69197390625,44.0284712958985],[120.761549101563,43.9443599677734],[120.77197390625,43.8984712958985],[120.78271609375,43.8892147041016],[120.787345,43.843843],[120.777105742188,43.8172090888672],[120.838414335938,43.7799727607422],[120.871793242188,43.7382900214844],[120.933096953125,43.6916329169922],[120.956236601563,43.6627370429688],[120.975889921875,43.6469997382813],[120.922896757813,43.6082900214844],[120.854869414063,43.5888387275391],[120.80095828125,43.5571498847656],[120.777203398438,43.5601045966797],[120.744068632813,43.5461415839844],[120.67396609375,43.4968654609375],[120.671724882813,43.4788430000001],[120.673980742188,43.460683209961],[120.649058867188,43.4460335517578],[120.59529421875,43.4253664375001],[120.546954375,43.4313796210938],[120.512896757813,43.4182900214844],[120.461749296875,43.4036653876954],[120.421793242188,43.3793959785156],[120.417345,43.373843],[120.342154570313,43.3685286689454],[120.312628203125,43.3791243720704],[120.25771609375,43.3885616279297],[120.077345,43.373843],[120.072896757813,43.3893959785157],[120.0062121875,43.4299013496094],[120.022896757813,43.4582900214844],[120.031793242188,43.4793959785157],[120.051109648438,43.5122603583985],[119.986803007813,43.5513216376953],[119.944639921875,43.5351161933594],[119.930094023438,43.6023470283203],[119.807574492188,43.5825954414063],[119.713858671875,43.5942525458985],[119.667345,43.6238430000001],[119.67197390625,43.6292147041016],[119.70271609375,43.6384712958985],[119.72197390625,43.6626247382813],[119.690909453125,43.7182991767579],[119.748951445313,43.7683052802735],[119.78271609375,43.7784712958984],[119.7932825,43.8021535468751],[119.7919153125,43.8191664863282],[119.803526640625,43.8291664863282],[119.801851835938,43.8500081611328],[119.782105742188,43.8484218574219],[119.750142851563,43.8601595283204],[119.7314075,43.902153546875],[119.734303007813,43.9382210517578],[119.70197390625,43.9584712958985],[119.651773710938,44.0167372871094],[119.652769804688,44.0291390205079],[119.611304960938,44.0876235175782],[119.632764921875,44.1385903144531],[119.630709257813,44.1642092109375],[119.581632109375,44.1949495673829],[119.5827746875,44.2091664863282],[119.57197390625,44.2184712958985],[119.55271609375,44.2692147041016],[119.541920195313,44.2885646796875],[119.542769804688,44.2991390205079],[119.520474882813,44.3305825019532],[119.523077421875,44.3629335761719],[119.55271609375,44.3884712958984],[119.56197390625,44.4292147041016],[119.582979765625,44.4385884833985],[119.561925078125,44.4885903144531],[119.562769804688,44.4991213203126],[119.55197390625,44.5184712958985],[119.54271609375,44.5492147041016],[119.51197390625,44.5684712958985],[119.50271609375,44.5792147041016],[119.4919153125,44.5885195136719],[119.492745390625,44.598843],[119.491539335938,44.6138430000001],[119.493424101563,44.6372859931641],[119.479127226563,44.6762215400391],[119.41197390625,44.6884712958984],[119.401715117188,44.7114638496094],[119.380225859375,44.7299764228516],[119.357569609375,44.7807466865235],[119.2909778125,44.7625209785156],[119.251016875,44.7478462958985],[119.21271609375,44.7692147041016],[119.167345,44.7738430000001],[119.141920195313,44.8085445380859],[119.1427746875,44.8191829658203],[119.060738554688,44.8647048164063],[119.072764921875,44.9086397529297],[119.071060820313,44.9298232246094],[119.105699492188,44.9171034980469],[119.163468046875,44.9217458320313],[119.212652617188,44.9082845283204],[119.22197390625,44.9361598945313],[119.17197390625,44.9584712958984],[119.16271609375,44.9792147041016],[119.1519153125,44.9885195136719],[119.154127226563,45.0160408759766],[119.202423125,44.9983052802735],[119.23197390625,45.0150844550781],[119.2019153125,45.0284969306641],[119.202745390625,45.0388430000001],[119.201851835938,45.0500081611329],[119.182037382813,45.0484163642578],[119.14271609375,45.0820565009766],[119.189659453125,45.1482619453125],[119.267940703125,45.1268373847657],[119.29197390625,45.0884712958985],[119.330079375,45.0769985175781],[119.370035429688,45.0992916083984],[119.351925078125,45.1486043525391],[119.353204375,45.1645351386719],[119.296612578125,45.1897872138672],[119.327345,45.243843],[119.332779570313,45.2501485419922],[119.480699492188,45.2231661201173],[119.51123171875,45.1877272773438],[119.57271609375,45.1492147041016],[119.60197390625,45.1284712958985],[119.639742460938,45.1116182685547],[119.66271609375,45.0792147041016]]]]}},{"type":"Feature","properties":{"name":"敖汉旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.41627078125,42.9781447578125],[120.401265898438,42.9372866035157],[120.403150664063,42.913843],[120.400416289063,42.8798146796875],[120.4127746875,42.8691664863282],[120.411495390625,42.8532509589844],[120.44271609375,42.8092153144532],[120.454361601563,42.7579616523438],[120.49271609375,42.6892153144532],[120.511495390625,42.6471291328125],[120.54197390625,42.5984706855469],[120.55271609375,42.5892153144531],[120.563375273438,42.5423085761719],[120.59271609375,42.5292153144532],[120.60281375,42.4956777167969],[120.67978640625,42.4320095039063],[120.72197390625,42.4084706855469],[120.7636340625,42.3898818183594],[120.7619153125,42.3684963203125],[120.793204375,42.3545351386719],[120.791632109375,42.3349489570313],[120.853345976563,42.296294171875],[120.8513684375,42.2716640449219],[120.877345,42.263843],[120.883604765625,42.2471852851563],[120.8490246875,42.2507106757813],[120.791881132813,42.2293056464844],[120.781173125,42.2164138007813],[120.733516875,42.2212721992188],[120.722808867188,42.2083803535157],[120.701881132813,42.1993056464844],[120.665479765625,42.1731069160156],[120.61255984375,42.1583119941407],[120.585045195313,42.1611159492188],[120.562808867188,42.1483803535156],[120.482882109375,42.118442609375],[120.4632434375,42.1021279121094],[120.493541289063,42.0889882636719],[120.481793242188,42.079233625],[120.482896757813,42.0684194160156],[120.453785429688,42.0557949042969],[120.4421496875,42.0161415839844],[120.421881132813,41.9993056464845],[120.410391875,41.985473859375],[120.365513945313,41.9900490546876],[120.316422148438,41.9597682929688],[120.302769804688,41.9282900214844],[120.275338164063,41.9310854316407],[120.267345,41.903843],[120.254288359375,41.8977602363281],[120.287345,41.893843],[120.282701445313,41.8784133125001],[120.239859648438,41.8818544746094],[120.188658476563,41.8377443671875],[120.119088164063,41.7536391425782],[120.136300078125,41.7227883125001],[120.091363554688,41.6977162910157],[120.072345,41.6992446113281],[120.055655546875,41.6979042792969],[120.03197390625,41.7084706855469],[120.027345,41.713843],[120.021871367188,41.7389382148438],[120.032764921875,41.7686049628906],[120.031944609375,41.778843],[120.035206328125,41.8194753242188],[120.016651640625,41.8179836250001],[120.00271609375,41.8492153144532],[119.99197390625,41.8684706855469],[119.98271609375,41.8992153144531],[119.95115359375,41.9189858222656],[119.955025664063,41.9672243476563],[119.93123171875,41.9877272773438],[119.91271609375,42.0092153144532],[119.90197390625,42.018470685547],[119.869542265625,42.0747170234375],[119.84197390625,42.0984706855469],[119.82271609375,42.1226247382813],[119.853502226563,42.1778041816406],[119.833233671875,42.2141371894531],[119.762345,42.2084413886719],[119.7220715625,42.2116774726563],[119.672623320313,42.2392665839844],[119.662345,42.2384413886719],[119.652345,42.2392446113281],[119.642066679688,42.2384194160157],[119.6173840625,42.2521901679688],[119.60271609375,42.2692153144532],[119.58197390625,42.2784706855469],[119.562623320313,42.2892665839844],[119.552095976563,42.2884218574219],[119.53271609375,42.2961598945313],[119.571500273438,42.3508596015626],[119.497345,42.383843],[119.497345,42.393843],[119.541939726563,42.4295156074219],[119.56095828125,42.4271498847657],[119.572877226563,42.495639875],[119.602896757813,42.5082900214844],[119.638756132813,42.5344826484375],[119.647345,42.583843],[119.66271609375,42.588470685547],[119.69197390625,42.6092153144532],[119.75197390625,42.6467958808594],[119.74271609375,42.6692153144531],[119.704947539063,42.6860683417969],[119.674527617188,42.7289687324219],[119.695460234375,42.7532643867188],[119.742066679688,42.7792665839844],[119.762525664063,42.7776235175782],[119.774757109375,42.8314614082031],[119.82197390625,42.8276674628906],[119.81271609375,42.8492153144531],[119.801402617188,42.8589614082031],[119.833980742188,42.8734963203125],[119.8319153125,42.8991896796875],[119.8527746875,42.9084963203125],[119.849830351563,42.9451222968751],[119.884537382813,42.9854030585937],[119.985069609375,42.993481671875],[120.01197390625,42.9784706855469],[120.05271609375,42.9692153144531],[120.091304960938,42.9476845527344],[120.112266875,42.959380109375],[120.142354765625,42.9483315253906],[120.260909453125,42.959223859375],[120.31197390625,42.9992153144532],[120.34271609375,43.008470685547],[120.35197390625,43.0192153144532],[120.357345,43.023843],[120.376846953125,42.9900136542969],[120.41627078125,42.9781447578125]]]]}},{"type":"Feature","properties":{"name":"巴林右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.632896757813,44.4593959785157],[118.644561796875,44.4448317695313],[118.749366484375,44.4645967841797],[118.777345,44.453843],[118.78224734375,44.4187429023438],[118.792447539063,44.398935163086],[118.7922278125,44.3881429267578],[118.77224734375,44.3689430976563],[118.757545195313,44.3536428046876],[118.739615507813,44.3364186835938],[118.75283328125,44.297806623047],[118.752159453125,44.2646688056641],[118.822647734375,44.2087807441406],[118.822232695313,44.1883620429688],[118.84244265625,44.1689430976563],[118.85279421875,44.1159224677734],[118.852037382813,44.078783185547],[118.90244265625,44.0689430976563],[118.91224734375,44.0187429023437],[118.922642851563,43.988368756836],[118.9218371875,43.9489040351562],[118.97244265625,43.9289430976563],[118.991763945313,43.908837506836],[119.06033328125,43.8954506660157],[119.082047148438,43.8285427070313],[119.102847929688,43.808554303711],[119.1020325,43.768554303711],[119.12244265625,43.7489430976563],[119.132432890625,43.72835471875],[119.17244265625,43.7089430976563],[119.182633085938,43.6983388496094],[119.212432890625,43.6989467597657],[119.24224734375,43.6887429023438],[119.295245390625,43.6758223701172],[119.352735625,43.6991414619141],[119.372345,43.6987410712891],[119.387345,43.6990468574219],[119.41224734375,43.6985390449219],[119.422642851563,43.709355084961],[119.422037382813,43.7388430000001],[119.422681914063,43.7702510810547],[119.44302859375,43.7887429023437],[119.46224734375,43.7687429023438],[119.489566679688,43.7554878974609],[119.533267851563,43.6654122138672],[119.65302859375,43.6089430976563],[119.667345,43.6238430000001],[119.713858671875,43.5942525458985],[119.807574492188,43.5825954414063],[119.930094023438,43.6023470283203],[119.944639921875,43.5351161933594],[119.986803007813,43.5513216376953],[120.051109648438,43.5122603583985],[120.031793242188,43.4793959785157],[120.022896757813,43.4582900214844],[120.0062121875,43.4299013496094],[120.072896757813,43.3893959785157],[120.077345,43.373843],[119.98197390625,43.3492147041016],[119.91255984375,43.3284242988282],[119.902105742188,43.3292641425782],[119.87271609375,43.3184706855469],[119.782135039063,43.3066188789063],[119.708219023438,43.2794753242188],[119.65197390625,43.2692153144531],[119.602345,43.2556325507813],[119.5480090625,43.27050315625],[119.437345,43.2616115546875],[119.332345,43.2700478339844],[119.304039335938,43.2677736640625],[119.191573515625,43.2241481757813],[119.131095,43.2059389472657],[118.987135039063,43.2320400214845],[118.86005984375,43.2218300605469],[118.81271609375,43.2392153144531],[118.75302859375,43.250102765625],[118.635914335938,43.2406923652344],[118.60271609375,43.2592153144532],[118.577345,43.263843],[118.577345,43.273843],[118.567345,43.273843],[118.56244265625,43.2889430976563],[118.54224734375,43.2987429023438],[118.53244265625,43.3089430976563],[118.49216921875,43.3353475166016],[118.492447539063,43.3489394355469],[118.477144804688,43.3636428046876],[118.46244265625,43.3789430976563],[118.43224734375,43.3887429023438],[118.41244265625,43.3989430976563],[118.352144804688,43.4136428046875],[118.314381132813,43.4330971503906],[118.272345,43.4187087226563],[118.241871367188,43.4291396308594],[118.21162234375,43.4285219550781],[118.212447539063,43.4688430000001],[118.2122278125,43.4795430732422],[118.192042265625,43.4989394355469],[118.192877226563,43.5399428535156],[118.216666289063,43.5627980781251],[118.284400664063,43.5895149970703],[118.337345,43.5884346748047],[118.362345,43.588944928711],[118.413531523438,43.5879006171876],[118.397144804688,43.6036428046875],[118.381246367188,43.6201918769532],[118.36244265625,43.6589430976563],[118.35224734375,43.6787429023438],[118.34244265625,43.6989430976563],[118.33224734375,43.7087429023438],[118.286646757813,43.7562044501953],[118.267545195313,43.8540431953125],[118.25224734375,43.8687429023438],[118.23244265625,43.9189430976563],[118.212535429688,43.9575936103516],[118.249263945313,43.9787429023437],[118.265030546875,43.9301601386719],[118.32312625,43.9695412421875],[118.382345,43.9683327460937],[118.432642851563,43.9693593574219],[118.431514921875,44.0245430732422],[118.401510039063,44.0390993476563],[118.38244265625,44.0589430976562],[118.352222929688,44.0879775214844],[118.352642851563,44.108554303711],[118.330845976563,44.1508724189453],[118.31224734375,44.1687429023438],[118.29244265625,44.2189430976563],[118.257345,44.2338430000001],[118.240636015625,44.2601064277344],[118.243013945313,44.2792354560547],[118.216021757813,44.3161904121094],[118.252345,44.3207088447266],[118.282345,44.3169771552735],[118.302345,44.3194649482422],[118.401397734375,44.3070894599609],[118.441793242188,44.3393959785157],[118.4737121875,44.35284690625],[118.469498320313,44.3867360664063],[118.55466921875,44.4051638007813],[118.55166140625,44.429341046875],[118.572896757813,44.4382900214844],[118.61396609375,44.4682900214844],[118.632896757813,44.4593959785157]]]]}},{"type":"Feature","properties":{"name":"巴林左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.357569609375,44.7807466865235],[119.380225859375,44.7299764228516],[119.401715117188,44.7114638496094],[119.41197390625,44.6884712958984],[119.479127226563,44.6762215400391],[119.493424101563,44.6372859931641],[119.491539335938,44.6138430000001],[119.492745390625,44.598843],[119.4919153125,44.5885195136719],[119.50271609375,44.5792147041016],[119.51197390625,44.5684712958985],[119.54271609375,44.5492147041016],[119.55197390625,44.5184712958985],[119.562769804688,44.4991213203126],[119.561925078125,44.4885903144531],[119.582979765625,44.4385884833985],[119.56197390625,44.4292147041016],[119.55271609375,44.3884712958984],[119.523077421875,44.3629335761719],[119.520474882813,44.3305825019532],[119.542769804688,44.2991390205079],[119.541920195313,44.2885646796875],[119.55271609375,44.2692147041016],[119.57197390625,44.2184712958985],[119.5827746875,44.2091664863282],[119.581632109375,44.1949495673829],[119.630709257813,44.1642092109375],[119.632764921875,44.1385903144531],[119.611304960938,44.0876235175782],[119.652769804688,44.0291390205079],[119.651773710938,44.0167372871094],[119.70197390625,43.9584712958985],[119.734303007813,43.9382210517578],[119.7314075,43.902153546875],[119.750142851563,43.8601595283204],[119.782105742188,43.8484218574219],[119.801851835938,43.8500081611328],[119.803526640625,43.8291664863282],[119.7919153125,43.8191664863282],[119.7932825,43.8021535468751],[119.78271609375,43.7784712958984],[119.748951445313,43.7683052802735],[119.690909453125,43.7182991767579],[119.72197390625,43.6626247382813],[119.70271609375,43.6384712958985],[119.67197390625,43.6292147041016],[119.667345,43.6238430000001],[119.65302859375,43.6089430976563],[119.533267851563,43.6654122138672],[119.489566679688,43.7554878974609],[119.46224734375,43.7687429023438],[119.44302859375,43.7887429023437],[119.422681914063,43.7702510810547],[119.422037382813,43.7388430000001],[119.422642851563,43.709355084961],[119.41224734375,43.6985390449219],[119.387345,43.6990468574219],[119.372345,43.6987410712891],[119.352735625,43.6991414619141],[119.295245390625,43.6758223701172],[119.24224734375,43.6887429023438],[119.212432890625,43.6989467597657],[119.182633085938,43.6983388496094],[119.17244265625,43.7089430976563],[119.132432890625,43.72835471875],[119.12244265625,43.7489430976563],[119.1020325,43.768554303711],[119.102847929688,43.808554303711],[119.082047148438,43.8285427070313],[119.06033328125,43.8954506660157],[118.991763945313,43.908837506836],[118.97244265625,43.9289430976563],[118.9218371875,43.9489040351562],[118.922642851563,43.988368756836],[118.91224734375,44.0187429023437],[118.90244265625,44.0689430976563],[118.852037382813,44.078783185547],[118.85279421875,44.1159224677734],[118.84244265625,44.1689430976563],[118.822232695313,44.1883620429688],[118.822647734375,44.2087807441406],[118.752159453125,44.2646688056641],[118.75283328125,44.297806623047],[118.739615507813,44.3364186835938],[118.757545195313,44.3536428046876],[118.77224734375,44.3689430976563],[118.7922278125,44.3881429267578],[118.792447539063,44.398935163086],[118.78224734375,44.4187429023438],[118.777345,44.453843],[118.806646757813,44.4866384101563],[118.834859648438,44.4995870185548],[118.852569609375,44.4985317207032],[118.872061796875,44.5091243720703],[118.959171171875,44.5491030097657],[118.995250273438,44.6478450751953],[118.972061796875,44.6685616279297],[118.957906523438,44.6844057441406],[118.923468046875,44.7151784492188],[118.958609648438,44.7313075996095],[118.982061796875,44.7185616279297],[119.028673125,44.7077175117188],[119.082061796875,44.7191243720704],[119.132628203125,44.7285616279297],[119.152061796875,44.7347927070313],[119.122061796875,44.7485616279298],[119.112628203125,44.7597200751953],[119.1620715625,44.7567732978516],[119.167345,44.7738430000001],[119.21271609375,44.7692147041016],[119.251016875,44.7478462958985],[119.2909778125,44.7625209785156],[119.357569609375,44.7807466865235]]]]}},{"type":"Feature","properties":{"name":"红山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.8859778125,42.3461745429688],[118.93478640625,42.32698753125],[118.962345,42.331059796875],[118.982345,42.3281044746094],[118.992486601563,42.3296034980469],[119.069459257813,42.3117665839844],[119.151710234375,42.3239211250001],[119.177345,42.313843],[119.153936796875,42.2885817695313],[119.133516875,42.2893910957031],[119.092535429688,42.2786525703125],[119.052154570313,42.2690334296875],[119.042535429688,42.2586525703126],[119.022862578125,42.2404262519531],[119.083336210938,42.2288808417969],[119.082139921875,42.1986794257813],[119.099771757813,42.1653578925782],[119.0717590625,42.1394008613281],[119.084932890625,42.1145034003907],[119.050850859375,42.0984181953126],[119.037345,42.083843],[119.01170046875,42.0794863105469],[118.97047,42.0461623359376],[118.933863554688,42.0294863105469],[118.83986453125,42.06644065625],[118.85298953125,42.0881996894531],[118.86373171875,42.1144509101563],[118.860128203125,42.1388430000001],[118.865133085938,42.1727053046875],[118.917100859375,42.1939760566407],[118.887345,42.233843],[118.950699492188,42.281528546875],[118.91298953125,42.3094863105469],[118.87298953125,42.3258583808594],[118.8859778125,42.3461745429688]]]]}},{"type":"Feature","properties":{"name":"喀喇沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.86373171875,42.1144509101563],[118.85298953125,42.0881996894531],[118.83986453125,42.06644065625],[118.933863554688,42.0294863105469],[118.97047,42.0461623359376],[119.01170046875,42.0794863105469],[119.037345,42.083843],[119.041793242188,42.0782900214844],[119.052896757813,42.0693959785157],[119.069752226563,42.0293959785157],[119.102896757813,42.0382900214844],[119.132530546875,42.0557070136719],[119.161632109375,42.0324025703125],[119.171793242188,42.0082900214844],[119.188292265625,41.9802150703126],[119.092896757813,41.9682839179688],[119.11607546875,41.9314882636719],[119.142706328125,41.9281764960938],[119.161983671875,41.9395095039063],[119.20845828125,41.9337282539063],[119.222896757813,41.9582900214844],[119.23634890625,41.9902101875001],[119.280079375,41.984770734375],[119.291890898438,41.9995217109375],[119.31150515625,41.9970815253907],[119.314210234375,42.018843],[119.2881653125,42.0298183417969],[119.342896757813,42.0682900214844],[119.351793242188,42.0993959785157],[119.357345,42.1038430000001],[119.373629179688,42.0898146796876],[119.371944609375,42.0688430000001],[119.374815703125,42.0330971503907],[119.321187773438,41.9682631660156],[119.322745390625,41.9488430000001],[119.321944609375,41.938843],[119.323951445313,41.9138430000001],[119.321539335938,41.883843],[119.323424101563,41.8603993964844],[119.317345,41.843843],[119.209776640625,41.8497316718751],[119.152345,41.8474562812501],[119.102345,41.8494374824219],[119.072345,41.8482485175782],[119.040631132813,41.8495058417969],[119.022535429688,41.8690334296876],[118.992764921875,41.8830825019532],[118.900616484375,41.8479201484375],[118.862345,41.8494374824219],[118.827345,41.8480507636719],[118.802345,41.8490407539063],[118.792345,41.8486452460938],[118.7770325,41.8492519355469],[118.70250125,41.8186391425781],[118.67216921875,41.8198403144532],[118.651788359375,41.7978481269532],[118.652550078125,41.7786659980469],[118.642154570313,41.7690334296875],[118.614010039063,41.7254518867188],[118.562154570313,41.7090334296875],[118.499654570313,41.6871279121094],[118.481788359375,41.6678481269531],[118.4829309375,41.6390200019532],[118.46248171875,41.62007346875],[118.448414335938,41.575630109375],[118.352877226563,41.5794167304688],[118.332535429688,41.5686525703125],[118.317345,41.5638430000001],[118.281846953125,41.5580117011719],[118.27298953125,41.5694863105469],[118.23170046875,41.5781996894532],[118.2085559375,41.6081874824219],[118.213160429688,41.6393544746094],[118.174761992188,41.6689931464844],[118.157345,41.673843],[118.15025515625,41.7127223945313],[118.131163359375,41.7291664863282],[118.133287382813,41.7555605292969],[118.153844023438,41.8115346503906],[118.197345,41.8080397773437],[118.227691679688,41.8104775214844],[118.247345,41.7664321113281],[118.287642851563,41.7696706367188],[118.33281375,41.8480165839844],[118.331944609375,41.858843],[118.3327746875,41.8691664863281],[118.311685820313,41.8873329902344],[118.25611453125,41.9221388984375],[118.29271609375,41.9384706855469],[118.303389921875,41.9508571601562],[118.301944609375,41.968843],[118.302745390625,41.978843],[118.301451445313,41.9949587226563],[118.241099882813,42.0086696601563],[118.27271609375,42.0284706855469],[118.29197390625,42.0512404609375],[118.27197390625,42.0684706855469],[118.26271609375,42.0792153144532],[118.257345,42.083843],[118.270728789063,42.1005568671875],[118.35982546875,42.1116396308594],[118.391954375,42.0881728339844],[118.407345,42.0900868964844],[118.466436796875,42.0827370429688],[118.516763945313,42.1123171210938],[118.543248320313,42.0911074042969],[118.541475859375,42.0768691230469],[118.57447390625,42.0809743476563],[118.570548125,42.0493959785156],[118.587603789063,42.0616786933594],[118.601793242188,42.0793959785156],[118.633453398438,42.0927370429688],[118.674210234375,42.1166957832031],[118.75447390625,42.1067116523438],[118.751441679688,42.1311074042969],[118.778453398438,42.1527370429687],[118.791793242188,42.1693959785157],[118.805269804688,42.18019065625],[118.82580203125,42.2289162421876],[118.887345,42.233843],[118.917100859375,42.1939760566407],[118.865133085938,42.1727053046875],[118.860128203125,42.1388430000001],[118.86373171875,42.1144509101563]]]]}},{"type":"Feature","properties":{"name":"克什克腾旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.903721953125,43.5049275947266],[117.898272734375,43.4611074042969],[117.920543242188,43.4432747626954],[117.946729765625,43.4001638007813],[117.972345,43.3969771552734],[117.999249296875,43.4003237128907],[118.02400515625,43.3805025458985],[118.041793242188,43.3582900214844],[118.053023710938,43.3492958808594],[118.04978640625,43.3232802558594],[118.061793242188,43.3082900214844],[118.084381132813,43.2902016425781],[118.07951296875,43.2510610175782],[118.144449492188,43.242983625],[118.212896757813,43.2682900214844],[118.239947539063,43.2841921210938],[118.282345,43.2894643378906],[118.297345,43.2875991035157],[118.312515898438,43.2894863105469],[118.401793242188,43.2682900214844],[118.437345,43.263843],[118.423101835938,43.2479042792969],[118.365719023438,43.2513246894532],[118.332828398438,43.2219362617188],[118.331749296875,43.2038430000001],[118.332642851563,43.188843],[118.331539335938,43.1703395820313],[118.342061796875,43.1585622382813],[118.362061796875,43.1406923652344],[118.352628203125,43.0785622382813],[118.312984648438,43.0056093574219],[118.36123171875,42.9624990058594],[118.365557890625,42.8899282050782],[118.33310671875,42.8879946113282],[118.298077421875,42.9070314765626],[118.232061796875,42.8591237617188],[118.192584257813,42.8285305],[118.177769804688,42.8294142890625],[118.112061796875,42.8091237617188],[118.082628203125,42.7885622382813],[118.013902617188,42.7757350898437],[117.966319609375,42.7454701972656],[117.886783476563,42.6744057441407],[117.872628203125,42.6585622382812],[117.842061796875,42.6491237617188],[117.837345,42.643843],[117.813902617188,42.6378273750001],[117.797345,42.613843],[117.771793242188,42.6093959785156],[117.73611453125,42.5956825996094],[117.662935820313,42.5793959785156],[117.592896757813,42.5993959785157],[117.538912382813,42.6082900214844],[117.522725859375,42.5880776191407],[117.464888945313,42.6012160468751],[117.43138796875,42.5815248847657],[117.433472929688,42.5647670722657],[117.38361453125,42.52483909375],[117.402896757813,42.5093959785157],[117.411793242188,42.4710927558594],[117.332935820313,42.4593959785156],[117.26250125,42.4795095039063],[117.174996367188,42.4654042792969],[117.142345,42.4694643378907],[117.132125273438,42.4681935859376],[117.092154570313,42.4796083808594],[117.057628203125,42.4593129707032],[117.009381132813,42.4488747382813],[116.992896757813,42.4282900214844],[116.961793242188,42.4193959785156],[116.914893828125,42.4013686347657],[116.887345,42.383843],[116.891793242188,42.4093959785157],[116.90318484375,42.4390370917969],[116.871671171875,42.4784389472657],[116.877550078125,42.5256728339844],[116.859249296875,42.5403237128906],[116.842345,42.5382216621094],[116.828472929688,42.539946515625],[116.79732546875,42.5788417792969],[116.690094023438,42.5922536445312],[116.662799101563,42.5581642890626],[116.636612578125,42.561421125],[116.622393828125,42.6111586738282],[116.577345,42.5938430000001],[116.581793242188,42.6093959785156],[116.602896757813,42.6382900214844],[116.616236601563,42.6699489570313],[116.638453398438,42.7077370429688],[116.651793242188,42.7393959785157],[116.666090117188,42.7637221503907],[116.660479765625,42.808843],[116.667940703125,42.8688430000001],[116.660494414063,42.9287075019532],[116.577979765625,42.9788271308594],[116.504185820313,43.0099233222657],[116.492896757813,43.0493959785157],[116.487345,43.0538430000001],[116.433355742188,43.0765639472657],[116.412535429688,43.0990334296875],[116.392154570313,43.1086525703125],[116.371353789063,43.1408620429688],[116.351373320313,43.1593740058594],[116.354195585938,43.2305580878907],[116.400015898438,43.2521828437501],[116.426734648438,43.3208010078125],[116.589991484375,43.4079732490235],[116.61134890625,43.4976253486328],[116.68656375,43.5186525703126],[116.782345,43.4850807929688],[116.826080351563,43.5004091621094],[116.802139921875,43.5586861396485],[116.802545195313,43.568843],[116.80115359375,43.603843],[116.832535429688,43.6186525703125],[116.842154570313,43.6390334296875],[116.861553984375,43.6570101142579],[116.971866484375,43.6780702949219],[117.051265898438,43.7469374824219],[116.993565703125,43.7841994453125],[116.976978789063,43.8365901923829],[117.002550078125,43.8486592841797],[117.001553984375,43.873843],[117.002545195313,43.8988430000001],[117.001763945313,43.9184682441407],[117.022550078125,43.9486733222657],[117.021842070313,43.9665895820313],[116.967345,43.983843],[116.9558996875,44.0157454658203],[117.019034453125,44.0721553779297],[117.111768828125,44.1759450507813],[117.152628203125,44.1885616279297],[117.20943484375,44.2194307685547],[117.43455203125,44.2328487373047],[117.523863554688,44.2189315009766],[117.55912234375,44.1794704414063],[117.604263945313,44.1655306220703],[117.62322390625,44.1485903144531],[117.6214465625,44.1187526679688],[117.680362578125,44.1005593085938],[117.637345,44.033843],[117.642530546875,44.0157064033203],[117.667642851563,43.995595319336],[117.691793242188,43.9382900214844],[117.703013945313,43.9192031074219],[117.701666289063,43.9083901191406],[117.71849734375,43.894911725586],[117.762896757813,43.8393959785156],[117.78068484375,43.7971834541016],[117.805269804688,43.7774959541016],[117.821793242188,43.7382900214844],[117.842896757813,43.7093959785157],[117.853057890625,43.6852834296876],[117.881632109375,43.6624025703125],[117.897135039063,43.6256093574219],[117.933013945313,43.5692153144532],[117.931676054688,43.5584828925781],[117.944136992188,43.5372896552735],[117.903721953125,43.5049275947266]]]]}},{"type":"Feature","properties":{"name":"宁城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.040631132813,41.8495058417969],[119.072345,41.8482485175782],[119.102345,41.8494374824219],[119.152345,41.8474562812501],[119.209776640625,41.8497316718751],[119.317345,41.843843],[119.311226835938,41.8212721992188],[119.288062773438,41.783843],[119.309776640625,41.7487538886719],[119.31330203125,41.7282753730469],[119.296807890625,41.7160048652344],[119.304068632813,41.673843],[119.300299101563,41.6519533515625],[119.351612578125,41.6081081367188],[119.410069609375,41.5870607734375],[119.413326445313,41.568149640625],[119.353360625,41.5582094550781],[119.393287382813,41.509321515625],[119.390621367188,41.4938430000001],[119.393287382813,41.4783815742188],[119.371612578125,41.4495778632813],[119.367345,41.4138430000001],[119.306842070313,41.407671125],[119.323472929688,41.3778627753907],[119.321944609375,41.358843],[119.32392703125,41.3341640449219],[119.24197390625,41.3192153144532],[119.237345,41.313843],[119.222061796875,41.3091237617188],[119.191798125,41.2879811835938],[119.04650515625,41.2966408515625],[118.94611453125,41.3099904609375],[118.89250125,41.2985353828125],[118.879249296875,41.2993251777344],[118.831671171875,41.3525746894531],[118.833111601563,41.3766762519531],[118.777921171875,41.3568740058594],[118.752628203125,41.3285622382812],[118.734752226563,41.3191237617188],[118.662554960938,41.3491530585938],[118.622345,41.3467568183595],[118.567345,41.3500356269532],[118.542345,41.3485451484375],[118.52533328125,41.3495595527344],[118.417511015625,41.3352223945313],[118.402628203125,41.3185622382813],[118.397345,41.313843],[118.350562773438,41.3217897773438],[118.353082304688,41.3388430000001],[118.350128203125,41.358843],[118.353824492188,41.3838430000001],[118.350865507813,41.403843],[118.353765898438,41.4234499335938],[118.311051054688,41.4564174628907],[118.267345,41.463843],[118.275513945313,41.4756740546875],[118.321358671875,41.5073256660157],[118.300826445313,41.5388503242188],[118.317345,41.5638430000001],[118.332535429688,41.5686525703125],[118.352877226563,41.5794167304688],[118.448414335938,41.575630109375],[118.46248171875,41.62007346875],[118.4829309375,41.6390200019532],[118.481788359375,41.6678481269531],[118.499654570313,41.6871279121094],[118.562154570313,41.7090334296875],[118.614010039063,41.7254518867188],[118.642154570313,41.7690334296875],[118.652550078125,41.7786659980469],[118.651788359375,41.7978481269532],[118.67216921875,41.8198403144532],[118.70250125,41.8186391425781],[118.7770325,41.8492519355469],[118.792345,41.8486452460938],[118.802345,41.8490407539063],[118.827345,41.8480507636719],[118.862345,41.8494374824219],[118.900616484375,41.8479201484375],[118.992764921875,41.8830825019532],[119.022535429688,41.8690334296876],[119.040631132813,41.8495058417969]]]]}},{"type":"Feature","properties":{"name":"松山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,42.0638430000001],[118.150767851563,42.0516506171876],[118.159537382813,42.0604201484375],[118.153785429688,42.0805947089844],[118.092935820313,42.106235578125],[118.082896757813,42.1242665839844],[118.109517851563,42.1695546699219],[118.031793242188,42.1982900214844],[118.022896757813,42.2093959785157],[118.001793242188,42.2182900214844],[117.962896757813,42.2414345527344],[118.039097929688,42.2735439277344],[118.0615246875,42.301548078125],[118.016002226563,42.3207302070313],[118.002896757813,42.3442665839844],[118.023013945313,42.3784828925781],[118.020064726563,42.4021620917969],[117.95767703125,42.4284511542969],[117.926539335938,42.4673378730469],[117.871793242188,42.4982900214844],[117.835714140625,42.5576845527344],[117.790787382813,42.5849733710938],[117.797345,42.613843],[117.813902617188,42.6378273750001],[117.837345,42.643843],[117.846954375,42.63269065625],[117.990738554688,42.6192153144532],[118.076500273438,42.6553334785157],[118.188272734375,42.6723659492187],[118.231080351563,42.6420119453125],[118.348673125,42.6285317207032],[118.422471953125,42.6083339667969],[118.452345,42.6250014472657],[118.48197390625,42.6084706855469],[118.547432890625,42.5965309882813],[118.587369414063,42.611196515625],[118.60197390625,42.5784706855469],[118.650147734375,42.5675270820313],[118.689288359375,42.5819008613282],[118.744576445313,42.5774587226562],[118.766651640625,42.527983625],[118.787345,42.5296462226563],[118.807345,42.5280397773437],[118.822345,42.5292446113282],[118.840787382813,42.5277626777345],[118.872423125,42.539380109375],[118.893326445313,42.5277162910156],[118.920787382813,42.5299233222657],[118.97564578125,42.5097780585938],[118.944732695313,42.4959841132813],[118.93271609375,42.4665041328125],[119.091295195313,42.4820986152344],[119.1316028125,42.5045864082032],[119.16271609375,42.5184706855469],[119.188233671875,42.5480886054688],[119.241261015625,42.5640541816407],[119.252047148438,42.5282253242188],[119.291168242188,42.5425917792969],[119.31197390625,42.5892153144531],[119.34271609375,42.5984706855469],[119.36197390625,42.6150844550781],[119.33197390625,42.628470685547],[119.314293242188,42.6489919257813],[119.30271609375,42.6962807441407],[119.38271609375,42.7084706855469],[119.387345,42.7138430000001],[119.408551054688,42.7051296210938],[119.43310671875,42.7099819160156],[119.443385039063,42.658716046875],[119.512222929688,42.6378041816406],[119.566475859375,42.6486806464844],[119.587506132813,42.6780178046875],[119.620909453125,42.6602114082031],[119.599561796875,42.626587140625],[119.634820585938,42.6013185859376],[119.647345,42.583843],[119.638756132813,42.5344826484375],[119.602896757813,42.5082900214844],[119.572877226563,42.495639875],[119.56095828125,42.4271498847657],[119.541939726563,42.4295156074219],[119.497345,42.393843],[119.48978640625,42.4036367011719],[119.442345,42.396626203125],[119.417345,42.4003212714844],[119.39978640625,42.3977260566407],[119.381832304688,42.4209841132813],[119.357345,42.4173647285156],[119.341768828125,42.4196669746094],[119.321573515625,42.3643190742188],[119.27990359375,42.3806984687501],[119.262345,42.3781044746094],[119.2105871875,42.3857534003906],[119.213961210938,42.3629006171875],[119.177345,42.313843],[119.151710234375,42.3239211250001],[119.069459257813,42.3117665839844],[118.992486601563,42.3296034980469],[118.982345,42.3281044746094],[118.962345,42.331059796875],[118.93478640625,42.32698753125],[118.8859778125,42.3461745429688],[118.87298953125,42.3258583808594],[118.91298953125,42.3094863105469],[118.950699492188,42.281528546875],[118.887345,42.233843],[118.82580203125,42.2289162421876],[118.805269804688,42.18019065625],[118.791793242188,42.1693959785157],[118.778453398438,42.1527370429687],[118.751441679688,42.1311074042969],[118.75447390625,42.1067116523438],[118.674210234375,42.1166957832031],[118.633453398438,42.0927370429688],[118.601793242188,42.0793959785156],[118.587603789063,42.0616786933594],[118.570548125,42.0493959785156],[118.57447390625,42.0809743476563],[118.541475859375,42.0768691230469],[118.543248320313,42.0911074042969],[118.516763945313,42.1123171210938],[118.466436796875,42.0827370429688],[118.407345,42.0900868964844],[118.391954375,42.0881728339844],[118.35982546875,42.1116396308594],[118.270728789063,42.1005568671875],[118.257345,42.083843],[118.224547148438,42.0918996406251],[118.21326296875,42.0479274726563],[118.1706653125,42.0236147285157],[118.106641875,42.0379677558594],[118.13326296875,42.0479274726563],[118.14142703125,42.0597585273438],[118.147345,42.0638430000001]]],[[[119.387345,42.7138430000001],[119.375152617188,42.7172658515625],[119.383922148438,42.7260353828126],[119.387345,42.7138430000001]]]]}},{"type":"Feature","properties":{"name":"翁牛特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.387345,42.7138430000001],[119.383922148438,42.7260353828126],[119.375152617188,42.7172658515625],[119.38271609375,42.7084706855469],[119.30271609375,42.6962807441407],[119.314293242188,42.6489919257813],[119.33197390625,42.628470685547],[119.36197390625,42.6150844550781],[119.34271609375,42.5984706855469],[119.31197390625,42.5892153144531],[119.291168242188,42.5425917792969],[119.252047148438,42.5282253242188],[119.241261015625,42.5640541816407],[119.188233671875,42.5480886054688],[119.16271609375,42.5184706855469],[119.1316028125,42.5045864082032],[119.091295195313,42.4820986152344],[118.93271609375,42.4665041328125],[118.944732695313,42.4959841132813],[118.97564578125,42.5097780585938],[118.920787382813,42.5299233222657],[118.893326445313,42.5277162910156],[118.872423125,42.539380109375],[118.840787382813,42.5277626777345],[118.822345,42.5292446113282],[118.807345,42.5280397773437],[118.787345,42.5296462226563],[118.766651640625,42.527983625],[118.744576445313,42.5774587226562],[118.689288359375,42.5819008613282],[118.650147734375,42.5675270820313],[118.60197390625,42.5784706855469],[118.587369414063,42.611196515625],[118.547432890625,42.5965309882813],[118.48197390625,42.6084706855469],[118.452345,42.6250014472657],[118.422471953125,42.6083339667969],[118.348673125,42.6285317207032],[118.231080351563,42.6420119453125],[118.188272734375,42.6723659492187],[118.076500273438,42.6553334785157],[117.990738554688,42.6192153144532],[117.846954375,42.63269065625],[117.837345,42.643843],[117.842061796875,42.6491237617188],[117.872628203125,42.6585622382812],[117.886783476563,42.6744057441407],[117.966319609375,42.7454701972656],[118.013902617188,42.7757350898437],[118.082628203125,42.7885622382813],[118.112061796875,42.8091237617188],[118.177769804688,42.8294142890625],[118.192584257813,42.8285305],[118.232061796875,42.8591237617188],[118.298077421875,42.9070314765626],[118.33310671875,42.8879946113282],[118.365557890625,42.8899282050782],[118.36123171875,42.9624990058594],[118.312984648438,43.0056093574219],[118.352628203125,43.0785622382813],[118.362061796875,43.1406923652344],[118.342061796875,43.1585622382813],[118.331539335938,43.1703395820313],[118.332642851563,43.188843],[118.331749296875,43.2038430000001],[118.332828398438,43.2219362617188],[118.365719023438,43.2513246894532],[118.423101835938,43.2479042792969],[118.437345,43.263843],[118.50197390625,43.2692153144531],[118.567345,43.273843],[118.567345,43.263843],[118.577345,43.263843],[118.60271609375,43.2592153144532],[118.635914335938,43.2406923652344],[118.75302859375,43.250102765625],[118.81271609375,43.2392153144531],[118.86005984375,43.2218300605469],[118.987135039063,43.2320400214845],[119.131095,43.2059389472657],[119.191573515625,43.2241481757813],[119.304039335938,43.2677736640625],[119.332345,43.2700478339844],[119.437345,43.2616115546875],[119.5480090625,43.27050315625],[119.602345,43.2556325507813],[119.65197390625,43.2692153144531],[119.708219023438,43.2794753242188],[119.782135039063,43.3066188789063],[119.87271609375,43.3184706855469],[119.902105742188,43.3292641425782],[119.91255984375,43.3284242988282],[119.98197390625,43.3492147041016],[120.077345,43.373843],[120.25771609375,43.3885616279297],[120.312628203125,43.3791243720704],[120.342154570313,43.3685286689454],[120.417345,43.373843],[120.476803007813,43.3796901679688],[120.501871367188,43.3776760078125],[120.57271609375,43.3884712958985],[120.6352746875,43.3998128486328],[120.652584257813,43.3984218574219],[120.704293242188,43.417411725586],[120.767345,43.423843],[120.75677859375,43.4106459785157],[120.71791140625,43.3870400214844],[120.702896757813,43.3682900214844],[120.68068484375,43.3505025458985],[120.662896757813,43.3282900214844],[120.64068484375,43.3105019355469],[120.622896757813,43.2882900214844],[120.58068484375,43.2705019355469],[120.553956328125,43.2371205878907],[120.492896757813,43.1882900214844],[120.461793242188,43.1693959785157],[120.451539335938,43.1335390449219],[120.411666289063,43.1093178535156],[120.414107695313,43.0896840644532],[120.402345,43.0882216621094],[120.364674101563,43.0929067207031],[120.350206328125,43.0552712226563],[120.357345,43.023843],[120.35197390625,43.0192153144532],[120.34271609375,43.008470685547],[120.31197390625,42.9992153144532],[120.260909453125,42.959223859375],[120.142354765625,42.9483315253906],[120.112266875,42.959380109375],[120.091304960938,42.9476845527344],[120.05271609375,42.9692153144531],[120.01197390625,42.9784706855469],[119.985069609375,42.993481671875],[119.884537382813,42.9854030585937],[119.849830351563,42.9451222968751],[119.8527746875,42.9084963203125],[119.8319153125,42.8991896796875],[119.833980742188,42.8734963203125],[119.801402617188,42.8589614082031],[119.81271609375,42.8492153144531],[119.82197390625,42.8276674628906],[119.774757109375,42.8314614082031],[119.762525664063,42.7776235175782],[119.742066679688,42.7792665839844],[119.695460234375,42.7532643867188],[119.674527617188,42.7289687324219],[119.704947539063,42.6860683417969],[119.74271609375,42.6692153144531],[119.75197390625,42.6467958808594],[119.69197390625,42.6092153144532],[119.66271609375,42.588470685547],[119.647345,42.583843],[119.634820585938,42.6013185859376],[119.599561796875,42.626587140625],[119.620909453125,42.6602114082031],[119.587506132813,42.6780178046875],[119.566475859375,42.6486806464844],[119.512222929688,42.6378041816406],[119.443385039063,42.658716046875],[119.43310671875,42.7099819160156],[119.408551054688,42.7051296210938],[119.387345,42.7138430000001]]],[[[120.767345,43.423843],[120.767345,43.4338430000001],[120.777345,43.4338430000001],[120.777345,43.423843],[120.767345,43.423843]]]]}},{"type":"Feature","properties":{"name":"元宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.381832304688,42.4209841132813],[119.39978640625,42.3977260566407],[119.417345,42.4003212714844],[119.442345,42.396626203125],[119.48978640625,42.4036367011719],[119.497345,42.393843],[119.497345,42.383843],[119.48900515625,42.353891828125],[119.46298953125,42.3381996894532],[119.44170046875,42.3294863105469],[119.395299101563,42.3014955878906],[119.367345,42.2973647285156],[119.346485625,42.3004482246094],[119.30298953125,42.2681996894532],[119.27744265625,42.2577443671875],[119.24298953125,42.2081996894531],[119.225611601563,42.1947853828125],[119.26724734375,42.1777443671875],[119.308131132813,42.1189528632813],[119.35298953125,42.1094863105469],[119.357345,42.1038430000001],[119.351793242188,42.0993959785157],[119.342896757813,42.0682900214844],[119.2881653125,42.0298183417969],[119.314210234375,42.018843],[119.31150515625,41.9970815253907],[119.291890898438,41.9995217109375],[119.280079375,41.984770734375],[119.23634890625,41.9902101875001],[119.222896757813,41.9582900214844],[119.20845828125,41.9337282539063],[119.161983671875,41.9395095039063],[119.142706328125,41.9281764960938],[119.11607546875,41.9314882636719],[119.092896757813,41.9682839179688],[119.188292265625,41.9802150703126],[119.171793242188,42.0082900214844],[119.161632109375,42.0324025703125],[119.132530546875,42.0557070136719],[119.102896757813,42.0382900214844],[119.069752226563,42.0293959785157],[119.052896757813,42.0693959785157],[119.041793242188,42.0782900214844],[119.037345,42.083843],[119.050850859375,42.0984181953126],[119.084932890625,42.1145034003907],[119.0717590625,42.1394008613281],[119.099771757813,42.1653578925782],[119.082139921875,42.1986794257813],[119.083336210938,42.2288808417969],[119.022862578125,42.2404262519531],[119.042535429688,42.2586525703126],[119.052154570313,42.2690334296875],[119.092535429688,42.2786525703125],[119.133516875,42.2893910957031],[119.153936796875,42.2885817695313],[119.177345,42.313843],[119.213961210938,42.3629006171875],[119.2105871875,42.3857534003906],[119.262345,42.3781044746094],[119.27990359375,42.3806984687501],[119.321573515625,42.3643190742188],[119.341768828125,42.4196669746094],[119.357345,42.4173647285156],[119.381832304688,42.4209841132813]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"霍林郭勒市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.33170046875,45.3894869208985],[119.307345,45.3838430000001],[119.3008215625,45.4235445380859],[119.303824492188,45.443843],[119.300401640625,45.4669795966797],[119.41170046875,45.5194869208985],[119.490660429688,45.5482955146485],[119.54298953125,45.6081990791016],[119.552511015625,45.6423928046875],[119.567345,45.6538430000001],[119.601881132813,45.6383803535157],[119.6588684375,45.6170345283203],[119.741085234375,45.5813784003907],[119.747345,45.5738430000001],[119.71170046875,45.5694869208984],[119.69298953125,45.5517641425782],[119.739527617188,45.4793099189454],[119.68170046875,45.4694869208985],[119.671534453125,45.4446511054688],[119.610308867188,45.3984340644532],[119.33170046875,45.3894869208985]]]]}},{"type":"Feature","properties":{"name":"开鲁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.262706328125,44.1395101142578],[121.2924621875,44.122016828125],[121.381890898438,44.133139875],[121.401793242188,44.1082900214844],[121.43978640625,44.097426984375],[121.5283996875,44.0299874091797],[121.592398710938,43.9500691962891],[121.674386015625,43.9002693916016],[121.670650664063,43.87022971875],[121.682896757813,43.8493959785157],[121.693609648438,43.8239760566407],[121.801793242188,43.7982900214844],[121.807345,43.793843],[121.80298953125,43.7781990791016],[121.763678007813,43.7621102119141],[121.803463164063,43.7314028144531],[121.8015246875,43.7183040595703],[121.8372278125,43.6969521308594],[121.85170046875,43.6781990791016],[121.863824492188,43.6688430000001],[121.84306765625,43.6528212714844],[121.832345,43.626626203125],[121.812345,43.6295821357422],[121.785889921875,43.6256722236328],[121.748546171875,43.6481990791016],[121.73170046875,43.6394869208985],[121.72298953125,43.6281990791016],[121.68298953125,43.6170607734375],[121.702008085938,43.6080544257813],[121.729639921875,43.6121376777344],[121.735167265625,43.5747310615234],[121.701832304688,43.579657819336],[121.69298953125,43.5681990791016],[121.680865507813,43.558843],[121.712095976563,43.5347377753907],[121.722222929688,43.4751302314453],[121.752994414063,43.4796779609375],[121.81435671875,43.4692543769532],[121.801529570313,43.4593550849609],[121.805391875,43.4332204414063],[121.704459257813,43.4481362128907],[121.700167265625,43.4191158271484],[121.734581328125,43.3985347724609],[121.690391875,43.3892104316407],[121.70298953125,43.3794869208985],[121.707345,43.373843],[121.640885039063,43.3703023505859],[121.633267851563,43.3564022041016],[121.60797,43.3668294501954],[121.583804960938,43.3445638251954],[121.59478640625,43.3179213691406],[121.587345,43.313843],[121.565758085938,43.3205080390625],[121.549478789063,43.3559786201172],[121.522061796875,43.3685616279297],[121.512628203125,43.3991243720703],[121.498350859375,43.4253896308594],[121.412061796875,43.4585616279297],[121.393643828125,43.5182155585938],[121.375220976563,43.5346767402344],[121.264366484375,43.5280696845704],[121.183511992188,43.5453450751953],[121.152628203125,43.5285616279298],[120.951690703125,43.5128328681641],[120.902628203125,43.4785616279297],[120.879830351563,43.4680989814453],[120.827843046875,43.4711977363281],[120.78170046875,43.4546419501954],[120.7826575,43.4385903144532],[120.777345,43.4338430000001],[120.767345,43.4338430000001],[120.767345,43.423843],[120.704293242188,43.417411725586],[120.652584257813,43.3984218574219],[120.6352746875,43.3998128486328],[120.57271609375,43.3884712958985],[120.501871367188,43.3776760078125],[120.476803007813,43.3796901679688],[120.417345,43.373843],[120.421793242188,43.3793959785156],[120.461749296875,43.4036653876954],[120.512896757813,43.4182900214844],[120.546954375,43.4313796210938],[120.59529421875,43.4253664375001],[120.649058867188,43.4460335517578],[120.673980742188,43.460683209961],[120.671724882813,43.4788430000001],[120.67396609375,43.4968654609375],[120.744068632813,43.5461415839844],[120.777203398438,43.5601045966797],[120.80095828125,43.5571498847656],[120.854869414063,43.5888387275391],[120.922896757813,43.6082900214844],[120.975889921875,43.6469997382813],[120.956236601563,43.6627370429688],[120.933096953125,43.6916329169922],[120.871793242188,43.7382900214844],[120.838414335938,43.7799727607422],[120.777105742188,43.8172090888672],[120.787345,43.843843],[120.89181765625,43.866630475586],[121.01939578125,43.8434993720703],[121.105982695313,43.8365419746094],[121.133116484375,43.8486501289063],[121.0930090625,43.9052156806641],[121.123150664063,43.9186635566406],[121.09197390625,43.9584712958985],[121.073780546875,44.0188942695312],[121.03271609375,44.0312581611329],[121.05197390625,44.0392147041016],[121.08271609375,44.0484712958984],[121.104586210938,44.0606716132813],[121.149478789063,44.0570644355469],[121.18970828125,44.0917232490234],[121.20197390625,44.1192147041016],[121.207345,44.1238430000001],[121.217345,44.1238430000001],[121.217345,44.133843],[121.262706328125,44.1395101142578]]]]}},{"type":"Feature","properties":{"name":"科尔沁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.007345,43.763843],[123.010767851563,43.7760353828125],[123.019537382813,43.7672664619141],[123.007345,43.763843]]],[[[122.647345,43.953843],[122.6226575,43.9179415107422],[122.582896757813,43.8682900214844],[122.570367460938,43.8582540107423],[122.581832304688,43.8181569648438],[122.592345,43.8194649482422],[122.607345,43.8175991035157],[122.632345,43.8207088447266],[122.661280546875,43.8171096015626],[122.695499296875,43.84210471875],[122.760123320313,43.7949007392578],[122.805479765625,43.8215627265625],[122.832345,43.8182210517578],[122.857735625,43.8213796210938],[122.892061796875,43.8081856513672],[122.907486601563,43.8101045966797],[122.943453398438,43.7949489570313],[122.971983671875,43.7781764960938],[122.98271609375,43.779511334961],[123.007345,43.763843],[123.00298953125,43.7281990791016],[122.997345,43.693843],[122.886964140625,43.6842244697266],[122.872535429688,43.6686525703126],[122.8617590625,43.6586659980469],[122.862550078125,43.6386550117187],[122.807061796875,43.62806175],[122.767345,43.6296358466797],[122.742203398438,43.6286391425782],[122.682218046875,43.6443581367188],[122.652535429688,43.6286525703126],[122.576358671875,43.6105068183594],[122.541378203125,43.5982466865235],[122.542940703125,43.5587807441406],[122.512139921875,43.5490291572266],[122.512965117188,43.5282241035157],[122.492345,43.5290413642578],[122.477345,43.528446881836],[122.460875273438,43.5290993476563],[122.399449492188,43.5075704169922],[122.347345,43.5096358466798],[122.322345,43.5086446357423],[122.307345,43.5092391181641],[122.271788359375,43.5078304267578],[122.272940703125,43.4788430000001],[122.252154570313,43.4690334296876],[122.240650664063,43.4566170478516],[122.242550078125,43.4086537910157],[122.152154570313,43.3990334296875],[122.142535429688,43.3786525703125],[122.13052859375,43.3675276923828],[122.082345,43.3694374824219],[122.052345,43.3682485175782],[122.032345,43.3690413642579],[122.010445585938,43.368173444336],[121.7363684375,43.3840138984375],[121.759010039063,43.3630330634766],[121.707345,43.373843],[121.70298953125,43.3794869208985],[121.690391875,43.3892104316407],[121.734581328125,43.3985347724609],[121.700167265625,43.4191158271484],[121.704459257813,43.4481362128907],[121.805391875,43.4332204414063],[121.801529570313,43.4593550849609],[121.81435671875,43.4692543769532],[121.752994414063,43.4796779609375],[121.722222929688,43.4751302314453],[121.712095976563,43.5347377753907],[121.680865507813,43.558843],[121.69298953125,43.5681990791016],[121.701832304688,43.579657819336],[121.735167265625,43.5747310615234],[121.729639921875,43.6121376777344],[121.702008085938,43.6080544257813],[121.68298953125,43.6170607734375],[121.72298953125,43.6281990791016],[121.73170046875,43.6394869208985],[121.748546171875,43.6481990791016],[121.785889921875,43.6256722236328],[121.812345,43.6295821357422],[121.832345,43.626626203125],[121.84306765625,43.6528212714844],[121.863824492188,43.6688430000001],[121.85170046875,43.6781990791016],[121.8372278125,43.6969521308594],[121.8015246875,43.7183040595703],[121.803463164063,43.7314028144531],[121.763678007813,43.7621102119141],[121.80298953125,43.7781990791016],[121.807345,43.793843],[121.837711210938,43.8007405830078],[121.902896757813,43.7893959785156],[121.948668242188,43.7527883125],[122.006065703125,43.7599275947266],[122.042896757813,43.7493959785157],[122.05334109375,43.6893959785157],[122.119718046875,43.7043196845704],[122.14068484375,43.7305025458985],[122.163023710938,43.7483901191407],[122.157843046875,43.790024640625],[122.172843046875,43.78815940625],[122.190094023438,43.8291005683594],[122.245211210938,43.8386928535156],[122.265152617188,43.8635951972656],[122.312345,43.8694649482422],[122.329249296875,43.8673622871094],[122.342896757813,43.8782900214844],[122.359210234375,43.898657453125],[122.392896757813,43.9082900214844],[122.407139921875,43.9260774970703],[122.456334257813,43.944985578125],[122.507735625,43.9513796210938],[122.544386015625,43.9372927070313],[122.6281653125,43.961216046875],[122.647345,43.953843]]],[[[122.647345,43.953843],[122.650767851563,43.9660353828125],[122.659537382813,43.9572664619141],[122.647345,43.953843]]]]}},{"type":"Feature","properties":{"name":"科尔沁左翼后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.016261015625,43.6702217841797],[123.042345,43.6669771552735],[123.081353789063,43.6718288398438],[123.083590117188,43.653843],[123.080792265625,43.6313466621094],[123.162896757813,43.6193959785157],[123.21197390625,43.5881746650391],[123.233033476563,43.5907942939453],[123.27806765625,43.5779189277345],[123.297345,43.5538430000001],[123.30170046875,43.5381990791016],[123.315513945313,43.515298078125],[123.310494414063,43.4813326240234],[123.332345,43.4781038642578],[123.357086210938,43.4817604804688],[123.37298953125,43.4694869208985],[123.402882109375,43.4195021796876],[123.430806914063,43.4153755927734],[123.447838164063,43.4374379707032],[123.480806914063,43.4423104072266],[123.51744265625,43.3948525214844],[123.542452421875,43.4099404121094],[123.59170046875,43.3681990791016],[123.697345,43.3638430000001],[123.7046496875,43.3341127753907],[123.701221953125,43.3188430000001],[123.703746367188,43.3075966621094],[123.679176054688,43.2720119453126],[123.66107546875,43.2595131660157],[123.669845,43.2203908515625],[123.640328398438,43.2093471503907],[123.664361601563,43.1783388496094],[123.641051054688,43.1696169257813],[123.643565703125,43.1583962226563],[123.63142703125,43.1397585273438],[123.622164335938,43.0809804511719],[123.590103789063,43.0588430000001],[123.604586210938,43.048843],[123.58298953125,43.0339321113281],[123.57326296875,43.0079274726563],[123.557345,43.003843],[123.531793242188,43.0082900214844],[123.512896757813,43.0193959785157],[123.463697539063,43.0401284003907],[123.432896757813,43.0282900214844],[123.343599882813,43.002759015625],[123.247281523438,42.9887392402344],[123.222896757813,42.9582900214844],[123.201793242188,42.9493959785156],[123.192896757813,42.9382900214844],[123.181793242188,42.9293959785157],[123.167960234375,42.8499050117188],[123.216685820313,42.8293727851563],[123.181793242188,42.8193959785157],[123.152896757813,42.8082900214844],[123.09068484375,42.7905019355469],[123.052706328125,42.7681764960938],[123.042345,42.7694643378907],[123.027345,42.7675991035156],[122.975513945313,42.7740456367188],[122.956143828125,42.7498537421875],[122.919210234375,42.7715627265626],[122.888472929688,42.767739484375],[122.859556914063,42.7316310859375],[122.837345,42.7138430000001],[122.83099734375,42.7217690253907],[122.791793242188,42.7382900214844],[122.782896757813,42.7493959785157],[122.751236601563,42.7627370429687],[122.710479765625,42.7866957832032],[122.614039335938,42.7746999335938],[122.574757109375,42.7912538886719],[122.561226835938,42.8233632636719],[122.419136992188,42.8411159492187],[122.342896757813,42.8278481269532],[122.36687625,42.7751210761719],[122.427345,42.7675991035156],[122.461793242188,42.7718837714844],[122.441949492188,42.7415529609375],[122.396236601563,42.7049489570313],[122.3819934375,42.6871620917969],[122.33205203125,42.6679653144532],[122.321422148438,42.6812416816407],[122.255972929688,42.6999538398438],[122.222896757813,42.7193959785156],[122.197345,42.723843],[122.18634890625,42.7366078925782],[122.12650515625,42.7795790839844],[122.097345,42.7772365546875],[122.072345,42.7792446113282],[122.052667265625,42.7776638007813],[122.04271609375,42.7892153144532],[122.018814726563,42.7998818183594],[122.0227746875,42.8491664863281],[121.989010039063,42.8782558417969],[121.92197390625,42.8884706855469],[121.90271609375,42.8992153144531],[121.88197390625,42.9084706855469],[121.87271609375,42.9192153144532],[121.82353640625,42.9615846992188],[121.81271609375,43.0092153144531],[121.77295046875,43.0987953925781],[121.761217070313,43.1198232246094],[121.763551054688,43.148843],[121.760660429688,43.1848073554688],[121.679322539063,43.2299428535157],[121.66271609375,43.2492153144532],[121.63197390625,43.2684706855469],[121.587345,43.303843],[121.587345,43.313843],[121.59478640625,43.3179213691406],[121.583804960938,43.3445638251954],[121.60797,43.3668294501954],[121.633267851563,43.3564022041016],[121.640885039063,43.3703023505859],[121.707345,43.373843],[121.759010039063,43.3630330634766],[121.7363684375,43.3840138984375],[122.010445585938,43.368173444336],[122.032345,43.3690413642579],[122.052345,43.3682485175782],[122.082345,43.3694374824219],[122.13052859375,43.3675276923828],[122.142535429688,43.3786525703125],[122.152154570313,43.3990334296875],[122.242550078125,43.4086537910157],[122.240650664063,43.4566170478516],[122.252154570313,43.4690334296876],[122.272940703125,43.4788430000001],[122.271788359375,43.5078304267578],[122.307345,43.5092391181641],[122.322345,43.5086446357423],[122.347345,43.5096358466798],[122.399449492188,43.5075704169922],[122.460875273438,43.5290993476563],[122.477345,43.528446881836],[122.492345,43.5290413642578],[122.512965117188,43.5282241035157],[122.512139921875,43.5490291572266],[122.542940703125,43.5587807441406],[122.541378203125,43.5982466865235],[122.576358671875,43.6105068183594],[122.652535429688,43.6286525703126],[122.682218046875,43.6443581367188],[122.742203398438,43.6286391425782],[122.767345,43.6296358466797],[122.807061796875,43.62806175],[122.862550078125,43.6386550117187],[122.8617590625,43.6586659980469],[122.872535429688,43.6686525703126],[122.886964140625,43.6842244697266],[122.997345,43.693843],[123.016261015625,43.6702217841797]]]]}},{"type":"Feature","properties":{"name":"科尔沁左翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.217345,44.133843],[121.217345,44.1238430000001],[121.207345,44.1238430000001],[121.207345,44.133843],[121.217345,44.133843]]],[[[123.007345,43.763843],[123.019537382813,43.7672664619141],[123.010767851563,43.7760353828125],[122.98271609375,43.779511334961],[122.971983671875,43.7781764960938],[122.943453398438,43.7949489570313],[122.907486601563,43.8101045966797],[122.892061796875,43.8081856513672],[122.857735625,43.8213796210938],[122.832345,43.8182210517578],[122.805479765625,43.8215627265625],[122.760123320313,43.7949007392578],[122.695499296875,43.84210471875],[122.661280546875,43.8171096015626],[122.632345,43.8207088447266],[122.607345,43.8175991035157],[122.592345,43.8194649482422],[122.581832304688,43.8181569648438],[122.570367460938,43.8582540107423],[122.582896757813,43.8682900214844],[122.6226575,43.9179415107422],[122.647345,43.953843],[122.659537382813,43.9572664619141],[122.650767851563,43.9660353828125],[122.647345,43.953843],[122.6281653125,43.961216046875],[122.544386015625,43.9372927070313],[122.507735625,43.9513796210938],[122.456334257813,43.944985578125],[122.407139921875,43.9260774970703],[122.392896757813,43.9082900214844],[122.359210234375,43.898657453125],[122.342896757813,43.8782900214844],[122.329249296875,43.8673622871094],[122.312345,43.8694649482422],[122.265152617188,43.8635951972656],[122.245211210938,43.8386928535156],[122.190094023438,43.8291005683594],[122.172843046875,43.78815940625],[122.157843046875,43.790024640625],[122.163023710938,43.7483901191407],[122.14068484375,43.7305025458985],[122.119718046875,43.7043196845704],[122.05334109375,43.6893959785157],[122.042896757813,43.7493959785157],[122.006065703125,43.7599275947266],[121.948668242188,43.7527883125],[121.902896757813,43.7893959785156],[121.837711210938,43.8007405830078],[121.807345,43.793843],[121.801793242188,43.7982900214844],[121.693609648438,43.8239760566407],[121.682896757813,43.8493959785157],[121.670650664063,43.87022971875],[121.674386015625,43.9002693916016],[121.592398710938,43.9500691962891],[121.5283996875,44.0299874091797],[121.43978640625,44.097426984375],[121.401793242188,44.1082900214844],[121.381890898438,44.133139875],[121.2924621875,44.122016828125],[121.262706328125,44.1395101142578],[121.217345,44.133843],[121.192896757813,44.1693959785156],[121.175108671875,44.1836403632813],[121.161685820313,44.2185604072266],[121.163590117188,44.2338430000001],[121.159796171875,44.264341046875],[121.192896757813,44.2782900214844],[121.201890898438,44.2895211005859],[121.227594023438,44.2863240791016],[121.303482695313,44.302743756836],[121.322896757813,44.3182900214845],[121.331793242188,44.3293959785156],[121.358253203125,44.3405458808594],[121.413472929688,44.3847664619141],[121.410582304688,44.4080019355469],[121.4270715625,44.4100527167969],[121.491793242188,44.3582900214844],[121.512896757813,44.3493959785157],[121.548507109375,44.3049275947266],[121.614928007813,44.2793959785157],[121.722896757813,44.2882900214844],[121.797232695313,44.3168624091797],[121.862896757813,44.3282900214844],[121.881793242188,44.3393959785157],[121.927345,44.343843],[121.942061796875,44.3385616279297],[121.972628203125,44.3291243720704],[122.003624296875,44.307470319336],[122.137515898438,44.2594289375],[122.172345,44.257353131836],[122.2240246875,44.2604329658203],[122.267345,44.253843],[122.307330351563,44.2291243720704],[122.482628203125,44.2385616279297],[122.512061796875,44.2491243720703],[122.552628203125,44.2585616279298],[122.611783476563,44.2744057441407],[122.673970976563,44.2888747382813],[122.730206328125,44.35181175],[122.765201445313,44.370829694336],[122.868292265625,44.4026625800781],[123.032379179688,44.4985170722657],[123.117345,44.5038430000001],[123.125777617188,44.4965767646484],[123.121920195313,44.4485646796875],[123.13728640625,44.4210237861328],[123.109288359375,44.3969008613281],[123.12197390625,44.3684712958985],[123.14271609375,44.3592147041016],[123.16197390625,44.3484712958984],[123.1947278125,44.3386092353516],[123.2649621875,44.2565920234375],[123.292476835938,44.1949269843751],[123.325738554688,44.1763692451172],[123.38896609375,44.1573329902344],[123.37271609375,44.1384712958985],[123.360225859375,44.1277095771485],[123.34271609375,44.0884712958985],[123.313756132813,44.0755489326172],[123.327345,44.063843],[123.317940703125,44.0393807197266],[123.388565703125,43.982827375],[123.364859648438,43.963843],[123.42656375,43.9144295478516],[123.441793242188,43.8782900214844],[123.452896757813,43.8693959785156],[123.464215117188,43.8043556953125],[123.485284453125,43.7874843574219],[123.479405546875,43.7402016425782],[123.492896757813,43.7293959785157],[123.501793242188,43.7182900214844],[123.515284453125,43.7074843574219],[123.511676054688,43.6784828925782],[123.531793242188,43.6442659736329],[123.522896757813,43.6282900214844],[123.501441679688,43.6111074042969],[123.504107695313,43.5896840644532],[123.47123171875,43.5855947089844],[123.412896757813,43.6022518134766],[123.424381132813,43.5842232490235],[123.461793242188,43.5542659736329],[123.438258085938,43.5468215156251],[123.368311796875,43.5627095771485],[123.297345,43.5538430000001],[123.27806765625,43.5779189277345],[123.233033476563,43.5907942939453],[123.21197390625,43.5881746650391],[123.162896757813,43.6193959785157],[123.080792265625,43.6313466621094],[123.083590117188,43.653843],[123.081353789063,43.6718288398438],[123.042345,43.6669771552735],[123.016261015625,43.6702217841797],[122.997345,43.693843],[123.00298953125,43.7281990791016],[123.007345,43.763843]]]]}},{"type":"Feature","properties":{"name":"库伦旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.597345,42.503843],[121.609537382813,42.5072658515626],[121.600767851563,42.5160353828125],[121.581612578125,42.4995778632813],[121.549703398438,42.479829328125],[121.476285429688,42.4924684882813],[121.44623171875,42.4738698554688],[121.412345,42.4797035957031],[121.385733671875,42.475122296875],[121.373077421875,42.4581081367188],[121.304288359375,42.4394594550782],[121.293077421875,42.3981081367187],[121.271207304688,42.3818373847657],[121.211612578125,42.3695778632813],[121.207345,42.363843],[121.201519804688,42.3680178046875],[121.193170195313,42.3996681953125],[121.18080203125,42.4085341621094],[121.19388796875,42.4291518378907],[121.181236601563,42.4382228828125],[121.185186796875,42.4582228828126],[121.171236601563,42.4682228828125],[121.173472929688,42.4795510078125],[121.151519804688,42.4880178046875],[121.127467070313,42.5032875800781],[121.148995390625,42.5371926093751],[121.161519804688,42.5696681953126],[121.175186796875,42.5794631171875],[121.170631132813,42.6025173164063],[121.193741484375,42.6389186835938],[121.164303007813,42.6774684882813],[121.148468046875,42.7374819160156],[121.18443484375,42.7632607246094],[121.181358671875,42.778843],[121.186431914063,42.8045290351563],[121.17127078125,42.8284096503906],[121.179732695313,42.8712184882813],[121.211724882813,42.8941493964845],[121.221519804688,42.9203713203126],[121.15123171875,42.9682131171875],[121.156295195313,42.993843],[121.149332304688,43.0290908027344],[121.20923953125,43.0448964667969],[121.183394804688,43.1077956367188],[121.241798125,43.0837941718751],[121.279386015625,43.0912221503906],[121.311519804688,43.0780178046876],[121.370015898438,43.0696681953126],[121.391519804688,43.0996681953125],[121.403170195313,43.1080178046875],[121.437393828125,43.158296125],[121.431217070313,43.1895497871094],[121.4528528125,43.1980178046876],[121.518292265625,43.1711257148438],[121.566910429688,43.1807338691407],[121.558394804688,43.223843],[121.56560671875,43.2603554511719],[121.583170195313,43.2880178046875],[121.587345,43.303843],[121.63197390625,43.2684706855469],[121.66271609375,43.2492153144532],[121.679322539063,43.2299428535157],[121.760660429688,43.1848073554688],[121.763551054688,43.148843],[121.761217070313,43.1198232246094],[121.77295046875,43.0987953925781],[121.81271609375,43.0092153144531],[121.82353640625,42.9615846992188],[121.87271609375,42.9192153144532],[121.88197390625,42.9084706855469],[121.90271609375,42.8992153144531],[121.92197390625,42.8884706855469],[121.989010039063,42.8782558417969],[122.0227746875,42.8491664863281],[122.018814726563,42.7998818183594],[122.04271609375,42.7892153144532],[122.052667265625,42.7776638007813],[122.072345,42.7792446113282],[122.097345,42.7772365546875],[122.12650515625,42.7795790839844],[122.18634890625,42.7366078925782],[122.197345,42.723843],[122.204361601563,42.7059902167969],[122.19283328125,42.6778151679687],[122.13170046875,42.6881996894532],[122.100767851563,42.7068593574219],[122.082345,42.7095815253907],[122.071832304688,42.7080287910157],[122.059400664063,42.7241323066406],[122.015484648438,42.6976406074219],[121.991265898438,42.7012197089844],[121.931519804688,42.6794203925782],[121.933160429688,42.6683315253907],[121.911226835938,42.6514028144532],[121.913160429688,42.6383315253906],[121.900206328125,42.6283315253907],[121.9052746875,42.5940151191406],[121.897345,42.573843],[121.889176054688,42.5620119453125],[121.87142703125,42.5497585273438],[121.863116484375,42.5275490546876],[121.852345,42.5299636054688],[121.842345,42.5277223945313],[121.828995390625,42.5307155585937],[121.805694609375,42.4969704414062],[121.790069609375,42.500473859375],[121.735426054688,42.4800283027344],[121.708756132813,42.4414003730469],[121.66033328125,42.4305458808594],[121.63326296875,42.4697585273438],[121.609595976563,42.4860964179688],[121.597345,42.503843]]]]}},{"type":"Feature","properties":{"name":"奈曼旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.183511992188,43.5453450751953],[121.264366484375,43.5280696845704],[121.375220976563,43.5346767402344],[121.393643828125,43.5182155585938],[121.412061796875,43.4585616279297],[121.498350859375,43.4253896308594],[121.512628203125,43.3991243720703],[121.522061796875,43.3685616279297],[121.549478789063,43.3559786201172],[121.565758085938,43.3205080390625],[121.587345,43.313843],[121.587345,43.303843],[121.583170195313,43.2880178046875],[121.56560671875,43.2603554511719],[121.558394804688,43.223843],[121.566910429688,43.1807338691407],[121.518292265625,43.1711257148438],[121.4528528125,43.1980178046876],[121.431217070313,43.1895497871094],[121.437393828125,43.158296125],[121.403170195313,43.1080178046875],[121.391519804688,43.0996681953125],[121.370015898438,43.0696681953126],[121.311519804688,43.0780178046876],[121.279386015625,43.0912221503906],[121.241798125,43.0837941718751],[121.183394804688,43.1077956367188],[121.20923953125,43.0448964667969],[121.149332304688,43.0290908027344],[121.156295195313,42.993843],[121.15123171875,42.9682131171875],[121.221519804688,42.9203713203126],[121.211724882813,42.8941493964845],[121.179732695313,42.8712184882813],[121.17127078125,42.8284096503906],[121.186431914063,42.8045290351563],[121.181358671875,42.778843],[121.18443484375,42.7632607246094],[121.148468046875,42.7374819160156],[121.164303007813,42.6774684882813],[121.193741484375,42.6389186835938],[121.170631132813,42.6025173164063],[121.175186796875,42.5794631171875],[121.161519804688,42.5696681953126],[121.148995390625,42.5371926093751],[121.127467070313,42.5032875800781],[121.151519804688,42.4880178046875],[121.173472929688,42.4795510078125],[121.171236601563,42.4682228828125],[121.185186796875,42.4582228828126],[121.181236601563,42.4382228828125],[121.19388796875,42.4291518378907],[121.18080203125,42.4085341621094],[121.193170195313,42.3996681953125],[121.201519804688,42.3680178046875],[121.207345,42.363843],[121.203985625,42.3572023750001],[121.18406375,42.34712425],[121.173985625,42.327202375],[121.15406375,42.31712425],[121.143336210938,42.2959169746094],[121.127393828125,42.3037038398438],[121.111353789063,42.2720009589844],[121.091881132813,42.2815102363282],[121.063985625,42.257202375],[121.030704375,42.250483625],[121.027345,42.243843],[121.01142703125,42.2479274726563],[120.99326296875,42.2597585273438],[120.934307890625,42.274887921875],[120.897345,42.2666017890626],[120.881676054688,42.2701137519531],[120.877345,42.263843],[120.8513684375,42.2716640449219],[120.853345976563,42.296294171875],[120.791632109375,42.3349489570313],[120.793204375,42.3545351386719],[120.7619153125,42.3684963203125],[120.7636340625,42.3898818183594],[120.72197390625,42.4084706855469],[120.67978640625,42.4320095039063],[120.60281375,42.4956777167969],[120.59271609375,42.5292153144532],[120.563375273438,42.5423085761719],[120.55271609375,42.5892153144531],[120.54197390625,42.5984706855469],[120.511495390625,42.6471291328125],[120.49271609375,42.6892153144532],[120.454361601563,42.7579616523438],[120.44271609375,42.8092153144532],[120.411495390625,42.8532509589844],[120.4127746875,42.8691664863282],[120.400416289063,42.8798146796875],[120.403150664063,42.913843],[120.401265898438,42.9372866035157],[120.41627078125,42.9781447578125],[120.376846953125,42.9900136542969],[120.357345,43.023843],[120.350206328125,43.0552712226563],[120.364674101563,43.0929067207031],[120.402345,43.0882216621094],[120.414107695313,43.0896840644532],[120.411666289063,43.1093178535156],[120.451539335938,43.1335390449219],[120.461793242188,43.1693959785157],[120.492896757813,43.1882900214844],[120.553956328125,43.2371205878907],[120.58068484375,43.2705019355469],[120.622896757813,43.2882900214844],[120.64068484375,43.3105019355469],[120.662896757813,43.3282900214844],[120.68068484375,43.3505025458985],[120.702896757813,43.3682900214844],[120.71791140625,43.3870400214844],[120.75677859375,43.4106459785157],[120.767345,43.423843],[120.777345,43.423843],[120.777345,43.4338430000001],[120.7826575,43.4385903144532],[120.78170046875,43.4546419501954],[120.827843046875,43.4711977363281],[120.879830351563,43.4680989814453],[120.902628203125,43.4785616279297],[120.951690703125,43.5128328681641],[121.152628203125,43.5285616279298],[121.183511992188,43.5453450751953]]]]}},{"type":"Feature","properties":{"name":"扎鲁特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.907345,45.553843],[119.910767851563,45.5660353828125],[119.919537382813,45.5572664619141],[119.907345,45.553843]]],[[[119.907345,45.553843],[119.912760039063,45.5290145087891],[119.90990359375,45.4934584785156],[119.982345,45.4876375556641],[120.002345,45.4892446113282],[120.021851835938,45.4876778388673],[120.024483671875,45.5204616523438],[119.98271609375,45.5564455390625],[120.005513945313,45.5878920722657],[120.032345,45.5900484443359],[120.052345,45.5884413886719],[120.082345,45.5908516669922],[120.127345,45.587235944336],[120.160787382813,45.5899233222656],[120.19197390625,45.5784712958985],[120.22271609375,45.5692147041016],[120.25197390625,45.5584712958985],[120.31271609375,45.5492147041016],[120.338531523438,45.51925315625],[120.398595,45.5056081367188],[120.430328398438,45.4687709785156],[120.48568484375,45.4586733222656],[120.553345976563,45.4162941718751],[120.551944609375,45.398843],[120.552745390625,45.388843],[120.550362578125,45.359189069336],[120.609366484375,45.3328603339844],[120.684537382813,45.2795638251954],[120.742105742188,45.2584218574219],[120.752515898438,45.2592586494141],[120.802174101563,45.2484273505859],[120.8224621875,45.2500575996094],[120.83197390625,45.2184712958985],[120.88271609375,45.2092147041016],[120.91197390625,45.1984712958985],[120.971812773438,45.1804543281251],[120.972764921875,45.1685903144531],[120.951710234375,45.1185884833985],[120.97271609375,45.1092147041016],[120.98197390625,45.0684712958984],[120.99271609375,45.0492147041016],[121.009854765625,45.0108132148438],[121.032066679688,44.9984188056641],[121.042623320313,44.999267194336],[121.09048953125,44.9725618720703],[121.14197390625,44.9584712958984],[121.193267851563,44.9468178535156],[121.294947539063,44.9014461494141],[121.37197390625,44.8584712958985],[121.397061796875,44.8472768378906],[121.412769804688,44.8191213203125],[121.409967070313,44.7842220283203],[121.52271609375,44.7192147041016],[121.537701445313,44.6694411445313],[121.600499296875,44.655175397461],[121.578248320313,44.6360066962891],[121.625367460938,44.581317975586],[121.72177859375,44.5067324042969],[121.7734778125,44.446723859375],[121.81271609375,44.4292147041016],[121.82197390625,44.4184712958985],[121.877437773438,44.4017726875],[121.927345,44.343843],[121.881793242188,44.3393959785157],[121.862896757813,44.3282900214844],[121.797232695313,44.3168624091797],[121.722896757813,44.2882900214844],[121.614928007813,44.2793959785157],[121.548507109375,44.3049275947266],[121.512896757813,44.3493959785157],[121.491793242188,44.3582900214844],[121.4270715625,44.4100527167969],[121.410582304688,44.4080019355469],[121.413472929688,44.3847664619141],[121.358253203125,44.3405458808594],[121.331793242188,44.3293959785156],[121.322896757813,44.3182900214845],[121.303482695313,44.302743756836],[121.227594023438,44.2863240791016],[121.201890898438,44.2895211005859],[121.192896757813,44.2782900214844],[121.159796171875,44.264341046875],[121.163590117188,44.2338430000001],[121.161685820313,44.2185604072266],[121.175108671875,44.1836403632813],[121.192896757813,44.1693959785156],[121.217345,44.133843],[121.207345,44.133843],[121.207345,44.1238430000001],[121.20197390625,44.1192147041016],[121.18970828125,44.0917232490234],[121.149478789063,44.0570644355469],[121.104586210938,44.0606716132813],[121.08271609375,44.0484712958984],[121.05197390625,44.0392147041016],[121.03271609375,44.0312581611329],[121.073780546875,44.0188942695312],[121.09197390625,43.9584712958985],[121.123150664063,43.9186635566406],[121.0930090625,43.9052156806641],[121.133116484375,43.8486501289063],[121.105982695313,43.8365419746094],[121.01939578125,43.8434993720703],[120.89181765625,43.866630475586],[120.787345,43.843843],[120.78271609375,43.8892147041016],[120.77197390625,43.8984712958985],[120.761549101563,43.9443599677734],[120.69197390625,44.0284712958985],[120.68271609375,44.054009015625],[120.72271609375,44.0884712958985],[120.737828398438,44.1060127998047],[120.692965117188,44.1341146064454],[120.68271609375,44.1792147041016],[120.65197390625,44.1884712958985],[120.64271609375,44.2292147041016],[120.57197390625,44.2384712958984],[120.546329375,44.2527791572266],[120.492066679688,44.2484188056641],[120.47271609375,44.2592147041016],[120.44197390625,44.2684712958985],[120.419854765625,44.2808132148438],[120.401715117188,44.3214638496094],[120.380225859375,44.3399764228516],[120.36271609375,44.3792147041016],[120.34197390625,44.3884712958984],[120.31125125,44.4102529121094],[120.31431765625,44.4484188056641],[120.291920195313,44.4885646796875],[120.2927746875,44.4991664863282],[120.28197390625,44.5084712958985],[120.27271609375,44.5192147041016],[120.24197390625,44.5284712958985],[120.23271609375,44.5392147041016],[120.21197390625,44.5484712958985],[120.187213164063,44.5772078681641],[120.148590117188,44.594442975586],[120.173150664063,44.6290840888672],[120.14197390625,44.6384712958985],[120.09689578125,44.6550240302735],[120.07271609375,44.7092147041016],[120.034254179688,44.758329694336],[119.98197390625,44.7884712958985],[119.97271609375,44.7992147041016],[119.90607546875,44.8532546210937],[119.8534778125,44.8767238593751],[119.836964140625,44.8958931708984],[119.756363554688,44.9201595283203],[119.718253203125,44.9643947578126],[119.6980871875,45.0095870185547],[119.6766028125,45.0480989814454],[119.66271609375,45.0792147041016],[119.639742460938,45.1116182685547],[119.60197390625,45.1284712958985],[119.57271609375,45.1492147041016],[119.51123171875,45.1877272773438],[119.480699492188,45.2231661201173],[119.332779570313,45.2501485419922],[119.327345,45.243843],[119.31142703125,45.2479274726563],[119.287345,45.2638430000001],[119.28271609375,45.2692147041016],[119.243365507813,45.3031191230469],[119.307345,45.3838430000001],[119.33170046875,45.3894869208985],[119.610308867188,45.3984340644532],[119.671534453125,45.4446511054688],[119.68170046875,45.4694869208985],[119.739527617188,45.4793099189454],[119.69298953125,45.5517641425782],[119.71170046875,45.5694869208984],[119.747345,45.5738430000001],[119.779991484375,45.5662783027344],[119.81408328125,45.5713167548829],[119.84298953125,45.5594869208985],[119.864117460938,45.5467421699219],[119.907345,45.553843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东胜区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.986143828125,39.9684511542969],[110.012345,39.9380397773437],[110.022215605469,39.9494948554688],[110.072923613281,39.9212026191406],[110.124642363281,39.9401943183594],[110.159722929688,39.8994753242188],[110.18271609375,39.8892153144531],[110.200413847656,39.8686757636719],[110.27271609375,39.8592153144532],[110.29197390625,39.8484706855469],[110.31271609375,39.8392153144531],[110.32197390625,39.8284706855469],[110.377345,39.8138430000001],[110.383780546875,39.7876454902344],[110.356080351563,39.7475258613281],[110.286126738281,39.7318447089844],[110.236341582031,39.7642653632812],[110.17158328125,39.780171125],[110.163260527344,39.7579274726563],[110.151429472656,39.7397585273438],[110.147345,39.713843],[110.132545195313,39.7191530585938],[110.122166777344,39.7185341621094],[110.074776640625,39.7312270332031],[110.024422636719,39.6922048164062],[109.971627226563,39.6759011054688],[109.972994414063,39.6529555488282],[109.906324492188,39.6708119941407],[109.856326933594,39.6979811835937],[109.822064238281,39.7085622382813],[109.812625761719,39.7191237617188],[109.799598417969,39.7307656074219],[109.757345,39.728247296875],[109.742345,39.7291408515625],[109.732108183594,39.7285305],[109.701009550781,39.7502529121094],[109.5666809375,39.7422475410157],[109.4894153125,39.7257399726563],[109.42310671875,39.7296913886719],[109.40158328125,39.7179946113282],[109.350094023438,39.7210634589844],[109.332625761719,39.7591237617188],[109.313863554688,39.7936513496094],[109.255999785156,39.8085622382813],[109.237345,39.763843],[109.213980742188,39.7839723945313],[109.20271609375,39.8092153144531],[109.19197390625,39.8184706855469],[109.18271609375,39.8292153144532],[109.159146757813,39.839731671875],[109.136043730469,39.9456508613281],[109.217345,39.9638430000001],[109.310675078125,39.9434865546876],[109.391871367188,39.9500099921875],[109.484542265625,39.9358888984376],[109.546095,39.913285138672],[109.592418242188,39.9495632148438],[109.617281523438,39.9207021308594],[109.673490019531,39.9053188300782],[109.742345,39.9108522773438],[109.772345,39.9084413886719],[109.782345,39.9092446113281],[109.811373320313,39.9069118476563],[109.822345,39.9196462226563],[109.839840117188,39.8993386054688],[109.88271609375,39.9184706855469],[109.89197390625,39.9392153144532],[109.9427746875,39.9584926582032],[109.941170683594,39.9784706855469],[109.986143828125,39.9684511542969]]]]}},{"type":"Feature","properties":{"name":"鄂托克旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.287860136719,40.0041823554688],[107.412720976563,39.9182631660156],[107.432345,39.9190407539063],[107.452345,39.9182485175781],[107.518463164063,39.9208693671876],[107.612154570313,39.8786525703125],[107.693299589844,39.8445034003906],[107.7569153125,39.8108412910157],[107.837345,39.8076540351563],[107.911905546875,39.8106093574219],[107.972535429688,39.7990334296875],[108.015457792969,39.783989484375],[108.112154570313,39.7586525703125],[108.152535429688,39.7490334296875],[108.202154570313,39.7286525703125],[108.332535429688,39.6890334296875],[108.35349734375,39.6779421210938],[108.63834109375,39.623559796875],[108.656964140625,39.6034621406251],[108.724010039063,39.5822341132813],[108.753336210938,39.5368239570313],[108.78236453125,39.509925763672],[108.792926054688,39.4546120429688],[108.832535429688,39.4290334296876],[108.897345,39.383843],[108.812139921875,39.2890175605469],[108.813758574219,39.2481923652344],[108.792174101563,39.249048078125],[108.759671660156,39.2266823554688],[108.685836210938,39.2460292792969],[108.619371367188,39.2249867988281],[108.552728300781,39.1632387519532],[108.54048953125,39.0736843085938],[108.512100859375,39.0200319648438],[108.512918730469,38.9993752265626],[108.479110136719,38.9354824042969],[108.483336210938,38.8288430000001],[108.482139921875,38.7986794257812],[108.505572539063,38.7543935371094],[108.470584746094,38.6882692695313],[108.473656035156,38.6107692695313],[108.461033964844,38.5869167304688],[108.462740507813,38.543843],[108.461353789063,38.508843],[108.462550078125,38.4786794257813],[108.432413359375,38.421723859375],[108.422457304688,38.31784690625],[108.407345,38.303843],[108.381392851563,38.3278896308594],[108.347725859375,38.364223859375],[108.325982695313,38.3843715644531],[108.21931765625,38.4347096992188],[108.132154570313,38.4686525703125],[108.0874621875,38.50292503125],[108.062916289063,38.5294142890625],[108.031773710938,38.5582717109375],[107.990247832031,38.6030873847657],[107.972535429688,38.6590334296875],[107.922205839844,38.6959499335937],[107.877345,38.6650795722656],[107.804862089844,38.6308718085938],[107.695662871094,38.6977333808594],[107.662535429688,38.7490334296876],[107.6357825,38.7879116035157],[107.610491972656,38.7343202949219],[107.425340605469,38.6469411445313],[107.357948027344,38.6496120429688],[107.283365507813,38.6757521796876],[107.151402617188,38.6897963691406],[107.102904082031,38.6878737617187],[107.042535429688,38.7090334296876],[106.979268828125,38.7211122871094],[106.827345,38.833843],[106.855367460938,38.8663674140626],[106.957283964844,38.9452126289063],[106.967345,39.043843],[106.992215605469,39.0386391425781],[107.007345,39.0392397285157],[107.031812773438,39.0382692695313],[107.052877226563,39.0494167304688],[107.075360136719,39.0485256171875],[107.092154570313,39.1190334296876],[107.102535429688,39.1586525703125],[107.112154570313,39.1990334296876],[107.122918730469,39.2193752265625],[107.121771269531,39.2483107734375],[107.132535429688,39.2686525703125],[107.1351965625,39.2786525703125],[107.056195097656,39.2242897773438],[107.042535429688,39.2390334296876],[106.932576933594,39.3009316230469],[106.952535429688,39.3386525703125],[106.962154570313,39.4330593085938],[106.947345,39.503843],[106.94298953125,39.5394863105469],[106.929227324219,39.6110732246094],[106.888023710938,39.6666481757813],[106.903160429688,39.6783315253907],[106.901605253906,39.688843],[106.904561796875,39.7088430000001],[106.899271269531,39.7446364570312],[106.88170046875,39.7581996894531],[106.868900175781,39.8041689277344],[106.91298953125,39.8381996894531],[106.92170046875,39.8494863105469],[106.95298953125,39.8581996894532],[106.963765898438,39.9092726875],[106.931322050781,39.9181996894531],[106.84298953125,39.8381996894531],[106.773482695313,39.8097524238282],[106.76298953125,39.8594863105469],[106.747345,39.863843],[106.713114042969,39.8933351875],[106.732789335938,39.9286025214844],[106.719559355469,40.038520734375],[106.761229277344,40.0744216132813],[106.79271609375,40.0884706855469],[106.8154309375,40.1011440253906],[106.857345,40.173843],[106.917345,40.173843],[106.917345,40.183843],[106.976507597656,40.1651113105469],[107.127894316406,40.0609401679687],[107.192816191406,40.0342726875001],[107.287860136719,40.0041823554688]]]]}},{"type":"Feature","properties":{"name":"达拉特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.467345,40.3938430000001],[110.470767851563,40.4060353828126],[110.479537382813,40.3972658515625],[110.467345,40.3938430000001]]],[[[110.467345,40.3938430000001],[110.474290800781,40.3701735664063],[110.492735625,40.3682936835938],[110.509039335938,40.3879201484375],[110.549234648438,40.3395290351562],[110.572806425781,40.3293056464844],[110.593533964844,40.317435529297],[110.621954375,40.3203322578125],[110.631883574219,40.3083803535157],[110.637345,40.303843],[110.641790800781,40.2782900214845],[110.684830351563,40.2438246894532],[110.680948515625,40.2126076484376],[110.701790800781,40.1782900214844],[110.713587675781,40.168843],[110.697323027344,40.1558180976563],[110.681678496094,40.1292031074219],[110.683011503906,40.1184828925781],[110.671790800781,40.0993959785156],[110.662899199219,40.0782900214844],[110.60812625,40.0344301582031],[110.592899199219,39.9982900214844],[110.581790800781,39.9793959785156],[110.571722441406,39.9555019355469],[110.482579375,39.9281923652345],[110.451761503906,39.9320253730469],[110.403311796875,39.9116091132813],[110.401678496094,39.8984828925781],[110.420050078125,39.8672304511719],[110.377345,39.8138430000001],[110.32197390625,39.8284706855469],[110.31271609375,39.8392153144531],[110.29197390625,39.8484706855469],[110.27271609375,39.8592153144532],[110.200413847656,39.8686757636719],[110.18271609375,39.8892153144531],[110.159722929688,39.8994753242188],[110.124642363281,39.9401943183594],[110.072923613281,39.9212026191406],[110.022215605469,39.9494948554688],[110.012345,39.9380397773437],[109.986143828125,39.9684511542969],[109.941170683594,39.9784706855469],[109.9427746875,39.9584926582032],[109.89197390625,39.9392153144532],[109.88271609375,39.9184706855469],[109.839840117188,39.8993386054688],[109.822345,39.9196462226563],[109.811373320313,39.9069118476563],[109.782345,39.9092446113281],[109.772345,39.9084413886719],[109.742345,39.9108522773438],[109.673490019531,39.9053188300782],[109.617281523438,39.9207021308594],[109.592418242188,39.9495632148438],[109.546095,39.913285138672],[109.484542265625,39.9358888984376],[109.391871367188,39.9500099921875],[109.310675078125,39.9434865546876],[109.217345,39.9638430000001],[109.221790800781,39.9793959785156],[109.263345976563,40.0490383125],[109.24656375,40.0624770332032],[109.212345,40.0582216621094],[109.167345,40.0638185859375],[109.122345,40.0582216621094],[109.099510527344,40.0610610175782],[109.103006621094,40.0891567207032],[109.068956328125,40.1645717597657],[109.082899199219,40.1882900214844],[109.091790800781,40.2193959785156],[109.112552519531,40.236020734375],[109.121790800781,40.296645734375],[109.033699980469,40.309468],[109.017142363281,40.3859975410156],[108.992896757813,40.4054128242188],[108.982899199219,40.4314345527344],[109.022899199219,40.4482900214844],[109.055655546875,40.4722194648438],[109.037735625,40.518843],[109.047345,40.5438430000001],[109.066532011719,40.5528078437501],[109.081461210938,40.5266249824219],[109.109095488281,40.5370412421875],[109.137345,40.523843],[109.140767851563,40.5116506171875],[109.149537382813,40.5204201484376],[109.137345,40.523843],[109.144823027344,40.5364565253907],[109.171065703125,40.5175649238282],[109.227735625,40.5095388007813],[109.220399199219,40.4881752753906],[109.229210234375,40.4801210761719],[109.243189726563,40.5037038398438],[109.282345,40.4902577949219],[109.313189726563,40.5008510566407],[109.326685820313,40.4780861640626],[109.393624296875,40.4701210761719],[109.404381132813,40.4519753242188],[109.423040800781,40.4834499335938],[109.427345,40.513843],[109.437345,40.513843],[109.437345,40.523843],[109.508355742188,40.5149709296876],[109.541951933594,40.5395131660156],[109.552703886719,40.5381764960938],[109.580135527344,40.5543019843751],[109.622061796875,40.5381862617188],[109.63431765625,40.5397109199219],[109.631663847656,40.5183620429688],[109.692891875,40.48374534375],[109.772799101563,40.5018959785157],[109.802799101563,40.4981642890625],[109.812799101563,40.5106520820312],[109.848177519531,40.5062514472657],[109.906512480469,40.5314345527344],[109.964740019531,40.5241921210938],[110.000128203125,40.5033901191407],[110.017345,40.533843],[110.037345,40.533843],[110.04978640625,40.5177260566406],[110.073736601563,40.521264875],[110.1590246875,40.504868390625],[110.167345,40.553843],[110.197345,40.553843],[110.201158476563,40.5476552558594],[110.231844511719,40.5371974921876],[110.237345,40.513843],[110.237345,40.5038430000001],[110.247345,40.5038430000001],[110.238973417969,40.4697585273438],[110.273260527344,40.4779274726563],[110.296068144531,40.4927797675782],[110.317345,40.483843],[110.317345,40.473843],[110.307345,40.473843],[110.294537382813,40.4688430000001],[110.307345,40.4638430000001],[110.297271757813,40.4398598457031],[110.36033328125,40.4539968085938],[110.371429472656,40.4379274726563],[110.393260527344,40.4297585273438],[110.431429472656,40.3979274726562],[110.467345,40.3938430000001]]]]}},{"type":"Feature","properties":{"name":"鄂托克前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.042535429688,38.7090334296876],[107.102904082031,38.6878737617187],[107.151402617188,38.6897963691406],[107.283365507813,38.6757521796876],[107.357948027344,38.6496120429688],[107.425340605469,38.6469411445313],[107.610491972656,38.7343202949219],[107.6357825,38.7879116035157],[107.662535429688,38.7490334296876],[107.695662871094,38.6977333808594],[107.804862089844,38.6308718085938],[107.877345,38.6650795722656],[107.922205839844,38.6959499335937],[107.972535429688,38.6590334296875],[107.990247832031,38.6030873847657],[108.031773710938,38.5582717109375],[108.062916289063,38.5294142890625],[108.0874621875,38.50292503125],[108.132154570313,38.4686525703125],[108.21931765625,38.4347096992188],[108.325982695313,38.3843715644531],[108.347725859375,38.364223859375],[108.381392851563,38.3278896308594],[108.407345,38.303843],[108.431790800781,38.2025429511719],[108.382899199219,38.1082900214844],[108.351790800781,38.0593959785157],[108.342899199219,38.0082900214844],[108.285948515625,37.9736989570313],[108.301790800781,37.9182900214844],[108.332899199219,37.8793959785157],[108.358858671875,37.8366542792969],[108.409556914063,37.7960549140626],[108.446131621094,37.7503823066406],[108.51138796875,37.7262575507813],[108.537345,37.693843],[108.531883574219,37.6893056464844],[108.51013796875,37.6870888496094],[108.418665800781,37.6480861640626],[108.307345,37.633843],[108.296058378906,37.6425551582031],[108.28298953125,37.6594863105469],[108.223453398438,37.6681996894531],[108.18298953125,37.6381996894532],[108.140499296875,37.6208095527344],[108.09298953125,37.6394863105469],[108.01047,37.6611476875001],[108.014561796875,37.688843],[108.009271269531,37.7246364570312],[107.989049101563,37.7402468085937],[107.969657011719,37.7876296210938],[107.93170046875,37.7981996894532],[107.90298953125,37.8094863105469],[107.86170046875,37.8181996894531],[107.829906035156,37.83069846875],[107.812203398438,37.8280825019531],[107.7345715625,37.8460720039063],[107.688204375,37.8804482246094],[107.667838164063,37.8774379707031],[107.657345,37.863843],[107.561053496094,37.8918849921875],[107.490335722656,37.9405471015625],[107.427471953125,37.9380556464844],[107.402535429688,37.9408559394532],[107.422535429688,37.9786525703125],[107.432154570313,37.9997743964844],[107.388238554688,38.0205007148438],[107.352535429688,38.0590334296876],[107.323436308594,38.0859950996094],[107.242154570313,38.1086525703126],[107.184188261719,38.1485402656251],[107.15033328125,38.1586525703125],[107.112535429688,38.1386525703125],[107.043309355469,38.1254360175781],[106.947623320313,38.1292287421875],[106.817345,38.163843],[106.769095488281,38.1722389960938],[106.699293242188,38.2132717109375],[106.611790800781,38.2382900214844],[106.571834746094,38.2536489082031],[106.522899199219,38.2893959785157],[106.487913847656,38.3106459785157],[106.477345,38.323843],[106.49271609375,38.3284706855469],[106.595787382813,38.3891078925781],[106.646790800781,38.4775710273438],[106.657345,38.603843],[106.701488066406,38.7138857246094],[106.761207304688,38.7599806953126],[106.804769316406,38.8164174628907],[106.827345,38.833843],[106.979268828125,38.7211122871094],[107.042535429688,38.7090334296876]]]]}},{"type":"Feature","properties":{"name":"杭锦旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.840025664063,40.87808128125],[107.900172148438,40.8436330390625],[107.957345,40.8651149726563],[108.004212675781,40.847505109375],[108.032345,40.8503713203125],[108.057345,40.8478237128907],[108.082345,40.8503713203125],[108.107345,40.8478237128907],[108.158358183594,40.8530239082032],[108.167345,40.863843],[108.212257109375,40.84962425],[108.229676542969,40.8127138496094],[108.342345,40.8082485175782],[108.36935671875,40.8093190742188],[108.42630984375,40.7957521796875],[108.442154570313,40.7786525703126],[108.472535429688,40.7590334296876],[108.482154570313,40.7386525703126],[108.571854277344,40.7172866035157],[108.551846953125,40.6987490058594],[108.601986113281,40.6828749824219],[108.602542753906,40.668843],[108.602139921875,40.658657453125],[108.632535429688,40.6490334296876],[108.643231230469,40.6374904609375],[108.687684355469,40.63925315625],[108.732174101563,40.608637921875],[108.773099394531,40.6102602363282],[108.754342070313,40.5567421699219],[108.825494414063,40.5595619941407],[108.904019804688,40.5488307929688],[108.942181425781,40.528637921875],[108.957345,40.5292397285156],[108.972508574219,40.528637921875],[108.992154570313,40.5390334296876],[109.047345,40.5438430000001],[109.037735625,40.518843],[109.055655546875,40.4722194648438],[109.022899199219,40.4482900214844],[108.982899199219,40.4314345527344],[108.992896757813,40.4054128242188],[109.017142363281,40.3859975410156],[109.033699980469,40.309468],[109.121790800781,40.296645734375],[109.112552519531,40.236020734375],[109.091790800781,40.2193959785156],[109.082899199219,40.1882900214844],[109.068956328125,40.1645717597657],[109.103006621094,40.0891567207032],[109.099510527344,40.0610610175782],[109.122345,40.0582216621094],[109.167345,40.0638185859375],[109.212345,40.0582216621094],[109.24656375,40.0624770332032],[109.263345976563,40.0490383125],[109.221790800781,39.9793959785156],[109.217345,39.9638430000001],[109.136043730469,39.9456508613281],[109.159146757813,39.839731671875],[109.18271609375,39.8292153144532],[109.19197390625,39.8184706855469],[109.20271609375,39.8092153144531],[109.213980742188,39.7839723945313],[109.237345,39.763843],[109.267064238281,39.6829128242188],[109.191595488281,39.669145734375],[109.21197390625,39.6326247382813],[109.200391875,39.5898915839844],[109.172345,39.5876381660157],[109.107772246094,39.5928261542969],[109.077164335938,39.5664565253906],[109.062154570313,39.5166017890625],[109.033375273438,39.4918068671875],[109.066795683594,39.4319057441407],[109.04271609375,39.4184706855469],[109.019722929688,39.4082106757813],[109.007345,39.3938430000001],[108.981429472656,39.3897585273438],[108.933609648438,39.3749355292969],[108.897345,39.383843],[108.832535429688,39.4290334296876],[108.792926054688,39.4546120429688],[108.78236453125,39.509925763672],[108.753336210938,39.5368239570313],[108.724010039063,39.5822341132813],[108.656964140625,39.6034621406251],[108.63834109375,39.623559796875],[108.35349734375,39.6779421210938],[108.332535429688,39.6890334296875],[108.202154570313,39.7286525703125],[108.152535429688,39.7490334296875],[108.112154570313,39.7586525703125],[108.015457792969,39.783989484375],[107.972535429688,39.7990334296875],[107.911905546875,39.8106093574219],[107.837345,39.8076540351563],[107.7569153125,39.8108412910157],[107.693299589844,39.8445034003906],[107.612154570313,39.8786525703125],[107.518463164063,39.9208693671876],[107.452345,39.9182485175781],[107.432345,39.9190407539063],[107.412720976563,39.9182631660156],[107.287860136719,40.0041823554688],[107.192816191406,40.0342726875001],[107.127894316406,40.0609401679687],[106.976507597656,40.1651113105469],[106.917345,40.183843],[106.921519804688,40.1896681953125],[107.020907011719,40.2567360664063],[107.035194121094,40.3279994941406],[107.073170195313,40.3380178046876],[107.089869414063,40.3613185859375],[107.171329375,40.3828090644531],[107.15123171875,40.4489662910156],[107.157345,40.4638430000001],[107.160704375,40.470483625],[107.183985625,40.477202375],[107.197391386719,40.5037013984375],[107.161073027344,40.5220742011719],[107.157345,40.5738430000001],[107.176097441406,40.5808888984376],[107.202806425781,40.5693056464844],[107.235169707031,40.5507704902344],[107.278958769531,40.6517360664063],[107.317345,40.6478237128907],[107.337345,40.6498622871094],[107.387730742188,40.6447267890626],[107.421883574219,40.6693056464844],[107.442806425781,40.6783803535157],[107.484268828125,40.7111952949219],[107.533980742188,40.70612815625],[107.572806425781,40.7383803535156],[107.585745878906,40.7682118964844],[107.617345,40.7738430000001],[107.632806425781,40.7693056464844],[107.664212675781,40.757505109375],[107.687374296875,40.7598647285157],[107.702200957031,40.8103871894532],[107.722786894531,40.8082888007813],[107.73451296875,40.8611696601563],[107.780228300781,40.8565102363281],[107.820633574219,40.8333681464844],[107.840025664063,40.87808128125]]]]}},{"type":"Feature","properties":{"name":"乌审旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.007345,39.3938430000001],[109.0455090625,39.3764662910156],[109.106077910156,39.3905007148438],[109.13298953125,39.3794863105469],[109.142928496094,39.3209731269531],[109.177916289063,39.3158034492188],[109.198663359375,39.36649925],[109.243138457031,39.3839821601563],[109.321131621094,39.3520619941407],[109.325921660156,39.3196401191406],[109.2979309375,39.2732363105469],[109.355435820313,39.2306032539063],[109.386456328125,39.2260182929688],[109.378746367188,39.2781996894532],[109.448084746094,39.2687953925782],[109.47170046875,39.2381996894531],[109.501693144531,39.2259242988282],[109.533463164063,39.2014028144532],[109.531605253906,39.188843],[109.533463164063,39.1762831855469],[109.50298953125,39.1527614570313],[109.51170046875,39.1281996894532],[109.55170046875,39.0973244453125],[109.541385527344,39.0746804023438],[109.509901152344,39.0503786445313],[109.514520292969,39.0191164375],[109.47880984375,38.997757794922],[109.483084746094,38.968843],[109.481522246094,38.9582729316407],[109.50298953125,38.9494863105469],[109.514451933594,38.9346364570313],[109.542345,38.9178115058594],[109.56170046875,38.9294863105469],[109.58298953125,38.9381996894532],[109.622252226563,38.9699318671875],[109.655345488281,38.9499697089844],[109.677345,38.9438430000001],[109.667345,38.923843],[109.662064238281,38.9191237617188],[109.62392703125,38.8591579414063],[109.602064238281,38.8491237617188],[109.592625761719,38.8385622382813],[109.546763945313,38.805278546875],[109.5070715625,38.8330043769531],[109.452237578125,38.7905117011719],[109.432625761719,38.7685622382813],[109.403721953125,38.7427358222657],[109.392232695313,38.7177040839844],[109.332064238281,38.6991237617188],[109.319534941406,38.6718251777344],[109.352806425781,38.628891828125],[109.336912871094,38.5996450019532],[109.275277128906,38.6217604804688],[109.206663847656,38.5654653144531],[109.173189726563,38.5279994941407],[109.124141875,38.4841762519531],[109.051873808594,38.4317299628906],[109.053909941406,38.3975783515626],[109.002330351563,38.3514919257813],[108.982625761719,38.3085622382813],[108.961947050781,38.2705080390626],[108.963756132813,38.2401784492188],[108.932723417969,38.1957509589844],[108.955386992188,38.1540419746094],[109.047345,38.1038430000001],[109.06486453125,38.0917470527344],[109.048409453125,38.0525661445313],[109.067496367188,38.0232546210938],[109.031429472656,38.0097585273438],[109.003260527344,37.9679274726563],[108.981429472656,37.9597585273438],[108.960784941406,37.929858625],[108.937345,37.923843],[108.922769804688,37.9373476386719],[108.912535429688,37.9590334296875],[108.891773710938,37.9782717109375],[108.865496855469,38.0339467597656],[108.795145292969,38.0586525703125],[108.817860136719,37.993843],[108.788172636719,37.9091384101563],[108.792904082031,37.7897072578125],[108.781073027344,37.7559474921875],[108.783670683594,37.6904262519531],[108.712154570313,37.6790334296876],[108.692535429688,37.6686525703125],[108.619918242188,37.6513552070313],[108.550164824219,37.6800075507813],[108.537345,37.693843],[108.51138796875,37.7262575507813],[108.446131621094,37.7503823066406],[108.409556914063,37.7960549140626],[108.358858671875,37.8366542792969],[108.332899199219,37.8793959785157],[108.301790800781,37.9182900214844],[108.285948515625,37.9736989570313],[108.342899199219,38.0082900214844],[108.351790800781,38.0593959785157],[108.382899199219,38.1082900214844],[108.431790800781,38.2025429511719],[108.407345,38.303843],[108.422457304688,38.31784690625],[108.432413359375,38.421723859375],[108.462550078125,38.4786794257813],[108.461353789063,38.508843],[108.462740507813,38.543843],[108.461033964844,38.5869167304688],[108.473656035156,38.6107692695313],[108.470584746094,38.6882692695313],[108.505572539063,38.7543935371094],[108.482139921875,38.7986794257812],[108.483336210938,38.8288430000001],[108.479110136719,38.9354824042969],[108.512918730469,38.9993752265626],[108.512100859375,39.0200319648438],[108.54048953125,39.0736843085938],[108.552728300781,39.1632387519532],[108.619371367188,39.2249867988281],[108.685836210938,39.2460292792969],[108.759671660156,39.2266823554688],[108.792174101563,39.249048078125],[108.813758574219,39.2481923652344],[108.812139921875,39.2890175605469],[108.897345,39.383843],[108.933609648438,39.3749355292969],[108.981429472656,39.3897585273438],[109.007345,39.3938430000001]]]]}},{"type":"Feature","properties":{"name":"伊金霍洛旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.350094023438,39.7210634589844],[109.40158328125,39.7179946113282],[109.42310671875,39.7296913886719],[109.4894153125,39.7257399726563],[109.5666809375,39.7422475410157],[109.701009550781,39.7502529121094],[109.732108183594,39.7285305],[109.742345,39.7291408515625],[109.757345,39.728247296875],[109.799598417969,39.7307656074219],[109.812625761719,39.7191237617188],[109.822064238281,39.7085622382813],[109.856326933594,39.6979811835937],[109.906324492188,39.6708119941407],[109.972994414063,39.6529555488282],[109.971627226563,39.6759011054688],[110.024422636719,39.6922048164062],[110.074776640625,39.7312270332031],[110.122166777344,39.7185341621094],[110.132545195313,39.7191530585938],[110.147345,39.713843],[110.181790800781,39.6943679023438],[110.159801054688,39.6872939277344],[110.141829863281,39.6895290351562],[110.131234160156,39.6524721503906],[110.10998171875,39.6163173652344],[110.123116484375,39.5851454902344],[110.166922636719,39.5593959785156],[110.224847441406,39.573716046875],[110.220057402344,39.6122377753907],[110.267345,39.6063552070313],[110.318109160156,39.6126699042969],[110.363018828125,39.5592531562501],[110.360748320313,39.5410048652344],[110.372899199219,39.5093959785157],[110.381790800781,39.4782900214844],[110.42388796875,39.4662538886719],[110.420477324219,39.4388198066406],[110.427345,39.383843],[110.4107825,39.34837425],[110.424971953125,39.3385768867187],[110.393260527344,39.3179274726563],[110.377345,39.313843],[110.363841582031,39.3284181953125],[110.329241972656,39.3447463203125],[110.261783476563,39.3996462226563],[110.262550078125,39.419028546875],[110.232154570313,39.4286525703125],[110.212508574219,39.439048078125],[110.202215605469,39.4386391425782],[110.134412871094,39.4528249335938],[110.112535429688,39.4160951972657],[110.173297148438,39.3597963691407],[110.208387480469,39.2854470039063],[110.009417753906,39.2079677558594],[109.959486113281,39.2099477363282],[109.904647246094,39.2691323066407],[109.891009550781,39.2685915351563],[109.865972929688,39.2415700507813],[109.892535429688,39.2290334296875],[109.957222929688,39.1894252753907],[109.890760527344,39.1406764960938],[109.912706328125,39.1087868476563],[109.90033328125,39.0990334296875],[109.848858671875,39.1262697578126],[109.832535429688,39.1086525703125],[109.817684355469,39.0948928046875],[109.762154570313,39.0590334296875],[109.712535429688,39.0186525703126],[109.670758085938,38.9880104804688],[109.677345,38.9438430000001],[109.655345488281,38.9499697089844],[109.622252226563,38.9699318671875],[109.58298953125,38.9381996894532],[109.56170046875,38.9294863105469],[109.542345,38.9178115058594],[109.514451933594,38.9346364570313],[109.50298953125,38.9494863105469],[109.481522246094,38.9582729316407],[109.483084746094,38.968843],[109.47880984375,38.997757794922],[109.514520292969,39.0191164375],[109.509901152344,39.0503786445313],[109.541385527344,39.0746804023438],[109.55170046875,39.0973244453125],[109.51170046875,39.1281996894532],[109.50298953125,39.1527614570313],[109.533463164063,39.1762831855469],[109.531605253906,39.188843],[109.533463164063,39.2014028144532],[109.501693144531,39.2259242988282],[109.47170046875,39.2381996894531],[109.448084746094,39.2687953925782],[109.378746367188,39.2781996894532],[109.386456328125,39.2260182929688],[109.355435820313,39.2306032539063],[109.2979309375,39.2732363105469],[109.325921660156,39.3196401191406],[109.321131621094,39.3520619941407],[109.243138457031,39.3839821601563],[109.198663359375,39.36649925],[109.177916289063,39.3158034492188],[109.142928496094,39.3209731269531],[109.13298953125,39.3794863105469],[109.106077910156,39.3905007148438],[109.0455090625,39.3764662910156],[109.007345,39.3938430000001],[109.019722929688,39.4082106757813],[109.04271609375,39.4184706855469],[109.066795683594,39.4319057441407],[109.033375273438,39.4918068671875],[109.062154570313,39.5166017890625],[109.077164335938,39.5664565253906],[109.107772246094,39.5928261542969],[109.172345,39.5876381660157],[109.200391875,39.5898915839844],[109.21197390625,39.6326247382813],[109.191595488281,39.669145734375],[109.267064238281,39.6829128242188],[109.237345,39.763843],[109.255999785156,39.8085622382813],[109.313863554688,39.7936513496094],[109.332625761719,39.7591237617188],[109.350094023438,39.7210634589844]]]]}},{"type":"Feature","properties":{"name":"准格尔旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.437345,39.6238430000001],[111.460885039063,39.6187795234375],[111.449852324219,39.6010243964844],[111.437345,39.6238430000001]]],[[[111.437345,39.6238430000001],[111.431790800781,39.6193959785157],[111.420960722656,39.5449758125001],[111.425350371094,39.5096767402344],[111.363275175781,39.4745803046875],[111.357345,39.453843],[111.3482825,39.4237392402344],[111.282345,39.4184413886719],[111.160369902344,39.4282424140626],[111.12197390625,39.3792153144532],[111.117345,39.3638430000001],[111.104742460938,39.3492153144531],[111.081917753906,39.378540265625],[111.084398222656,39.40940940625],[111.053702421875,39.4069435859376],[111.051302519531,39.4368288398438],[111.06197390625,39.4492153144532],[111.088949003906,39.47245628125],[111.11197390625,39.5092153144531],[111.141615019531,39.5347524238282],[111.145106230469,39.5782192207032],[111.12306765625,39.5799904609376],[111.087552519531,39.5548085761719],[111.019674101563,39.5602626777344],[110.952633085938,39.5184181953125],[110.937747832031,39.519614484375],[110.882757597656,39.5071205878907],[110.86197390625,39.4892153144532],[110.816292753906,39.4301674628906],[110.79197390625,39.4092153144532],[110.778089628906,39.3930995917969],[110.737725859375,39.358325421875],[110.718260527344,39.2936733222657],[110.682640410156,39.2684169746094],[110.662345,39.2700478339844],[110.616065703125,39.2663295722656],[110.561500273438,39.3133400703125],[110.563387480469,39.3368288398438],[110.519422636719,39.3878603339844],[110.495328398438,39.3598940253907],[110.44271609375,39.3792153144532],[110.427345,39.383843],[110.420477324219,39.4388198066406],[110.42388796875,39.4662538886719],[110.381790800781,39.4782900214844],[110.372899199219,39.5093959785157],[110.360748320313,39.5410048652344],[110.363018828125,39.5592531562501],[110.318109160156,39.6126699042969],[110.267345,39.6063552070313],[110.220057402344,39.6122377753907],[110.224847441406,39.573716046875],[110.166922636719,39.5593959785156],[110.123116484375,39.5851454902344],[110.10998171875,39.6163173652344],[110.131234160156,39.6524721503906],[110.141829863281,39.6895290351562],[110.159801054688,39.6872939277344],[110.181790800781,39.6943679023438],[110.147345,39.713843],[110.151429472656,39.7397585273438],[110.163260527344,39.7579274726563],[110.17158328125,39.780171125],[110.236341582031,39.7642653632812],[110.286126738281,39.7318447089844],[110.356080351563,39.7475258613281],[110.383780546875,39.7876454902344],[110.377345,39.8138430000001],[110.420050078125,39.8672304511719],[110.401678496094,39.8984828925781],[110.403311796875,39.9116091132813],[110.451761503906,39.9320253730469],[110.482579375,39.9281923652345],[110.571722441406,39.9555019355469],[110.581790800781,39.9793959785156],[110.592899199219,39.9982900214844],[110.60812625,40.0344301582031],[110.662899199219,40.0782900214844],[110.671790800781,40.0993959785156],[110.683011503906,40.1184828925781],[110.681678496094,40.1292031074219],[110.697323027344,40.1558180976563],[110.713587675781,40.168843],[110.701790800781,40.1782900214844],[110.680948515625,40.2126076484376],[110.684830351563,40.2438246894532],[110.641790800781,40.2782900214845],[110.637345,40.303843],[110.663260527344,40.3079274726563],[110.682691679688,40.32058128125],[110.691673613281,40.3075722480469],[110.711673613281,40.312055890625],[110.723016386719,40.295630109375],[110.76720828125,40.3055373359375],[110.761051054688,40.2780690742188],[110.783260527344,40.2697585273438],[110.804459257813,40.2559548164063],[110.836964140625,40.2632411933594],[110.83103640625,40.2896755195313],[110.869771757813,40.2979274726563],[110.850406523438,40.2681899238282],[110.883260527344,40.2597585273438],[110.9191028125,40.2447048164063],[110.959136992188,40.2757314277344],[110.97509890625,40.25261253125],[111.01830203125,40.2807460761719],[111.027345,40.293843],[111.0427746875,40.2891970039063],[111.041121855469,40.2686257148438],[111.115484648438,40.2550612617188],[111.18173953125,40.2135634589844],[111.217100859375,40.1725197578126],[111.30271609375,40.1492153144531],[111.367345,40.093843],[111.376976347656,40.0601528144532],[111.409276152344,40.0342897773437],[111.421790800781,39.9482900214844],[111.441790800781,39.9322743964844],[111.432899199219,39.8982900214844],[111.411790800781,39.8693959785156],[111.402899199219,39.8282900214844],[111.391666289063,39.8192958808594],[111.393248320313,39.8065785957031],[111.371790800781,39.7893959785156],[111.362899199219,39.7682900214844],[111.348870878906,39.7444264960938],[111.386278105469,39.6977138496094],[111.433682890625,39.6689186835938],[111.42146609375,39.65913596875],[111.427345,39.643843],[111.437345,39.6238430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿荣旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.04353640625,49.2954952216797],[123.094991484375,49.2667864204101],[123.152174101563,49.2792586494141],[123.177345,49.2772359443359],[123.202691679688,49.2792726875],[123.21197390625,49.2584709907227],[123.22271609375,49.2492150092774],[123.23197390625,49.2184709907227],[123.284361601563,49.2089153266602],[123.28056765625,49.1617107368164],[123.306641875,49.1314461494141],[123.343902617188,49.1177626777344],[123.380103789063,49.1206719184571],[123.402345,49.1082637763672],[123.430162382813,49.1237850166016],[123.459742460938,49.0894539619141],[123.472345,49.0884413886719],[123.487345,49.089646527832],[123.502345,49.0884413886719],[123.512667265625,49.0892708564453],[123.522022734375,49.0784151435548],[123.548990507813,49.0805825019532],[123.567345,49.0738430000001],[123.56298953125,49.0581993842773],[123.5444934375,49.0111495185547],[123.581690703125,48.9959242988281],[123.6086340625,48.9751305366211],[123.62170046875,48.9581993842774],[123.644449492188,48.9406392646484],[123.62298953125,48.8881993842774],[123.6057825,48.8596721625977],[123.64298953125,48.8094866157227],[123.65170046875,48.7781993842774],[123.68298953125,48.7594866157227],[123.724146757813,48.7003029609375],[123.76459109375,48.6890407539063],[123.761607695313,48.668843],[123.763082304688,48.6588430000001],[123.75298953125,48.5905294013672],[123.772183867188,48.5778823066406],[123.812110625,48.5935790229492],[123.83170046875,48.5681993842774],[123.90298953125,48.5594866157227],[123.9319153125,48.5380406928712],[123.949190703125,48.540593793457],[123.994874296875,48.5272734809571],[124.032579375,48.5500167060547],[124.042857695313,48.5367018867188],[124.086832304688,48.5432006049805],[124.126143828125,48.5194866157227],[124.18298953125,48.5281993842774],[124.191832304688,48.5396575141602],[124.202345,48.5381041694337],[124.23978640625,48.5436370063477],[124.247345,48.533843],[124.232799101563,48.5175618720703],[124.123189726563,48.4579991889649],[124.079058867188,48.4377455878907],[123.991783476563,48.3744057441406],[123.932628203125,48.3285616279297],[123.892061796875,48.2991243720704],[123.852628203125,48.2685616279297],[123.752061796875,48.1991243720703],[123.561265898438,48.0324263740235],[123.501798125,48.0110878730469],[123.422061796875,47.9891243720704],[123.352628203125,47.9685616279297],[123.287345,47.953843],[123.188175078125,47.9592720771485],[123.15357546875,47.9579006171875],[123.132535429688,47.9690334296876],[123.105689726563,47.9817024970704],[123.052154570313,47.9986525703125],[123.018482695313,48.0218227363281],[123.001031523438,48.0406587958984],[123.003072539063,48.0922499824219],[122.945909453125,48.1667989326172],[122.931846953125,48.2112166572266],[122.932906523438,48.2379787421876],[122.91986453125,48.2751790595703],[122.844517851563,48.34499534375],[122.822535429688,48.3790334296876],[122.794112578125,48.4053682685547],[122.739913359375,48.4225276923829],[122.74412234375,48.5286559272461],[122.675548125,48.5449901557617],[122.65252078125,48.5698409248048],[122.622178984375,48.5686382270508],[122.602511015625,48.5790477729492],[122.592345,48.578644940918],[122.5817590625,48.5790642524414],[122.582550078125,48.5990200019531],[122.564620390625,48.6156310249023],[122.513219023438,48.588430097168],[122.487345,48.593843],[122.482896757813,48.5993959785156],[122.4038684375,48.6108983588867],[122.377345,48.6075991035157],[122.362345,48.6094649482422],[122.343609648438,48.6071343208008],[122.29271609375,48.639511334961],[122.251842070313,48.6344268012696],[122.212628203125,48.6495000434571],[122.201890898438,48.6481645942383],[122.1887121875,48.6646251655274],[122.193013945313,48.6992351508789],[122.154400664063,48.7520964790039],[122.139141875,48.7883095527344],[122.0771496875,48.7990975166016],[122.042896757813,48.857848432129],[122.077345,48.863843],[122.147550078125,48.831237104004],[122.197037382813,48.8272606635742],[122.28271609375,48.8384709907227],[122.30197390625,48.8492150092774],[122.381339140625,48.8613085151367],[122.382745390625,48.878843],[122.381944609375,48.8888430000001],[122.385025664063,48.9272243476562],[122.36271609375,48.9464458442383],[122.406090117188,48.9505510688477],[122.45291140625,48.9467885566407],[122.4519153125,48.959189069336],[122.47271609375,48.9684709907227],[122.48197390625,48.9792150092774],[122.53271609375,49.0084709907227],[122.550142851563,49.0475261665039],[122.58197390625,49.0592150092774],[122.614586210938,49.0690340400391],[122.63197390625,49.0892150092774],[122.66271609375,49.1084709907227],[122.67197390625,49.1192150092774],[122.70271609375,49.1284709907227],[122.741490507813,49.1559618354493],[122.787345,49.1596465278321],[122.802681914063,49.1584142280274],[122.825035429688,49.1941042304688],[122.930113554688,49.2538426948242],[123.04353640625,49.2954952216797]]]]}},{"type":"Feature","properties":{"name":"陈巴尔虎旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.477345,49.8338430000001],[118.464537382813,49.8388430000001],[118.477345,49.8438430000001],[118.477345,49.8338430000001]]],[[[118.477345,49.8338430000001],[118.490152617188,49.8388430000001],[118.477345,49.8438430000001],[118.497735625,49.880263288086],[118.512857695313,49.8780284858399],[118.5260559375,49.8951305366212],[118.564283476563,49.924636762207],[118.622945585938,49.9409712958985],[118.642857695313,49.9380284858399],[118.657974882813,49.9576161933594],[118.728595,49.9471807075196],[118.78170046875,49.9594866157227],[118.84298953125,49.9681993842774],[118.87205203125,49.9796251655274],[118.892345,49.9766265083008],[118.947345,49.984753949707],[118.992379179688,49.9780989814453],[119.062310820313,49.9895870185548],[119.077345,49.9873653388672],[119.099425078125,49.9906282783204],[119.12170046875,50.0194866157227],[119.13599734375,50.0305202460938],[119.156954375,50.0274233222657],[119.184019804688,50.0624935126953],[119.181031523438,50.0827315498047],[119.230806914063,50.0753755927735],[119.248365507813,50.0981218696289],[119.282261992188,50.1119954658204],[119.30170046875,50.1594866157227],[119.33298953125,50.1681993842773],[119.337345,50.173843],[119.437779570313,50.1300148750001],[119.530797148438,50.1263280463867],[119.582535429688,50.1386522651368],[119.650557890625,50.1803011298829],[119.721461210938,50.1774907661133],[119.750250273438,50.2085616279297],[119.76935671875,50.2093190742188],[119.84552859375,50.1911748481446],[119.876871367188,50.1319371772462],[119.845235625,50.1026216865235],[119.897979765625,50.030712506836],[120.035338164063,49.9801116157227],[120.11650515625,49.9768944526367],[120.202535429688,49.9886522651368],[120.246964140625,50.0042241645508],[120.472535429688,50.0186522651367],[120.522154570313,50.0290337348633],[120.57576296875,50.0392684150391],[120.63244265625,50.0591344428712],[120.64834109375,50.0419731879883],[120.743682890625,50.0790999580079],[120.775074492188,50.1129805732422],[120.802154570313,50.0986522651367],[120.832550078125,50.0890288520508],[120.8317590625,50.0690337348633],[120.862535429688,50.0786522651368],[120.905499296875,50.108215253418],[120.942154570313,50.0686522651368],[120.996705351563,50.0474089790039],[121.0323059375,50.0285720039063],[121.047345,50.0338430000001],[121.042398710938,49.9842974067383],[121.001881132813,49.9593056464844],[120.96693484375,49.9101174140625],[120.941881132813,49.8893056464845],[120.928267851563,49.872918012207],[120.89310671875,49.8437071967773],[120.91375125,49.8076549506836],[120.911324492188,49.783843],[120.91345828125,49.7629354072266],[120.902808867188,49.7383803535156],[120.87568484375,49.726617963379],[120.870836210938,49.6790267158203],[120.921881132813,49.6475398994141],[120.912808867188,49.6283803535157],[120.849952421875,49.619017560547],[120.82603640625,49.5902306342774],[120.772515898438,49.5783159614258],[120.745113554688,49.5811092353516],[120.691881132813,49.5693056464844],[120.672808867188,49.5583803535157],[120.597047148438,49.5255242133789],[120.576280546875,49.5005223823243],[120.541793242188,49.4792507148438],[120.543721953125,49.4603575874024],[120.522808867188,49.4483803535157],[120.463057890625,49.4308470893555],[120.461793242188,49.4184197211914],[120.485455351563,49.4081575751954],[120.501881132813,49.3883803535156],[120.533853789063,49.3686592841798],[120.530855742188,49.3392333198243],[120.548267851563,49.3247679877931],[120.561881132813,49.3083803535156],[120.572808867188,49.2993056464844],[120.577345,49.293843],[120.567345,49.293843],[120.550787382813,49.2877626777344],[120.53209109375,49.2892650581055],[120.48271609375,49.2684709907227],[120.45197390625,49.2592150092774],[120.40271609375,49.2384709907227],[120.37271609375,49.2326247382813],[120.392999296875,49.2689733100586],[120.38197390625,49.2784709907227],[120.37271609375,49.2892150092774],[120.36197390625,49.2984709907227],[120.347457304688,49.3153221870118],[120.373951445313,49.3381508613282],[120.36197390625,49.3484709907227],[120.347569609375,49.3651906562501],[120.27271609375,49.3184709907227],[120.25197390625,49.3092150092774],[120.2230871875,49.2930992866211],[120.19197390625,49.2792150092774],[120.171280546875,49.2676692939453],[120.14345828125,49.2999587226563],[120.12197390625,49.3184709907227],[120.11271609375,49.3492150092774],[120.053277617188,49.4004265571289],[120.016929960938,49.4584517646485],[119.872139921875,49.4468175483399],[119.83271609375,49.3584709907227],[119.810396757813,49.3269908881837],[119.782105742188,49.3292638374024],[119.721295195313,49.3069313789063],[119.725235625,49.2578719306641],[119.680543242188,49.2193685126953],[119.573101835938,49.2070513129883],[119.51271609375,49.1918495917969],[119.547345,49.1138430000001],[119.482061796875,49.0891243720704],[119.452906523438,49.0732805610352],[119.414840117188,49.0558095527344],[119.335382109375,48.9668761420899],[119.167261992188,48.9054463935548],[119.065885039063,48.8632796455078],[118.962061796875,48.8391243720704],[118.912628203125,48.8085616279297],[118.867345,48.783843],[118.832628203125,48.7991243720704],[118.723990507813,48.8093193793946],[118.672628203125,48.8491243720703],[118.539307890625,48.9328545356446],[118.543199492188,48.9981954169922],[118.504190703125,49.0613002753906],[118.452061796875,49.1285616279298],[118.402506132813,49.1992955756836],[118.392628203125,49.4062099433594],[118.432628203125,49.4185616279297],[118.442061796875,49.4262099433594],[118.402061796875,49.4385616279298],[118.389737578125,49.5960396552735],[118.371910429688,49.628843],[118.382628203125,49.6485616279297],[118.395523710938,49.7586650825196],[118.367345,49.783843],[118.38341921875,49.8084004951173],[118.381207304688,49.8196050239259],[118.44220828125,49.8318343330079],[118.471724882813,49.8260015083008],[118.477345,49.8338430000001]]]]}},{"type":"Feature","properties":{"name":"额尔古纳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.137345,50.393843],[119.131783476563,50.3808461738282],[119.114620390625,50.3898375678711],[119.137345,50.393843]]],[[[119.187345,50.353843],[119.183922148438,50.3660353828125],[119.175152617188,50.3572661567384],[119.18123171875,50.3417589545898],[119.149400664063,50.3578615546875],[119.157345,50.3738430000001],[119.169537382813,50.3772661567383],[119.160767851563,50.3860353828126],[119.157345,50.3738430000001],[119.147345,50.3738430000001],[119.147345,50.393843],[119.137345,50.393843],[119.142154570313,50.4090337348633],[119.16435671875,50.4286522651367],[119.202437773438,50.4085021186524],[119.222154570313,50.4390337348633],[119.242808867188,50.4487810493165],[119.231881132813,50.4589049506836],[119.252550078125,50.4686592841797],[119.252144804688,50.478843],[119.252550078125,50.4890267158203],[119.231749296875,50.498843],[119.252535429688,50.5086522651367],[119.262154570313,50.5390337348633],[119.272740507813,50.548843],[119.261553984375,50.5592101264649],[119.282550078125,50.5786659980469],[119.281358671875,50.6087810493164],[119.31357546875,50.6189815498047],[119.332345,50.6392394233399],[119.342281523438,50.6285170722657],[119.363648710938,50.6398250556641],[119.382154570313,50.6790337348633],[119.434322539063,50.6889931464844],[119.471773710938,50.7294148994141],[119.4929309375,50.7490200019532],[119.492110625,50.7697286201172],[119.513062773438,50.789140241211],[119.491773710938,50.8293758369141],[119.492550078125,50.8490071845703],[119.4817590625,50.8694011665039],[119.502535429688,50.8886522651367],[119.520850859375,50.908417584961],[119.557823515625,50.9258663154297],[119.592154570313,50.9790337348634],[119.622535429688,50.9986522651367],[119.632154570313,51.0090337348633],[119.672535429688,51.0186524177247],[119.713033476563,51.0465184760743],[119.712139921875,51.0690265632325],[119.732535429688,51.0786524177246],[119.74216921875,51.089048230713],[119.75295046875,51.0886208320313],[119.7517590625,51.118665845459],[119.763316679688,51.1293743110352],[119.762139921875,51.1590201545411],[119.77263796875,51.1687458015138],[119.761783476563,51.1997071052246],[119.762584257813,51.2198244453125],[119.813375273438,51.2178112006837],[119.791954375,51.2489401984864],[119.812940703125,51.258843],[119.811822539063,51.2870607734376],[119.872535429688,51.2986524177247],[119.882154570313,51.3390335822754],[119.936383085938,51.3562027717285],[119.902862578125,51.3872600532227],[119.962535429688,51.3986524177247],[119.972154570313,51.4390335822754],[119.996929960938,51.4507268500977],[119.974654570313,51.4928212714845],[120.043414335938,51.5565280891114],[120.0320715625,51.5888817573243],[120.042535429688,51.6086524177246],[120.055948515625,51.6370680976563],[120.097242460938,51.650141980713],[120.081724882813,51.6794620490723],[120.166187773438,51.6761144233399],[120.222154570313,51.7190335822754],[120.242535429688,51.7286524177246],[120.272174101563,51.7490479255371],[120.28252078125,51.7486377692872],[120.310269804688,51.7785846687012],[120.352535429688,51.7886524177247],[120.362154570313,51.7990335822754],[120.39275515625,51.8134757209473],[120.392139921875,51.829030072754],[120.432535429688,51.8386524177246],[120.472926054688,51.8492353034669],[120.4716809375,51.8806529975586],[120.537530546875,51.8780429816895],[120.552345,51.9094374824219],[120.572476835938,51.9086396003419],[120.651431914063,51.925158612793],[120.662154570313,51.9590335822754],[120.694366484375,51.9798331428223],[120.722120390625,52.0097904182129],[120.67630984375,52.0314110541993],[120.713116484375,52.0794071174317],[120.742564726563,52.0782396674805],[120.742139921875,52.0890128303223],[120.762550078125,52.1186731696777],[120.761773710938,52.138310163086],[120.776221953125,52.1656183601074],[120.762154570313,52.1786524177246],[120.732535429688,52.2108559394531],[120.754371367188,52.2521205878907],[120.702154570313,52.2686524177246],[120.683839140625,52.2884175849609],[120.627174101563,52.3151598334961],[120.612535429688,52.3544941688233],[120.642940703125,52.368843],[120.642139921875,52.3890201545411],[120.652535429688,52.3986523414307],[120.666964140625,52.4142242408448],[120.6829309375,52.4290201545411],[120.681402617188,52.4676133704835],[120.696221953125,52.4956183601075],[120.67810671875,52.5124035621338],[120.72275515625,52.5334757209473],[120.722105742188,52.5498245216064],[120.682877226563,52.548269574707],[120.662535429688,52.5590336585694],[120.629410429688,52.5695207954102],[120.592535429688,52.5890336585693],[120.552154570313,52.5986523414307],[120.512745390625,52.6124649024659],[120.447345,52.6470717597657],[120.387261992188,52.6152790046388],[120.27357546875,52.6197851539307],[120.252535429688,52.6086523414307],[120.221964140625,52.5942242408448],[120.189664335938,52.5771327949219],[120.0464465625,52.5895622993164],[120.0257434375,52.6334258247071],[120.05291140625,52.6995659614258],[120.052061796875,52.7210343146973],[120.032154570313,52.7586523414307],[120.022535429688,52.7798263526611],[120.052345,52.7786447883301],[120.075347929688,52.7795565009766],[120.132550078125,52.8098258186035],[120.181812773438,52.8078731513672],[120.210733671875,52.8390857673341],[120.278741484375,52.8606179023438],[120.292154570313,52.8890336585694],[120.342847929688,52.9011091590577],[120.342144804688,52.918843],[120.342579375,52.9297961402589],[120.401612578125,52.9576551032715],[120.447857695313,53.0075668693238],[120.492535429688,53.0286523795777],[120.515035429688,53.0405586219483],[120.550074492188,53.0783754707032],[120.582535429688,53.0886523795777],[120.629136992188,53.1049867606812],[120.650850859375,53.1284176231079],[120.679327421875,53.1418586326294],[120.692769804688,53.1703388953858],[120.730577421875,53.2053680015259],[120.775279570313,53.2195207572632],[120.812154570313,53.2390336204224],[120.827345,53.243843],[120.830767851563,53.2316507697754],[120.839537382813,53.2404196906739],[120.827345,53.243843],[120.818565703125,53.2683104110413],[120.862628203125,53.2785617423707],[120.882120390625,53.2891544700317],[120.912345,53.2873529411011],[120.977345,53.2912271094971],[121.040592070313,53.2874573112183],[121.079254179688,53.3084653068238],[121.123721953125,53.2774029899292],[121.28384890625,53.2924303413087],[121.326041289063,53.3219009757691],[121.405035429688,53.3171925712281],[121.497345,53.333843],[121.50170046875,53.318199250763],[121.57298953125,53.2894867492371],[121.61170046875,53.258199250763],[121.675924101563,53.2446471763306],[121.66298953125,53.1981992316895],[121.64298953125,53.182761800354],[121.662594023438,53.1675042319947],[121.71170046875,53.1481992316895],[121.755172148438,53.1390264106446],[121.774327421875,53.1072656226807],[121.770699492188,53.0827023673706],[121.8102746875,53.066504857605],[121.770943632813,53.0155469108277],[121.704952421875,52.9885380912476],[121.65341921875,52.9144367194825],[121.603975859375,52.8848651099853],[121.601607695313,52.868843],[121.605523710938,52.8423219276123],[121.567525664063,52.8141488624268],[121.53170046875,52.7994867683106],[121.50298953125,52.7781992316895],[121.47170046875,52.7694867683106],[121.448370390625,52.7392578101807],[121.38306765625,52.6908455634766],[121.298839140625,52.6687358070069],[121.280943632813,52.6455468726807],[121.24170046875,52.6294867683106],[121.22298953125,52.6181992316895],[121.18298953125,52.6018281531983],[121.196676054688,52.5804198432617],[121.222345,52.5766263557129],[121.276124296875,52.5845738959961],[121.31298953125,52.5694867683106],[121.324449492188,52.554636762207],[121.35170046875,52.5381992316895],[121.40298953125,52.5194867683106],[121.412398710938,52.4964926887207],[121.495714140625,52.4789116645508],[121.513883085938,52.4553755164795],[121.54990359375,52.4606990791016],[121.58170046875,52.4481992316895],[121.647999296875,52.4387742591553],[121.673375273438,52.4191870093995],[121.66062625,52.3867488074952],[121.702374296875,52.3545245338135],[121.707345,52.3138430000001],[121.676319609375,52.2959567237549],[121.70197390625,52.2384711433105],[121.729195585938,52.2000800300293],[121.70740359375,52.1610239387207],[121.75197390625,52.1226247382813],[121.722447539063,52.118432996338],[121.701842070313,52.1200885749512],[121.703565703125,52.0986263251954],[121.65197390625,52.0892148566895],[121.64271609375,52.0784711433106],[121.6266028125,52.0645867133789],[121.612022734375,52.0476638007813],[121.570987578125,52.0509609199219],[121.53197390625,52.0392148566895],[121.521373320313,52.02691230542],[121.468707304688,52.0311440253907],[121.44197390625,52.0192148566895],[121.43271609375,52.0084711433105],[121.409722929688,51.9982112861328],[121.39271609375,51.9784711433106],[121.34197390625,51.9692148566895],[121.32271609375,51.9584711433106],[121.301138945313,51.948843],[121.325103789063,51.9381507087403],[121.321178007813,51.8893384528809],[121.376363554688,51.8849042487793],[121.469991484375,51.9053258491211],[121.48271609375,51.8768007636719],[121.611773710938,51.8209714484863],[121.6127746875,51.8085066962891],[121.573136015625,51.7836794257813],[121.571539335938,51.763843],[121.573267851563,51.7423274970703],[121.538219023438,51.7016432929688],[121.48197390625,51.6692148566895],[121.47271609375,51.6584711433106],[121.41177859375,51.6491851020508],[121.424976835938,51.6009487128907],[121.411866484375,51.5286225104981],[121.44197390625,51.4861601997071],[121.43271609375,51.4784711433106],[121.39197390625,51.4692148566895],[121.37271609375,51.4584711433106],[121.3419153125,51.449197309082],[121.344991484375,51.4108992744141],[121.304439726563,51.3882730842285],[121.287301054688,51.3896501899415],[121.25197390625,51.3592148566895],[121.236021757813,51.3407024360352],[121.20271609375,51.3284711433106],[121.0966028125,51.314586713379],[121.0780871875,51.2930992866212],[121.06197390625,51.2792148566895],[121.03271609375,51.2384711433106],[121.013819609375,51.222189862793],[121.011265898438,51.1903998542481],[121.0270715625,51.1473555732423],[121.000831328125,51.1054637885742],[120.98197390625,51.0892148566895],[120.971373320313,51.07691230542],[120.941998320313,51.0792725349122],[120.932345,51.057637708252],[120.907345,51.0596465278321],[120.892105742188,51.0584221625977],[120.86271609375,51.0692148566895],[120.81197390625,51.0784711433106],[120.800875273438,51.1033382392579],[120.732183867188,51.0883545661622],[120.71271609375,51.0992148566895],[120.69197390625,51.1084711433106],[120.68271609375,51.1192148566895],[120.67197390625,51.1284711433105],[120.646436796875,51.1581125617676],[120.59763796875,51.1620333076172],[120.4529309375,51.1472727180176],[120.425689726563,51.1238033271485],[120.411920195313,51.0991213203125],[120.413389921875,51.08085761792],[120.393961210938,51.0583112312012],[120.374361601563,51.0598863959962],[120.36197390625,51.0492148566895],[120.34572390625,51.0303548408203],[120.304288359375,51.0044008613282],[120.28970828125,50.9717235541993],[120.25197390625,50.9392150092774],[120.24271609375,50.9184709907227],[120.222974882813,50.9014641547852],[120.211715117188,50.8762218452149],[120.18271609375,50.8512401557617],[120.233179960938,50.8292150092774],[120.26271609375,50.8384709907227],[120.282066679688,50.8492671943359],[120.301363554688,50.8477165961915],[120.327100859375,50.8620766425781],[120.372515898438,50.858427350586],[120.464410429688,50.8784709907227],[120.482769804688,50.8491301704102],[120.4819153125,50.8385192084961],[120.49271609375,50.8292150092774],[120.502115507813,50.8183065009766],[120.575792265625,50.8384709907227],[120.5709778125,50.8228191352539],[120.52123171875,50.7799587226563],[120.4980871875,50.7530992866211],[120.4818371875,50.7390972114258],[120.494019804688,50.6832360053711],[120.480440703125,50.6336168647461],[120.51271609375,50.6192150092774],[120.526656523438,50.5729158759766],[120.588839140625,50.5679192329102],[120.66271609375,50.5984709907227],[120.688248320313,50.6127165961914],[120.76197390625,50.5286614204102],[120.75271609375,50.5084709907227],[120.692921171875,50.4710185981446],[120.69068484375,50.443180463379],[120.719742460938,50.4094539619141],[120.732584257813,50.4084221625977],[120.782135039063,50.4266194892578],[120.837345,50.433843],[120.867789335938,50.3892882514649],[120.90298953125,50.3794866157227],[120.94170046875,50.3281993842774],[120.98017703125,50.2984993720704],[120.98611453125,50.2583312202148],[120.958013945313,50.2366396308594],[120.98298953125,50.1794866157227],[120.99170046875,50.1481993842774],[121.00298953125,50.1394866157227],[121.01170046875,50.1081993842774],[121.02298953125,50.0994866157227],[121.03170046875,50.0881993842773],[121.06170046875,50.0650432563477],[121.05298953125,50.0381993842774],[121.047345,50.0338430000001],[121.0323059375,50.0285720039063],[120.996705351563,50.0474089790039],[120.942154570313,50.0686522651368],[120.905499296875,50.108215253418],[120.862535429688,50.0786522651368],[120.8317590625,50.0690337348633],[120.832550078125,50.0890288520508],[120.802154570313,50.0986522651367],[120.775074492188,50.1129805732422],[120.743682890625,50.0790999580079],[120.64834109375,50.0419731879883],[120.63244265625,50.0591344428712],[120.57576296875,50.0392684150391],[120.522154570313,50.0290337348633],[120.472535429688,50.0186522651367],[120.246964140625,50.0042241645508],[120.202535429688,49.9886522651368],[120.11650515625,49.9768944526367],[120.035338164063,49.9801116157227],[119.897979765625,50.030712506836],[119.845235625,50.1026216865235],[119.876871367188,50.1319371772462],[119.84552859375,50.1911748481446],[119.76935671875,50.2093190742188],[119.750250273438,50.2085616279297],[119.721461210938,50.1774907661133],[119.650557890625,50.1803011298829],[119.582535429688,50.1386522651368],[119.530797148438,50.1263280463867],[119.437779570313,50.1300148750001],[119.337345,50.173843],[119.323394804688,50.1838430000001],[119.344444609375,50.1989302802734],[119.308780546875,50.2196050239258],[119.33369265625,50.2588430000001],[119.320787382813,50.2791701484375],[119.377711210938,50.3179161811524],[119.350025664063,50.3285951972657],[119.370240507813,50.3430846381836],[119.324288359375,50.3608065009766],[119.29216921875,50.3476064277344],[119.267345,50.363366010254],[119.235162382813,50.3429347968751],[119.2182434375,50.3665404487305],[119.187345,50.353843]]]]}},{"type":"Feature","properties":{"name":"鄂伦春自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.327345,49.5338430000001],[124.339537382813,49.5304198432617],[124.330767851563,49.5216506171876],[124.327345,49.5338430000001]]],[[[125.437345,50.2238430000001],[125.437345,50.233843],[125.4605871875,50.228843],[125.437345,50.2238430000001]]],[[[126.007345,51.0638430000001],[126.010767851563,51.0760352302247],[126.019537382813,51.0672663093262],[126.007345,51.0638430000001]]],[[[126.007345,51.0638430000001],[126.01142703125,51.0579273200684],[126.048878203125,51.0365526557618],[126.025616484375,51.0008309150391],[126.04142703125,50.9779274726563],[126.06498171875,50.9691149116211],[126.045513945313,50.9556743598634],[126.037345,50.923843],[126.027345,50.923843],[126.022345,50.9366506171875],[126.017345,50.923843],[126.012628203125,50.9085616279297],[125.99197390625,50.890107038086],[125.99322390625,50.8691243720703],[125.972061796875,50.8785616279297],[125.954195585938,50.8985616279297],[125.9420325,50.8690532661133],[125.9426575,50.8585720039063],[125.9120325,50.8491139960938],[125.912974882813,50.8333104682618],[125.882061796875,50.8191243720704],[125.864097929688,50.799016034668],[125.8314465625,50.7889333320313],[125.833502226563,50.7544582343751],[125.779654570313,50.7737779975586],[125.751597929688,50.7487062812501],[125.7826575,50.7391139960938],[125.781451445313,50.7188430000001],[125.822061796875,50.7002031684571],[125.812628203125,50.6885616279297],[125.791451445313,50.6788430000001],[125.792642851563,50.658843],[125.791495390625,50.6396056342774],[125.811178007813,50.6033824897461],[125.814444609375,50.548576581543],[125.772061796875,50.5291243720703],[125.747877226563,50.5020549750977],[125.728995390625,50.5231856513672],[125.682061796875,50.4891243720703],[125.672628203125,50.4785616279297],[125.650260039063,50.4682955146485],[125.631588164063,50.4473979926758],[125.583101835938,50.4502880073243],[125.57259890625,50.4385298896485],[125.55611453125,50.4395125556641],[125.577984648438,50.3992604804688],[125.512867460938,50.4226253486328],[125.5120325,50.4086174750977],[125.523194609375,50.3880803657227],[125.5220325,50.3685903144532],[125.532940703125,50.358843],[125.51115359375,50.3393755317383],[125.523043242188,50.3287526679688],[125.488853789063,50.31306175],[125.462061796875,50.2891243720703],[125.452628203125,50.2685616279297],[125.4420325,50.259095685547],[125.442652617188,50.2486418891602],[125.437345,50.233843],[125.424537382813,50.228843],[125.437345,50.2238430000001],[125.431832304688,50.2029412055665],[125.381519804688,50.1896678901368],[125.370904570313,50.1748580146485],[125.329810820313,50.1590087104492],[125.365284453125,50.1384419990235],[125.321519804688,50.1296678901367],[125.312345,50.1168669868165],[125.297183867188,50.1380181098633],[125.270391875,50.1237355781251],[125.273472929688,50.1081349921875],[125.249381132813,50.098843],[125.273472929688,50.0895510078126],[125.26968875,50.070390241211],[125.331519804688,50.0579940009766],[125.307398710938,50.0448802924805],[125.254610625,50.0553115058594],[125.2512121875,50.0380998969727],[125.291519804688,50.0274651313477],[125.279605742188,49.9997158027344],[125.241519804688,49.9896678901367],[125.228761015625,49.956587140625],[125.173170195313,49.9675722480469],[125.18326296875,49.9439360786133],[125.2139465625,49.9219445014649],[125.211261015625,49.9083571601563],[125.238917265625,49.8721388984375],[125.221236601563,49.8594634223633],[125.225401640625,49.838378522461],[125.171519804688,49.8296678901367],[125.167345,49.823843],[125.152154570313,49.8190337348633],[125.080235625,49.7938271308594],[124.968648710938,49.8924700141602],[124.934918242188,49.8746218085938],[124.972154570313,49.8401222968751],[124.899595976563,49.8290337348633],[124.841480742188,49.8494033027344],[124.816436796875,49.848410565918],[124.737374296875,49.7630815864258],[124.7526965625,49.7488851142579],[124.732139921875,49.7190129829102],[124.733292265625,49.689939496582],[124.641329375,49.6789348579102],[124.617725859375,49.6534618354493],[124.528468046875,49.6364205146485],[124.462345,49.639041059082],[124.452345,49.638644940918],[124.404351835938,49.6405471015625],[124.368482695313,49.6158632636719],[124.331851835938,49.5763271308594],[124.332906523438,49.5497069526368],[124.327345,49.5338430000001],[124.29197390625,49.5192150092774],[124.266641875,49.505080487793],[124.333482695313,49.3979894233399],[124.331944609375,49.3788430000001],[124.332760039063,49.368671491211],[124.321124296875,49.3153252387695],[124.195982695313,49.3253807807618],[124.090206328125,49.3062026191407],[124.025103789063,49.311433637207],[123.980225859375,49.2796157050782],[123.91197390625,49.2692150092774],[123.895494414063,49.2500859809571],[123.921295195313,49.203843],[123.89861453125,49.1631951118164],[123.810474882813,49.1471175361328],[123.812745390625,49.1188430000001],[123.811539335938,49.103843],[123.8127746875,49.0885192084961],[123.79123171875,49.0699587226563],[123.77271609375,49.0484709907227],[123.76197390625,49.0392150092774],[123.750269804688,49.0256325507813],[123.63146609375,49.0440630317383],[123.567345,49.0738430000001],[123.548990507813,49.0805825019532],[123.522022734375,49.0784151435548],[123.512667265625,49.0892708564453],[123.502345,49.0884413886719],[123.487345,49.089646527832],[123.472345,49.0884413886719],[123.459742460938,49.0894539619141],[123.430162382813,49.1237850166016],[123.402345,49.1082637763672],[123.380103789063,49.1206719184571],[123.343902617188,49.1177626777344],[123.306641875,49.1314461494141],[123.28056765625,49.1617107368164],[123.284361601563,49.2089153266602],[123.23197390625,49.2184709907227],[123.22271609375,49.2492150092774],[123.21197390625,49.2584709907227],[123.202691679688,49.2792726875],[123.177345,49.2772359443359],[123.152174101563,49.2792586494141],[123.094991484375,49.2667864204101],[123.04353640625,49.2954952216797],[122.930113554688,49.2538426948242],[122.825035429688,49.1941042304688],[122.802681914063,49.1584142280274],[122.787345,49.1596465278321],[122.741490507813,49.1559618354493],[122.70271609375,49.1284709907227],[122.67197390625,49.1192150092774],[122.66271609375,49.1084709907227],[122.63197390625,49.0892150092774],[122.614586210938,49.0690340400391],[122.58197390625,49.0592150092774],[122.550142851563,49.0475261665039],[122.53271609375,49.0084709907227],[122.48197390625,48.9792150092774],[122.47271609375,48.9684709907227],[122.4519153125,48.959189069336],[122.45291140625,48.9467885566407],[122.406090117188,48.9505510688477],[122.36271609375,48.9464458442383],[122.385025664063,48.9272243476562],[122.381944609375,48.8888430000001],[122.382745390625,48.878843],[122.381339140625,48.8613085151367],[122.30197390625,48.8492150092774],[122.28271609375,48.8384709907227],[122.197037382813,48.8272606635742],[122.147550078125,48.831237104004],[122.077345,48.863843],[122.082652617188,48.8786418891602],[122.081861601563,48.8919368720703],[122.052061796875,48.9185616279297],[122.041383085938,48.9305153632812],[122.002061796875,48.9485616279297],[121.992628203125,48.9906920600587],[122.012628203125,49.0085616279297],[122.032061796875,49.0346016669922],[121.972061796875,49.0485616279297],[121.952628203125,49.0547927070313],[121.997193632813,49.0752483344727],[122.022061796875,49.1362099433594],[121.9820325,49.1485720039062],[121.9826575,49.1591036201172],[121.952061796875,49.1785616279297],[121.942628203125,49.2091243720704],[121.931358671875,49.2405266547852],[121.892061796875,49.2585616279297],[121.870440703125,49.2703124213868],[121.843668242188,49.3286470771485],[121.821451445313,49.3388430000001],[121.8226575,49.359080121582],[121.802061796875,49.3885616279297],[121.771685820313,49.4363268256837],[121.731881132813,49.4486177802735],[121.7438684375,49.4820302558594],[121.802345,49.4785448432618],[121.852345,49.4815251899415],[121.916886015625,49.4776784492188],[121.952120390625,49.4585314155274],[121.976002226563,49.4599550605469],[122.019307890625,49.5084218574219],[122.059117460938,49.5185616279297],[122.102345,49.4883653999024],[122.132061796875,49.5091243720704],[122.152628203125,49.5185616279297],[122.162061796875,49.5291243720703],[122.203648710938,49.5482103706055],[122.1920325,49.5585903144531],[122.193697539063,49.5865410590821],[122.232628203125,49.5985616279297],[122.246812773438,49.629470746582],[122.263609648438,49.6284697700196],[122.282061796875,49.6491243720703],[122.3026575,49.658576581543],[122.302047148438,49.668843],[122.302764921875,49.6809041572266],[122.358140898438,49.6776033759766],[122.417662382813,49.6903203559571],[122.401060820313,49.7523046088867],[122.405069609375,49.8195745063477],[122.4226184375,49.8185289741211],[122.437237578125,49.8658763862305],[122.4637903125,49.8896013618164],[122.461749296875,49.923843],[122.4626575,49.9391036201172],[122.428682890625,49.9607109809571],[122.389039335938,49.9583476997071],[122.352628203125,49.9385616279297],[122.330494414063,49.9291243720704],[122.2866809375,49.9781612373047],[122.222628203125,49.9385616279297],[122.202061796875,49.9291243720704],[122.142345,49.8801262641602],[122.082589140625,49.9291555],[122.072120390625,49.9285314155274],[122.02603640625,49.953572309082],[122.00468875,49.9296758247071],[121.985172148438,49.9191243720703],[121.853487578125,49.9425255561524],[121.887906523438,49.9732805610352],[121.902061796875,49.9891243720703],[121.943648710938,50.0082103706055],[121.924254179688,50.0255397773438],[121.959478789063,50.0417076850586],[121.972061796875,50.0691243720703],[121.983194609375,50.0896056342773],[121.98047,50.1352944160156],[121.870264921875,50.158947675293],[121.873238554688,50.208843],[121.841783476563,50.2232805610352],[121.805206328125,50.2431560493165],[121.792628203125,50.2647927070313],[121.832974882813,50.2833104682617],[121.8320325,50.2990956855469],[121.851798125,50.3167562080078],[121.870533476563,50.3575728583985],[121.912218046875,50.3284529853516],[121.952061796875,50.3391243720703],[122.004195585938,50.3485616279298],[122.022061796875,50.3285616279297],[122.052628203125,50.3191243720704],[122.0823059375,50.3084755683594],[122.1380090625,50.3233950019532],[122.156783476563,50.3444054389649],[122.175142851563,50.3608116889648],[122.217345,50.3738430000001],[122.220767851563,50.3616506171875],[122.229537382813,50.3704198432617],[122.217345,50.3738430000001],[122.229595976563,50.3915898872071],[122.276866484375,50.4242244697266],[122.250347929688,50.4649422431641],[122.254932890625,50.4853908515625],[122.2169153125,50.4996169257813],[122.228897734375,50.5530651069336],[122.189386015625,50.5787932563477],[122.126090117188,50.5887685371094],[122.14142703125,50.6297585273438],[122.16170046875,50.6437535834962],[122.176607695313,50.6835942817383],[122.20142703125,50.6997585273438],[122.233819609375,50.7080706000977],[122.253565703125,50.7383962226563],[122.250943632813,50.7500896430665],[122.27142703125,50.7797585273438],[122.277345,50.783843],[122.308814726563,50.7908486152344],[122.441397734375,50.776228559082],[122.503306914063,50.7943962836915],[122.5003528125,50.8233870673828],[122.534937773438,50.8650215888672],[122.590885039063,50.8995317817383],[122.592901640625,50.9192851997071],[122.543736601563,50.9301866889649],[122.5418371875,50.9488430000001],[122.544620390625,50.9761440253907],[122.522808867188,51.0142253852539],[122.544288359375,51.0312082648926],[122.587345,51.043843],[122.590767851563,51.0316507697754],[122.599537382813,51.0404196906739],[122.587345,51.043843],[122.604879179688,51.0657364631348],[122.665455351563,51.078843],[122.659405546875,51.127484204834],[122.678453398438,51.1427367377931],[122.7035559375,51.1740895820313],[122.697374296875,51.2238217902832],[122.632310820313,51.2157289863281],[122.622896757813,51.2622740913086],[122.658936796875,51.2911319709473],[122.626578398438,51.3354279304199],[122.682896757813,51.3782898688965],[122.691793242188,51.3893961311036],[122.711187773438,51.4049274421387],[122.7537121875,51.42284690625],[122.750533476563,51.4483901191407],[122.792447539063,51.4819513679199],[122.857345,51.4738430000001],[122.872154570313,51.4486524177247],[122.892550078125,51.4390265632324],[122.891729765625,51.4182921577149],[122.953350859375,51.3892102790528],[122.951788359375,51.3498384833985],[122.978214140625,51.3213211799317],[123.002877226563,51.3082695747071],[123.06451296875,51.3107125068359],[123.122213164063,51.2986396003419],[123.141812773438,51.299416425293],[123.162154570313,51.2886524177247],[123.212535429688,51.2790335822755],[123.230596953125,51.259542005127],[123.272408476563,51.2485855842285],[123.309342070313,51.2681294990235],[123.337345,51.2692394233399],[123.3742590625,51.2677761054688],[123.442535429688,51.2786524177246],[123.464273710938,51.2901538825684],[123.536632109375,51.2872856879884],[123.572535429688,51.2986524177247],[123.582154570313,51.3090335822754],[123.63630984375,51.3219335151368],[123.652154570313,51.3390335822754],[123.667725859375,51.3534616828613],[123.703780546875,51.3923743415528],[123.79218875,51.3586386848145],[123.831124296875,51.3601819587403],[123.900186796875,51.3039766669923],[123.978585234375,51.3203792548829],[124.022345,51.3186447883302],[124.037345,51.3192394233398],[124.061969023438,51.3182633186036],[124.095987578125,51.3416713691406],[124.172496367188,51.3386388374024],[124.208253203125,51.3511713386231],[124.242535429688,51.3290335822754],[124.3012903125,51.2886029792481],[124.32216921875,51.289430463379],[124.341065703125,51.2690335822754],[124.408482695313,51.2816324592286],[124.425675078125,51.3538164497071],[124.472535429688,51.3686524177247],[124.497867460938,51.382055890625],[124.5608996875,51.3670416999512],[124.619146757813,51.3269611335449],[124.726851835938,51.3441185737305],[124.742535429688,51.3586524177246],[124.75658328125,51.3884163642578],[124.788258085938,51.3896718574219],[124.872081328125,51.3771721625977],[124.872545195313,51.388843],[124.872110625,51.3997286201172],[124.892535429688,51.4186524177246],[124.902154570313,51.4290335822754],[124.934932890625,51.4445030952149],[124.912535429688,51.4868300605469],[124.922154570313,51.4990335822754],[124.972535429688,51.5086524177246],[124.982154570313,51.5190335822754],[125.061392851563,51.5298630500489],[125.062550078125,51.5589835334473],[125.050357695313,51.6055091071778],[125.099483671875,51.6585314155274],[125.122345,51.659437482422],[125.135631132813,51.6312891364747],[125.207345,51.6284465766602],[125.232345,51.6294374824219],[125.252345,51.6286447883301],[125.281812773438,51.6298128486329],[125.293228789063,51.6174907661134],[125.357345,51.6200321174316],[125.375362578125,51.5818585944825],[125.418389921875,51.5615502143555],[125.561431914063,51.4513684821777],[125.572154570313,51.4286524177246],[125.592916289063,51.4094148994141],[125.616964140625,51.3834616828614],[125.632535429688,51.3690335822754],[125.649654570313,51.3505586982422],[125.672154570313,51.3386524177247],[125.692535429688,51.3290335822754],[125.725518828125,51.2840674567872],[125.753316679688,51.2583116889649],[125.752139921875,51.2286544013672],[125.8388684375,51.2168013740235],[125.852154570313,51.1886524177246],[125.8726965625,51.1588008857422],[125.855284453125,51.1426702094727],[125.9134778125,51.1288091254884],[125.93224734375,51.108551557129],[125.981866484375,51.1259423041993],[125.982740507813,51.103843],[125.981754179688,51.0788887763673],[126.007345,51.0638430000001]]]]}},{"type":"Feature","properties":{"name":"鄂温克族自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.63806765625,49.1717024970704],[120.662550078125,49.1490200019532],[120.661788359375,49.1298384833985],[120.680850859375,49.1092684150391],[120.702940703125,49.098843],[120.702139921875,49.0786730170899],[120.722550078125,49.0490129829102],[120.722139921875,49.0386659980469],[120.736221953125,49.0256182075196],[120.716978789063,48.9892537666016],[120.737345,48.9884465766602],[120.76134890625,48.9893981147461],[120.777725859375,48.9742241645508],[120.792154570313,48.9586522651368],[120.813326445313,48.9486592841798],[120.811363554688,48.8990267158204],[120.838717070313,48.8861165595704],[120.822535429688,48.8686522651367],[120.783277617188,48.8322795844727],[120.832535429688,48.8090337348633],[120.842154570313,48.7886522651367],[120.877740507813,48.7773857856446],[120.841627226563,48.709140241211],[120.862154570313,48.6901213813477],[120.852535429688,48.6686522651368],[120.830875273438,48.6277211738282],[120.842154570313,48.5686522651367],[120.862550078125,48.5190001655274],[120.861261015625,48.4864903999024],[120.94781375,48.4561537910157],[120.981031523438,48.4737313056641],[121.09025515625,48.4574446845703],[121.115621367188,48.4708687568359],[121.136964140625,48.4034615302735],[121.156920195313,48.384970319336],[121.114615507813,48.3393105292969],[121.059000273438,48.3217024970704],[121.013389921875,48.3001772285157],[121.010640898438,48.2308516669922],[121.042154570313,48.1850551582032],[120.982535429688,48.1586525703125],[120.92838015625,48.1457527900391],[120.893585234375,48.1081990791016],[120.812642851563,48.1114076972657],[120.812144804688,48.098843],[120.812550078125,48.0887026191407],[120.8001965625,48.0415590644532],[120.81216921875,48.0286379218751],[120.8305871875,48.0293679023437],[120.85658328125,48.0052822089844],[120.816485625,47.9863576484375],[120.851314726563,47.9487673164063],[120.931046171875,47.937870709961],[120.905968046875,47.8847335029297],[120.8672278125,47.84292503125],[120.821041289063,47.8075075507813],[120.782345,47.8090413642578],[120.742345,47.8074556708984],[120.702178984375,47.8090474677735],[120.682535429688,47.7986525703125],[120.646451445313,47.7872280097657],[120.662154570313,47.6886525703125],[120.682535429688,47.6790334296875],[120.687345,47.673843],[120.674971953125,47.6662178779298],[120.661539335938,47.6444216132813],[120.642345,47.6504006171875],[120.63213015625,47.6472188544922],[120.5959778125,47.6634145332032],[120.564718046875,47.6414681220703],[120.531158476563,47.6300307441406],[120.523531523438,47.5976552558594],[120.501158476563,47.5700307441407],[120.497345,47.5538430000001],[120.46197390625,47.5584712958985],[120.405894804688,47.5707021308594],[120.37271609375,47.5892147041016],[120.32197390625,47.6084712958985],[120.31271609375,47.6192147041016],[120.289722929688,47.6294747138672],[120.269185820313,47.6533150458985],[120.217345,47.6238430000001],[120.21271609375,47.6392147041016],[120.179752226563,47.6676168037109],[120.130777617188,47.6787429023438],[120.1080871875,47.7295870185547],[120.09197390625,47.7584712958985],[120.07521609375,47.7960225654297],[120.04197390625,47.8384712958985],[120.008756132813,47.8915010810547],[119.951593046875,47.9644930244141],[119.952764921875,47.9790956855469],[119.931246367188,48.0301924873047],[119.933238554688,48.054941022461],[119.852022734375,48.0484151435548],[119.84271609375,48.0592147041016],[119.819034453125,48.0697823310547],[119.777345,48.0664327216797],[119.742345,48.0692446113281],[119.732345,48.0684413886719],[119.702345,48.0708516669922],[119.67232546875,48.0684395576172],[119.55236453125,48.0792464423829],[119.537345,48.0780397773438],[119.522345,48.0792446113282],[119.512345,48.0784413886719],[119.492081328125,48.0800691962891],[119.394488554688,48.1159084296876],[119.35271609375,48.1392147041016],[119.277467070313,48.1596974921876],[119.250631132813,48.2025411201172],[119.252877226563,48.2304616523438],[119.23197390625,48.2484712958985],[119.220455351563,48.2618422675781],[119.130826445313,48.3179787421875],[119.06197390625,48.3284712958985],[119.03271609375,48.3492147041016],[119.01197390625,48.3584712958985],[118.98093875,48.3757857490234],[118.874986601563,48.4587654853516],[118.902769804688,48.5085646796876],[118.9019153125,48.519166791504],[118.923746367188,48.5379723334961],[118.88197390625,48.5884709907227],[118.8680871875,48.619586713379],[118.821470976563,48.6487841010743],[118.834273710938,48.6598140693359],[118.831944609375,48.6888430000001],[118.833629179688,48.709814069336],[118.811690703125,48.7287126899414],[118.824312773438,48.7513353706055],[118.86271609375,48.7684709907227],[118.867345,48.783843],[118.912628203125,48.8085616279297],[118.962061796875,48.8391243720704],[119.065885039063,48.8632796455078],[119.167261992188,48.9054463935548],[119.335382109375,48.9668761420899],[119.414840117188,49.0558095527344],[119.452906523438,49.0732805610352],[119.482061796875,49.0891243720704],[119.547345,49.1138430000001],[119.620123320313,49.1274272895508],[119.735103789063,49.179572675293],[119.763775664063,49.177863690918],[119.761749296875,49.143843],[119.762642851563,49.128843],[119.7620325,49.1185903144532],[119.7726575,49.1090956855469],[119.771886015625,49.0961333442383],[119.835987578125,49.0999541450196],[119.892061796875,49.1391243720704],[119.961588164063,49.1605922675781],[120.092535429688,49.143180463379],[120.152061796875,49.1591243720703],[120.198629179688,49.1699584174805],[120.227345,49.1682469916993],[120.267345,49.1706310249024],[120.302345,49.1685448432618],[120.349346953125,49.1713466621094],[120.401500273438,49.1996868110352],[120.482628203125,49.2185616279297],[120.511783476563,49.2344054389649],[120.542628203125,49.2485616279298],[120.559034453125,49.2669237495117],[120.567345,49.293843],[120.577345,49.293843],[120.592095976563,49.2801772285156],[120.592550078125,49.2686659980469],[120.581949492188,49.258843],[120.592550078125,49.2490200019532],[120.590650664063,49.2010692573242],[120.602154570313,49.1886522651368],[120.63806765625,49.1717024970704]]]]}},{"type":"Feature","properties":{"name":"根河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.587345,51.043843],[122.599537382813,51.0404196906739],[122.590767851563,51.0316507697754],[122.587345,51.043843]]],[[[122.587345,51.043843],[122.544288359375,51.0312082648926],[122.522808867188,51.0142253852539],[122.544620390625,50.9761440253907],[122.5418371875,50.9488430000001],[122.543736601563,50.9301866889649],[122.592901640625,50.9192851997071],[122.590885039063,50.8995317817383],[122.534937773438,50.8650215888672],[122.5003528125,50.8233870673828],[122.503306914063,50.7943962836915],[122.441397734375,50.776228559082],[122.308814726563,50.7908486152344],[122.277345,50.783843],[122.27271609375,50.8392150092774],[122.25193484375,50.8571211982422],[122.196939726563,50.8696141791992],[122.17562625,50.8679015327149],[122.102345,50.8409899116212],[122.015220976563,50.8729845405274],[122.00271609375,50.8584709907227],[121.9866028125,50.8445867133789],[121.97271609375,50.8284709907227],[121.94197390625,50.8192150092773],[121.91271609375,50.7984709907227],[121.878565703125,50.7892150092774],[121.838311796875,50.8116732001954],[121.752589140625,50.7784215522462],[121.742105742188,50.7792638374024],[121.69818484375,50.763134381836],[121.6755090625,50.7123232246094],[121.63197390625,50.6992150092774],[121.61271609375,50.6884709907227],[121.504332304688,50.671955487793],[121.488253203125,50.6532915473633],[121.47271609375,50.6184709907227],[121.460719023438,50.5969649482422],[121.427345,50.5996465278321],[121.345279570313,50.5930525947266],[121.33271609375,50.5784709907227],[121.238795195313,50.557134015625],[121.22271609375,50.5384709907227],[121.176939726563,50.5280718208008],[121.162345,50.5292446113282],[121.149742460938,50.5282320380859],[121.1280871875,50.5030992866211],[121.076339140625,50.4875188422852],[121.01982546875,50.4998458076172],[120.964742460938,50.4954198432618],[120.948038359375,50.4579839301758],[120.932066679688,50.459267194336],[120.910377226563,50.4471645332031],[120.837345,50.433843],[120.782135039063,50.4266194892578],[120.732584257813,50.4084221625977],[120.719742460938,50.4094539619141],[120.69068484375,50.443180463379],[120.692921171875,50.4710185981446],[120.75271609375,50.5084709907227],[120.76197390625,50.5286614204102],[120.688248320313,50.6127165961914],[120.66271609375,50.5984709907227],[120.588839140625,50.5679192329102],[120.526656523438,50.5729158759766],[120.51271609375,50.6192150092774],[120.480440703125,50.6336168647461],[120.494019804688,50.6832360053711],[120.4818371875,50.7390972114258],[120.4980871875,50.7530992866211],[120.52123171875,50.7799587226563],[120.5709778125,50.8228191352539],[120.575792265625,50.8384709907227],[120.502115507813,50.8183065009766],[120.49271609375,50.8292150092774],[120.4819153125,50.8385192084961],[120.482769804688,50.8491301704102],[120.464410429688,50.8784709907227],[120.372515898438,50.858427350586],[120.327100859375,50.8620766425781],[120.301363554688,50.8477165961915],[120.282066679688,50.8492671943359],[120.26271609375,50.8384709907227],[120.233179960938,50.8292150092774],[120.18271609375,50.8512401557617],[120.211715117188,50.8762218452149],[120.222974882813,50.9014641547852],[120.24271609375,50.9184709907227],[120.25197390625,50.9392150092774],[120.28970828125,50.9717235541993],[120.304288359375,51.0044008613282],[120.34572390625,51.0303548408203],[120.36197390625,51.0492148566895],[120.374361601563,51.0598863959962],[120.393961210938,51.0583112312012],[120.413389921875,51.08085761792],[120.411920195313,51.0991213203125],[120.425689726563,51.1238033271485],[120.4529309375,51.1472727180176],[120.59763796875,51.1620333076172],[120.646436796875,51.1581125617676],[120.67197390625,51.1284711433105],[120.68271609375,51.1192148566895],[120.69197390625,51.1084711433106],[120.71271609375,51.0992148566895],[120.732183867188,51.0883545661622],[120.800875273438,51.1033382392579],[120.81197390625,51.0784711433106],[120.86271609375,51.0692148566895],[120.892105742188,51.0584221625977],[120.907345,51.0596465278321],[120.932345,51.057637708252],[120.941998320313,51.0792725349122],[120.971373320313,51.07691230542],[120.98197390625,51.0892148566895],[121.000831328125,51.1054637885742],[121.0270715625,51.1473555732423],[121.011265898438,51.1903998542481],[121.013819609375,51.222189862793],[121.03271609375,51.2384711433106],[121.06197390625,51.2792148566895],[121.0780871875,51.2930992866212],[121.0966028125,51.314586713379],[121.20271609375,51.3284711433106],[121.236021757813,51.3407024360352],[121.25197390625,51.3592148566895],[121.287301054688,51.3896501899415],[121.304439726563,51.3882730842285],[121.344991484375,51.4108992744141],[121.3419153125,51.449197309082],[121.37271609375,51.4584711433106],[121.39197390625,51.4692148566895],[121.43271609375,51.4784711433106],[121.44197390625,51.4861601997071],[121.411866484375,51.5286225104981],[121.424976835938,51.6009487128907],[121.41177859375,51.6491851020508],[121.47271609375,51.6584711433106],[121.48197390625,51.6692148566895],[121.538219023438,51.7016432929688],[121.573267851563,51.7423274970703],[121.571539335938,51.763843],[121.573136015625,51.7836794257813],[121.6127746875,51.8085066962891],[121.611773710938,51.8209714484863],[121.48271609375,51.8768007636719],[121.469991484375,51.9053258491211],[121.376363554688,51.8849042487793],[121.321178007813,51.8893384528809],[121.325103789063,51.9381507087403],[121.301138945313,51.948843],[121.32271609375,51.9584711433106],[121.34197390625,51.9692148566895],[121.39271609375,51.9784711433106],[121.409722929688,51.9982112861328],[121.43271609375,52.0084711433105],[121.44197390625,52.0192148566895],[121.468707304688,52.0311440253907],[121.521373320313,52.02691230542],[121.53197390625,52.0392148566895],[121.570987578125,52.0509609199219],[121.612022734375,52.0476638007813],[121.6266028125,52.0645867133789],[121.64271609375,52.0784711433106],[121.65197390625,52.0892148566895],[121.703565703125,52.0986263251954],[121.701842070313,52.1200885749512],[121.722447539063,52.118432996338],[121.75197390625,52.1226247382813],[121.70740359375,52.1610239387207],[121.729195585938,52.2000800300293],[121.70197390625,52.2384711433105],[121.676319609375,52.2959567237549],[121.707345,52.3138430000001],[121.732183867188,52.3082009864502],[121.742564726563,52.3094919562988],[121.847955351563,52.2793961311036],[121.932896757813,52.2882898688965],[121.968472929688,52.3327148414307],[122.034605742188,52.3856726051026],[122.031656523438,52.4093671394044],[122.072896757813,52.4182898688965],[122.081793242188,52.4393961311035],[122.106041289063,52.4496146369629],[122.122896757813,52.4782898688965],[122.139752226563,52.5182898688965],[122.15724734375,52.5064543891602],[122.186261015625,52.4702217078858],[122.202345,52.4682210517578],[122.217345,52.4700868201905],[122.247345,52.4663552833253],[122.306846953125,52.473756482666],[122.327720976563,52.4242190528565],[122.362896757813,52.4093961311035],[122.371793242188,52.3982898688966],[122.392896757813,52.3893961311036],[122.405347929688,52.3738508582764],[122.433897734375,52.3906345344239],[122.456236601563,52.362736737793],[122.473023710938,52.3492958808594],[122.466080351563,52.293487317627],[122.562896757813,52.2793961311036],[122.591964140625,52.2623114753418],[122.656187773438,52.2806513190919],[122.682896757813,52.2693961311036],[122.696422148438,52.2525087714845],[122.75896609375,52.2602887702637],[122.787345,52.253843],[122.778453398438,52.242736737793],[122.760533476563,52.2283901191407],[122.766534453125,52.1801650214844],[122.717437773438,52.1443004584962],[122.630440703125,52.1291608405762],[122.635064726563,52.0919759345703],[122.62127078125,52.0685094428712],[122.642896757813,52.0593961311035],[122.665709257813,51.9796054816895],[122.716783476563,51.9685555244141],[122.723023710938,51.9183901191406],[122.703448515625,51.9027149177246],[122.701666289063,51.8883901191407],[122.712896757813,51.8793961311035],[122.734766875,51.8202371955567],[122.7641028125,51.770337140625],[122.747354765625,51.7418445563965],[122.762896757813,51.7293961311035],[122.771793242188,51.6882898688965],[122.788453398438,51.6749492622071],[122.801793242188,51.6582898688965],[122.812896757813,51.6493961311035],[122.821793242188,51.6282898688965],[122.85107546875,51.60483909375],[122.824405546875,51.5834815192872],[122.880284453125,51.5442044807129],[122.854859648438,51.523843],[122.881793242188,51.5022740913086],[122.872896757813,51.4882898688965],[122.861793242188,51.4793961311036],[122.857345,51.4738430000001],[122.792447539063,51.4819513679199],[122.750533476563,51.4483901191407],[122.7537121875,51.42284690625],[122.711187773438,51.4049274421387],[122.691793242188,51.3893961311036],[122.682896757813,51.3782898688965],[122.626578398438,51.3354279304199],[122.658936796875,51.2911319709473],[122.622896757813,51.2622740913086],[122.632310820313,51.2157289863281],[122.697374296875,51.2238217902832],[122.7035559375,51.1740895820313],[122.678453398438,51.1427367377931],[122.659405546875,51.127484204834],[122.665455351563,51.078843],[122.604879179688,51.0657364631348],[122.587345,51.043843]]]]}},{"type":"Feature","properties":{"name":"海拉尔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.11271609375,49.3492150092774],[120.12197390625,49.3184709907227],[120.14345828125,49.2999587226563],[120.171280546875,49.2676692939453],[120.19197390625,49.2792150092774],[120.2230871875,49.2930992866211],[120.25197390625,49.3092150092774],[120.27271609375,49.3184709907227],[120.347569609375,49.3651906562501],[120.36197390625,49.3484709907227],[120.373951445313,49.3381508613282],[120.347457304688,49.3153221870118],[120.36197390625,49.2984709907227],[120.37271609375,49.2892150092774],[120.38197390625,49.2784709907227],[120.392999296875,49.2689733100586],[120.37271609375,49.2326247382813],[120.40271609375,49.2384709907227],[120.45197390625,49.2592150092774],[120.48271609375,49.2684709907227],[120.53209109375,49.2892650581055],[120.550787382813,49.2877626777344],[120.567345,49.293843],[120.559034453125,49.2669237495117],[120.542628203125,49.2485616279298],[120.511783476563,49.2344054389649],[120.482628203125,49.2185616279297],[120.401500273438,49.1996868110352],[120.349346953125,49.1713466621094],[120.302345,49.1685448432618],[120.267345,49.1706310249024],[120.227345,49.1682469916993],[120.198629179688,49.1699584174805],[120.152061796875,49.1591243720703],[120.092535429688,49.143180463379],[119.961588164063,49.1605922675781],[119.892061796875,49.1391243720704],[119.835987578125,49.0999541450196],[119.771886015625,49.0961333442383],[119.7726575,49.1090956855469],[119.7620325,49.1185903144532],[119.762642851563,49.128843],[119.761749296875,49.143843],[119.763775664063,49.177863690918],[119.735103789063,49.179572675293],[119.620123320313,49.1274272895508],[119.547345,49.1138430000001],[119.51271609375,49.1918495917969],[119.573101835938,49.2070513129883],[119.680543242188,49.2193685126953],[119.725235625,49.2578719306641],[119.721295195313,49.3069313789063],[119.782105742188,49.3292638374024],[119.810396757813,49.3269908881837],[119.83271609375,49.3584709907227],[119.872139921875,49.4468175483399],[120.016929960938,49.4584517646485],[120.053277617188,49.4004265571289],[120.11271609375,49.3492150092774]]]]}},{"type":"Feature","properties":{"name":"满洲里市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.642447539063,49.5618294501953],[117.784703398438,49.5224025703126],[117.833551054688,49.5395232368164],[117.857345,49.513843],[117.862652617188,49.4789659858398],[117.8620325,49.4686174750977],[117.872896757813,49.4486247993164],[117.822686796875,49.4369420600587],[117.852061796875,49.4106920600587],[117.84259890625,49.3985295844727],[117.81345828125,49.4002669501954],[117.735933867188,49.3366619086914],[117.702628203125,49.3185616279297],[117.687345,49.313843],[117.626832304688,49.3300801826173],[117.652550078125,49.3786788154297],[117.652115507813,49.389638288086],[117.50185671875,49.4315227485352],[117.503306914063,49.4680870795899],[117.455914335938,49.5263173652344],[117.262345,49.518644940918],[117.217594023438,49.5204186225587],[117.261549101563,49.6034813666993],[117.267345,49.633843],[117.47662234375,49.6251052070313],[117.642447539063,49.5618294501953]]]]}},{"type":"Feature","properties":{"name":"莫力达瓦达斡尔族自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.257345,49.353843],[125.253922148438,49.3660353828126],[125.245152617188,49.3572661567383],[125.251929960938,49.3290145087891],[125.252877226563,49.3172243476563],[125.23197390625,49.2992150092774],[125.22271609375,49.2884709907227],[125.2119153125,49.279166791504],[125.213150664063,49.2638430000001],[125.211944609375,49.248843],[125.213951445313,49.2238430000001],[125.211944609375,49.198843],[125.2127746875,49.188488690918],[125.18197390625,49.1792150092773],[125.109439726563,49.1192150092774],[125.0311340625,49.1487874580078],[125.032974882813,49.1717061591797],[124.939620390625,49.1642046333009],[124.900128203125,49.1862395454102],[124.85505984375,49.1661293769531],[124.83654421875,49.1246419501954],[124.80173953125,49.1091100288087],[124.813424101563,49.0772859931641],[124.811944609375,49.058843],[124.813350859375,49.0413265205079],[124.74338015625,48.9567385078125],[124.741925078125,48.9386046577149],[124.747345,48.9238430000001],[124.711793242188,48.9093959785157],[124.700865507813,48.8957497382813],[124.704039335938,48.8702294135743],[124.685025664063,48.8378874946289],[124.672061796875,48.8395000434571],[124.6382825,48.8265151191407],[124.644381132813,48.7774843574219],[124.6069153125,48.7474843574219],[124.613941679688,48.6910051704102],[124.601793242188,48.6593959785157],[124.592896757813,48.6282900214844],[124.581793242188,48.6193959785157],[124.572896757813,48.5982900214844],[124.561793242188,48.5893959785156],[124.552896757813,48.5782900214844],[124.51861453125,48.5508351875],[124.534156523438,48.5383901191407],[124.527139921875,48.4820134711914],[124.543682890625,48.4687670112305],[124.5105090625,48.4486159492188],[124.515455351563,48.408843],[124.511441679688,48.3765785957031],[124.532896757813,48.3593959785156],[124.541793242188,48.3282900214844],[124.552896757813,48.3193959785157],[124.561793242188,48.3082900214844],[124.573590117188,48.298843],[124.561793242188,48.2893959785156],[124.546632109375,48.2704640937501],[124.57341921875,48.2591762519532],[124.546016875,48.2125569892579],[124.521280546875,48.1786983466797],[124.53334109375,48.1690419746094],[124.51736453125,48.1418685126953],[124.501793242188,48.1293959785157],[124.492799101563,48.1181648994141],[124.472345,48.1207088447266],[124.462896757813,48.0982900214844],[124.431793242188,48.0893959785157],[124.417345,48.0838430000001],[124.426046171875,48.1177437568359],[124.464932890625,48.1322951484376],[124.461221953125,48.148843],[124.465557890625,48.1681728339844],[124.44697390625,48.1810018134766],[124.426519804688,48.1764162421875],[124.40326296875,48.183319928711],[124.415557890625,48.2381728339844],[124.40142703125,48.2479274726563],[124.388370390625,48.2668422675781],[124.35142703125,48.2879274726563],[124.336651640625,48.3274159980469],[124.310474882813,48.3454921699219],[124.313468046875,48.358843],[124.311221953125,48.368843],[124.314586210938,48.3838430000001],[124.309454375,48.4067287421876],[124.3239075,48.4289223457031],[124.299371367188,48.4605818916016],[124.303468046875,48.478843],[124.301221953125,48.488843],[124.303468046875,48.498843],[124.298565703125,48.5206981635743],[124.247345,48.533843],[124.23978640625,48.5436370063477],[124.202345,48.5381041694337],[124.191832304688,48.5396575141602],[124.18298953125,48.5281993842774],[124.126143828125,48.5194866157227],[124.086832304688,48.5432006049805],[124.042857695313,48.5367018867188],[124.032579375,48.5500167060547],[123.994874296875,48.5272734809571],[123.949190703125,48.540593793457],[123.9319153125,48.5380406928712],[123.90298953125,48.5594866157227],[123.83170046875,48.5681993842774],[123.812110625,48.5935790229492],[123.772183867188,48.5778823066406],[123.75298953125,48.5905294013672],[123.763082304688,48.6588430000001],[123.761607695313,48.668843],[123.76459109375,48.6890407539063],[123.724146757813,48.7003029609375],[123.68298953125,48.7594866157227],[123.65170046875,48.7781993842774],[123.64298953125,48.8094866157227],[123.6057825,48.8596721625977],[123.62298953125,48.8881993842774],[123.644449492188,48.9406392646484],[123.62170046875,48.9581993842774],[123.6086340625,48.9751305366211],[123.581690703125,48.9959242988281],[123.5444934375,49.0111495185547],[123.56298953125,49.0581993842773],[123.567345,49.0738430000001],[123.63146609375,49.0440630317383],[123.750269804688,49.0256325507813],[123.76197390625,49.0392150092774],[123.77271609375,49.0484709907227],[123.79123171875,49.0699587226563],[123.8127746875,49.0885192084961],[123.811539335938,49.103843],[123.812745390625,49.1188430000001],[123.810474882813,49.1471175361328],[123.89861453125,49.1631951118164],[123.921295195313,49.203843],[123.895494414063,49.2500859809571],[123.91197390625,49.2692150092774],[123.980225859375,49.2796157050782],[124.025103789063,49.311433637207],[124.090206328125,49.3062026191407],[124.195982695313,49.3253807807618],[124.321124296875,49.3153252387695],[124.332760039063,49.368671491211],[124.331944609375,49.3788430000001],[124.333482695313,49.3979894233399],[124.266641875,49.505080487793],[124.29197390625,49.5192150092774],[124.327345,49.5338430000001],[124.330767851563,49.5216506171876],[124.339537382813,49.5304198432617],[124.327345,49.5338430000001],[124.332906523438,49.5497069526368],[124.331851835938,49.5763271308594],[124.368482695313,49.6158632636719],[124.404351835938,49.6405471015625],[124.452345,49.638644940918],[124.462345,49.639041059082],[124.528468046875,49.6364205146485],[124.617725859375,49.6534618354493],[124.641329375,49.6789348579102],[124.733292265625,49.689939496582],[124.732139921875,49.7190129829102],[124.7526965625,49.7488851142579],[124.737374296875,49.7630815864258],[124.816436796875,49.848410565918],[124.841480742188,49.8494033027344],[124.899595976563,49.8290337348633],[124.972154570313,49.8401222968751],[124.934918242188,49.8746218085938],[124.968648710938,49.8924700141602],[125.080235625,49.7938271308594],[125.152154570313,49.8190337348633],[125.167345,49.823843],[125.221881132813,49.7944075751954],[125.212808867188,49.7583803535157],[125.201617460938,49.738843],[125.212886992188,49.7191658759766],[125.210308867188,49.6938430000001],[125.213053007813,49.666891400879],[125.191881132813,49.6493056464844],[125.182345,49.6378237128907],[125.157432890625,49.667814862793],[125.112808867188,49.6723632026368],[125.133961210938,49.6164595771484],[125.162667265625,49.6193856025391],[125.191422148438,49.6029180122071],[125.223873320313,49.588843],[125.2218371875,49.5688430000001],[125.224771757813,49.5400139594727],[125.207515898438,49.5256774116211],[125.221881132813,49.5083803535156],[125.233365507813,49.4988430000001],[125.220308867188,49.4879964423828],[125.264478789063,49.4513021064453],[125.24302859375,49.413843],[125.270928984375,49.3651262641602],[125.257345,49.353843]]]]}},{"type":"Feature","properties":{"name":"新巴尔虎右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.217594023438,49.5204186225587],[117.262345,49.518644940918],[117.455914335938,49.5263173652344],[117.503306914063,49.4680870795899],[117.50185671875,49.4315227485352],[117.652115507813,49.389638288086],[117.652550078125,49.3786788154297],[117.626832304688,49.3300801826173],[117.687345,49.313843],[117.68271609375,49.2984709907227],[117.63271609375,49.1695729804688],[117.644136992188,49.0325191474609],[117.66986453125,48.9864073920899],[117.574947539063,48.876239850586],[117.524932890625,48.8331508613281],[117.5580871875,48.804586713379],[117.5766028125,48.7830992866212],[117.62197390625,48.7440099311524],[117.672843046875,48.6790529609375],[117.661344023438,48.6263225532227],[117.663472929688,48.5998235297852],[117.651920195313,48.5791213203126],[117.655577421875,48.5336000800781],[117.64197390625,48.5092150092774],[117.629576445313,48.4680397773438],[117.61271609375,48.4484712958985],[117.591812773438,48.4304616523438],[117.592769804688,48.4185469794922],[117.564537382813,48.3787252021484],[117.58271609375,48.3292147041016],[117.59197390625,48.2984712958985],[117.617511015625,48.2764693427735],[117.632896757813,48.2488948798828],[117.611925078125,48.199095685547],[117.612745390625,48.188843],[117.6119153125,48.1785195136719],[117.6227746875,48.1691664863282],[117.6219153125,48.1585195136719],[117.63271609375,48.1492147041016],[117.64197390625,48.1284712958985],[117.65271609375,48.1192147041016],[117.663961210938,48.1061605048829],[117.710328398438,48.1098860908203],[117.7280871875,48.0945870185547],[117.74197390625,48.0784712958985],[117.8045715625,48.0335219550782],[117.797345,48.0138430000001],[117.784215117188,48.0001772285157],[117.534835234375,47.7981203437501],[117.36830203125,47.6449324775391],[117.0800403125,47.8262709785156],[116.851549101563,47.8987429023438],[116.66224734375,47.8889430976563],[116.446964140625,47.8405165839844],[116.248902617188,47.8769539619141],[116.11224734375,47.8189430976563],[115.94547,47.6789430976562],[115.893394804688,47.7099752021484],[115.573521757813,47.919692609375],[115.531949492188,48.1045082832031],[115.532447539063,48.1288430000001],[115.53187625,48.1568428779297],[115.812877226563,48.2566567207031],[115.78802859375,48.5241451240235],[115.80224734375,48.5389430976563],[116.066065703125,48.8124993110352],[116.03646609375,48.8699571967773],[116.19224734375,49.0989430976563],[116.39244265625,49.3887429023438],[116.606397734375,49.705083234375],[116.714845,49.8452257514649],[117.05224734375,49.6887429023438],[117.267345,49.633843],[117.261549101563,49.6034813666993],[117.217594023438,49.5204186225587]]]]}},{"type":"Feature","properties":{"name":"新巴尔虎左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.367345,49.783843],[118.395523710938,49.7586650825196],[118.382628203125,49.6485616279297],[118.371910429688,49.628843],[118.389737578125,49.5960396552735],[118.402061796875,49.4385616279298],[118.442061796875,49.4262099433594],[118.432628203125,49.4185616279297],[118.392628203125,49.4062099433594],[118.402506132813,49.1992955756836],[118.452061796875,49.1285616279298],[118.504190703125,49.0613002753906],[118.543199492188,48.9981954169922],[118.539307890625,48.9328545356446],[118.672628203125,48.8491243720703],[118.723990507813,48.8093193793946],[118.832628203125,48.7991243720704],[118.867345,48.783843],[118.86271609375,48.7684709907227],[118.824312773438,48.7513353706055],[118.811690703125,48.7287126899414],[118.833629179688,48.709814069336],[118.831944609375,48.6888430000001],[118.834273710938,48.6598140693359],[118.821470976563,48.6487841010743],[118.8680871875,48.619586713379],[118.88197390625,48.5884709907227],[118.923746367188,48.5379723334961],[118.9019153125,48.519166791504],[118.902769804688,48.5085646796876],[118.874986601563,48.4587654853516],[118.98093875,48.3757857490234],[119.01197390625,48.3584712958985],[119.03271609375,48.3492147041016],[119.06197390625,48.3284712958985],[119.130826445313,48.3179787421875],[119.220455351563,48.2618422675781],[119.23197390625,48.2484712958985],[119.252877226563,48.2304616523438],[119.250631132813,48.2025411201172],[119.277467070313,48.1596974921876],[119.35271609375,48.1392147041016],[119.394488554688,48.1159084296876],[119.492081328125,48.0800691962891],[119.512345,48.0784413886719],[119.522345,48.0792446113282],[119.537345,48.0780397773438],[119.55236453125,48.0792464423829],[119.67232546875,48.0684395576172],[119.702345,48.0708516669922],[119.732345,48.0684413886719],[119.742345,48.0692446113281],[119.777345,48.0664327216797],[119.819034453125,48.0697823310547],[119.84271609375,48.0592147041016],[119.852022734375,48.0484151435548],[119.933238554688,48.054941022461],[119.931246367188,48.0301924873047],[119.952764921875,47.9790956855469],[119.951593046875,47.9644930244141],[120.008756132813,47.8915010810547],[120.04197390625,47.8384712958985],[120.07521609375,47.7960225654297],[120.09197390625,47.7584712958985],[120.1080871875,47.7295870185547],[120.130777617188,47.6787429023438],[120.179752226563,47.6676168037109],[120.21271609375,47.6392147041016],[120.217345,47.6238430000001],[120.19189578125,47.6297396064453],[120.175714140625,47.6087740302735],[120.105792265625,47.5940200019532],[120.06298953125,47.5681990791016],[120.018277617188,47.5557491279297],[119.983922148438,47.5608260322266],[119.952569609375,47.5797396064454],[119.90877078125,47.5669686103516],[119.81494265625,47.4974056220704],[119.80162234375,47.4648647285157],[119.7620715625,47.4343367744141],[119.69170046875,47.4194869208985],[119.642081328125,47.3999806953125],[119.6097278125,47.35806175],[119.519195585938,47.3389577460938],[119.477345,47.333843],[119.442154570313,47.3586525703125],[119.430689726563,47.3710280585938],[119.372154570313,47.3986525703126],[119.343936796875,47.4291042304688],[119.332174101563,47.428637921875],[119.322535429688,47.4350551582031],[119.353038359375,47.4793813300782],[119.204976835938,47.5206526923828],[119.143287382813,47.542275006836],[119.121441679688,47.6651888251954],[118.757198515625,47.7752596259766],[118.562535429688,47.9890334296875],[118.442154570313,47.9986525703125],[118.407418242188,48.0108278632813],[118.332345,48.0078523994141],[118.302345,48.0090413642579],[118.283209257813,48.0082826972656],[118.235553007813,48.0249867988281],[118.2200403125,48.0417244697266],[118.137345,48.038446881836],[118.122203398438,48.0390468574219],[118.082535429688,48.0286525703125],[118.023663359375,48.0146291328125],[117.912345,48.0190413642579],[117.902345,48.0186446357422],[117.864068632813,48.0201619697266],[117.797345,48.0138430000001],[117.8045715625,48.0335219550782],[117.74197390625,48.0784712958985],[117.7280871875,48.0945870185547],[117.710328398438,48.1098860908203],[117.663961210938,48.1061605048829],[117.65271609375,48.1192147041016],[117.64197390625,48.1284712958985],[117.63271609375,48.1492147041016],[117.6219153125,48.1585195136719],[117.6227746875,48.1691664863282],[117.6119153125,48.1785195136719],[117.612745390625,48.188843],[117.611925078125,48.199095685547],[117.632896757813,48.2488948798828],[117.617511015625,48.2764693427735],[117.59197390625,48.2984712958985],[117.58271609375,48.3292147041016],[117.564537382813,48.3787252021484],[117.592769804688,48.4185469794922],[117.591812773438,48.4304616523438],[117.61271609375,48.4484712958985],[117.629576445313,48.4680397773438],[117.64197390625,48.5092150092774],[117.655577421875,48.5336000800781],[117.651920195313,48.5791213203126],[117.663472929688,48.5998235297852],[117.661344023438,48.6263225532227],[117.672843046875,48.6790529609375],[117.62197390625,48.7440099311524],[117.5766028125,48.7830992866212],[117.5580871875,48.804586713379],[117.524932890625,48.8331508613281],[117.574947539063,48.876239850586],[117.66986453125,48.9864073920899],[117.644136992188,49.0325191474609],[117.63271609375,49.1695729804688],[117.68271609375,49.2984709907227],[117.687345,49.313843],[117.702628203125,49.3185616279297],[117.735933867188,49.3366619086914],[117.81345828125,49.4002669501954],[117.84259890625,49.3985295844727],[117.852061796875,49.4106920600587],[117.822686796875,49.4369420600587],[117.872896757813,49.4486247993164],[117.8620325,49.4686174750977],[117.862652617188,49.4789659858398],[117.857345,49.513843],[117.87459109375,49.5186452460938],[117.871529570313,49.5393547797852],[117.88298953125,49.5481993842774],[117.89170046875,49.5894866157227],[117.94298953125,49.5981993842774],[117.956549101563,49.6157701850586],[117.987345,49.6203206611329],[118.060660429688,49.6094866157227],[118.097921171875,49.6358162666016],[118.111773710938,49.6696660590821],[118.160069609375,49.6625295234376],[118.20298953125,49.6881993842774],[118.21170046875,49.7094866157227],[118.22298953125,49.7181993842774],[118.2360559375,49.7351305366211],[118.28298953125,49.7481993842774],[118.3119153125,49.769645307129],[118.325953398438,49.7675710273438],[118.367345,49.783843]]]]}},{"type":"Feature","properties":{"name":"牙克石市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.217345,50.3738430000001],[122.229537382813,50.3704198432617],[122.220767851563,50.3616506171875],[122.217345,50.3738430000001]]],[[[122.217345,50.3738430000001],[122.175142851563,50.3608116889648],[122.156783476563,50.3444054389649],[122.1380090625,50.3233950019532],[122.0823059375,50.3084755683594],[122.052628203125,50.3191243720704],[122.022061796875,50.3285616279297],[122.004195585938,50.3485616279298],[121.952061796875,50.3391243720703],[121.912218046875,50.3284529853516],[121.870533476563,50.3575728583985],[121.851798125,50.3167562080078],[121.8320325,50.2990956855469],[121.832974882813,50.2833104682617],[121.792628203125,50.2647927070313],[121.805206328125,50.2431560493165],[121.841783476563,50.2232805610352],[121.873238554688,50.208843],[121.870264921875,50.158947675293],[121.98047,50.1352944160156],[121.983194609375,50.0896056342773],[121.972061796875,50.0691243720703],[121.959478789063,50.0417076850586],[121.924254179688,50.0255397773438],[121.943648710938,50.0082103706055],[121.902061796875,49.9891243720703],[121.887906523438,49.9732805610352],[121.853487578125,49.9425255561524],[121.985172148438,49.9191243720703],[122.00468875,49.9296758247071],[122.02603640625,49.953572309082],[122.072120390625,49.9285314155274],[122.082589140625,49.9291555],[122.142345,49.8801262641602],[122.202061796875,49.9291243720704],[122.222628203125,49.9385616279297],[122.2866809375,49.9781612373047],[122.330494414063,49.9291243720704],[122.352628203125,49.9385616279297],[122.389039335938,49.9583476997071],[122.428682890625,49.9607109809571],[122.4626575,49.9391036201172],[122.461749296875,49.923843],[122.4637903125,49.8896013618164],[122.437237578125,49.8658763862305],[122.4226184375,49.8185289741211],[122.405069609375,49.8195745063477],[122.401060820313,49.7523046088867],[122.417662382813,49.6903203559571],[122.358140898438,49.6776033759766],[122.302764921875,49.6809041572266],[122.302047148438,49.668843],[122.3026575,49.658576581543],[122.282061796875,49.6491243720703],[122.263609648438,49.6284697700196],[122.246812773438,49.629470746582],[122.232628203125,49.5985616279297],[122.193697539063,49.5865410590821],[122.1920325,49.5585903144531],[122.203648710938,49.5482103706055],[122.162061796875,49.5291243720703],[122.152628203125,49.5185616279297],[122.132061796875,49.5091243720704],[122.102345,49.4883653999024],[122.059117460938,49.5185616279297],[122.019307890625,49.5084218574219],[121.976002226563,49.4599550605469],[121.952120390625,49.4585314155274],[121.916886015625,49.4776784492188],[121.852345,49.4815251899415],[121.802345,49.4785448432618],[121.7438684375,49.4820302558594],[121.731881132813,49.4486177802735],[121.771685820313,49.4363268256837],[121.802061796875,49.3885616279297],[121.8226575,49.359080121582],[121.821451445313,49.3388430000001],[121.843668242188,49.3286470771485],[121.870440703125,49.2703124213868],[121.892061796875,49.2585616279297],[121.931358671875,49.2405266547852],[121.942628203125,49.2091243720704],[121.952061796875,49.1785616279297],[121.9826575,49.1591036201172],[121.9820325,49.1485720039062],[122.022061796875,49.1362099433594],[121.997193632813,49.0752483344727],[121.952628203125,49.0547927070313],[121.972061796875,49.0485616279297],[122.032061796875,49.0346016669922],[122.012628203125,49.0085616279297],[121.992628203125,48.9906920600587],[122.002061796875,48.9485616279297],[122.041383085938,48.9305153632812],[122.052061796875,48.9185616279297],[122.081861601563,48.8919368720703],[122.082652617188,48.8786418891602],[122.077345,48.863843],[122.042896757813,48.857848432129],[122.0771496875,48.7990975166016],[122.139141875,48.7883095527344],[122.154400664063,48.7520964790039],[122.193013945313,48.6992351508789],[122.1887121875,48.6646251655274],[122.201890898438,48.6481645942383],[122.212628203125,48.6495000434571],[122.251842070313,48.6344268012696],[122.29271609375,48.639511334961],[122.343609648438,48.6071343208008],[122.362345,48.6094649482422],[122.377345,48.6075991035157],[122.4038684375,48.6108983588867],[122.482896757813,48.5993959785156],[122.487345,48.593843],[122.482896757813,48.5682900214844],[122.460553007813,48.5503966499024],[122.476163359375,48.523843],[122.461793242188,48.4993959785157],[122.451236601563,48.4624718452149],[122.421373320313,48.4116689277344],[122.423590117188,48.3938430000001],[122.421314726563,48.3755501533203],[122.451793242188,48.2962581611329],[122.422554960938,48.2881948066407],[122.38812625,48.2924770332032],[122.363057890625,48.2724025703125],[122.352896757813,48.2482900214844],[122.341676054688,48.2292031074219],[122.34302859375,48.2183449531251],[122.321793242188,48.2093959785156],[122.282554960938,48.1807350898438],[122.247345,48.1763552070312],[122.205479765625,48.1815627265626],[122.169371367188,48.1603389716798],[122.147345,48.1575991035157],[122.107345,48.1625746894532],[122.041842070313,48.1544271064453],[121.97045046875,48.1818685126953],[121.904176054688,48.1629439521484],[121.842896757813,48.1893959785157],[121.764527617188,48.2008022285157],[121.700758085938,48.2382900214844],[121.573507109375,48.2287764716797],[121.541217070313,48.202919538086],[121.544156523438,48.1792958808594],[121.511217070313,48.1529195380859],[121.512965117188,48.138843],[121.509859648438,48.113843],[121.513824492188,48.0819362617188],[121.494874296875,48.0582680488281],[121.442896757813,48.0382900214844],[121.358116484375,48.0289931464844],[121.322896757813,48.0082900214844],[121.271749296875,47.9936653876953],[121.220787382813,47.9627120185547],[121.232984648438,47.9090047431641],[121.231666289063,47.8983901191407],[121.242896757813,47.8893959785157],[121.251793242188,47.8782900214844],[121.291793242188,47.8614345527344],[121.275831328125,47.8198982978516],[121.242345,47.8157332587891],[121.18939578125,47.8223195625001],[121.133570585938,47.8008614326172],[121.112125273438,47.7981941962891],[121.072564726563,47.8094918037109],[121.062345,47.8082210517578],[121.051954375,47.8095137763673],[121.022896757813,47.7882900214844],[120.971793242188,47.7593959785156],[120.962613554688,47.7273030830079],[120.920562773438,47.6965846992188],[120.821793242188,47.6793959785156],[120.773570585938,47.6608614326172],[120.752345,47.6582210517578],[120.742345,47.6594649482422],[120.732061796875,47.6581856513672],[120.702896757813,47.6693959785157],[120.687345,47.673843],[120.682535429688,47.6790334296875],[120.662154570313,47.6886525703125],[120.646451445313,47.7872280097657],[120.682535429688,47.7986525703125],[120.702178984375,47.8090474677735],[120.742345,47.8074556708984],[120.782345,47.8090413642578],[120.821041289063,47.8075075507813],[120.8672278125,47.84292503125],[120.905968046875,47.8847335029297],[120.931046171875,47.937870709961],[120.851314726563,47.9487673164063],[120.816485625,47.9863576484375],[120.85658328125,48.0052822089844],[120.8305871875,48.0293679023437],[120.81216921875,48.0286379218751],[120.8001965625,48.0415590644532],[120.812550078125,48.0887026191407],[120.812144804688,48.098843],[120.812642851563,48.1114076972657],[120.893585234375,48.1081990791016],[120.92838015625,48.1457527900391],[120.982535429688,48.1586525703125],[121.042154570313,48.1850551582032],[121.010640898438,48.2308516669922],[121.013389921875,48.3001772285157],[121.059000273438,48.3217024970704],[121.114615507813,48.3393105292969],[121.156920195313,48.384970319336],[121.136964140625,48.4034615302735],[121.115621367188,48.4708687568359],[121.09025515625,48.4574446845703],[120.981031523438,48.4737313056641],[120.94781375,48.4561537910157],[120.861261015625,48.4864903999024],[120.862550078125,48.5190001655274],[120.842154570313,48.5686522651367],[120.830875273438,48.6277211738282],[120.852535429688,48.6686522651368],[120.862154570313,48.6901213813477],[120.841627226563,48.709140241211],[120.877740507813,48.7773857856446],[120.842154570313,48.7886522651367],[120.832535429688,48.8090337348633],[120.783277617188,48.8322795844727],[120.822535429688,48.8686522651367],[120.838717070313,48.8861165595704],[120.811363554688,48.8990267158204],[120.813326445313,48.9486592841798],[120.792154570313,48.9586522651368],[120.777725859375,48.9742241645508],[120.76134890625,48.9893981147461],[120.737345,48.9884465766602],[120.716978789063,48.9892537666016],[120.736221953125,49.0256182075196],[120.722139921875,49.0386659980469],[120.722550078125,49.0490129829102],[120.702139921875,49.0786730170899],[120.702940703125,49.098843],[120.680850859375,49.1092684150391],[120.661788359375,49.1298384833985],[120.662550078125,49.1490200019532],[120.63806765625,49.1717024970704],[120.602154570313,49.1886522651368],[120.590650664063,49.2010692573242],[120.592550078125,49.2490200019532],[120.581949492188,49.258843],[120.592550078125,49.2686659980469],[120.592095976563,49.2801772285156],[120.577345,49.293843],[120.572808867188,49.2993056464844],[120.561881132813,49.3083803535156],[120.548267851563,49.3247679877931],[120.530855742188,49.3392333198243],[120.533853789063,49.3686592841798],[120.501881132813,49.3883803535156],[120.485455351563,49.4081575751954],[120.461793242188,49.4184197211914],[120.463057890625,49.4308470893555],[120.522808867188,49.4483803535157],[120.543721953125,49.4603575874024],[120.541793242188,49.4792507148438],[120.576280546875,49.5005223823243],[120.597047148438,49.5255242133789],[120.672808867188,49.5583803535157],[120.691881132813,49.5693056464844],[120.745113554688,49.5811092353516],[120.772515898438,49.5783159614258],[120.82603640625,49.5902306342774],[120.849952421875,49.619017560547],[120.912808867188,49.6283803535157],[120.921881132813,49.6475398994141],[120.870836210938,49.6790267158203],[120.87568484375,49.726617963379],[120.902808867188,49.7383803535156],[120.91345828125,49.7629354072266],[120.911324492188,49.783843],[120.91375125,49.8076549506836],[120.89310671875,49.8437071967773],[120.928267851563,49.872918012207],[120.941881132813,49.8893056464845],[120.96693484375,49.9101174140625],[121.001881132813,49.9593056464844],[121.042398710938,49.9842974067383],[121.047345,50.0338430000001],[121.05298953125,50.0381993842774],[121.06170046875,50.0650432563477],[121.03170046875,50.0881993842773],[121.02298953125,50.0994866157227],[121.01170046875,50.1081993842774],[121.00298953125,50.1394866157227],[120.99170046875,50.1481993842774],[120.98298953125,50.1794866157227],[120.958013945313,50.2366396308594],[120.98611453125,50.2583312202148],[120.98017703125,50.2984993720704],[120.94170046875,50.3281993842774],[120.90298953125,50.3794866157227],[120.867789335938,50.3892882514649],[120.837345,50.433843],[120.910377226563,50.4471645332031],[120.932066679688,50.459267194336],[120.948038359375,50.4579839301758],[120.964742460938,50.4954198432618],[121.01982546875,50.4998458076172],[121.076339140625,50.4875188422852],[121.1280871875,50.5030992866211],[121.149742460938,50.5282320380859],[121.162345,50.5292446113282],[121.176939726563,50.5280718208008],[121.22271609375,50.5384709907227],[121.238795195313,50.557134015625],[121.33271609375,50.5784709907227],[121.345279570313,50.5930525947266],[121.427345,50.5996465278321],[121.460719023438,50.5969649482422],[121.47271609375,50.6184709907227],[121.488253203125,50.6532915473633],[121.504332304688,50.671955487793],[121.61271609375,50.6884709907227],[121.63197390625,50.6992150092774],[121.6755090625,50.7123232246094],[121.69818484375,50.763134381836],[121.742105742188,50.7792638374024],[121.752589140625,50.7784215522462],[121.838311796875,50.8116732001954],[121.878565703125,50.7892150092774],[121.91271609375,50.7984709907227],[121.94197390625,50.8192150092773],[121.97271609375,50.8284709907227],[121.9866028125,50.8445867133789],[122.00271609375,50.8584709907227],[122.015220976563,50.8729845405274],[122.102345,50.8409899116212],[122.17562625,50.8679015327149],[122.196939726563,50.8696141791992],[122.25193484375,50.8571211982422],[122.27271609375,50.8392150092774],[122.277345,50.783843],[122.27142703125,50.7797585273438],[122.250943632813,50.7500896430665],[122.253565703125,50.7383962226563],[122.233819609375,50.7080706000977],[122.20142703125,50.6997585273438],[122.176607695313,50.6835942817383],[122.16170046875,50.6437535834962],[122.14142703125,50.6297585273438],[122.126090117188,50.5887685371094],[122.189386015625,50.5787932563477],[122.228897734375,50.5530651069336],[122.2169153125,50.4996169257813],[122.254932890625,50.4853908515625],[122.250347929688,50.4649422431641],[122.276866484375,50.4242244697266],[122.229595976563,50.3915898872071],[122.217345,50.3738430000001]]]]}},{"type":"Feature","properties":{"name":"扎兰屯市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.582550078125,48.5990200019531],[122.5817590625,48.5790642524414],[122.592345,48.578644940918],[122.602511015625,48.5790477729492],[122.622178984375,48.5686382270508],[122.65252078125,48.5698409248048],[122.675548125,48.5449901557617],[122.74412234375,48.5286559272461],[122.739913359375,48.4225276923829],[122.794112578125,48.4053682685547],[122.822535429688,48.3790334296876],[122.844517851563,48.34499534375],[122.91986453125,48.2751790595703],[122.932906523438,48.2379787421876],[122.931846953125,48.2112166572266],[122.945909453125,48.1667989326172],[123.003072539063,48.0922499824219],[123.001031523438,48.0406587958984],[123.018482695313,48.0218227363281],[123.052154570313,47.9986525703125],[123.105689726563,47.9817024970704],[123.132535429688,47.9690334296876],[123.15357546875,47.9579006171875],[123.188175078125,47.9592720771485],[123.287345,47.953843],[123.271143828125,47.9143166328126],[123.233502226563,47.8532924628907],[123.20451296875,47.8183962226563],[123.150308867188,47.7793856025391],[123.071959257813,47.7563930488281],[122.9648059375,47.7107051826172],[122.907345,47.693843],[122.82306765625,47.6620925117188],[122.807345,47.643843],[122.739117460938,47.6054866767578],[122.588521757813,47.5434133125],[122.549986601563,47.5168971992188],[122.500357695313,47.4036855292969],[122.407345,47.343843],[122.392061796875,47.3391243720704],[122.318756132813,47.3128212714844],[122.252628203125,47.2585616279297],[122.232061796875,47.2491243720703],[122.202906523438,47.2332802558594],[122.136475859375,47.2178243232423],[122.07439578125,47.1840895820313],[121.922545195313,47.2391530585938],[121.909986601563,47.2384047675782],[121.815826445313,47.2636244941407],[121.757345,47.2846071601563],[121.676920195313,47.2557491279297],[121.645655546875,47.2207625556641],[121.632628203125,47.1785616279297],[121.608365507813,47.1691243720703],[121.53588015625,47.1951332832031],[121.428204375,47.1759993720704],[121.412628203125,47.1585616279297],[121.397345,47.153843],[121.375201445313,47.1493727851563],[121.367345,47.1338430000001],[121.311793242188,47.1293959785157],[121.282896757813,47.1182900214844],[121.244928007813,47.1093959785156],[121.192896757813,47.1293959785157],[121.121793242188,47.1382900214845],[121.092535429688,47.149536359375],[121.025831328125,47.1369576240235],[120.972896757813,47.0982900214844],[120.95396609375,47.0893959785157],[120.889464140625,47.1365126777344],[120.821793242188,47.1482900214844],[120.784263945313,47.1627150703126],[120.762896757813,47.1893959785156],[120.732398710938,47.2138210273438],[120.62267703125,47.2451912666016],[120.60875125,47.2939009833985],[120.642896757813,47.3082900214844],[120.679517851563,47.3298165107422],[120.692843046875,47.32815940625],[120.701793242188,47.3493959785157],[120.72302859375,47.358344953125],[120.721724882813,47.368843],[120.722965117188,47.378843],[120.721241484375,47.3927150703126],[120.68935671875,47.4182460761719],[120.641793242188,47.4382900214844],[120.62400515625,47.4605025458985],[120.575758085938,47.4991353583985],[120.593013945313,47.5284828925782],[120.591197539063,47.5430538154298],[120.552345,47.5382210517579],[120.505152617188,47.5440908027344],[120.497345,47.5538430000001],[120.501158476563,47.5700307441407],[120.523531523438,47.5976552558594],[120.531158476563,47.6300307441406],[120.564718046875,47.6414681220703],[120.5959778125,47.6634145332032],[120.63213015625,47.6472188544922],[120.642345,47.6504006171875],[120.661539335938,47.6444216132813],[120.674971953125,47.6662178779298],[120.687345,47.673843],[120.702896757813,47.6693959785157],[120.732061796875,47.6581856513672],[120.742345,47.6594649482422],[120.752345,47.6582210517578],[120.773570585938,47.6608614326172],[120.821793242188,47.6793959785156],[120.920562773438,47.6965846992188],[120.962613554688,47.7273030830079],[120.971793242188,47.7593959785156],[121.022896757813,47.7882900214844],[121.051954375,47.8095137763673],[121.062345,47.8082210517578],[121.072564726563,47.8094918037109],[121.112125273438,47.7981941962891],[121.133570585938,47.8008614326172],[121.18939578125,47.8223195625001],[121.242345,47.8157332587891],[121.275831328125,47.8198982978516],[121.291793242188,47.8614345527344],[121.251793242188,47.8782900214844],[121.242896757813,47.8893959785157],[121.231666289063,47.8983901191407],[121.232984648438,47.9090047431641],[121.220787382813,47.9627120185547],[121.271749296875,47.9936653876953],[121.322896757813,48.0082900214844],[121.358116484375,48.0289931464844],[121.442896757813,48.0382900214844],[121.494874296875,48.0582680488281],[121.513824492188,48.0819362617188],[121.509859648438,48.113843],[121.512965117188,48.138843],[121.511217070313,48.1529195380859],[121.544156523438,48.1792958808594],[121.541217070313,48.202919538086],[121.573507109375,48.2287764716797],[121.700758085938,48.2382900214844],[121.764527617188,48.2008022285157],[121.842896757813,48.1893959785157],[121.904176054688,48.1629439521484],[121.97045046875,48.1818685126953],[122.041842070313,48.1544271064453],[122.107345,48.1625746894532],[122.147345,48.1575991035157],[122.169371367188,48.1603389716798],[122.205479765625,48.1815627265626],[122.247345,48.1763552070312],[122.282554960938,48.1807350898438],[122.321793242188,48.2093959785156],[122.34302859375,48.2183449531251],[122.341676054688,48.2292031074219],[122.352896757813,48.2482900214844],[122.363057890625,48.2724025703125],[122.38812625,48.2924770332032],[122.422554960938,48.2881948066407],[122.451793242188,48.2962581611329],[122.421314726563,48.3755501533203],[122.423590117188,48.3938430000001],[122.421373320313,48.4116689277344],[122.451236601563,48.4624718452149],[122.461793242188,48.4993959785157],[122.476163359375,48.523843],[122.460553007813,48.5503966499024],[122.482896757813,48.5682900214844],[122.487345,48.593843],[122.513219023438,48.588430097168],[122.564620390625,48.6156310249023],[122.582550078125,48.5990200019531]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"杭锦后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.137345,40.5838430000001],[107.140767851563,40.5960353828126],[107.149537382813,40.5872658515625],[107.137345,40.5838430000001]]],[[[107.137345,40.5838430000001],[107.137345,40.5738430000001],[107.157345,40.5738430000001],[107.161073027344,40.5220742011719],[107.197391386719,40.5037013984375],[107.183985625,40.477202375],[107.160704375,40.470483625],[107.157345,40.4638430000001],[107.13197390625,40.4684706855469],[107.100067167969,40.50550315625],[107.105882597656,40.5778713203125],[107.08197390625,40.5984706855469],[107.07271609375,40.6392153144531],[106.952625761719,40.6514650703125],[106.910699492188,40.7184011054688],[106.81197390625,40.7284706855469],[106.755714140625,40.7491310859375],[106.587345,40.753843],[106.593424101563,40.7703993964844],[106.591138945313,40.798843],[106.594195585938,40.8368886542969],[106.68271609375,40.8484706855469],[106.772298613281,40.8882375312501],[106.801600371094,40.9045864082032],[106.86271609375,40.9184706855469],[106.884222441406,40.9304701972657],[106.881541777344,40.9638430000001],[106.882904082031,40.9808071113282],[106.912681914063,40.9784145332031],[106.93197390625,41.0092153144532],[106.98271609375,41.0184706855469],[107.022142363281,41.0292604804688],[107.033963652344,41.0283107734375],[107.075113554688,41.0760744453125],[107.11271609375,41.1084706855469],[107.142020292969,41.1424843574219],[107.192669707031,41.1384157539063],[107.20197390625,41.1492153144532],[107.212772246094,41.1585195136719],[107.211485625,41.1745351386719],[107.24271609375,41.1884706855469],[107.273023710938,41.2053810859376],[107.271842070313,41.2200881171876],[107.293590117188,41.2183412910157],[107.291942167969,41.238843],[107.293250761719,41.255122296875],[107.365462675781,41.2100514960938],[107.377345,41.2238430000001],[107.387345,41.2238430000001],[107.374349394531,41.1491713691407],[107.341790800781,41.1293959785156],[107.331419707031,41.0931227851563],[107.273219023438,41.0465163398438],[107.252899199219,40.9982900214844],[107.236239042969,40.9699489570312],[107.222899199219,40.9082900214844],[107.191790800781,40.8893959785157],[107.182899199219,40.8682900214844],[107.171282988281,40.8589882636719],[107.198668242188,40.8214955878906],[107.16373171875,40.8171498847656],[107.113912382813,40.8464357734375],[107.110472441406,40.8187892890626],[107.121790800781,40.7282900214844],[107.133941679688,40.6966811347657],[107.131663847656,40.6783681464844],[107.166512480469,40.6571999335937],[107.123448515625,40.6227150703125],[107.120311308594,40.5974843574219],[107.137345,40.5838430000001]]]]}},{"type":"Feature","properties":{"name":"临河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.137345,40.5838430000001],[107.149537382813,40.5872658515625],[107.140767851563,40.5960353828126],[107.120311308594,40.5974843574219],[107.123448515625,40.6227150703125],[107.166512480469,40.6571999335937],[107.131663847656,40.6783681464844],[107.133941679688,40.6966811347657],[107.121790800781,40.7282900214844],[107.110472441406,40.8187892890626],[107.113912382813,40.8464357734375],[107.16373171875,40.8171498847656],[107.198668242188,40.8214955878906],[107.171282988281,40.8589882636719],[107.182899199219,40.8682900214844],[107.191790800781,40.8893959785157],[107.222899199219,40.9082900214844],[107.236239042969,40.9699489570312],[107.252899199219,40.9982900214844],[107.273219023438,41.0465163398438],[107.331419707031,41.0931227851563],[107.341790800781,41.1293959785156],[107.374349394531,41.1491713691407],[107.387345,41.2238430000001],[107.424373808594,41.2322536445313],[107.487345,41.2400868964844],[107.52000125,41.2360243964844],[107.562899199219,41.2482900214844],[107.623961210938,41.2746498847656],[107.651790800781,41.2582900214844],[107.667345,41.253843],[107.67312625,41.2391347480469],[107.671541777344,41.2284133125],[107.695350371094,41.1963002753907],[107.674996367188,41.1264943671875],[107.719801054688,41.0710573554688],[107.72420046875,41.0412831855469],[107.71156375,41.0091347480469],[107.713140898438,40.9984523750001],[107.70170046875,40.9794863105469],[107.691536894531,40.9546511054688],[107.618360625,40.8994179511719],[107.68170046875,40.8763075996094],[107.67298953125,40.8481996894532],[107.593944121094,40.7941860175782],[107.61298953125,40.7794863105469],[107.617345,40.7738430000001],[107.585745878906,40.7682118964844],[107.572806425781,40.7383803535156],[107.533980742188,40.70612815625],[107.484268828125,40.7111952949219],[107.442806425781,40.6783803535157],[107.421883574219,40.6693056464844],[107.387730742188,40.6447267890626],[107.337345,40.6498622871094],[107.317345,40.6478237128907],[107.278958769531,40.6517360664063],[107.235169707031,40.5507704902344],[107.202806425781,40.5693056464844],[107.176097441406,40.5808888984376],[107.157345,40.5738430000001],[107.137345,40.5738430000001],[107.137345,40.5838430000001]]]]}},{"type":"Feature","properties":{"name":"乌拉特后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.402064238281,41.2591237617188],[107.377345,41.2238430000001],[107.365462675781,41.2100514960938],[107.293250761719,41.255122296875],[107.291942167969,41.238843],[107.293590117188,41.2183412910157],[107.271842070313,41.2200881171876],[107.273023710938,41.2053810859376],[107.24271609375,41.1884706855469],[107.211485625,41.1745351386719],[107.212772246094,41.1585195136719],[107.20197390625,41.1492153144532],[107.192669707031,41.1384157539063],[107.142020292969,41.1424843574219],[107.11271609375,41.1084706855469],[107.075113554688,41.0760744453125],[107.033963652344,41.0283107734375],[107.022142363281,41.0292604804688],[106.98271609375,41.0184706855469],[106.93197390625,41.0092153144532],[106.912681914063,40.9784145332031],[106.882904082031,40.9808071113282],[106.881541777344,40.9638430000001],[106.884222441406,40.9304701972657],[106.86271609375,40.9184706855469],[106.801600371094,40.9045864082032],[106.772298613281,40.8882375312501],[106.68271609375,40.8484706855469],[106.594195585938,40.8368886542969],[106.591138945313,40.798843],[106.593424101563,40.7703993964844],[106.587345,40.753843],[106.539432402344,40.7587306953125],[106.500467558594,40.7804701972657],[106.502769804688,40.8091213203125],[106.49197390625,40.8284706855469],[106.480865507813,40.8773635078126],[106.43197390625,40.8884706855469],[106.42271609375,40.8950844550782],[106.45295046875,40.9085756660156],[106.437161894531,40.9515712714844],[106.337977324219,40.9361843085938],[106.314967070313,40.9094753242188],[106.283841582031,40.8955861640626],[106.26271609375,40.8664455390625],[106.282772246094,40.8491664863282],[106.281849394531,40.8376772285157],[106.2522278125,40.8400575996094],[106.24271609375,40.8084706855469],[106.227059355469,40.7804091621094],[106.201138945313,40.7688430000001],[106.202769804688,40.7485634589844],[106.177345,40.703843],[106.167345,40.703843],[106.157345,40.703843],[106.157345,40.6938430000001],[106.107591582031,40.7163075996094],[105.948658476563,40.73618675],[105.860416289063,40.7632204414062],[105.832899199219,40.7793959785156],[105.761790800781,40.7882900214844],[105.697874785156,40.8065419746094],[105.652899199219,40.8393959785157],[105.541790800781,40.8982900214844],[105.492899199219,40.9293959785157],[105.391121855469,40.9840151191406],[105.394881621094,41.0142360664063],[105.378472929688,41.0569240546875],[105.319859648438,41.1038613105469],[105.324832792969,41.143843],[105.319246855469,41.1887575507813],[105.271790800781,41.2682900214844],[105.223472929688,41.3566286445313],[105.197782011719,41.5349037910156],[105.222899199219,41.6882900214844],[105.227345,41.743843],[105.292535429688,41.7496401191407],[105.422244902344,41.8089430976562],[105.512445097656,41.8487429023437],[105.672471953125,41.9219069648438],[105.743699980469,41.9462868476563],[106.008565703125,42.0286232734375],[106.481490507813,42.198442609375],[106.713460722656,42.2713149238282],[106.782244902344,42.2889430976563],[107.043021269531,42.3160903144531],[107.252244902344,42.3589430976563],[107.267345,42.363843],[107.273238554688,42.3197805],[107.302625761719,42.2491237617188],[107.312064238281,42.2085622382813],[107.342625761719,42.1691237617188],[107.367742949219,42.1296327949219],[107.423070097656,42.0533950019532],[107.481500273438,41.9879994941407],[107.507906523438,41.9644057441407],[107.522064238281,41.9485622382813],[107.567181425781,41.9198671699219],[107.609893828125,41.8587209296876],[107.624481230469,41.7904384589844],[107.586326933594,41.7697048164063],[107.552064238281,41.7591237617187],[107.532625761719,41.7485622382812],[107.492064238281,41.7391237617188],[107.472625761719,41.7085622382812],[107.423209257813,41.6483315253906],[107.420860625,41.6089333320312],[107.470697050781,41.5935439277344],[107.482064238281,41.5085622382813],[107.506126738281,41.4870619941407],[107.539886503906,41.4387294746094],[107.502064238281,41.3691237617188],[107.491798125,41.3467568183595],[107.472064238281,41.3291237617188],[107.462625761719,41.3185622382813],[107.44615359375,41.3038430000001],[107.472022734375,41.280727765625],[107.402064238281,41.2591237617188]]]]}},{"type":"Feature","properties":{"name":"乌拉特前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.137345,40.523843],[109.149537382813,40.5204201484376],[109.140767851563,40.5116506171875],[109.137345,40.523843]]],[[[109.657345,41.1138430000001],[109.653922148438,41.1260353828126],[109.645152617188,41.1172658515625],[109.689151640625,41.0423317695313],[109.73271609375,41.0292153144531],[109.757511015625,41.0004372382813],[109.782345,40.9984413886719],[109.820924101563,41.0015407539063],[109.822747832031,40.978843],[109.821302519531,40.9608571601562],[109.83896609375,40.9403542304688],[109.88197390625,40.9134169746094],[109.860824003906,40.8420888496094],[109.83197390625,40.8292153144532],[109.82271609375,40.8184706855469],[109.817345,40.813843],[109.803065214844,40.8028212714844],[109.784937773438,40.7585305000001],[109.722996855469,40.7480080390626],[109.700953398438,40.751264875],[109.619390898438,40.7355849433594],[109.567345,40.74327659375],[109.517345,40.7358876777344],[109.473140898438,40.7424196601563],[109.41281375,40.7060292792969],[109.3997278125,40.6290065742187],[109.425955839844,40.6182729316407],[109.420128203125,40.5788430000001],[109.423084746094,40.558843],[109.421529570313,40.5483315253906],[109.43298953125,40.5394863105469],[109.437345,40.523843],[109.427345,40.523843],[109.427345,40.513843],[109.423040800781,40.4834499335938],[109.404381132813,40.4519753242188],[109.393624296875,40.4701210761719],[109.326685820313,40.4780861640626],[109.313189726563,40.5008510566407],[109.282345,40.4902577949219],[109.243189726563,40.5037038398438],[109.229210234375,40.4801210761719],[109.220399199219,40.4881752753906],[109.227735625,40.5095388007813],[109.171065703125,40.5175649238282],[109.144823027344,40.5364565253907],[109.137345,40.523843],[109.109095488281,40.5370412421875],[109.081461210938,40.5266249824219],[109.066532011719,40.5528078437501],[109.047345,40.5438430000001],[108.992154570313,40.5390334296876],[108.972508574219,40.528637921875],[108.957345,40.5292397285156],[108.942181425781,40.528637921875],[108.904019804688,40.5488307929688],[108.825494414063,40.5595619941407],[108.754342070313,40.5567421699219],[108.773099394531,40.6102602363282],[108.732174101563,40.608637921875],[108.687684355469,40.63925315625],[108.643231230469,40.6374904609375],[108.632535429688,40.6490334296876],[108.602139921875,40.658657453125],[108.602542753906,40.668843],[108.601986113281,40.6828749824219],[108.551846953125,40.6987490058594],[108.571854277344,40.7172866035157],[108.482154570313,40.7386525703126],[108.472535429688,40.7590334296876],[108.442154570313,40.7786525703126],[108.42630984375,40.7957521796875],[108.36935671875,40.8093190742188],[108.342345,40.8082485175782],[108.229676542969,40.8127138496094],[108.212257109375,40.84962425],[108.167345,40.863843],[108.191861601563,40.9095253730469],[108.202562285156,40.9081935859376],[108.241790800781,40.9193959785157],[108.320159941406,40.9308022285157],[108.36334109375,40.9561855292969],[108.432899199219,40.9682900214844],[108.441790800781,40.9793959785156],[108.462899199219,40.9882900214844],[108.481790800781,40.9993959785157],[108.512899199219,41.0082900214844],[108.531790800781,41.0242665839844],[108.503873320313,41.071762921875],[108.547738066406,41.0663063789063],[108.601092558594,41.0868141914063],[108.631790800781,41.1118837714844],[108.600079375,41.1079396796876],[108.587345,41.123843],[108.597345,41.123843],[108.597345,41.133843],[108.609537382813,41.1372658515626],[108.600767851563,41.1460353828125],[108.597345,41.133843],[108.587345,41.133843],[108.587345,41.123843],[108.567345,41.123843],[108.567345,41.133843],[108.57271609375,41.1384706855469],[108.586102324219,41.1684706855469],[108.65271609375,41.1592153144532],[108.702901640625,41.1407851386719],[108.801258574219,41.2178127265625],[108.88271609375,41.2284706855469],[108.935438261719,41.25788596875],[109.005277128906,41.2634975410156],[109.05271609375,41.2492153144531],[109.073326445313,41.2377162910157],[109.174923125,41.2458803535157],[109.25814578125,41.19944846875],[109.31197390625,41.2192153144531],[109.36271609375,41.2284706855469],[109.394176054688,41.2460231757813],[109.462825957031,41.2208132148438],[109.507345,41.2172365546876],[109.532584257813,41.2192641425781],[109.56353640625,41.2078969550781],[109.588577910156,41.2640175605469],[109.60197390625,41.2484706855469],[109.637345,41.233843],[109.637345,41.2238430000001],[109.647345,41.2238430000001],[109.653985625,41.220483625],[109.660704375,41.197202375],[109.704476347656,41.1499526191406],[109.720289335938,41.1175759101562],[109.657345,41.1138430000001]]]]}},{"type":"Feature","properties":{"name":"乌拉特中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.077345,41.233843],[108.110704375,41.2171144843751],[108.080704375,41.217202375],[108.077345,41.233843]]],[[[109.637345,41.233843],[109.647345,41.233843],[109.647345,41.2238430000001],[109.637345,41.2238430000001],[109.637345,41.233843]]],[[[109.637345,41.233843],[109.60197390625,41.2484706855469],[109.588577910156,41.2640175605469],[109.56353640625,41.2078969550781],[109.532584257813,41.2192641425781],[109.507345,41.2172365546876],[109.462825957031,41.2208132148438],[109.394176054688,41.2460231757813],[109.36271609375,41.2284706855469],[109.31197390625,41.2192153144531],[109.25814578125,41.19944846875],[109.174923125,41.2458803535157],[109.073326445313,41.2377162910157],[109.05271609375,41.2492153144531],[109.005277128906,41.2634975410156],[108.935438261719,41.25788596875],[108.88271609375,41.2284706855469],[108.801258574219,41.2178127265625],[108.702901640625,41.1407851386719],[108.65271609375,41.1592153144532],[108.586102324219,41.1684706855469],[108.57271609375,41.1384706855469],[108.567345,41.133843],[108.562064238281,41.1385622382812],[108.543970976563,41.1588112617188],[108.502064238281,41.1685622382813],[108.464000273438,41.1822194648438],[108.372345,41.1767568183594],[108.283179960938,41.1820717597657],[108.132918730469,41.2282546210938],[108.087054472656,41.2447109199219],[108.077345,41.233843],[108.052535429688,41.2186525703125],[108.022139921875,41.209028546875],[108.022542753906,41.198843],[108.022108183594,41.1878615546875],[107.992181425781,41.189048078125],[107.952449980469,41.1680239082031],[107.942535429688,41.1890334296875],[107.93033328125,41.1986525703126],[107.892508574219,41.178637921875],[107.862345,41.1798342109375],[107.822523222656,41.1782558417969],[107.812535429688,41.1890334296875],[107.789176054688,41.2000575996094],[107.6751575,41.2785170722656],[107.667345,41.253843],[107.651790800781,41.2582900214844],[107.623961210938,41.2746498847656],[107.562899199219,41.2482900214844],[107.52000125,41.2360243964844],[107.487345,41.2400868964844],[107.424373808594,41.2322536445313],[107.387345,41.2238430000001],[107.377345,41.2238430000001],[107.402064238281,41.2591237617188],[107.472022734375,41.280727765625],[107.44615359375,41.3038430000001],[107.462625761719,41.3185622382813],[107.472064238281,41.3291237617188],[107.491798125,41.3467568183595],[107.502064238281,41.3691237617188],[107.539886503906,41.4387294746094],[107.506126738281,41.4870619941407],[107.482064238281,41.5085622382813],[107.470697050781,41.5935439277344],[107.420860625,41.6089333320312],[107.423209257813,41.6483315253906],[107.472625761719,41.7085622382812],[107.492064238281,41.7391237617188],[107.532625761719,41.7485622382812],[107.552064238281,41.7591237617187],[107.586326933594,41.7697048164063],[107.624481230469,41.7904384589844],[107.609893828125,41.8587209296876],[107.567181425781,41.9198671699219],[107.522064238281,41.9485622382813],[107.507906523438,41.9644057441407],[107.481500273438,41.9879994941407],[107.423070097656,42.0533950019532],[107.367742949219,42.1296327949219],[107.342625761719,42.1691237617188],[107.312064238281,42.2085622382813],[107.302625761719,42.2491237617188],[107.273238554688,42.3197805],[107.267345,42.363843],[107.295543242188,42.4113430000001],[107.467874785156,42.4587429023437],[107.503753691406,42.4485720039063],[107.571119414063,42.4138674140626],[107.943973417969,42.4062587714844],[107.982445097656,42.4187429023437],[108.012244902344,42.4289430976563],[108.132545195313,42.4436428046876],[108.242401152344,42.4623805976563],[108.282244902344,42.4487429023438],[108.552445097656,42.4389430976563],[108.682244902344,42.4187429023437],[108.812445097656,42.4089430976563],[108.842349882813,42.3987075019532],[108.975980253906,42.4492787910157],[109.002345,42.4487404609376],[109.091788359375,42.4505666328125],[109.262633085938,42.4371413398437],[109.387345,42.4438430000001],[109.392244902344,42.4387429023438],[109.419566679688,42.4254872871094],[109.442244902344,42.3787429023437],[109.462445097656,42.3489430976563],[109.472244902344,42.3087429023438],[109.504088164063,42.2469313789063],[109.532491484375,42.1487868476563],[109.502957792969,42.1204116035156],[109.478372832031,42.0697377753906],[109.369178496094,41.9320095039063],[109.342244902344,41.9189430976563],[109.332445097656,41.8987429023438],[109.254036894531,41.8766286445313],[109.2910559375,41.8410622382813],[109.312244902344,41.8087429023437],[109.352166777344,41.7825685859376],[109.352645292969,41.7591310859376],[109.341905546875,41.7382851386719],[109.382088652344,41.6996779609376],[109.401688261719,41.6592775703126],[109.419156523438,41.6424941230469],[109.432244902344,41.5487429023438],[109.442445097656,41.5289430976563],[109.456898222656,41.4991493964844],[109.657345,41.4938430000001],[109.663377714844,41.4784987617188],[109.65170046875,41.4694863105469],[109.641624785156,41.4448647285157],[109.620858183594,41.4288356757813],[109.699791289063,41.3692555976563],[109.68298953125,41.3281996894531],[109.625816679688,41.3073403144531],[109.62156375,41.2785512519532],[109.63298953125,41.2494863105469],[109.637345,41.233843]]]]}},{"type":"Feature","properties":{"name":"五原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.587345,41.123843],[108.587345,41.133843],[108.597345,41.133843],[108.597345,41.123843],[108.587345,41.123843]]],[[[108.597345,41.133843],[108.600767851563,41.1460353828125],[108.609537382813,41.1372658515626],[108.597345,41.133843]]],[[[108.077345,41.233843],[108.080704375,41.217202375],[108.110704375,41.2171144843751],[108.087054472656,41.2447109199219],[108.132918730469,41.2282546210938],[108.283179960938,41.1820717597657],[108.372345,41.1767568183594],[108.464000273438,41.1822194648438],[108.502064238281,41.1685622382813],[108.543970976563,41.1588112617188],[108.562064238281,41.1385622382812],[108.567345,41.133843],[108.567345,41.123843],[108.587345,41.123843],[108.600079375,41.1079396796876],[108.631790800781,41.1118837714844],[108.601092558594,41.0868141914063],[108.547738066406,41.0663063789063],[108.503873320313,41.071762921875],[108.531790800781,41.0242665839844],[108.512899199219,41.0082900214844],[108.481790800781,40.9993959785157],[108.462899199219,40.9882900214844],[108.441790800781,40.9793959785156],[108.432899199219,40.9682900214844],[108.36334109375,40.9561855292969],[108.320159941406,40.9308022285157],[108.241790800781,40.9193959785157],[108.202562285156,40.9081935859376],[108.191861601563,40.9095253730469],[108.167345,40.863843],[108.158358183594,40.8530239082032],[108.107345,40.8478237128907],[108.082345,40.8503713203125],[108.057345,40.8478237128907],[108.032345,40.8503713203125],[108.004212675781,40.847505109375],[107.957345,40.8651149726563],[107.900172148438,40.8436330390625],[107.840025664063,40.87808128125],[107.820633574219,40.8333681464844],[107.780228300781,40.8565102363281],[107.73451296875,40.8611696601563],[107.722786894531,40.8082888007813],[107.702200957031,40.8103871894532],[107.687374296875,40.7598647285157],[107.664212675781,40.757505109375],[107.632806425781,40.7693056464844],[107.617345,40.7738430000001],[107.61298953125,40.7794863105469],[107.593944121094,40.7941860175782],[107.67298953125,40.8481996894532],[107.68170046875,40.8763075996094],[107.618360625,40.8994179511719],[107.691536894531,40.9546511054688],[107.70170046875,40.9794863105469],[107.713140898438,40.9984523750001],[107.71156375,41.0091347480469],[107.72420046875,41.0412831855469],[107.719801054688,41.0710573554688],[107.674996367188,41.1264943671875],[107.695350371094,41.1963002753907],[107.671541777344,41.2284133125],[107.67312625,41.2391347480469],[107.667345,41.253843],[107.6751575,41.2785170722656],[107.789176054688,41.2000575996094],[107.812535429688,41.1890334296875],[107.822523222656,41.1782558417969],[107.862345,41.1798342109375],[107.892508574219,41.178637921875],[107.93033328125,41.1986525703126],[107.942535429688,41.1890334296875],[107.952449980469,41.1680239082031],[107.992181425781,41.189048078125],[108.022108183594,41.1878615546875],[108.022542753906,41.198843],[108.022139921875,41.209028546875],[108.052535429688,41.2186525703125],[108.077345,41.233843]]]]}},{"type":"Feature","properties":{"name":"磴口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.167345,40.6938430000001],[106.157345,40.6938430000001],[106.157345,40.703843],[106.167345,40.703843],[106.167345,40.6938430000001]]],[[[106.480865507813,40.8773635078126],[106.49197390625,40.8284706855469],[106.502769804688,40.8091213203125],[106.500467558594,40.7804701972657],[106.539432402344,40.7587306953125],[106.587345,40.753843],[106.755714140625,40.7491310859375],[106.81197390625,40.7284706855469],[106.910699492188,40.7184011054688],[106.952625761719,40.6514650703125],[107.07271609375,40.6392153144531],[107.08197390625,40.5984706855469],[107.105882597656,40.5778713203125],[107.100067167969,40.50550315625],[107.13197390625,40.4684706855469],[107.157345,40.4638430000001],[107.15123171875,40.4489662910156],[107.171329375,40.3828090644531],[107.089869414063,40.3613185859375],[107.073170195313,40.3380178046876],[107.035194121094,40.3279994941406],[107.020907011719,40.2567360664063],[106.921519804688,40.1896681953125],[106.917345,40.183843],[106.917345,40.173843],[106.857345,40.173843],[106.85271609375,40.1792153144532],[106.742374296875,40.1918642402344],[106.700692167969,40.2584120917969],[106.774740019531,40.3047927070313],[106.82197390625,40.3670070625],[106.652225371094,40.3864662910157],[106.530745878906,40.3767055488281],[106.457984648438,40.3251161933594],[106.43271609375,40.3392153144531],[106.32197390625,40.3484706855469],[106.235592070313,40.4515981269532],[106.20271609375,40.5140358710938],[106.272691679688,40.5084133125001],[106.282691679688,40.5308242011719],[106.32064578125,40.5277748847657],[106.36197390625,40.4984706855469],[106.480867949219,40.4892153144531],[106.49197390625,40.5448403144531],[106.43197390625,40.5584706855469],[106.352183867188,40.5877724433594],[106.255604277344,40.6024892402344],[106.241011992188,40.6667177558595],[106.198233671875,40.6795973945313],[106.177345,40.703843],[106.202769804688,40.7485634589844],[106.201138945313,40.7688430000001],[106.227059355469,40.7804091621094],[106.24271609375,40.8084706855469],[106.2522278125,40.8400575996094],[106.281849394531,40.8376772285157],[106.282772246094,40.8491664863282],[106.26271609375,40.8664455390625],[106.283841582031,40.8955861640626],[106.314967070313,40.9094753242188],[106.337977324219,40.9361843085938],[106.437161894531,40.9515712714844],[106.45295046875,40.9085756660156],[106.42271609375,40.8950844550782],[106.43197390625,40.8884706855469],[106.480865507813,40.8773635078126]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"四子王旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,41.2238430000001],[111.823922148438,41.2116506171876],[111.815152617188,41.2204201484375],[111.827345,41.2238430000001]]],[[[111.827345,41.2238430000001],[111.832760039063,41.2486708808594],[111.831785917969,41.2608071113281],[111.796751738281,41.2579921699219],[111.752640410156,41.2892690253906],[111.732345,41.2876381660157],[111.722569609375,41.3095473457031],[111.701363554688,41.2977162910157],[111.572303496094,41.3080861640626],[111.562669707031,41.3192702460938],[111.543326445313,41.3177162910157],[111.522623320313,41.3292665839844],[111.502345,41.3276381660157],[111.477345,41.3296462226563],[111.455628691406,41.3279018378907],[111.417345,41.313843],[111.412625761719,41.3491237617188],[111.379364042969,41.3788430000001],[111.412625761719,41.4085622382813],[111.429439726563,41.4273793769532],[111.442064238281,41.5112978339844],[111.383895292969,41.5945729804688],[111.364461699219,41.6369155097656],[111.302064238281,41.6485622382813],[111.246715117188,41.6603871894531],[111.151292753906,41.7270412421875],[111.113189726563,41.7696865058594],[111.072064238281,41.7885622382813],[111.046239042969,41.8025954414063],[110.982625761719,41.9191237617188],[110.962064238281,41.9485622382813],[110.942625761719,41.9791237617188],[110.888795195313,42.0561904121094],[110.782064238281,42.1785622382813],[110.772625761719,42.2491237617188],[110.742642851563,42.3042983222656],[110.719156523438,42.3803591132813],[110.7226575,42.4390688300782],[110.709940214844,42.4624684882813],[110.632635527344,42.4921865058594],[110.558885527344,42.5867409492187],[110.400130644531,42.7076491523438],[110.337345,42.733843],[110.342244902344,42.7389430976563],[110.431688261719,42.7823366523438],[110.466356230469,42.8352126289062],[110.627606230469,42.9373488593751],[110.682459746094,43.0182680488281],[110.682047148438,43.0384096503907],[110.742244902344,43.0889430976563],[110.762445097656,43.0987429023438],[110.993988066406,43.3143862128907],[111.086253691406,43.3619167304688],[111.147345,43.373843],[111.197896757813,43.281762921875],[111.360628691406,43.1860146308594],[111.503360625,43.1689345527344],[111.630111113281,43.0321364570313],[111.749190703125,42.9820253730469],[111.831512480469,42.8623915839844],[111.859139433594,42.8038491035157],[111.923494902344,42.7125673652344],[112.002535429688,42.6190334296875],[112.024525175781,42.5849794746094],[112.172659941406,42.5318105292969],[112.171749296875,42.5088100410157],[112.245025664063,42.4802761054688],[112.388568144531,42.3881130195313],[112.610845976563,42.3398647285156],[112.643026152344,42.3100490546875],[112.632044707031,42.2787172675782],[112.683311796875,42.2485768867188],[112.730174589844,42.1492787910157],[112.777725859375,42.1342238593751],[112.822154570313,42.1186525703125],[112.861068144531,42.1063320136719],[112.936063261719,42.0109658027344],[112.982535429688,41.9890334296876],[112.987345,41.9838430000001],[112.96271609375,41.9684706855469],[112.88197390625,41.9392153144531],[112.86271609375,41.9284706855469],[112.816600371094,41.9145864082031],[112.80271609375,41.8984706855469],[112.7627746875,41.8806471992188],[112.777345,41.813843],[112.726019316406,41.8331288886719],[112.682667265625,41.8083010078126],[112.651595488281,41.8114675117187],[112.583094511719,41.7962184882813],[112.47287234375,41.8074526191406],[112.426326933594,41.6458888984376],[112.383118925781,41.6502931953125],[112.342806425781,41.6793056464844],[112.277728300781,41.6883803535156],[112.242440214844,41.6681703925782],[112.212413359375,41.6794533515625],[112.160203886719,41.6648561835938],[112.166002226563,41.6079604316407],[112.142200957031,41.6103871894532],[112.132806425781,41.5783803535156],[112.118182402344,41.5528456855469],[112.088817167969,41.528452375],[112.094298125,41.4746804023438],[112.112806425781,41.4593056464844],[112.121883574219,41.4410439277344],[112.05095828125,41.4202309394531],[112.031954375,41.3973537421876],[111.993516875,41.4012721992188],[111.982806425781,41.3883803535156],[111.971883574219,41.3793056464844],[111.960511503906,41.3530861640626],[111.930855742188,41.328452375],[111.932855253906,41.3088430000001],[111.931795683594,41.298452375],[111.9521496875,41.2815444160156],[111.957345,41.2638430000001],[111.953350859375,41.257837140625],[111.91375125,41.2479555488282],[111.925599394531,41.2009230781251],[111.903062773438,41.1952443671875],[111.883289824219,41.2249794746094],[111.857345,41.213843],[111.840704375,41.217202375],[111.827345,41.2238430000001]]]]}},{"type":"Feature","properties":{"name":"兴和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.666419707031,41.4047682929687],[113.652806425781,41.3883803535156],[113.612806425781,41.3710329414063],[113.621883574219,41.3383803535157],[113.632806425781,41.3293056464844],[113.650155058594,41.2893056464844],[113.662806425781,41.2983803535157],[113.688829375,41.3583803535157],[113.722806425781,41.3493056464844],[113.751883574219,41.3383803535157],[113.802806425781,41.3293056464844],[113.849442167969,41.2923976875],[113.897345,41.313843],[113.910257597656,41.299389875],[113.939481230469,41.2859780097656],[113.96193484375,41.2370546699219],[113.976395292969,41.2685622382813],[114.006278105469,41.2327748847657],[113.991185332031,41.183891828125],[113.89166140625,41.1653163886719],[113.89322390625,41.1390956855469],[113.882064238281,41.1291237617188],[113.872625761719,41.1085622382813],[113.814888945313,41.0977846503906],[113.832064238281,41.0785622382813],[113.862625761719,41.0691237617187],[113.872064238281,41.0585622382812],[113.912625761719,41.0291237617188],[113.922064238281,41.0185622382813],[113.972625761719,40.9791237617188],[113.983841582031,40.9428017402344],[114.042659941406,40.9291164375001],[114.040545683594,40.893657453125],[114.052064238281,40.8685622382812],[114.062830839844,40.84874534375],[114.035360136719,40.8241994453125],[114.072064238281,40.7985622382813],[114.092625761719,40.7891237617188],[114.102064238281,40.7585622382813],[114.112625761719,40.7491237617188],[114.117345,40.743843],[114.111539335938,40.7344216132813],[114.089449492188,40.7413014960938],[114.054307890625,40.7196486640625],[114.067281523438,40.6779982734375],[114.053531523438,40.6376552558594],[114.035858183594,40.6124843574219],[114.051158476563,40.5876552558594],[114.064344511719,40.5795302558594],[114.075975371094,40.5421889472656],[114.043531523438,40.5276552558595],[113.951158476563,40.5200307441407],[113.947345,40.513843],[113.9056653125,40.4858925605469],[113.893260527344,40.4679274726562],[113.870357695313,40.4521132636719],[113.83201296875,40.4770839667969],[113.810784941406,40.507827375],[113.787345,40.513843],[113.78298953125,40.5494863105469],[113.77170046875,40.5581996894531],[113.76298953125,40.5794863105469],[113.729705839844,40.620669171875],[113.68490359375,40.6140492988281],[113.668631621094,40.6351308417969],[113.59170046875,40.6481996894532],[113.56298953125,40.6594863105469],[113.52170046875,40.6681996894532],[113.50298953125,40.6994863105469],[113.49170046875,40.7081996894532],[113.487345,40.753843],[113.502579375,40.7679579902344],[113.502110625,40.7797280097657],[113.522535429688,40.7986525703125],[113.532154570313,40.8101210761719],[113.512154570313,40.8286525703125],[113.502535429688,40.8459877753907],[113.542535429688,40.8586525703126],[113.562154570313,40.8890334296875],[113.582750273438,40.8987538886719],[113.55205203125,40.9387856269532],[113.575511503906,40.9958986640625],[113.607874785156,41.0111721015625],[113.632154570313,41.0401210761719],[113.612154570313,41.0586525703125],[113.602535429688,41.0902223945313],[113.64369265625,41.0885915351563],[113.662154570313,41.1095961738282],[113.563104277344,41.1331899238281],[113.602935820313,41.158911359375],[113.602122832031,41.1794289375],[113.572523222656,41.1782558417969],[113.552877226563,41.199458234375],[113.532345,41.1986452460938],[113.517345,41.1992397285157],[113.489564238281,41.1981386542969],[113.407345,41.203843],[113.413475371094,41.2288014960938],[113.407750273438,41.2543361640626],[113.350531035156,41.2757472968751],[113.35490359375,41.2952529121094],[113.373260527344,41.3079274726562],[113.389598417969,41.3315895820313],[113.413260527344,41.3479274726562],[113.433082304688,41.3766347480469],[113.463260527344,41.3879274726562],[113.467345,41.393843],[113.499698515625,41.4142311835938],[113.565858183594,41.3893715644531],[113.559845,41.4483803535157],[113.643602324219,41.4363088203125],[113.683538847656,41.4189882636719],[113.666419707031,41.4047682929687]]]]}},{"type":"Feature","properties":{"name":"卓资县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.957345,41.2638430000001],[111.988973417969,41.2439125800782],[112.042667265625,41.2493849921875],[112.077345,41.2295241523437],[112.112345,41.2495705390625],[112.131883574219,41.2383803535156],[112.17373171875,41.2202309394531],[112.251988554688,41.1582973457032],[112.262735625,41.1593923164063],[112.278797636719,41.1400551582031],[112.362806425781,41.1293056464844],[112.371883574219,41.1183803535156],[112.383538847656,41.1086977363281],[112.359234648438,41.0981569648438],[112.342806425781,41.0783803535156],[112.312806425781,41.0653700996094],[112.321883574219,41.0583803535157],[112.352806425781,41.0493056464844],[112.383238554688,41.0274050117187],[112.407345,41.0298622871094],[112.422345,41.0283339667969],[112.457345,41.0319008613281],[112.517345,41.0257851386719],[112.552345,41.0293520332031],[112.597801542969,41.0247194648438],[112.6231653125,41.0690077949219],[112.582806425781,41.1025319648438],[112.592452421875,41.1203603339844],[112.650640898438,41.1144301582032],[112.685455351563,41.1295290351563],[112.701883574219,41.1493056464844],[112.717345,41.1538430000001],[112.720704375,41.1372023750001],[112.738001738281,41.1154274726563],[112.729830351563,41.0986952949219],[112.7441028125,41.070483625],[112.763985625,41.077202375],[112.770704375,41.100483625],[112.807345,41.103843],[112.820238066406,41.0610207343751],[112.852345,41.0584413886719],[112.871849394531,41.0600087714844],[112.874344511719,41.0289614082031],[112.82271609375,41.0134169746094],[112.832008085938,40.9984145332032],[112.842547636719,40.9992604804687],[112.884410429688,40.9878041816407],[112.918499785156,40.9905422187501],[112.953084746094,40.9285549140625],[112.906654082031,40.9180068183594],[112.92728640625,40.8810243964844],[112.883011503906,40.8428774238282],[112.897345,40.8038430000001],[112.890682402344,40.7750917792969],[112.894466582031,40.7494863105469],[112.88170046875,40.7581996894531],[112.872518339844,40.7700966621094],[112.837345,40.743843],[112.81209109375,40.7383339667969],[112.798089628906,40.7545864082032],[112.779476347656,40.7706215644532],[112.752020292969,40.7684157539063],[112.74271609375,40.7792153144532],[112.730365019531,40.7884706855469],[112.732769804688,40.7585646796875],[112.72197390625,40.7392153144532],[112.707345,40.7064321113281],[112.663326445313,40.7099697089844],[112.64271609375,40.6984706855469],[112.59197390625,40.6892153144531],[112.57271609375,40.6784706855469],[112.55197390625,40.6692153144532],[112.541373320313,40.6569118476562],[112.502669707031,40.6600221992188],[112.487345,40.6422365546875],[112.464586210938,40.6686525703125],[112.425809355469,40.6803261542969],[112.380726347656,40.676704328125],[112.329464140625,40.7362038398438],[112.300365019531,40.7491896796876],[112.302772246094,40.7791664863282],[112.29197390625,40.7884706855469],[112.282574492188,40.799380109375],[112.242008085938,40.7882778144531],[112.231707792969,40.8447487617188],[112.177345,40.813843],[112.173441191406,40.8499404121094],[112.148714628906,40.8809218574219],[112.153878203125,40.8993019843751],[112.141248808594,40.9177455878906],[112.127345,40.9572731757813],[112.084796171875,40.9453163886719],[112.063441191406,40.9599404121094],[112.037345,40.9638430000001],[112.018211699219,41.0058657050782],[112.023084746094,41.0388430000001],[112.020765410156,41.054536359375],[111.97170046875,41.0681996894532],[111.96298953125,41.0794863105469],[111.920413847656,41.0969118476563],[111.90298953125,41.1194863105469],[111.867345,41.133843],[111.861600371094,41.1688088203125],[111.863089628906,41.1788771796875],[111.857345,41.213843],[111.883289824219,41.2249794746094],[111.903062773438,41.1952443671875],[111.925599394531,41.2009230781251],[111.91375125,41.2479555488282],[111.953350859375,41.257837140625],[111.957345,41.2638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.427345,41.523843],[113.430577421875,41.5460292792969],[113.448958769531,41.5269924140625],[113.427345,41.523843]]],[[[113.297345,41.5638430000001],[113.300767851563,41.5760353828125],[113.309537382813,41.5672658515625],[113.297345,41.5638430000001]]],[[[113.297345,41.5638430000001],[113.313270292969,41.5416237617188],[113.368909941406,41.530630109375],[113.400238066406,41.5530849433594],[113.353170195313,41.5712380195313],[113.369832792969,41.6080178046875],[113.404659453125,41.5955568671876],[113.401344023438,41.5787770820313],[113.411519804688,41.5280178046875],[113.427345,41.523843],[113.438365507813,41.4890334296876],[113.462535429688,41.4986525703126],[113.481065703125,41.5186525703125],[113.512154570313,41.4925795722656],[113.445538359375,41.4604555488281],[113.387706328125,41.4807253242188],[113.292535429688,41.4677187324219],[113.312974882813,41.4582729316407],[113.35093875,41.4597780585938],[113.362684355469,41.4488954902344],[113.347345,41.423843],[113.328026152344,41.4328688789063],[113.294823027344,41.4203530097656],[113.304447050781,41.4002114082031],[113.341925078125,41.4143386054688],[113.347345,41.423843],[113.387047148438,41.4173207832032],[113.402345,41.4195815253907],[113.421302519531,41.4167800117188],[113.423421660156,41.4311244941407],[113.37298953125,41.4517653632813],[113.392406035156,41.4597780585938],[113.454615507813,41.4492104316407],[113.451529570313,41.4283315253907],[113.46298953125,41.4194863105469],[113.467345,41.393843],[113.463260527344,41.3879274726562],[113.433082304688,41.3766347480469],[113.413260527344,41.3479274726562],[113.389598417969,41.3315895820313],[113.373260527344,41.3079274726562],[113.35490359375,41.2952529121094],[113.350531035156,41.2757472968751],[113.407750273438,41.2543361640626],[113.413475371094,41.2288014960938],[113.407345,41.203843],[113.39400515625,41.1871840644532],[113.371790800781,41.1693959785156],[113.356143828125,41.1498537421875],[113.309371367188,41.1773464179688],[113.282345,41.180708234375],[113.234041777344,41.1746999335938],[113.201790800781,41.1882900214844],[113.155845976563,41.215298078125],[113.112799101563,41.2206520820313],[113.088428984375,41.1902211738282],[113.067345,41.1875991035157],[113.012908964844,41.1943703437501],[112.971790800781,41.1693959785156],[112.962799101563,41.1581642890625],[112.948626738281,41.159926984375],[112.881488066406,41.1407314277344],[112.883031035156,41.1283193183594],[112.815191679688,41.1136403632813],[112.807345,41.103843],[112.770704375,41.100483625],[112.763985625,41.077202375],[112.7441028125,41.070483625],[112.729830351563,41.0986952949219],[112.738001738281,41.1154274726563],[112.720704375,41.1372023750001],[112.717345,41.1538430000001],[112.699188261719,41.1832143378907],[112.732625761719,41.1985622382813],[112.746783476563,41.2144057441406],[112.767906523438,41.2332802558594],[112.782064238281,41.2491237617188],[112.792625761719,41.2585622382813],[112.802064238281,41.2791237617188],[112.833902617188,41.3377150703126],[112.832047148438,41.368843],[112.832642851563,41.3788430000001],[112.8320325,41.3890798164063],[112.853206816406,41.4193923164063],[112.850953398438,41.4572035957031],[112.816126738281,41.5070619941406],[112.775560332031,41.5433071113282],[112.762625761719,41.7106923652344],[112.803909941406,41.7475783515626],[112.801234160156,41.7924990058594],[112.777345,41.813843],[112.7627746875,41.8806471992188],[112.80271609375,41.8984706855469],[112.816600371094,41.9145864082031],[112.86271609375,41.9284706855469],[112.88197390625,41.9392153144531],[112.96271609375,41.9684706855469],[112.987345,41.9838430000001],[113.039232207031,41.9791152167969],[113.074256621094,41.9302468085938],[113.122056914063,41.9498879218751],[113.171519804688,41.9401137519532],[113.163170195313,41.9596681953126],[113.143392363281,41.973843],[113.157345,41.9838430000001],[113.212550078125,41.9490248847656],[113.210965605469,41.909028546875],[113.262154570313,41.8928224921875],[113.222945585938,41.8758242011719],[113.146365996094,41.8958913398438],[113.130338164063,41.8655995917969],[113.192786894531,41.8288857246094],[113.162625761719,41.8009401679688],[113.1610559375,41.7612966132812],[113.212535429688,41.7490334296875],[113.232154570313,41.7386525703125],[113.252550078125,41.7290261054688],[113.252147246094,41.7188430000001],[113.252550078125,41.7086598945313],[113.231881132813,41.6989052558594],[113.252154570313,41.6801210761719],[113.242457304688,41.6786403632813],[113.212535429688,41.6798268867188],[113.222154570313,41.6586525703125],[113.242550078125,41.6490261054688],[113.241492949219,41.6223293281251],[113.257606230469,41.5714296699219],[113.297345,41.5638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.201790800781,41.1882900214844],[113.234041777344,41.1746999335938],[113.282345,41.180708234375],[113.309371367188,41.1773464179688],[113.356143828125,41.1498537421875],[113.371790800781,41.1693959785156],[113.39400515625,41.1871840644532],[113.407345,41.203843],[113.489564238281,41.1981386542969],[113.517345,41.1992397285157],[113.532345,41.1986452460938],[113.552877226563,41.199458234375],[113.572523222656,41.1782558417969],[113.602122832031,41.1794289375],[113.602935820313,41.158911359375],[113.563104277344,41.1331899238281],[113.662154570313,41.1095961738282],[113.64369265625,41.0885915351563],[113.602535429688,41.0902223945313],[113.612154570313,41.0586525703125],[113.632154570313,41.0401210761719],[113.607874785156,41.0111721015625],[113.575511503906,40.9958986640625],[113.55205203125,40.9387856269532],[113.582750273438,40.8987538886719],[113.562154570313,40.8890334296875],[113.542535429688,40.8586525703126],[113.502535429688,40.8459877753907],[113.512154570313,40.8286525703125],[113.532154570313,40.8101210761719],[113.522535429688,40.7986525703125],[113.502110625,40.7797280097657],[113.502579375,40.7679579902344],[113.487345,40.753843],[113.482899199219,40.7593959785157],[113.400572539063,40.7928493476563],[113.372899199219,40.7582900214844],[113.361790800781,40.7493959785156],[113.352860136719,40.7181569648438],[113.342061796875,40.7194997382813],[113.307738066406,40.7063063789063],[113.275318632813,40.7103395820313],[113.235719023438,40.7336159492188],[113.192345,40.7282216621094],[113.168951445313,40.7311305976563],[113.17431765625,40.6879750800782],[113.157345,40.6900868964844],[113.134276152344,40.6872170234375],[113.076807890625,40.7120241523438],[113.05416140625,40.7403066230469],[113.022139921875,40.7279982734375],[112.972899199219,40.7693959785157],[112.92375125,40.7992482734376],[112.897345,40.8038430000001],[112.883011503906,40.8428774238282],[112.92728640625,40.8810243964844],[112.906654082031,40.9180068183594],[112.953084746094,40.9285549140625],[112.918499785156,40.9905422187501],[112.884410429688,40.9878041816407],[112.842547636719,40.9992604804687],[112.832008085938,40.9984145332032],[112.82271609375,41.0134169746094],[112.874344511719,41.0289614082031],[112.871849394531,41.0600087714844],[112.852345,41.0584413886719],[112.820238066406,41.0610207343751],[112.807345,41.103843],[112.815191679688,41.1136403632813],[112.883031035156,41.1283193183594],[112.881488066406,41.1407314277344],[112.948626738281,41.159926984375],[112.962799101563,41.1581642890625],[112.971790800781,41.1693959785156],[113.012908964844,41.1943703437501],[113.067345,41.1875991035157],[113.088428984375,41.1902211738282],[113.112799101563,41.2206520820313],[113.155845976563,41.215298078125],[113.201790800781,41.1882900214844]],[[113.107345,40.9638430000001],[113.095152617188,40.9604201484375],[113.103922148438,40.9516506171875],[113.123304472656,40.9575685859375],[113.163160429688,40.9883315253907],[113.161529570313,40.9993544746094],[113.18677859375,41.018843],[113.153065214844,41.0448647285156],[113.139920683594,41.0769850898438],[113.120694609375,41.0798256660156],[113.044261503906,41.0636965156251],[113.027261992188,40.9903334785156],[113.052345,40.986626203125],[113.085928984375,40.9915895820313],[113.107345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.777345,41.813843],[112.801234160156,41.7924990058594],[112.803909941406,41.7475783515626],[112.762625761719,41.7106923652344],[112.775560332031,41.5433071113282],[112.816126738281,41.5070619941406],[112.850953398438,41.4572035957031],[112.853206816406,41.4193923164063],[112.8320325,41.3890798164063],[112.832642851563,41.3788430000001],[112.832047148438,41.368843],[112.833902617188,41.3377150703126],[112.802064238281,41.2791237617188],[112.792625761719,41.2585622382813],[112.782064238281,41.2491237617188],[112.767906523438,41.2332802558594],[112.746783476563,41.2144057441406],[112.732625761719,41.1985622382813],[112.699188261719,41.1832143378907],[112.717345,41.1538430000001],[112.701883574219,41.1493056464844],[112.685455351563,41.1295290351563],[112.650640898438,41.1144301582032],[112.592452421875,41.1203603339844],[112.582806425781,41.1025319648438],[112.6231653125,41.0690077949219],[112.597801542969,41.0247194648438],[112.552345,41.0293520332031],[112.517345,41.0257851386719],[112.457345,41.0319008613281],[112.422345,41.0283339667969],[112.407345,41.0298622871094],[112.383238554688,41.0274050117187],[112.352806425781,41.0493056464844],[112.321883574219,41.0583803535157],[112.312806425781,41.0653700996094],[112.342806425781,41.0783803535156],[112.359234648438,41.0981569648438],[112.383538847656,41.1086977363281],[112.371883574219,41.1183803535156],[112.362806425781,41.1293056464844],[112.278797636719,41.1400551582031],[112.262735625,41.1593923164063],[112.251988554688,41.1582973457032],[112.17373171875,41.2202309394531],[112.131883574219,41.2383803535156],[112.112345,41.2495705390625],[112.077345,41.2295241523437],[112.042667265625,41.2493849921875],[111.988973417969,41.2439125800782],[111.957345,41.2638430000001],[111.9521496875,41.2815444160156],[111.931795683594,41.298452375],[111.932855253906,41.3088430000001],[111.930855742188,41.328452375],[111.960511503906,41.3530861640626],[111.971883574219,41.3793056464844],[111.982806425781,41.3883803535156],[111.993516875,41.4012721992188],[112.031954375,41.3973537421876],[112.05095828125,41.4202309394531],[112.121883574219,41.4410439277344],[112.112806425781,41.4593056464844],[112.094298125,41.4746804023438],[112.088817167969,41.528452375],[112.118182402344,41.5528456855469],[112.132806425781,41.5783803535156],[112.142200957031,41.6103871894532],[112.166002226563,41.6079604316407],[112.160203886719,41.6648561835938],[112.212413359375,41.6794533515625],[112.242440214844,41.6681703925782],[112.277728300781,41.6883803535156],[112.342806425781,41.6793056464844],[112.383118925781,41.6502931953125],[112.426326933594,41.6458888984376],[112.47287234375,41.8074526191406],[112.583094511719,41.7962184882813],[112.651595488281,41.8114675117187],[112.682667265625,41.8083010078126],[112.726019316406,41.8331288886719],[112.777345,41.813843]]]]}},{"type":"Feature","properties":{"name":"丰镇市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.972899199219,40.7693959785157],[113.022139921875,40.7279982734375],[113.05416140625,40.7403066230469],[113.076807890625,40.7120241523438],[113.134276152344,40.6872170234375],[113.157345,40.6900868964844],[113.17431765625,40.6879750800782],[113.168951445313,40.7311305976563],[113.192345,40.7282216621094],[113.235719023438,40.7336159492188],[113.275318632813,40.7103395820313],[113.307738066406,40.7063063789063],[113.342061796875,40.7194997382813],[113.352860136719,40.7181569648438],[113.361790800781,40.7493959785156],[113.372899199219,40.7582900214844],[113.400572539063,40.7928493476563],[113.482899199219,40.7593959785157],[113.487345,40.753843],[113.49170046875,40.7081996894532],[113.50298953125,40.6994863105469],[113.52170046875,40.6681996894532],[113.56298953125,40.6594863105469],[113.59170046875,40.6481996894532],[113.668631621094,40.6351308417969],[113.68490359375,40.6140492988281],[113.729705839844,40.620669171875],[113.76298953125,40.5794863105469],[113.77170046875,40.5581996894531],[113.78298953125,40.5494863105469],[113.787345,40.513843],[113.749115019531,40.4710561347656],[113.692064238281,40.4491237617188],[113.551868925781,40.3402040839844],[113.477345,40.333843],[113.448304472656,40.3231789375],[113.313074980469,40.3092153144531],[113.27271609375,40.3792153144531],[113.249906035156,40.4113857246094],[113.20271609375,40.3984706855469],[113.16197390625,40.3892153144532],[113.12271609375,40.378470685547],[112.977345,40.3538430000001],[112.961073027344,40.3952346015626],[112.963084746094,40.408843],[112.961131621094,40.4220619941407],[112.92170046875,40.4381996894532],[112.91298953125,40.4763075996094],[112.995811796875,40.4903774238282],[112.98857546875,40.5393544746094],[113.014215117188,40.559145734375],[112.98170046875,40.5681996894531],[112.95298953125,40.5894863105469],[112.913472929688,40.60565940625],[112.86205203125,40.5980605292969],[112.814920683594,40.6165895820313],[112.79298953125,40.6524428535156],[112.833436308594,40.6464650703125],[112.827711210938,40.6851979804688],[112.837345,40.743843],[112.872518339844,40.7700966621094],[112.88170046875,40.7581996894531],[112.894466582031,40.7494863105469],[112.890682402344,40.7750917792969],[112.897345,40.8038430000001],[112.92375125,40.7992482734376],[112.972899199219,40.7693959785157]]]]}},{"type":"Feature","properties":{"name":"化德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.677345,42.203843],[114.665152617188,42.2004201484376],[114.673922148438,42.1916506171875],[114.71298953125,42.2081996894531],[114.747345,42.2138430000001],[114.79556765625,42.2056508613282],[114.7916028125,42.1788088203125],[114.797345,42.1438430000001],[114.756715117188,42.1140724921875],[114.683902617188,42.1199233222656],[114.640206328125,42.1038771796875],[114.593179960938,42.1301149726563],[114.517511015625,42.1240346503907],[114.49271609375,42.0684706855469],[114.460992460938,42.0411391425782],[114.474205351563,42.0051638007813],[114.503951445313,41.9795351386719],[114.486793242188,41.9647524238282],[114.4414075,41.9444997382813],[114.377345,41.9496462226563],[114.359742460938,41.9482326484375],[114.34271609375,41.9284706855469],[114.32197390625,41.9192153144532],[114.276292753906,41.8601674628907],[114.199141875,41.7936989570313],[114.202764921875,41.7486049628907],[114.197345,41.733843],[114.170323515625,41.7280690742188],[114.141585722656,41.7297817207032],[114.114432402344,41.6993898750001],[114.090257597656,41.688296125],[114.07259890625,41.6685305],[114.06209109375,41.6691555],[114.043189726563,41.6479994941407],[114.002064238281,41.6291237617188],[113.99209109375,41.61796409375],[113.962345,41.6197365546875],[113.941080351563,41.6184694648438],[113.917105742188,41.6453041816406],[113.932655058594,41.6886415839844],[113.931959257813,41.7003102851562],[113.883104277344,41.6973976875],[113.872625761719,41.7091237617188],[113.813768339844,41.7617128730469],[113.832867460938,41.7787783027344],[113.812064238281,41.8085622382813],[113.802625761719,41.8291237617188],[113.78615359375,41.843843],[113.797345,41.853843],[113.800767851563,41.8416506171875],[113.809537382813,41.8504201484376],[113.797345,41.853843],[113.792806425781,41.8593056464844],[113.769234648438,41.8695290351563],[113.746280546875,41.8971633125001],[113.711883574219,41.9183803535156],[113.682806425781,41.9417678046875],[113.716781035156,41.9699880195313],[113.682994414063,42.0492238593751],[113.643604765625,42.0663075996094],[113.631173125,42.0812721992188],[113.593533964844,42.0774355292969],[113.56244265625,42.0952419257813],[113.557345,42.123843],[113.592625761719,42.1191237617188],[113.630853300781,42.1054079414063],[113.701234160156,42.1242580390625],[113.7452746875,42.0749684882813],[113.828729277344,42.0571376777344],[113.870848417969,42.0596474433594],[113.89906375,42.0344374824219],[113.912586699219,41.9763149238281],[113.969283476563,41.9559706855469],[114.012479277344,41.9894460273438],[114.026219511719,41.9595058417969],[114.052435332031,41.9579433417969],[114.062254667969,41.9897426582032],[114.093392363281,41.9878871894532],[114.061878691406,42.0388600898438],[114.082625761719,42.0685622382813],[114.102076445313,42.1191567207031],[114.160828886719,42.1156557441406],[114.204097929688,42.1290163398438],[114.237923613281,42.1668740058594],[114.298365507813,42.1885622382813],[114.361732207031,42.1639113593751],[114.37361453125,42.1002577949219],[114.4472278125,42.0958693671876],[114.475484648438,42.1211135078125],[114.457906523438,42.1594057441406],[114.397225371094,42.1979982734375],[114.511129179688,42.2244997382813],[114.542061796875,42.2591237617188],[114.552628203125,42.2685622382813],[114.564971953125,42.2954592109375],[114.640318632813,42.2684242988282],[114.673331328125,42.2703920722657],[114.671612578125,42.2415358710938],[114.677345,42.203843]]]]}},{"type":"Feature","properties":{"name":"集宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.107345,40.9638430000001],[113.103922148438,40.9516506171875],[113.095152617188,40.9604201484375],[113.107345,40.9638430000001]]],[[[113.107345,40.9638430000001],[113.085928984375,40.9915895820313],[113.052345,40.986626203125],[113.027261992188,40.9903334785156],[113.044261503906,41.0636965156251],[113.120694609375,41.0798256660156],[113.139920683594,41.0769850898438],[113.153065214844,41.0448647285156],[113.18677859375,41.018843],[113.161529570313,40.9993544746094],[113.163160429688,40.9883315253907],[113.123304472656,40.9575685859375],[113.107345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"凉城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.231707792969,40.8447487617188],[112.242008085938,40.7882778144531],[112.282574492188,40.799380109375],[112.29197390625,40.7884706855469],[112.302772246094,40.7791664863282],[112.300365019531,40.7491896796876],[112.329464140625,40.7362038398438],[112.380726347656,40.676704328125],[112.425809355469,40.6803261542969],[112.464586210938,40.6686525703125],[112.487345,40.6422365546875],[112.502669707031,40.6600221992188],[112.541373320313,40.6569118476562],[112.55197390625,40.6692153144532],[112.57271609375,40.6784706855469],[112.59197390625,40.6892153144531],[112.64271609375,40.6984706855469],[112.663326445313,40.7099697089844],[112.707345,40.7064321113281],[112.72197390625,40.7392153144532],[112.732769804688,40.7585646796875],[112.730365019531,40.7884706855469],[112.74271609375,40.7792153144532],[112.752020292969,40.7684157539063],[112.779476347656,40.7706215644532],[112.798089628906,40.7545864082032],[112.81209109375,40.7383339667969],[112.837345,40.743843],[112.827711210938,40.6851979804688],[112.833436308594,40.6464650703125],[112.79298953125,40.6524428535156],[112.814920683594,40.6165895820313],[112.86205203125,40.5980605292969],[112.913472929688,40.60565940625],[112.95298953125,40.5894863105469],[112.98170046875,40.5681996894531],[113.014215117188,40.559145734375],[112.98857546875,40.5393544746094],[112.995811796875,40.4903774238282],[112.91298953125,40.4763075996094],[112.92170046875,40.4381996894532],[112.961131621094,40.4220619941407],[112.963084746094,40.408843],[112.961073027344,40.3952346015626],[112.977345,40.3538430000001],[112.894901152344,40.3302712226563],[112.882899199219,40.2882900214844],[112.867345,40.253843],[112.855211210938,40.2114064765625],[112.829058867188,40.1960341621094],[112.735018339844,40.1598854804688],[112.671790800781,40.1982900214844],[112.642899199219,40.2193959785156],[112.617345,40.2338430000001],[112.61298953125,40.2394863105469],[112.523878203125,40.2628774238282],[112.46298953125,40.2894863105469],[112.413453398438,40.2981996894531],[112.360462675781,40.2589125800782],[112.307345,40.253843],[112.301429472656,40.2579274726563],[112.293260527344,40.2697585273438],[112.279132109375,40.2795131660156],[112.286158476563,40.3108534980469],[112.259132109375,40.3295131660157],[112.263648710938,40.3496584296876],[112.230245390625,40.3582314277344],[112.254185820313,40.3891200996094],[112.241429472656,40.3979274726562],[112.233260527344,40.4097585273438],[112.210472441406,40.4254921699219],[112.215706816406,40.448843],[112.169598417969,40.4660964179688],[112.153260527344,40.4897585273438],[112.123592558594,40.5102431464844],[112.111898222656,40.5076222968751],[112.08201296875,40.5270839667969],[112.073260527344,40.5397585273438],[112.052801542969,40.5538845039063],[112.043260527344,40.5820009589844],[112.08209109375,40.5732949042969],[112.091429472656,40.6103102851563],[112.045513945313,40.6420119453126],[112.037345,40.6538430000001],[112.10271609375,40.6684706855469],[112.127125273438,40.696801984375],[112.10197390625,40.7184706855469],[112.086287871094,40.7366774726563],[112.139032011719,40.7602138496094],[112.152977324219,40.7914638496094],[112.17271609375,40.8084706855469],[112.177345,40.813843],[112.231707792969,40.8447487617188]]]]}},{"type":"Feature","properties":{"name":"商都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.347345,41.423843],[113.341925078125,41.4143386054688],[113.304447050781,41.4002114082031],[113.294823027344,41.4203530097656],[113.328026152344,41.4328688789063],[113.347345,41.423843]]],[[[113.797345,41.853843],[113.809537382813,41.8504201484376],[113.800767851563,41.8416506171875],[113.797345,41.853843]]],[[[113.797345,41.853843],[113.78615359375,41.843843],[113.802625761719,41.8291237617188],[113.812064238281,41.8085622382813],[113.832867460938,41.7787783027344],[113.813768339844,41.7617128730469],[113.872625761719,41.7091237617188],[113.883104277344,41.6973976875],[113.931959257813,41.7003102851562],[113.932655058594,41.6886415839844],[113.917105742188,41.6453041816406],[113.941080351563,41.6184694648438],[113.962345,41.6197365546875],[113.99209109375,41.61796409375],[114.002064238281,41.6291237617188],[114.043189726563,41.6479994941407],[114.06209109375,41.6691555],[114.07259890625,41.6685305],[114.090257597656,41.688296125],[114.114432402344,41.6993898750001],[114.141585722656,41.7297817207032],[114.170323515625,41.7280690742188],[114.197345,41.733843],[114.228929472656,41.70855003125],[114.211431914063,41.6787831855469],[114.247039824219,41.6300356269531],[114.220479765625,41.618843],[114.223587675781,41.593843],[114.220477324219,41.5688198066407],[114.227345,41.513843],[114.207345,41.503843],[114.197122832031,41.5170851875],[114.104388457031,41.5328395820313],[114.072345,41.5281044746094],[114.062261992188,41.5295937324219],[114.00259890625,41.5181240058594],[113.95298953125,41.4881996894532],[113.92170046875,41.4794863105469],[113.910811796875,41.4528774238282],[113.87170046875,41.4294863105469],[113.86298953125,41.4134096503906],[113.934234648438,41.3935707832032],[113.919769316406,41.3311525703125],[113.897345,41.313843],[113.849442167969,41.2923976875],[113.802806425781,41.3293056464844],[113.751883574219,41.3383803535157],[113.722806425781,41.3493056464844],[113.688829375,41.3583803535157],[113.662806425781,41.2983803535157],[113.650155058594,41.2893056464844],[113.632806425781,41.3293056464844],[113.621883574219,41.3383803535157],[113.612806425781,41.3710329414063],[113.652806425781,41.3883803535156],[113.666419707031,41.4047682929687],[113.683538847656,41.4189882636719],[113.643602324219,41.4363088203125],[113.559845,41.4483803535157],[113.565858183594,41.3893715644531],[113.499698515625,41.4142311835938],[113.467345,41.393843],[113.46298953125,41.4194863105469],[113.451529570313,41.4283315253907],[113.454615507813,41.4492104316407],[113.392406035156,41.4597780585938],[113.37298953125,41.4517653632813],[113.423421660156,41.4311244941407],[113.421302519531,41.4167800117188],[113.402345,41.4195815253907],[113.387047148438,41.4173207832032],[113.347345,41.423843],[113.362684355469,41.4488954902344],[113.35093875,41.4597780585938],[113.312974882813,41.4582729316407],[113.292535429688,41.4677187324219],[113.387706328125,41.4807253242188],[113.445538359375,41.4604555488281],[113.512154570313,41.4925795722656],[113.481065703125,41.5186525703125],[113.462535429688,41.4986525703126],[113.438365507813,41.4890334296876],[113.427345,41.523843],[113.448958769531,41.5269924140625],[113.430577421875,41.5460292792969],[113.427345,41.523843],[113.411519804688,41.5280178046875],[113.401344023438,41.5787770820313],[113.404659453125,41.5955568671876],[113.369832792969,41.6080178046875],[113.353170195313,41.5712380195313],[113.400238066406,41.5530849433594],[113.368909941406,41.530630109375],[113.313270292969,41.5416237617188],[113.297345,41.5638430000001],[113.309537382813,41.5672658515625],[113.300767851563,41.5760353828125],[113.297345,41.5638430000001],[113.257606230469,41.5714296699219],[113.241492949219,41.6223293281251],[113.242550078125,41.6490261054688],[113.222154570313,41.6586525703125],[113.212535429688,41.6798268867188],[113.242457304688,41.6786403632813],[113.252154570313,41.6801210761719],[113.231881132813,41.6989052558594],[113.252550078125,41.7086598945313],[113.252147246094,41.7188430000001],[113.252550078125,41.7290261054688],[113.232154570313,41.7386525703125],[113.212535429688,41.7490334296875],[113.1610559375,41.7612966132812],[113.162625761719,41.8009401679688],[113.192786894531,41.8288857246094],[113.130338164063,41.8655995917969],[113.146365996094,41.8958913398438],[113.222945585938,41.8758242011719],[113.262154570313,41.8928224921875],[113.210965605469,41.909028546875],[113.212550078125,41.9490248847656],[113.157345,41.9838430000001],[113.163748808594,41.9921388984375],[113.211693144531,42.0117617011719],[113.255562773438,42.0456240058594],[113.286988554688,42.0863368964844],[113.356859160156,42.1381386542969],[113.377345,42.1438430000001],[113.41170046875,42.1381996894532],[113.53298953125,42.1294863105469],[113.557345,42.123843],[113.56244265625,42.0952419257813],[113.593533964844,42.0774355292969],[113.631173125,42.0812721992188],[113.643604765625,42.0663075996094],[113.682994414063,42.0492238593751],[113.716781035156,41.9699880195313],[113.682806425781,41.9417678046875],[113.711883574219,41.9183803535156],[113.746280546875,41.8971633125001],[113.769234648438,41.8695290351563],[113.792806425781,41.8593056464844],[113.797345,41.853843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿尔山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.367345,47.1338430000001],[121.375201445313,47.1493727851563],[121.397345,47.153843],[121.389488554688,47.1383132148438],[121.367345,47.1338430000001]]],[[[121.367345,47.1338430000001],[121.36298953125,47.1281990791016],[121.3421496875,47.1121120429688],[121.33298953125,47.0581990791016],[121.32170046875,47.0394869208985],[121.3086340625,47.0075557685547],[121.288355742188,46.9739388251953],[121.33298953125,46.9394869208985],[121.337345,46.933843],[121.3024621875,46.9284316230469],[121.267345,46.9312532783203],[121.201221953125,46.9259401679688],[121.149093046875,46.9402065253906],[121.13271609375,46.9592147041016],[121.09896609375,46.9803548408203],[121.074439726563,47.0088240791016],[121.024327421875,47.0202077460938],[121.002345,47.0184413886719],[120.963961210938,47.0215254951172],[120.95271609375,47.0084712958985],[120.917916289063,46.997993390625],[120.902022734375,46.9992708564453],[120.888253203125,46.9832912421876],[120.871715117188,46.9462221503906],[120.84314578125,46.9216115546875],[120.80197390625,46.9092147041016],[120.78271609375,46.8784712958985],[120.766451445313,46.8644570136719],[120.82271609375,46.8292147041016],[120.836412382813,46.7985280585938],[120.814537382813,46.7389607978516],[120.843170195313,46.6985744453125],[120.789967070313,46.6864876533204],[120.564312773438,46.6657546210938],[120.54345828125,46.6899587226563],[120.48197390625,46.7084712958984],[120.44345828125,46.7299587226562],[120.395982695313,46.7511440253907],[120.345699492188,46.7471034980469],[120.289976835938,46.7675655341797],[120.24197390625,46.7784712958985],[120.21271609375,46.7992147041016],[120.135357695313,46.8110030341797],[120.10271609375,46.8292147041016],[120.070103789063,46.8390340400391],[120.021715117188,46.895200421875],[119.984288359375,46.9119008613281],[119.917345,46.9038430000001],[119.843170195313,46.9234383369141],[119.863048125,46.9590663886719],[119.84197390625,46.9684712958985],[119.790513945313,47.0110384345703],[119.792745390625,47.038843],[119.791944609375,47.048843],[119.793150664063,47.063843],[119.791495390625,47.0844246650391],[119.702139921875,47.1924495673828],[119.63797,47.2385280585938],[119.56197390625,47.2484712958984],[119.551495390625,47.2832711005859],[119.5527746875,47.299189069336],[119.53197390625,47.3084712958985],[119.51271609375,47.3192147041016],[119.48197390625,47.3284712958985],[119.477345,47.333843],[119.519195585938,47.3389577460938],[119.6097278125,47.35806175],[119.642081328125,47.3999806953125],[119.69170046875,47.4194869208985],[119.7620715625,47.4343367744141],[119.80162234375,47.4648647285157],[119.81494265625,47.4974056220704],[119.90877078125,47.5669686103516],[119.952569609375,47.5797396064454],[119.983922148438,47.5608260322266],[120.018277617188,47.5557491279297],[120.06298953125,47.5681990791016],[120.105792265625,47.5940200019532],[120.175714140625,47.6087740302735],[120.19189578125,47.6297396064453],[120.217345,47.6238430000001],[120.269185820313,47.6533150458985],[120.289722929688,47.6294747138672],[120.31271609375,47.6192147041016],[120.32197390625,47.6084712958985],[120.37271609375,47.5892147041016],[120.405894804688,47.5707021308594],[120.46197390625,47.5584712958985],[120.497345,47.5538430000001],[120.505152617188,47.5440908027344],[120.552345,47.5382210517579],[120.591197539063,47.5430538154298],[120.593013945313,47.5284828925782],[120.575758085938,47.4991353583985],[120.62400515625,47.4605025458985],[120.641793242188,47.4382900214844],[120.68935671875,47.4182460761719],[120.721241484375,47.3927150703126],[120.722965117188,47.378843],[120.721724882813,47.368843],[120.72302859375,47.358344953125],[120.701793242188,47.3493959785157],[120.692843046875,47.32815940625],[120.679517851563,47.3298165107422],[120.642896757813,47.3082900214844],[120.60875125,47.2939009833985],[120.62267703125,47.2451912666016],[120.732398710938,47.2138210273438],[120.762896757813,47.1893959785156],[120.784263945313,47.1627150703126],[120.821793242188,47.1482900214844],[120.889464140625,47.1365126777344],[120.95396609375,47.0893959785157],[120.972896757813,47.0982900214844],[121.025831328125,47.1369576240235],[121.092535429688,47.149536359375],[121.121793242188,47.1382900214845],[121.192896757813,47.1293959785157],[121.244928007813,47.1093959785156],[121.282896757813,47.1182900214844],[121.311793242188,47.1293959785157],[121.367345,47.1338430000001]]]]}},{"type":"Feature","properties":{"name":"科尔沁右翼前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.963961210938,47.0215254951172],[121.002345,47.0184413886719],[121.024327421875,47.0202077460938],[121.074439726563,47.0088240791016],[121.09896609375,46.9803548408203],[121.13271609375,46.9592147041016],[121.149093046875,46.9402065253906],[121.201221953125,46.9259401679688],[121.267345,46.9312532783203],[121.3024621875,46.9284316230469],[121.337345,46.933843],[121.353570585938,46.9280220771484],[121.391588164063,46.9302877021485],[121.406783476563,46.9132802558594],[121.466104765625,46.8949623847657],[121.4520325,46.8690688300782],[121.452642851563,46.858843],[121.451285429688,46.8360622382813],[121.512779570313,46.7811183906251],[121.510601835938,46.7445662666016],[121.635201445313,46.6768563056641],[121.692628203125,46.6591243720704],[121.702061796875,46.6485616279297],[121.762628203125,46.6391243720703],[121.775655546875,46.596923444336],[121.792061796875,46.5785616279298],[121.816236601563,46.5674666572266],[121.842061796875,46.5385616279297],[121.866236601563,46.5274666572266],[121.893609648438,46.4968325019531],[121.939830351563,46.4995870185547],[121.978287382813,46.4819368720703],[121.992628203125,46.4691243720704],[122.011588164063,46.4479036689453],[122.032345,46.4491408515625],[122.042345,46.4485451484375],[122.052345,46.4491408515625],[122.062345,46.4485451484375],[122.072345,46.4491408515625],[122.082545195313,46.4485329414063],[122.11236453125,46.4592324042969],[122.162061796875,46.4385616279297],[122.219488554688,46.4208296943359],[122.248048125,46.4053090644531],[122.353424101563,46.4115895820313],[122.439986601563,46.3884047675781],[122.462345,46.3897371650391],[122.542935820313,46.3849336982422],[122.593189726563,46.4079994941407],[122.664527617188,46.4467659736328],[122.682061796875,46.4085616279297],[122.752017851563,46.2888118720703],[122.780289335938,46.1383431220704],[122.782628203125,46.0991243720703],[122.787345,46.073843],[122.79197390625,46.0484712958985],[122.812281523438,45.9553646064454],[122.817345,45.883843],[122.811793242188,45.8793959785157],[122.795904570313,45.8595571113281],[122.745816679688,45.8384517646485],[122.785299101563,45.7712905097657],[122.735206328125,45.7086562324219],[122.676920195313,45.6993959785156],[122.646261015625,45.7376845527344],[122.632896757813,45.7693959785156],[122.601793242188,45.7782900214844],[122.571607695313,45.7960335517578],[122.552467070313,45.8199355292969],[122.503150664063,45.7804927802735],[122.49123171875,45.8489772773438],[122.44291140625,45.9093947578125],[122.36619265625,45.9182900214845],[122.352896757813,45.8914278388673],[122.367345,45.853843],[122.33041140625,45.8490108466797],[122.31271609375,45.8284712958985],[122.255577421875,45.7926815009766],[122.23271609375,45.8192147041016],[122.22197390625,45.8284712958985],[122.205836210938,45.8471999335938],[122.0891809375,45.8823232246094],[122.07271609375,45.9192147041016],[122.067345,45.923843],[122.07197390625,45.9292147041016],[122.09271609375,45.9384712958985],[122.120777617188,45.9541280341797],[122.135968046875,45.9881710029297],[122.277867460938,46.0128444648438],[122.30427859375,46.0435005927735],[122.289937773438,46.0959004951172],[122.214288359375,46.1432851386719],[122.20271609375,46.1692147041016],[122.1634778125,46.186723859375],[122.15271609375,46.1992147041016],[122.12197390625,46.2084712958985],[122.109908476563,46.2355117011719],[122.131539335938,46.2742879462891],[122.048565703125,46.2884712958984],[122.003385039063,46.2632637763673],[121.928990507813,46.2905825019531],[121.891241484375,46.2875490546875],[121.892764921875,46.2686043525391],[121.88173953125,46.2385756660156],[121.90271609375,46.2292147041016],[121.929469023438,46.2142885566406],[121.904132109375,46.1924587226563],[121.9730871875,46.1330513740235],[121.971920195313,46.1185469794922],[121.998717070313,46.0807491279298],[121.929986601563,46.0546663642578],[121.847818632813,46.0359993720704],[121.837345,46.0238430000001],[121.793018828125,46.0163130927734],[121.7540246875,45.9927913642578],[121.801646757813,45.9643093085938],[121.814014921875,45.9198970771485],[121.801549101563,45.899233625],[121.80478640625,45.8773073554688],[121.779049101563,45.8574391914063],[121.76298953125,45.8181990791016],[121.747345,45.813843],[121.729752226563,45.8350215888672],[121.691881132813,45.8583803535157],[121.66728640625,45.8879915595703],[121.626964140625,45.899823834961],[121.587257109375,45.8957759833984],[121.572808867188,45.8783803535156],[121.555426054688,45.8639424873047],[121.502345,45.8693526435547],[121.49213015625,45.8683113837891],[121.452808867188,45.8793056464844],[121.384908476563,45.8914052558594],[121.372808867188,45.9193056464844],[121.361793242188,45.9284529853516],[121.3628528125,45.938843],[121.361480742188,45.9523226142579],[121.312345,45.947314069336],[121.28498171875,45.950102765625],[121.259429960938,46.0183187080079],[121.191881132813,46.0283803535157],[121.172808867188,46.0393056464845],[121.132589140625,46.0567470527344],[121.121920195313,46.0813478828125],[121.087345,46.0778237128907],[121.060640898438,46.0805452705079],[121.064771757813,46.0400136542969],[121.051793242188,46.0292330146485],[121.0562121875,45.9858797431641],[120.95095828125,45.9402303291016],[120.903267851563,45.9129177070312],[120.868253203125,45.8977309394532],[120.847345,45.8998622871094],[120.802296171875,45.8952706123047],[120.759888945313,45.8709804511719],[120.737345,45.843843],[120.682061796875,45.8391243720703],[120.642628203125,45.8285616279297],[120.595572539063,45.8191243720704],[120.534674101563,45.8616640449219],[120.467803984375,45.8576784492188],[120.407506132813,45.8249123359375],[120.382628203125,45.8791243720703],[120.355230742188,45.8916970039063],[120.26525515625,45.8863344550781],[120.232628203125,45.9091243720703],[120.2120325,45.9185768867188],[120.212940703125,45.933843],[120.2120325,45.9490688300782],[120.2226575,45.9686171699219],[120.221929960938,45.9808119941406],[120.2008996875,45.9996016669922],[120.203194609375,46.0380800605469],[120.191138945313,46.0602614570313],[120.157345,46.0582466865234],[120.122345,46.0603328681641],[120.077345,46.0576509833985],[120.051470976563,46.0591933417969],[120.053238554688,46.088843],[120.014049101563,46.1068294501954],[119.932237578125,46.1781862617188],[119.914366484375,46.2171260810547],[119.877345,46.203843],[119.86763796875,46.2168935371094],[119.826690703125,46.241005475586],[119.834928007813,46.288843],[119.8295325,46.3201882148438],[119.842760039063,46.3179109931641],[119.869752226563,46.3346150947266],[119.843775664063,46.3539376044923],[119.833077421875,46.3745534492188],[119.888580351563,46.4072377753907],[119.951324492188,46.3964363837891],[119.971612578125,46.4157649970704],[119.903204375,46.4298378730469],[119.940636015625,46.490321881836],[119.901080351563,46.5387587714844],[119.941095,46.6004689765625],[119.911612578125,46.6481087470704],[119.907345,46.663843],[119.91142703125,46.6897585273437],[119.926280546875,46.7125661445312],[119.904322539063,46.7648506904297],[119.931383085938,46.7835341621094],[119.920103789063,46.8338430000001],[119.92361453125,46.8495131660157],[119.894654570313,46.8695082832032],[119.917345,46.9038430000001],[119.984288359375,46.9119008613281],[120.021715117188,46.895200421875],[120.070103789063,46.8390340400391],[120.10271609375,46.8292147041016],[120.135357695313,46.8110030341797],[120.21271609375,46.7992147041016],[120.24197390625,46.7784712958985],[120.289976835938,46.7675655341797],[120.345699492188,46.7471034980469],[120.395982695313,46.7511440253907],[120.44345828125,46.7299587226562],[120.48197390625,46.7084712958984],[120.54345828125,46.6899587226563],[120.564312773438,46.6657546210938],[120.789967070313,46.6864876533204],[120.843170195313,46.6985744453125],[120.814537382813,46.7389607978516],[120.836412382813,46.7985280585938],[120.82271609375,46.8292147041016],[120.766451445313,46.8644570136719],[120.78271609375,46.8784712958985],[120.80197390625,46.9092147041016],[120.84314578125,46.9216115546875],[120.871715117188,46.9462221503906],[120.888253203125,46.9832912421876],[120.902022734375,46.9992708564453],[120.917916289063,46.997993390625],[120.95271609375,47.0084712958985],[120.963961210938,47.0215254951172]]]]}},{"type":"Feature","properties":{"name":"科尔沁右翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.907345,45.553843],[119.919537382813,45.5572664619141],[119.910767851563,45.5660353828125],[119.864117460938,45.5467421699219],[119.84298953125,45.5594869208985],[119.81408328125,45.5713167548829],[119.779991484375,45.5662783027344],[119.747345,45.5738430000001],[119.741085234375,45.5813784003907],[119.6588684375,45.6170345283203],[119.601881132813,45.6383803535157],[119.567345,45.6538430000001],[119.57736453125,45.6663582587891],[119.632345,45.6731966376953],[119.680928984375,45.6671535468751],[119.692896757813,45.6982900214844],[119.703170195313,45.7457625556641],[119.747491484375,45.764438703125],[119.803248320313,45.828691022461],[119.823292265625,45.9710744453126],[119.800885039063,45.9890145087891],[119.829932890625,46.0012544990234],[119.84826296875,46.1065682197266],[119.871241484375,46.1249709296875],[119.873013945313,46.1392031074219],[119.848560820313,46.1807949042969],[119.877345,46.203843],[119.914366484375,46.2171260810547],[119.932237578125,46.1781862617188],[120.014049101563,46.1068294501954],[120.053238554688,46.088843],[120.051470976563,46.0591933417969],[120.077345,46.0576509833985],[120.122345,46.0603328681641],[120.157345,46.0582466865234],[120.191138945313,46.0602614570313],[120.203194609375,46.0380800605469],[120.2008996875,45.9996016669922],[120.221929960938,45.9808119941406],[120.2226575,45.9686171699219],[120.2120325,45.9490688300782],[120.212940703125,45.933843],[120.2120325,45.9185768867188],[120.232628203125,45.9091243720703],[120.26525515625,45.8863344550781],[120.355230742188,45.8916970039063],[120.382628203125,45.8791243720703],[120.407506132813,45.8249123359375],[120.467803984375,45.8576784492188],[120.534674101563,45.8616640449219],[120.595572539063,45.8191243720704],[120.642628203125,45.8285616279297],[120.682061796875,45.8391243720703],[120.737345,45.843843],[120.749488554688,45.83024925],[120.782061796875,45.8185616279298],[120.826436796875,45.8048592353516],[120.882628203125,45.7691243720703],[120.898785429688,45.751040265625],[120.962628203125,45.7391243720704],[120.991783476563,45.7232802558594],[121.022628203125,45.7091243720704],[121.048453398438,45.6802193427734],[121.093189726563,45.6596865058594],[121.12093875,45.5992250800782],[121.132345,45.5985451484376],[121.147345,45.5994393134766],[121.162345,45.5985451484376],[121.172613554688,45.5991567207032],[121.199346953125,45.5409065986328],[121.257232695313,45.5094502998047],[121.333018828125,45.5366432929688],[121.35353640625,45.5183101630859],[121.322628203125,45.4906917548829],[121.349307890625,45.4877681708984],[121.3819934375,45.4897164130859],[121.3826575,45.4786061835938],[121.36173953125,45.4486617255859],[121.409088164063,45.4340413642579],[121.4226575,45.4090688300782],[121.420831328125,45.3784548164063],[121.449107695313,45.3801399970703],[121.472628203125,45.3591243720704],[121.514410429688,45.2843654609376],[121.642061796875,45.2385616279297],[121.697066679688,45.2282955146484],[121.775523710938,45.2001436591797],[121.80250125,45.1985353828125],[121.852061796875,45.2091243720704],[121.985484648438,45.2230281806641],[122.047447539063,45.2710457587891],[122.132061796875,45.2891243720704],[122.137345,45.293843],[122.16326296875,45.2897585273438],[122.21142703125,45.2779274726563],[122.237345,45.273843],[122.228277617188,45.2029677558594],[122.18482546875,45.1780806708985],[122.135513945313,45.1831069160156],[122.108985625,45.1367897773438],[122.116173125,45.066264875],[122.092808867188,45.0283803535157],[122.070909453125,44.9979500556641],[122.078756132813,44.9209596992188],[122.03533328125,44.9021279121094],[122.063043242188,44.8791091132813],[122.092882109375,44.8091268134766],[122.089967070313,44.7805037666016],[122.161881132813,44.7676882148438],[122.139190703125,44.7566164375],[122.092808867188,44.7613442207032],[122.1023059375,44.7373097968751],[122.151480742188,44.7423226142578],[122.15326296875,44.7248299384766],[122.10447390625,44.694735944336],[122.099581328125,44.6467415595703],[122.111881132813,44.6183803535157],[122.122808867188,44.5993056464844],[122.133936796875,44.5736470771485],[122.185045195313,44.5586482978516],[122.201881132813,44.5383803535157],[122.215714140625,44.5268917060547],[122.210968046875,44.4803255439453],[122.291881132813,44.4659059882812],[122.282808867188,44.3083803535157],[122.271881132813,44.2793056464844],[122.267345,44.253843],[122.2240246875,44.2604329658203],[122.172345,44.257353131836],[122.137515898438,44.2594289375],[122.003624296875,44.307470319336],[121.972628203125,44.3291243720704],[121.942061796875,44.3385616279297],[121.927345,44.343843],[121.877437773438,44.4017726875],[121.82197390625,44.4184712958985],[121.81271609375,44.4292147041016],[121.7734778125,44.446723859375],[121.72177859375,44.5067324042969],[121.625367460938,44.581317975586],[121.578248320313,44.6360066962891],[121.600499296875,44.655175397461],[121.537701445313,44.6694411445313],[121.52271609375,44.7192147041016],[121.409967070313,44.7842220283203],[121.412769804688,44.8191213203125],[121.397061796875,44.8472768378906],[121.37197390625,44.8584712958985],[121.294947539063,44.9014461494141],[121.193267851563,44.9468178535156],[121.14197390625,44.9584712958984],[121.09048953125,44.9725618720703],[121.042623320313,44.999267194336],[121.032066679688,44.9984188056641],[121.009854765625,45.0108132148438],[120.99271609375,45.0492147041016],[120.98197390625,45.0684712958984],[120.97271609375,45.1092147041016],[120.951710234375,45.1185884833985],[120.972764921875,45.1685903144531],[120.971812773438,45.1804543281251],[120.91197390625,45.1984712958985],[120.88271609375,45.2092147041016],[120.83197390625,45.2184712958985],[120.8224621875,45.2500575996094],[120.802174101563,45.2484273505859],[120.752515898438,45.2592586494141],[120.742105742188,45.2584218574219],[120.684537382813,45.2795638251954],[120.609366484375,45.3328603339844],[120.550362578125,45.359189069336],[120.552745390625,45.388843],[120.551944609375,45.398843],[120.553345976563,45.4162941718751],[120.48568484375,45.4586733222656],[120.430328398438,45.4687709785156],[120.398595,45.5056081367188],[120.338531523438,45.51925315625],[120.31271609375,45.5492147041016],[120.25197390625,45.5584712958985],[120.22271609375,45.5692147041016],[120.19197390625,45.5784712958985],[120.160787382813,45.5899233222656],[120.127345,45.587235944336],[120.082345,45.5908516669922],[120.052345,45.5884413886719],[120.032345,45.5900484443359],[120.005513945313,45.5878920722657],[119.98271609375,45.5564455390625],[120.024483671875,45.5204616523438],[120.021851835938,45.4876778388673],[120.002345,45.4892446113282],[119.982345,45.4876375556641],[119.90990359375,45.4934584785156],[119.912760039063,45.5290145087891],[119.907345,45.553843]]]]}},{"type":"Feature","properties":{"name":"突泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.121920195313,46.0813478828125],[121.132589140625,46.0567470527344],[121.172808867188,46.0393056464845],[121.191881132813,46.0283803535157],[121.259429960938,46.0183187080079],[121.28498171875,45.950102765625],[121.312345,45.947314069336],[121.361480742188,45.9523226142579],[121.3628528125,45.938843],[121.361793242188,45.9284529853516],[121.372808867188,45.9193056464844],[121.384908476563,45.8914052558594],[121.452808867188,45.8793056464844],[121.49213015625,45.8683113837891],[121.502345,45.8693526435547],[121.555426054688,45.8639424873047],[121.572808867188,45.8783803535156],[121.587257109375,45.8957759833984],[121.626964140625,45.899823834961],[121.66728640625,45.8879915595703],[121.691881132813,45.8583803535157],[121.729752226563,45.8350215888672],[121.747345,45.813843],[121.73927859375,45.7883699775391],[121.722174101563,45.7890480781251],[121.69088015625,45.7675136542969],[121.642960234375,45.7694130683594],[121.642139921875,45.7486659980469],[121.652535429688,45.7390334296875],[121.679625273438,45.7097963691406],[121.754644804688,45.6901393867187],[121.80216921875,45.6882552314453],[121.821011992188,45.7085921455078],[121.9494934375,45.7136843085938],[122.000245390625,45.6177669501953],[121.982535429688,45.5986525703125],[121.9615246875,45.5887374091798],[121.987725859375,45.5392244697266],[122.011041289063,45.4898189521485],[122.171617460938,45.4321846748047],[122.172550078125,45.4086708808594],[122.142154570313,45.3690334296876],[122.137345,45.293843],[122.132061796875,45.2891243720704],[122.047447539063,45.2710457587891],[121.985484648438,45.2230281806641],[121.852061796875,45.2091243720704],[121.80250125,45.1985353828125],[121.775523710938,45.2001436591797],[121.697066679688,45.2282955146484],[121.642061796875,45.2385616279297],[121.514410429688,45.2843654609376],[121.472628203125,45.3591243720704],[121.449107695313,45.3801399970703],[121.420831328125,45.3784548164063],[121.4226575,45.4090688300782],[121.409088164063,45.4340413642579],[121.36173953125,45.4486617255859],[121.3826575,45.4786061835938],[121.3819934375,45.4897164130859],[121.349307890625,45.4877681708984],[121.322628203125,45.4906917548829],[121.35353640625,45.5183101630859],[121.333018828125,45.5366432929688],[121.257232695313,45.5094502998047],[121.199346953125,45.5409065986328],[121.172613554688,45.5991567207032],[121.162345,45.5985451484376],[121.147345,45.5994393134766],[121.132345,45.5985451484376],[121.12093875,45.5992250800782],[121.093189726563,45.6596865058594],[121.048453398438,45.6802193427734],[121.022628203125,45.7091243720704],[120.991783476563,45.7232802558594],[120.962628203125,45.7391243720704],[120.898785429688,45.751040265625],[120.882628203125,45.7691243720703],[120.826436796875,45.8048592353516],[120.782061796875,45.8185616279298],[120.749488554688,45.83024925],[120.737345,45.843843],[120.759888945313,45.8709804511719],[120.802296171875,45.8952706123047],[120.847345,45.8998622871094],[120.868253203125,45.8977309394532],[120.903267851563,45.9129177070312],[120.95095828125,45.9402303291016],[121.0562121875,45.9858797431641],[121.051793242188,46.0292330146485],[121.064771757813,46.0400136542969],[121.060640898438,46.0805452705079],[121.087345,46.0778237128907],[121.121920195313,46.0813478828125]]]]}},{"type":"Feature","properties":{"name":"乌兰浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.928990507813,46.2905825019531],[122.003385039063,46.2632637763673],[122.048565703125,46.2884712958984],[122.131539335938,46.2742879462891],[122.109908476563,46.2355117011719],[122.12197390625,46.2084712958985],[122.15271609375,46.1992147041016],[122.1634778125,46.186723859375],[122.20271609375,46.1692147041016],[122.214288359375,46.1432851386719],[122.289937773438,46.0959004951172],[122.30427859375,46.0435005927735],[122.277867460938,46.0128444648438],[122.135968046875,45.9881710029297],[122.120777617188,45.9541280341797],[122.09271609375,45.9384712958985],[122.07197390625,45.9292147041016],[122.067345,45.923843],[122.00142703125,45.9679274726563],[121.993013945313,45.9801143623047],[121.972345,45.9754805732423],[121.922271757813,45.9867055488282],[121.91326296875,45.9997585273438],[121.848023710938,46.0083773017578],[121.837345,46.0238430000001],[121.847818632813,46.0359993720704],[121.929986601563,46.0546663642578],[121.998717070313,46.0807491279298],[121.971920195313,46.1185469794922],[121.9730871875,46.1330513740235],[121.904132109375,46.1924587226563],[121.929469023438,46.2142885566406],[121.90271609375,46.2292147041016],[121.88173953125,46.2385756660156],[121.892764921875,46.2686043525391],[121.891241484375,46.2875490546875],[121.928990507813,46.2905825019531]]]]}},{"type":"Feature","properties":{"name":"扎赉特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.383922148438,46.9560353828125],[123.387345,46.9438430000001],[123.375152617188,46.9472664619141],[123.383922148438,46.9560353828125]]],[[[123.35326296875,46.9697585273438],[123.357345,46.963843],[123.2958215625,46.9683370185547],[123.289185820313,46.9979274726563],[123.324845,46.9893794990235],[123.35326296875,46.9697585273438]]],[[[122.530079375,47.1910982490235],[122.572061796875,47.1585616279297],[122.592628203125,47.1491243720704],[122.616417265625,47.1224990058594],[122.65963015625,47.0990157294922],[122.712628203125,47.0891243720703],[122.752061796875,47.0785616279298],[122.8520325,47.0599025703125],[122.773482695313,47.0028951240235],[122.77146609375,46.9690956855469],[122.782628203125,46.9591243720704],[122.796392851563,46.9291243720704],[122.842628203125,46.9385616279297],[122.879429960938,46.9585616279298],[122.893228789063,46.9486922431641],[122.892047148438,46.928843],[122.892652617188,46.9186415839844],[122.879781523438,46.8827626777344],[122.892628203125,46.8591243720703],[122.902061796875,46.8085616279298],[122.912628203125,46.7991243720703],[122.922061796875,46.7885616279297],[122.981671171875,46.7612038398438],[123.000982695313,46.7191243720703],[123.032628203125,46.7285616279298],[123.064991484375,46.740175397461],[123.126383085938,46.7365163398438],[123.161553984375,46.7526595283204],[123.2126575,46.8186019111328],[123.210533476563,46.8542647529297],[123.300845976563,46.859648053711],[123.317906523438,46.8444057441407],[123.334615507813,46.8257057929688],[123.377061796875,46.8451876044922],[123.392628203125,46.8885616279297],[123.402374296875,46.9304592109375],[123.473985625,46.9496395087891],[123.49250125,46.9485353828125],[123.517345,46.953843],[123.512628203125,46.9185616279297],[123.472628203125,46.8449520087891],[123.510767851563,46.8191243720704],[123.562628203125,46.8285616279297],[123.57353640625,46.8985616279297],[123.592628203125,46.8891243720704],[123.602061796875,46.8585616279297],[123.621412382813,46.8412746406251],[123.572628203125,46.8262099433594],[123.582061796875,46.8185616279297],[123.6226575,46.8091164375],[123.621451445313,46.7888430000001],[123.622642851563,46.768843],[123.621749296875,46.7538430000001],[123.62322390625,46.7290956855469],[123.612061796875,46.7191243720703],[123.598160429688,46.6888356757813],[123.399635039063,46.6790041328126],[123.270260039063,46.658843],[123.272823515625,46.6158388496094],[123.222569609375,46.5885317207032],[123.212345,46.5891408515625],[123.202105742188,46.5885311103516],[123.16845828125,46.6120369697266],[123.083511992188,46.5969417548828],[123.059058867188,46.6243093085938],[123.0420325,46.6090956855469],[123.043834257813,46.578843],[123.000264921875,46.56870628125],[123.004429960938,46.498843],[123.0008215625,46.4382955146485],[123.09093875,46.3374367500001],[123.136124296875,46.2970626044922],[123.162628203125,46.2591243720703],[123.167345,46.243843],[123.12505984375,46.2194625068359],[123.11271609375,46.1784712958984],[123.100416289063,46.1678719306641],[123.103565703125,46.1286635566406],[123.06197390625,46.1192147041016],[123.029683867188,46.096322248047],[122.859136992188,46.0789260078126],[122.787345,46.073843],[122.782628203125,46.0991243720703],[122.780289335938,46.1383431220704],[122.752017851563,46.2888118720703],[122.682061796875,46.4085616279297],[122.664527617188,46.4467659736328],[122.593189726563,46.4079994941407],[122.542935820313,46.3849336982422],[122.462345,46.3897371650391],[122.439986601563,46.3884047675781],[122.353424101563,46.4115895820313],[122.248048125,46.4053090644531],[122.219488554688,46.4208296943359],[122.162061796875,46.4385616279297],[122.11236453125,46.4592324042969],[122.082545195313,46.4485329414063],[122.072345,46.4491408515625],[122.062345,46.4485451484375],[122.052345,46.4491408515625],[122.042345,46.4485451484375],[122.032345,46.4491408515625],[122.011588164063,46.4479036689453],[121.992628203125,46.4691243720704],[121.978287382813,46.4819368720703],[121.939830351563,46.4995870185547],[121.893609648438,46.4968325019531],[121.866236601563,46.5274666572266],[121.842061796875,46.5385616279297],[121.816236601563,46.5674666572266],[121.792061796875,46.5785616279298],[121.775655546875,46.596923444336],[121.762628203125,46.6391243720703],[121.702061796875,46.6485616279297],[121.692628203125,46.6591243720704],[121.635201445313,46.6768563056641],[121.510601835938,46.7445662666016],[121.512779570313,46.7811183906251],[121.451285429688,46.8360622382813],[121.452642851563,46.858843],[121.4520325,46.8690688300782],[121.466104765625,46.8949623847657],[121.406783476563,46.9132802558594],[121.391588164063,46.9302877021485],[121.353570585938,46.9280220771484],[121.337345,46.933843],[121.33298953125,46.9394869208985],[121.288355742188,46.9739388251953],[121.3086340625,47.0075557685547],[121.32170046875,47.0394869208985],[121.33298953125,47.0581990791016],[121.3421496875,47.1121120429688],[121.36298953125,47.1281990791016],[121.367345,47.1338430000001],[121.389488554688,47.1383132148438],[121.397345,47.153843],[121.412628203125,47.1585616279297],[121.428204375,47.1759993720704],[121.53588015625,47.1951332832031],[121.608365507813,47.1691243720703],[121.632628203125,47.1785616279297],[121.645655546875,47.2207625556641],[121.676920195313,47.2557491279297],[121.757345,47.2846071601563],[121.815826445313,47.2636244941407],[121.909986601563,47.2384047675782],[121.922545195313,47.2391530585938],[122.07439578125,47.1840895820313],[122.136475859375,47.2178243232423],[122.202906523438,47.2332802558594],[122.232061796875,47.2491243720703],[122.252628203125,47.2585616279297],[122.318756132813,47.3128212714844],[122.392061796875,47.3391243720704],[122.407345,47.343843],[122.469176054688,47.270077741211],[122.510968046875,47.2327352119141],[122.530079375,47.1910982490235]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿巴嘎旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.931744414063,45.3797731757813],[114.978048125,45.3770131660156],[115.092061796875,45.3891243720703],[115.167345,45.393843],[115.220963164063,45.2956215644531],[115.288306914063,45.2527919746094],[115.362628203125,45.1691243720704],[115.373795195313,45.08562034375],[115.470025664063,45.0244173408203],[115.522471953125,44.9657204414063],[115.62750125,44.9273421455078],[115.681500273438,44.8979994941406],[115.722628203125,44.8791243720703],[115.727345,44.873843],[115.6614465625,44.8561611152344],[115.601803007813,44.8104213691407],[115.526051054688,44.7959596992188],[115.473136015625,44.7019557929688],[115.41920046875,44.6671254707031],[115.392535429688,44.5986525703125],[115.33986453125,44.5819771552735],[115.363673125,44.5473787666016],[115.362139921875,44.5086788154298],[115.372535429688,44.4890334296875],[115.398580351563,44.4338442207031],[115.422535429688,44.3990334296875],[115.452154570313,44.3486525703125],[115.552154570313,44.2840773750001],[115.541783476563,44.1704183173828],[115.471822539063,44.1570607734376],[115.47287234375,44.1305983710938],[115.442916289063,44.098271100586],[115.384019804688,44.0704744697266],[115.319991484375,43.9917983222657],[115.3486340625,43.9501735664062],[115.331754179688,43.9182796455079],[115.372535429688,43.8990334296875],[115.386646757813,43.8691323066406],[115.503336210938,43.8589638496094],[115.522154570313,43.8386525703125],[115.59560671875,43.7973049140626],[115.631461210938,43.7586098457032],[115.705987578125,43.7615639472657],[115.749937773438,43.7408199287109],[115.782154570313,43.7186525703125],[115.951964140625,43.6102474189453],[115.971431914063,43.5689931464844],[116.033297148438,43.5397963691407],[116.079542265625,43.4898842597656],[116.106417265625,43.4772017646484],[116.090357695313,43.4004439521485],[116.107008085938,43.313227765625],[116.134674101563,43.24218284375],[116.178121367188,43.2216774726563],[116.154146757813,43.1708815742187],[116.127345,43.1338430000001],[116.092628203125,43.1185622382812],[115.935753203125,43.1062819648438],[115.88248171875,43.13921409375],[115.832628203125,43.1285622382813],[115.719078398438,43.1133754707031],[115.615860625,43.1195278144531],[115.465699492188,43.1035768867188],[115.372144804688,43.1091530585938],[115.325792265625,43.0925209785157],[115.187345,43.083843],[115.153697539063,43.1228981757813],[115.092818632813,43.1412270332032],[114.993804960938,43.2231288886719],[114.921324492188,43.3072597480469],[114.87197390625,43.3184706855469],[114.849854765625,43.3308132148438],[114.83271609375,43.3692147041016],[114.783072539063,43.3804927802735],[114.7722278125,43.3679024482422],[114.755084257813,43.4063185859375],[114.6702746875,43.4552150703125],[114.621578398438,43.5329659248047],[114.5866028125,43.5630989814454],[114.5223059375,43.6377284980469],[114.498219023438,43.6917055488281],[114.43974734375,43.7715096259766],[114.444664335938,43.8326876044922],[114.392218046875,43.8183345771485],[114.37271609375,43.8292147041016],[114.35197390625,43.8384712958985],[114.32271609375,43.8792147041016],[114.28197390625,43.9084712958985],[114.229307890625,43.9520351386719],[114.21271609375,43.9892147041016],[114.198997832031,44.0138033271485],[114.172535429688,44.0366017890625],[114.158490019531,44.0832521796876],[114.063844023438,44.1254854560547],[114.04271609375,44.1592147041016],[113.939368925781,44.2990560126953],[113.811414824219,44.3771126533204],[113.79271609375,44.4392147041016],[113.716800566406,44.5278670478516],[113.641707792969,44.5749001289063],[113.564681425781,44.5923995185547],[113.550709257813,44.6237129951172],[113.52197390625,44.6484712958985],[113.51271609375,44.6992147041016],[113.50197390625,44.7484712958985],[113.497345,44.7738430000001],[113.512625761719,44.7691243720703],[113.563533964844,44.7508583808594],[113.637471953125,44.7464510322266],[113.709053984375,44.7881264472656],[113.789422636719,44.8442647529297],[113.869481230469,44.8750411201173],[113.882064238281,44.8891243720703],[113.892625761719,44.8985616279298],[113.903861113281,44.9111342597657],[114.068353300781,44.9304042792969],[114.122493925781,44.9648372626953],[114.188944121094,45.039208600586],[114.352625761719,45.1285616279298],[114.412064238281,45.1791243720704],[114.465792265625,45.2210305000001],[114.527393828125,45.3005196357422],[114.543360625,45.3860805488281],[114.611783476563,45.4044057441406],[114.672628203125,45.4185616279297],[114.739908476563,45.4365810371094],[114.931744414063,45.3797731757813]]]]}},{"type":"Feature","properties":{"name":"东乌珠穆沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.807345,46.6738430000001],[119.795152617188,46.6772664619141],[119.803922148438,46.6860353828125],[119.807345,46.6738430000001]]],[[[119.807345,46.6738430000001],[119.862896757813,46.6693959785157],[119.907345,46.663843],[119.911612578125,46.6481087470704],[119.941095,46.6004689765625],[119.901080351563,46.5387587714844],[119.940636015625,46.490321881836],[119.903204375,46.4298378730469],[119.971612578125,46.4157649970704],[119.951324492188,46.3964363837891],[119.888580351563,46.4072377753907],[119.833077421875,46.3745534492188],[119.843775664063,46.3539376044923],[119.869752226563,46.3346150947266],[119.842760039063,46.3179109931641],[119.8295325,46.3201882148438],[119.834928007813,46.288843],[119.826690703125,46.241005475586],[119.86763796875,46.2168935371094],[119.877345,46.203843],[119.848560820313,46.1807949042969],[119.873013945313,46.1392031074219],[119.871241484375,46.1249709296875],[119.84826296875,46.1065682197266],[119.829932890625,46.0012544990234],[119.800885039063,45.9890145087891],[119.823292265625,45.9710744453126],[119.803248320313,45.828691022461],[119.747491484375,45.764438703125],[119.703170195313,45.7457625556641],[119.692896757813,45.6982900214844],[119.680928984375,45.6671535468751],[119.632345,45.6731966376953],[119.57736453125,45.6663582587891],[119.567345,45.6538430000001],[119.552511015625,45.6423928046875],[119.54298953125,45.6081990791016],[119.490660429688,45.5482955146485],[119.41170046875,45.5194869208985],[119.300401640625,45.4669795966797],[119.303824492188,45.443843],[119.3008215625,45.4235445380859],[119.307345,45.3838430000001],[119.243365507813,45.3031191230469],[119.28271609375,45.2692147041016],[119.287345,45.2638430000001],[119.253277617188,45.2702016425781],[119.176324492188,45.2908119941406],[119.142628203125,45.3091243720703],[119.089429960938,45.3185616279297],[119.052467070313,45.2984755683594],[118.99595828125,45.3105483222657],[118.947803984375,45.3076784492188],[118.912628203125,45.2885616279297],[118.762061796875,45.2791243720703],[118.711798125,45.2610878730469],[118.632061796875,45.2391243720703],[118.573189726563,45.2179994941406],[118.492271757813,45.1930135322266],[118.443189726563,45.2196865058594],[118.341329375,45.2664369941406],[118.302061796875,45.2785616279297],[118.282628203125,45.3091243720703],[118.266397734375,45.3236244941407],[118.209830351563,45.3495870185547],[118.149263945313,45.3459773994141],[118.112628203125,45.3591243720704],[117.962921171875,45.3691756416016],[117.947345,45.3682466865234],[117.870128203125,45.3728493476563],[117.752628203125,45.3185616279297],[117.617330351563,45.2703029609375],[117.552628203125,45.1685616279298],[117.53607546875,45.1537740302735],[117.442061796875,45.1391243720704],[117.348160429688,45.12243675],[117.289449492188,45.0905324531251],[117.192061796875,45.0791243720703],[117.076275664063,45.0525038886719],[116.962061796875,45.0391243720703],[116.832628203125,44.9985616279297],[116.666236601563,44.9891243720704],[116.545172148438,45.0149892402344],[116.507603789063,44.9729421210938],[116.486656523438,44.8828932929687],[116.442061796875,44.8691243720704],[116.427345,44.863843],[116.372154570313,44.8686525703125],[116.27845828125,44.880868756836],[116.213521757813,44.8782949042969],[116.132535429688,44.8431917548829],[116.16623171875,44.8272884345703],[116.092139921875,44.7690218330078],[116.093350859375,44.7384755683594],[116.034405546875,44.7106563544922],[115.965572539063,44.6990334296875],[115.87759890625,44.7351692939453],[115.727345,44.873843],[115.722628203125,44.8791243720703],[115.681500273438,44.8979994941406],[115.62750125,44.9273421455078],[115.522471953125,44.9657204414063],[115.470025664063,45.0244173408203],[115.373795195313,45.08562034375],[115.362628203125,45.1691243720704],[115.288306914063,45.2527919746094],[115.220963164063,45.2956215644531],[115.167345,45.393843],[115.392535429688,45.3986525703125],[115.566187773438,45.436439435547],[115.688834257813,45.4598549628907],[115.828350859375,45.5494313789062],[115.932154570313,45.6290334296875],[116.013648710938,45.6590633369141],[116.033936796875,45.6809596992188],[116.107345,45.6780501533203],[116.155362578125,45.6799532294922],[116.21291140625,45.7195546699219],[116.212115507813,45.7396358466797],[116.274097929688,45.7796602607422],[116.272144804688,45.828843],[116.272550078125,45.8390151191407],[116.239659453125,45.8819087958985],[116.252535429688,45.9186525703126],[116.268565703125,45.9692879462891],[116.397862578125,46.1222878242188],[116.432535429688,46.1386525703125],[116.557320585938,46.2505733466797],[116.587056914063,46.2966286445313],[116.630045195313,46.3169148994141],[116.752535429688,46.3286525703125],[116.797535429688,46.3524648261719],[116.823228789063,46.380194928711],[116.8733215625,46.3782100654297],[117.074141875,46.3549471259766],[117.373721953125,46.3691078925782],[117.372144804688,46.4088430000001],[117.373629179688,46.4462721992187],[117.437530546875,46.5247878242187],[117.418033476563,46.5804122138672],[117.53843875,46.5995925117188],[117.572345,46.5982485175782],[117.597345,46.5992391181641],[117.616431914063,46.5984828925781],[117.649293242188,46.5476003242188],[117.695826445313,46.5090334296875],[117.772154570313,46.5290334296875],[117.862896757813,46.539892194336],[117.861729765625,46.569374616211],[117.900875273438,46.6056435371094],[117.982550078125,46.6186550117188],[117.98209109375,46.6302400947266],[118.038795195313,46.6279927802735],[118.122154570313,46.6790334296875],[118.20482546875,46.6903322578126],[118.222154570313,46.7090334296876],[118.262535429688,46.7186525703126],[118.31218875,46.7390474677735],[118.374132109375,46.7365920234375],[118.442154570313,46.7086525703125],[118.563682890625,46.6920436835938],[118.641910429688,46.7194631171875],[118.672154570313,46.6986525703125],[118.79312625,46.6841768623047],[118.791763945313,46.7185512519532],[118.833463164063,46.7697896552735],[118.862345,46.7686446357422],[118.901461210938,46.770194928711],[118.9132825,46.7574373603516],[118.911822539063,46.7206038642578],[119.00763796875,46.7457112861328],[119.045855742188,46.6936049628906],[119.103956328125,46.6479158759766],[119.152345,46.649833600586],[119.197345,46.6480501533204],[119.222345,46.6490413642579],[119.234537382813,46.6485579658203],[119.290670195313,46.6188552070313],[119.37939578125,46.6067293525391],[119.432252226563,46.6390932441407],[119.482213164063,46.6286397529297],[119.546402617188,46.6311836982423],[119.584224882813,46.6179268623047],[119.666793242188,46.6211995673829],[119.682452421875,46.5880245185547],[119.722154570313,46.6090334296875],[119.776910429688,46.6220766425782],[119.807345,46.6738430000001]]]]}},{"type":"Feature","properties":{"name":"多伦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.636612578125,42.561421125],[116.662799101563,42.5581642890626],[116.690094023438,42.5922536445312],[116.79732546875,42.5788417792969],[116.828472929688,42.539946515625],[116.842345,42.5382216621094],[116.859249296875,42.5403237128906],[116.877550078125,42.5256728339844],[116.871671171875,42.4784389472657],[116.90318484375,42.4390370917969],[116.891793242188,42.4093959785157],[116.887345,42.383843],[116.878824492188,42.3455580878907],[116.904527617188,42.28526878125],[116.899918242188,42.2400136542969],[116.912896757813,42.229233625],[116.9118371875,42.2188430000001],[116.914815703125,42.1896047187501],[116.897345,42.1878237128907],[116.872345,42.1903713203126],[116.852174101563,42.18831565625],[116.782808867188,42.2037575507813],[116.805357695313,42.1655471015625],[116.84345828125,42.1490224433594],[116.886436796875,42.0947182441406],[116.871803007813,42.069165265625],[116.873873320313,42.048843],[116.8718371875,42.0288430000001],[116.873448515625,42.0129958320313],[116.841881132813,41.9993056464845],[116.808062773438,41.9799355292969],[116.783531523438,41.9774355292969],[116.753111601563,41.9948598457032],[116.722808867188,41.9583803535156],[116.701881132813,41.9493056464844],[116.697345,41.943843],[116.65142703125,41.9397585273438],[116.632789335938,41.927622296875],[116.607345,41.9333266425781],[116.577345,41.9266017890626],[116.546510039063,41.9335134101562],[116.49236453125,41.9805373359375],[116.45326296875,41.9479274726563],[116.396944609375,41.9397585273438],[116.40759890625,41.9872817207032],[116.363487578125,42.0124611640625],[116.31677859375,42.0019911933594],[116.29091921875,41.9645339179687],[116.227799101563,41.9409157539063],[116.200338164063,41.8928041816407],[116.204566679688,41.8739284492188],[116.177867460938,41.8597585273438],[116.131900664063,41.8700637031251],[116.10177859375,41.8504506660156],[116.09326296875,41.8335671210938],[116.125474882813,41.8113259101563],[116.105826445313,41.7811513496094],[116.077345,41.773843],[116.070079375,41.7822768378907],[116.00834109375,41.7773159003907],[115.99271609375,41.8292153144531],[115.936788359375,41.8968288398437],[115.917345,41.943843],[115.994288359375,42.0806020332031],[116.032535429688,42.0986525703125],[116.057589140625,42.1119106269531],[116.0993371875,42.1688259101562],[116.163839140625,42.1992678046875],[116.191187773438,42.2287819648438],[116.202154570313,42.3090334296875],[116.239967070313,42.3583400703125],[116.27357546875,42.3689809394532],[116.293839140625,42.3908534980469],[116.368204375,42.3752944160157],[116.40216921875,42.3386379218751],[116.422345,42.3394374824219],[116.490753203125,42.3367263007813],[116.506964140625,42.3542238593751],[116.522550078125,42.3686659980469],[116.52193484375,42.3841823554688],[116.5586340625,42.4375124335938],[116.542154570313,42.4686525703125],[116.530513945313,42.5175148750001],[116.55220828125,42.53761253125],[116.562154570313,42.5690334296875],[116.577345,42.5938430000001],[116.622393828125,42.6111586738282],[116.636612578125,42.561421125]]]]}},{"type":"Feature","properties":{"name":"二连浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.017603789063,43.6111171699219],[111.948529082031,43.5830983710938],[111.902415800781,43.6274031806641],[111.887345,43.673843],[111.89298953125,43.6781990791016],[111.945838652344,43.6904451728516],[111.967345,43.7438430000001],[112.081766386719,43.7568398261719],[112.053236113281,43.7014528632813],[112.017603789063,43.6111171699219]]]]}},{"type":"Feature","properties":{"name":"苏尼特右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.058558378906,43.7818929267579],[112.087545195313,43.7540431953125],[112.102244902344,43.7387429023438],[112.392879667969,43.6722231269531],[112.486666289063,43.6373744941406],[112.557393828125,43.6009383369141],[112.802445097656,43.5889430976563],[112.855704375,43.5707131171875],[112.997345,43.5678224921875],[113.232166777344,43.5726149726563],[113.232550078125,43.5538430000001],[113.231636992188,43.5091249824219],[113.325667753906,43.4879732490235],[113.497506132813,43.5074916816406],[113.590572539063,43.4522457099609],[113.644556914063,43.3570272041016],[113.702449980469,43.3289406562501],[113.702235136719,43.3184194160157],[113.772518339844,43.2723390937501],[113.772240019531,43.2587477851563],[113.823148222656,43.1981044746094],[113.853912382813,43.1346913886719],[113.912437773438,43.1157009101563],[113.992445097656,43.0589430976563],[114.004266386719,43.0345766425782],[114.098062773438,43.0041396308594],[114.0720325,42.9791310859376],[114.072550078125,42.953843],[114.072039824219,42.9289394355469],[114.087752714844,42.913843],[114.072105742188,42.8988100410156],[114.097493925781,42.8864931464844],[114.122244902344,42.8487429023438],[114.2159778125,42.7956008125001],[114.197269316406,42.7592836738281],[114.247345,42.7538430000001],[114.236095,42.7417018867187],[114.177503691406,42.71069846875],[114.092154570313,42.6990334296875],[114.076207304688,42.6818227363281],[114.042535429688,42.6586525703125],[113.942110625,42.6216481757813],[113.842154570313,42.5290334296875],[113.810260039063,42.4946120429688],[113.772535429688,42.4686525703125],[113.689676542969,42.4587367988282],[113.641068144531,42.4062770820313],[113.55154421875,42.3640261054688],[113.552550078125,42.3386794257813],[113.541402617188,42.3176137519532],[113.543175078125,42.2728969550782],[113.502535429688,42.2586525703126],[113.423841582031,42.2461159492188],[113.412535429688,42.1986525703125],[113.382926054688,42.1846779609375],[113.377345,42.1438430000001],[113.356859160156,42.1381386542969],[113.286988554688,42.0863368964844],[113.255562773438,42.0456240058594],[113.211693144531,42.0117617011719],[113.163748808594,41.9921388984375],[113.157345,41.9838430000001],[113.143392363281,41.973843],[113.163170195313,41.9596681953126],[113.171519804688,41.9401137519532],[113.122056914063,41.9498879218751],[113.074256621094,41.9302468085938],[113.039232207031,41.9791152167969],[112.987345,41.9838430000001],[112.982535429688,41.9890334296876],[112.936063261719,42.0109658027344],[112.861068144531,42.1063320136719],[112.822154570313,42.1186525703125],[112.777725859375,42.1342238593751],[112.730174589844,42.1492787910157],[112.683311796875,42.2485768867188],[112.632044707031,42.2787172675782],[112.643026152344,42.3100490546875],[112.610845976563,42.3398647285156],[112.388568144531,42.3881130195313],[112.245025664063,42.4802761054688],[112.171749296875,42.5088100410157],[112.172659941406,42.5318105292969],[112.024525175781,42.5849794746094],[112.002535429688,42.6190334296875],[111.923494902344,42.7125673652344],[111.859139433594,42.8038491035157],[111.831512480469,42.8623915839844],[111.749190703125,42.9820253730469],[111.630111113281,43.0321364570313],[111.503360625,43.1689345527344],[111.360628691406,43.1860146308594],[111.197896757813,43.281762921875],[111.147345,43.373843],[111.160557890625,43.3881044746094],[111.272154570313,43.4190334296875],[111.351641875,43.4379677558594],[111.400628691406,43.475532453125],[111.454832792969,43.4897353339844],[111.556971464844,43.4856868720704],[111.611612578125,43.52097190625],[111.786483183594,43.6687471748047],[111.887345,43.673843],[111.902415800781,43.6274031806641],[111.948529082031,43.5830983710938],[112.017603789063,43.6111171699219],[112.053236113281,43.7014528632813],[112.081766386719,43.7568398261719],[111.967345,43.7438430000001],[111.957345,43.803843],[111.972244902344,43.7987429023438],[112.058558378906,43.7818929267579]]]]}},{"type":"Feature","properties":{"name":"苏尼特左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.106473417969,45.0736336494141],[112.317345,45.0652754951172],[112.430577421875,45.0697640205079],[112.502535429688,45.0190334296875],[112.617420683594,44.9148006416016],[112.756041289063,44.8619057441406],[112.832154570313,44.8486525703126],[112.959364042969,44.8364626289062],[113.052725859375,44.8142244697266],[113.116695585938,44.7974623847657],[113.442154570313,44.7786525703126],[113.497345,44.7738430000001],[113.50197390625,44.7484712958985],[113.51271609375,44.6992147041016],[113.52197390625,44.6484712958985],[113.550709257813,44.6237129951172],[113.564681425781,44.5923995185547],[113.641707792969,44.5749001289063],[113.716800566406,44.5278670478516],[113.79271609375,44.4392147041016],[113.811414824219,44.3771126533204],[113.939368925781,44.2990560126953],[114.04271609375,44.1592147041016],[114.063844023438,44.1254854560547],[114.158490019531,44.0832521796876],[114.172535429688,44.0366017890625],[114.198997832031,44.0138033271485],[114.21271609375,43.9892147041016],[114.229307890625,43.9520351386719],[114.28197390625,43.9084712958985],[114.32271609375,43.8792147041016],[114.35197390625,43.8384712958985],[114.37271609375,43.8292147041016],[114.392218046875,43.8183345771485],[114.444664335938,43.8326876044922],[114.43974734375,43.7715096259766],[114.498219023438,43.6917055488281],[114.5223059375,43.6377284980469],[114.5866028125,43.5630989814454],[114.621578398438,43.5329659248047],[114.6702746875,43.4552150703125],[114.755084257813,43.4063185859375],[114.7722278125,43.3679024482422],[114.783072539063,43.3804927802735],[114.83271609375,43.3692147041016],[114.849854765625,43.3308132148438],[114.87197390625,43.3184706855469],[114.921324492188,43.3072597480469],[114.993804960938,43.2231288886719],[115.092818632813,43.1412270332032],[115.153697539063,43.1228981757813],[115.187345,43.083843],[115.13170046875,43.0694863105469],[115.06298953125,43.0381996894531],[115.027345,43.023843],[114.938638945313,42.9981313300782],[114.892906523438,42.9732802558594],[114.844659453125,42.9511367011719],[114.76423953125,42.8888124824219],[114.702061796875,42.8791237617188],[114.539166289063,42.8416725898438],[114.45437625,42.8112490058595],[114.37670046875,42.7690395332032],[114.292064238281,42.7591237617188],[114.267345,42.7538430000001],[114.247345,42.7538430000001],[114.197269316406,42.7592836738281],[114.2159778125,42.7956008125001],[114.122244902344,42.8487429023438],[114.097493925781,42.8864931464844],[114.072105742188,42.8988100410156],[114.087752714844,42.913843],[114.072039824219,42.9289394355469],[114.072550078125,42.953843],[114.0720325,42.9791310859376],[114.098062773438,43.0041396308594],[114.004266386719,43.0345766425782],[113.992445097656,43.0589430976563],[113.912437773438,43.1157009101563],[113.853912382813,43.1346913886719],[113.823148222656,43.1981044746094],[113.772240019531,43.2587477851563],[113.772518339844,43.2723390937501],[113.702235136719,43.3184194160157],[113.702449980469,43.3289406562501],[113.644556914063,43.3570272041016],[113.590572539063,43.4522457099609],[113.497506132813,43.5074916816406],[113.325667753906,43.4879732490235],[113.231636992188,43.5091249824219],[113.232550078125,43.5538430000001],[113.232166777344,43.5726149726563],[112.997345,43.5678224921875],[112.855704375,43.5707131171875],[112.802445097656,43.5889430976563],[112.557393828125,43.6009383369141],[112.486666289063,43.6373744941406],[112.392879667969,43.6722231269531],[112.102244902344,43.7387429023438],[112.087545195313,43.7540431953125],[112.058558378906,43.7818929267579],[111.972244902344,43.7987429023438],[111.957345,43.803843],[111.950423613281,43.825708234375],[111.902154570313,43.8886525703125],[111.860584746094,43.9453261542969],[111.782535429688,43.9990334296876],[111.684508085938,44.0372060371094],[111.614410429688,44.1021559882813],[111.540716582031,44.1927065253906],[111.518685332031,44.2851961494141],[111.492535429688,44.2990334296875],[111.412535429688,44.3243617988281],[111.423140898438,44.3956606269532],[111.474051542969,44.4822603583984],[111.511920195313,44.5173470283203],[111.522769804688,44.5403389716798],[111.562606230469,44.5772487617188],[111.5592590625,44.6617086005859],[111.594195585938,44.7357375312501],[111.622154570313,44.7790334296875],[111.702535429688,44.8886525703126],[111.759105253906,44.9762538886719],[111.903140898438,45.0524709296876],[112.015572539063,45.0986525703125],[112.062535429688,45.0890334296875],[112.106473417969,45.0736336494141]]]]}},{"type":"Feature","properties":{"name":"太仆寺旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.490323515625,42.1099501777344],[115.522545195313,42.0983888984375],[115.540982695313,42.1385622382813],[115.601954375,42.120376203125],[115.602642851563,42.108843],[115.601578398438,42.0909743476563],[115.644010039063,42.0884462714844],[115.685084257813,42.1107656074219],[115.740592070313,42.1074575019532],[115.779429960938,42.1285622382812],[115.811651640625,42.1154518867188],[115.812642851563,42.0988430000001],[115.811749296875,42.083843],[115.8130871875,42.0613588691407],[115.802628203125,42.0385622382813],[115.781890898438,42.0088784003906],[115.81173953125,41.9539553046876],[115.797345,41.9138430000001],[115.792061796875,41.9091237617187],[115.782628203125,41.8985622382812],[115.770220976563,41.8874794746094],[115.731588164063,41.8897817207032],[115.712628203125,41.8685622382813],[115.628765898438,41.8197389960938],[115.562061796875,41.7891237617188],[115.523189726563,41.7679994941407],[115.446783476563,41.7444057441406],[115.39713015625,41.7265895820313],[115.302857695313,41.7046559882812],[115.35322390625,41.6596572089844],[115.341475859375,41.6380446601562],[115.362906523438,41.5986122871094],[115.310494414063,41.5891237617188],[115.292628203125,41.6091237617188],[115.266392851563,41.6185622382813],[115.248878203125,41.5803981757813],[115.210494414063,41.5691237617188],[115.183189726563,41.5996865058594],[115.086456328125,41.6221926093751],[115.043629179688,41.5922768378907],[115.010592070313,41.6102284980469],[114.977345,41.608247296875],[114.947345,41.6100356269532],[114.888687773438,41.6065395332031],[114.877345,41.593843],[114.8619153125,41.5984889960938],[114.862955351563,41.6114455390625],[114.901143828125,41.6443459296876],[114.89158328125,41.7633229804688],[114.866842070313,41.8076699042969],[114.90271609375,41.8184706855469],[114.93197390625,41.8412404609376],[114.909664335938,41.8604616523438],[114.913150664063,41.903843],[114.911163359375,41.9285195136719],[114.922999296875,41.9387123847656],[114.91197390625,41.9584706855469],[114.901314726563,42.0053774238281],[114.871402617188,42.0187245917969],[114.883150664063,42.0288430000001],[114.863248320313,42.0459902167969],[114.857345,42.1038430000001],[114.901783476563,42.0965431953125],[114.922345,42.0995815253907],[114.965738554688,42.0931691718751],[115.022135039063,42.1096132636719],[115.047345,42.1058876777344],[115.078595,42.1105055976563],[115.139854765625,42.0963100410156],[115.162056914063,42.109702375],[115.231671171875,42.0935720039063],[115.292345,42.1025368476563],[115.32673953125,42.0974550605469],[115.35298953125,42.1081996894532],[115.38170046875,42.1294863105469],[115.40298953125,42.1381996894532],[115.44170046875,42.1694863105469],[115.457345,42.1738430000001],[115.462061796875,42.1685622382813],[115.4932434375,42.1589333320313],[115.490323515625,42.1099501777344]]]]}},{"type":"Feature","properties":{"name":"西乌珠穆沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.870128203125,45.3728493476563],[117.947345,45.3682466865234],[117.962921171875,45.3691756416016],[118.112628203125,45.3591243720704],[118.149263945313,45.3459773994141],[118.209830351563,45.3495870185547],[118.266397734375,45.3236244941407],[118.282628203125,45.3091243720703],[118.302061796875,45.2785616279297],[118.341329375,45.2664369941406],[118.443189726563,45.2196865058594],[118.492271757813,45.1930135322266],[118.573189726563,45.2179994941406],[118.632061796875,45.2391243720703],[118.711798125,45.2610878730469],[118.762061796875,45.2791243720703],[118.912628203125,45.2885616279297],[118.947803984375,45.3076784492188],[118.99595828125,45.3105483222657],[119.052467070313,45.2984755683594],[119.089429960938,45.3185616279297],[119.142628203125,45.3091243720703],[119.176324492188,45.2908119941406],[119.253277617188,45.2702016425781],[119.287345,45.2638430000001],[119.31142703125,45.2479274726563],[119.327345,45.243843],[119.296612578125,45.1897872138672],[119.353204375,45.1645351386719],[119.351925078125,45.1486043525391],[119.370035429688,45.0992916083984],[119.330079375,45.0769985175781],[119.29197390625,45.0884712958985],[119.267940703125,45.1268373847657],[119.189659453125,45.1482619453125],[119.14271609375,45.0820565009766],[119.182037382813,45.0484163642578],[119.201851835938,45.0500081611329],[119.202745390625,45.0388430000001],[119.2019153125,45.0284969306641],[119.23197390625,45.0150844550781],[119.202423125,44.9983052802735],[119.154127226563,45.0160408759766],[119.1519153125,44.9885195136719],[119.16271609375,44.9792147041016],[119.17197390625,44.9584712958984],[119.22197390625,44.9361598945313],[119.212652617188,44.9082845283204],[119.163468046875,44.9217458320313],[119.105699492188,44.9171034980469],[119.071060820313,44.9298232246094],[119.072764921875,44.9086397529297],[119.060738554688,44.8647048164063],[119.1427746875,44.8191829658203],[119.141920195313,44.8085445380859],[119.167345,44.7738430000001],[119.1620715625,44.7567732978516],[119.112628203125,44.7597200751953],[119.122061796875,44.7485616279298],[119.152061796875,44.7347927070313],[119.132628203125,44.7285616279297],[119.082061796875,44.7191243720704],[119.028673125,44.7077175117188],[118.982061796875,44.7185616279297],[118.958609648438,44.7313075996095],[118.923468046875,44.7151784492188],[118.957906523438,44.6844057441406],[118.972061796875,44.6685616279297],[118.995250273438,44.6478450751953],[118.959171171875,44.5491030097657],[118.872061796875,44.5091243720703],[118.852569609375,44.4985317207032],[118.834859648438,44.4995870185548],[118.806646757813,44.4866384101563],[118.777345,44.453843],[118.749366484375,44.4645967841797],[118.644561796875,44.4448317695313],[118.632896757813,44.4593959785157],[118.61396609375,44.4682900214844],[118.572896757813,44.4382900214844],[118.55166140625,44.429341046875],[118.55466921875,44.4051638007813],[118.469498320313,44.3867360664063],[118.4737121875,44.35284690625],[118.441793242188,44.3393959785157],[118.401397734375,44.3070894599609],[118.302345,44.3194649482422],[118.282345,44.3169771552735],[118.252345,44.3207088447266],[118.216021757813,44.3161904121094],[118.243013945313,44.2792354560547],[118.240636015625,44.2601064277344],[118.257345,44.2338430000001],[118.24170046875,44.2381990791016],[118.200826445313,44.254267194336],[118.163883085938,44.2063991523438],[118.142345,44.2095821357423],[118.12466921875,44.2069698310548],[118.111910429688,44.1318508125],[118.08170046875,44.1194869208985],[118.056832304688,44.1044857001953],[118.022345,44.1095821357422],[117.999991484375,44.1062783027344],[117.911534453125,44.1267757392578],[117.862320585938,44.0902907539063],[117.85298953125,44.0781990791016],[117.808990507813,44.0518837714844],[117.781832304688,44.0167018867188],[117.757345,44.0203206611329],[117.717345,44.0144100166016],[117.668365507813,44.0216475654297],[117.637345,44.033843],[117.680362578125,44.1005593085938],[117.6214465625,44.1187526679688],[117.62322390625,44.1485903144531],[117.604263945313,44.1655306220703],[117.55912234375,44.1794704414063],[117.523863554688,44.2189315009766],[117.43455203125,44.2328487373047],[117.20943484375,44.2194307685547],[117.152628203125,44.1885616279297],[117.111768828125,44.1759450507813],[117.019034453125,44.0721553779297],[116.9558996875,44.0157454658203],[116.967345,43.983843],[116.8799621875,43.9635121894531],[116.822672148438,44.0023464179688],[116.73244265625,44.1189430976563],[116.700875273438,44.1287429023438],[116.642432890625,44.1087392402344],[116.606744414063,44.1094673896484],[116.591470976563,44.1409535957031],[116.59283328125,44.2078066230469],[116.580660429688,44.24337425],[116.386939726563,44.4236794257813],[116.471417265625,44.5747957587891],[116.56281375,44.6807680488282],[116.562242460938,44.708843],[116.563057890625,44.7487441230469],[116.53224734375,44.7587429023438],[116.511651640625,44.7693508125],[116.49220828125,44.8094283271485],[116.43224734375,44.8487429023438],[116.427345,44.863843],[116.442061796875,44.8691243720704],[116.486656523438,44.8828932929687],[116.507603789063,44.9729421210938],[116.545172148438,45.0149892402344],[116.666236601563,44.9891243720704],[116.832628203125,44.9985616279297],[116.962061796875,45.0391243720703],[117.076275664063,45.0525038886719],[117.192061796875,45.0791243720703],[117.289449492188,45.0905324531251],[117.348160429688,45.12243675],[117.442061796875,45.1391243720704],[117.53607546875,45.1537740302735],[117.552628203125,45.1685616279298],[117.617330351563,45.2703029609375],[117.752628203125,45.3185616279297],[117.870128203125,45.3728493476563]]]]}},{"type":"Feature","properties":{"name":"锡林浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.327345,43.063843],[116.323922148438,43.0516506171875],[116.315152617188,43.0604201484375],[116.327345,43.063843]]],[[[116.327345,43.063843],[116.32271609375,43.0692153144532],[116.283297148438,43.0939052558594],[116.17197390625,43.1084706855469],[116.127345,43.1338430000001],[116.154146757813,43.1708815742187],[116.178121367188,43.2216774726563],[116.134674101563,43.24218284375],[116.107008085938,43.313227765625],[116.090357695313,43.4004439521485],[116.106417265625,43.4772017646484],[116.079542265625,43.4898842597656],[116.033297148438,43.5397963691407],[115.971431914063,43.5689931464844],[115.951964140625,43.6102474189453],[115.782154570313,43.7186525703125],[115.749937773438,43.7408199287109],[115.705987578125,43.7615639472657],[115.631461210938,43.7586098457032],[115.59560671875,43.7973049140626],[115.522154570313,43.8386525703125],[115.503336210938,43.8589638496094],[115.386646757813,43.8691323066406],[115.372535429688,43.8990334296875],[115.331754179688,43.9182796455079],[115.3486340625,43.9501735664062],[115.319991484375,43.9917983222657],[115.384019804688,44.0704744697266],[115.442916289063,44.098271100586],[115.47287234375,44.1305983710938],[115.471822539063,44.1570607734376],[115.541783476563,44.1704183173828],[115.552154570313,44.2840773750001],[115.452154570313,44.3486525703125],[115.422535429688,44.3990334296875],[115.398580351563,44.4338442207031],[115.372535429688,44.4890334296875],[115.362139921875,44.5086788154298],[115.363673125,44.5473787666016],[115.33986453125,44.5819771552735],[115.392535429688,44.5986525703125],[115.41920046875,44.6671254707031],[115.473136015625,44.7019557929688],[115.526051054688,44.7959596992188],[115.601803007813,44.8104213691407],[115.6614465625,44.8561611152344],[115.727345,44.873843],[115.87759890625,44.7351692939453],[115.965572539063,44.6990334296875],[116.034405546875,44.7106563544922],[116.093350859375,44.7384755683594],[116.092139921875,44.7690218330078],[116.16623171875,44.8272884345703],[116.132535429688,44.8431917548829],[116.213521757813,44.8782949042969],[116.27845828125,44.880868756836],[116.372154570313,44.8686525703125],[116.427345,44.863843],[116.43224734375,44.8487429023438],[116.49220828125,44.8094283271485],[116.511651640625,44.7693508125],[116.53224734375,44.7587429023438],[116.563057890625,44.7487441230469],[116.562242460938,44.708843],[116.56281375,44.6807680488282],[116.471417265625,44.5747957587891],[116.386939726563,44.4236794257813],[116.580660429688,44.24337425],[116.59283328125,44.2078066230469],[116.591470976563,44.1409535957031],[116.606744414063,44.1094673896484],[116.642432890625,44.1087392402344],[116.700875273438,44.1287429023438],[116.73244265625,44.1189430976563],[116.822672148438,44.0023464179688],[116.8799621875,43.9635121894531],[116.967345,43.983843],[117.021842070313,43.9665895820313],[117.022550078125,43.9486733222657],[117.001763945313,43.9184682441407],[117.002545195313,43.8988430000001],[117.001553984375,43.873843],[117.002550078125,43.8486592841797],[116.976978789063,43.8365901923829],[116.993565703125,43.7841994453125],[117.051265898438,43.7469374824219],[116.971866484375,43.6780702949219],[116.861553984375,43.6570101142579],[116.842154570313,43.6390334296875],[116.832535429688,43.6186525703125],[116.80115359375,43.603843],[116.802545195313,43.568843],[116.802139921875,43.5586861396485],[116.826080351563,43.5004091621094],[116.782345,43.4850807929688],[116.68656375,43.5186525703126],[116.61134890625,43.4976253486328],[116.589991484375,43.4079732490235],[116.426734648438,43.3208010078125],[116.400015898438,43.2521828437501],[116.354195585938,43.2305580878907],[116.351373320313,43.1593740058594],[116.371353789063,43.1408620429688],[116.392154570313,43.1086525703125],[116.412535429688,43.0990334296875],[116.433355742188,43.0765639472657],[116.487345,43.0538430000001],[116.468546171875,43.0294863105469],[116.38783328125,43.0418581367188],[116.34298953125,43.0594863105469],[116.327345,43.063843]]]]}},{"type":"Feature","properties":{"name":"镶黄旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.677345,42.203843],[114.673922148438,42.1916506171875],[114.665152617188,42.2004201484376],[114.677345,42.203843]]],[[[114.677345,42.203843],[114.671612578125,42.2415358710938],[114.673331328125,42.2703920722657],[114.640318632813,42.2684242988282],[114.564971953125,42.2954592109375],[114.552628203125,42.2685622382813],[114.542061796875,42.2591237617188],[114.511129179688,42.2244997382813],[114.397225371094,42.1979982734375],[114.457906523438,42.1594057441406],[114.475484648438,42.1211135078125],[114.4472278125,42.0958693671876],[114.37361453125,42.1002577949219],[114.361732207031,42.1639113593751],[114.298365507813,42.1885622382813],[114.237923613281,42.1668740058594],[114.204097929688,42.1290163398438],[114.160828886719,42.1156557441406],[114.102076445313,42.1191567207031],[114.082625761719,42.0685622382813],[114.061878691406,42.0388600898438],[114.093392363281,41.9878871894532],[114.062254667969,41.9897426582032],[114.052435332031,41.9579433417969],[114.026219511719,41.9595058417969],[114.012479277344,41.9894460273438],[113.969283476563,41.9559706855469],[113.912586699219,41.9763149238281],[113.89906375,42.0344374824219],[113.870848417969,42.0596474433594],[113.828729277344,42.0571376777344],[113.7452746875,42.0749684882813],[113.701234160156,42.1242580390625],[113.630853300781,42.1054079414063],[113.592625761719,42.1191237617188],[113.557345,42.123843],[113.53298953125,42.1294863105469],[113.41170046875,42.1381996894532],[113.377345,42.1438430000001],[113.382926054688,42.1846779609375],[113.412535429688,42.1986525703125],[113.423841582031,42.2461159492188],[113.502535429688,42.2586525703126],[113.543175078125,42.2728969550782],[113.541402617188,42.3176137519532],[113.552550078125,42.3386794257813],[113.55154421875,42.3640261054688],[113.641068144531,42.4062770820313],[113.689676542969,42.4587367988282],[113.772535429688,42.4686525703125],[113.810260039063,42.4946120429688],[113.842154570313,42.5290334296875],[113.942110625,42.6216481757813],[114.042535429688,42.6586525703125],[114.076207304688,42.6818227363281],[114.092154570313,42.6990334296875],[114.177503691406,42.71069846875],[114.236095,42.7417018867187],[114.247345,42.7538430000001],[114.267345,42.7538430000001],[114.285592070313,42.722192609375],[114.348970976563,42.7077931953125],[114.41197390625,42.6684706855469],[114.469288359375,42.6580165839844],[114.50271609375,42.6292153144531],[114.562882109375,42.559380109375],[114.651881132813,42.4827028632813],[114.68271609375,42.4392153144531],[114.69197390625,42.4184706855469],[114.702769804688,42.3991213203126],[114.7014075,42.382153546875],[114.71197390625,42.3584706855469],[114.723624296875,42.3484316230469],[114.7601965625,42.248843],[114.747345,42.2138430000001],[114.71298953125,42.2081996894531],[114.677345,42.203843]]]]}},{"type":"Feature","properties":{"name":"正蓝旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.327345,43.063843],[116.315152617188,43.0604201484375],[116.323922148438,43.0516506171875],[116.34298953125,43.0594863105469],[116.38783328125,43.0418581367188],[116.468546171875,43.0294863105469],[116.487345,43.0538430000001],[116.492896757813,43.0493959785157],[116.504185820313,43.0099233222657],[116.577979765625,42.9788271308594],[116.660494414063,42.9287075019532],[116.667940703125,42.8688430000001],[116.660479765625,42.808843],[116.666090117188,42.7637221503907],[116.651793242188,42.7393959785157],[116.638453398438,42.7077370429688],[116.616236601563,42.6699489570313],[116.602896757813,42.6382900214844],[116.581793242188,42.6093959785156],[116.577345,42.5938430000001],[116.562154570313,42.5690334296875],[116.55220828125,42.53761253125],[116.530513945313,42.5175148750001],[116.542154570313,42.4686525703125],[116.5586340625,42.4375124335938],[116.52193484375,42.3841823554688],[116.522550078125,42.3686659980469],[116.506964140625,42.3542238593751],[116.490753203125,42.3367263007813],[116.422345,42.3394374824219],[116.40216921875,42.3386379218751],[116.368204375,42.3752944160157],[116.293839140625,42.3908534980469],[116.27357546875,42.3689809394532],[116.239967070313,42.3583400703125],[116.202154570313,42.3090334296875],[116.191187773438,42.2287819648438],[116.163839140625,42.1992678046875],[116.0993371875,42.1688259101562],[116.057589140625,42.1119106269531],[116.032535429688,42.0986525703125],[115.994288359375,42.0806020332031],[115.917345,41.943843],[115.822061796875,41.9291237617188],[115.812628203125,41.9185622382813],[115.797345,41.9138430000001],[115.81173953125,41.9539553046876],[115.781890898438,42.0088784003906],[115.802628203125,42.0385622382813],[115.8130871875,42.0613588691407],[115.811749296875,42.083843],[115.812642851563,42.0988430000001],[115.811651640625,42.1154518867188],[115.779429960938,42.1285622382812],[115.740592070313,42.1074575019532],[115.685084257813,42.1107656074219],[115.644010039063,42.0884462714844],[115.601578398438,42.0909743476563],[115.602642851563,42.108843],[115.601954375,42.120376203125],[115.540982695313,42.1385622382813],[115.522545195313,42.0983888984375],[115.490323515625,42.1099501777344],[115.4932434375,42.1589333320313],[115.462061796875,42.1685622382813],[115.457345,42.1738430000001],[115.461881132813,42.1793056464844],[115.4659778125,42.2194802070313],[115.515987578125,42.261020734375],[115.552159453125,42.2573329902344],[115.585631132813,42.31159690625],[115.58093875,42.3576552558594],[115.59375125,42.3800307441407],[115.589327421875,42.4234242988282],[115.521881132813,42.4383803535157],[115.452633085938,42.4679079414063],[115.395435820313,42.5039504218751],[115.423228789063,42.527036359375],[115.411822539063,42.5887087226563],[115.414449492188,42.6145058417969],[115.341651640625,42.630649640625],[115.287374296875,42.6736074042969],[115.322808867188,42.7183803535156],[115.33607546875,42.7635976386719],[115.316334257813,42.7980702949219],[115.291881132813,42.8183803535157],[115.272808867188,42.868423078125],[115.323800078125,42.9295705390625],[115.3209778125,42.9572682929688],[115.221881132813,42.9683803535157],[115.16920046875,42.9831093574219],[115.078160429688,42.9738295722657],[115.015172148438,42.9914406562501],[115.027345,43.023843],[115.06298953125,43.0381996894531],[115.13170046875,43.0694863105469],[115.187345,43.083843],[115.325792265625,43.0925209785157],[115.372144804688,43.1091530585938],[115.465699492188,43.1035768867188],[115.615860625,43.1195278144531],[115.719078398438,43.1133754707031],[115.832628203125,43.1285622382813],[115.88248171875,43.13921409375],[115.935753203125,43.1062819648438],[116.092628203125,43.1185622382812],[116.127345,43.1338430000001],[116.17197390625,43.1084706855469],[116.283297148438,43.0939052558594],[116.32271609375,43.0692153144532],[116.327345,43.063843]]]]}},{"type":"Feature","properties":{"name":"正镶白旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.015172148438,42.9914406562501],[115.078160429688,42.9738295722657],[115.16920046875,42.9831093574219],[115.221881132813,42.9683803535157],[115.3209778125,42.9572682929688],[115.323800078125,42.9295705390625],[115.272808867188,42.868423078125],[115.291881132813,42.8183803535157],[115.316334257813,42.7980702949219],[115.33607546875,42.7635976386719],[115.322808867188,42.7183803535156],[115.287374296875,42.6736074042969],[115.341651640625,42.630649640625],[115.414449492188,42.6145058417969],[115.411822539063,42.5887087226563],[115.423228789063,42.527036359375],[115.395435820313,42.5039504218751],[115.452633085938,42.4679079414063],[115.521881132813,42.4383803535157],[115.589327421875,42.4234242988282],[115.59375125,42.3800307441407],[115.58093875,42.3576552558594],[115.585631132813,42.31159690625],[115.552159453125,42.2573329902344],[115.515987578125,42.261020734375],[115.4659778125,42.2194802070313],[115.461881132813,42.1793056464844],[115.457345,42.1738430000001],[115.44170046875,42.1694863105469],[115.40298953125,42.1381996894532],[115.38170046875,42.1294863105469],[115.35298953125,42.1081996894532],[115.32673953125,42.0974550605469],[115.292345,42.1025368476563],[115.231671171875,42.0935720039063],[115.162056914063,42.109702375],[115.139854765625,42.0963100410156],[115.078595,42.1105055976563],[115.047345,42.1058876777344],[115.022135039063,42.1096132636719],[114.965738554688,42.0931691718751],[114.922345,42.0995815253907],[114.901783476563,42.0965431953125],[114.857345,42.1038430000001],[114.812896757813,42.1393959785157],[114.797345,42.1438430000001],[114.7916028125,42.1788088203125],[114.79556765625,42.2056508613282],[114.747345,42.2138430000001],[114.7601965625,42.248843],[114.723624296875,42.3484316230469],[114.71197390625,42.3584706855469],[114.7014075,42.382153546875],[114.702769804688,42.3991213203126],[114.69197390625,42.4184706855469],[114.68271609375,42.4392153144531],[114.651881132813,42.4827028632813],[114.562882109375,42.559380109375],[114.50271609375,42.6292153144531],[114.469288359375,42.6580165839844],[114.41197390625,42.6684706855469],[114.348970976563,42.7077931953125],[114.285592070313,42.722192609375],[114.267345,42.7538430000001],[114.292064238281,42.7591237617188],[114.37670046875,42.7690395332032],[114.45437625,42.8112490058595],[114.539166289063,42.8416725898438],[114.702061796875,42.8791237617188],[114.76423953125,42.8888124824219],[114.844659453125,42.9511367011719],[114.892906523438,42.9732802558594],[114.938638945313,42.9981313300782],[115.027345,43.023843],[115.015172148438,42.9914406562501]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿拉善左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.712445097656,41.8289430976563],[103.875513945313,41.7989430976563],[104.102445097656,41.8087429023437],[104.523988066406,41.8743447089844],[104.519613066406,41.6600356269531],[104.675484648438,41.6467641425781],[104.918773222656,41.6517287421875],[105.008414335938,41.5837087226563],[105.192244902344,41.7189430976563],[105.227345,41.743843],[105.222899199219,41.6882900214844],[105.197782011719,41.5349037910156],[105.223472929688,41.3566286445313],[105.271790800781,41.2682900214844],[105.319246855469,41.1887575507813],[105.324832792969,41.143843],[105.319859648438,41.1038613105469],[105.378472929688,41.0569240546875],[105.394881621094,41.0142360664063],[105.391121855469,40.9840151191406],[105.492899199219,40.9293959785157],[105.541790800781,40.8982900214844],[105.652899199219,40.8393959785157],[105.697874785156,40.8065419746094],[105.761790800781,40.7882900214844],[105.832899199219,40.7793959785156],[105.860416289063,40.7632204414062],[105.948658476563,40.73618675],[106.107591582031,40.7163075996094],[106.157345,40.6938430000001],[106.167345,40.6938430000001],[106.167345,40.703843],[106.177345,40.703843],[106.198233671875,40.6795973945313],[106.241011992188,40.6667177558595],[106.255604277344,40.6024892402344],[106.352183867188,40.5877724433594],[106.43197390625,40.5584706855469],[106.49197390625,40.5448403144531],[106.480867949219,40.4892153144531],[106.36197390625,40.4984706855469],[106.32064578125,40.5277748847657],[106.282691679688,40.5308242011719],[106.272691679688,40.5084133125001],[106.20271609375,40.5140358710938],[106.235592070313,40.4515981269532],[106.32197390625,40.3484706855469],[106.43271609375,40.3392153144531],[106.457984648438,40.3251161933594],[106.530745878906,40.3767055488281],[106.652225371094,40.3864662910157],[106.82197390625,40.3670070625],[106.774740019531,40.3047927070313],[106.700692167969,40.2584120917969],[106.742374296875,40.1918642402344],[106.85271609375,40.1792153144532],[106.857345,40.173843],[106.8154309375,40.1011440253906],[106.79271609375,40.0884706855469],[106.761229277344,40.0744216132813],[106.719559355469,40.038520734375],[106.732789335938,39.9286025214844],[106.713114042969,39.8933351875],[106.747345,39.863843],[106.755755644531,39.8268141914063],[106.764039335938,39.7602297187501],[106.745479765625,39.7286586738282],[106.766239042969,39.7027370429688],[106.788016386719,39.6852968574219],[106.761512480469,39.6490151191406],[106.767345,39.633843],[106.6570325,39.5827736640625],[106.611011992188,39.5474831367188],[106.613038359375,39.4963649726562],[106.645826445313,39.4659841132813],[106.747345,39.4338430000001],[106.734918242188,39.408843],[106.747345,39.383843],[106.716600371094,39.3745864082031],[106.657345,39.3528261542969],[106.6051965625,39.3719765449219],[106.523673125,39.3021633125],[106.507345,39.273843],[106.39250125,39.2881911445312],[106.277366972656,39.2738698554688],[106.283587675781,39.223843],[106.281102324219,39.2038430000001],[106.287772246094,39.1502016425782],[106.259251738281,39.1273622871094],[106.225250273438,39.1315908027344],[106.14869265625,39.153452375],[106.118717070313,39.1358327460938],[106.102899199219,39.0982900214845],[106.091790800781,39.0793959785157],[106.087345,39.063843],[106.081439238281,39.0581703925781],[106.082449980469,39.0087490058594],[106.056744414063,38.9708290839844],[106.032244902344,38.9589430976563],[106.004915800781,38.9448635078125],[105.962445097656,38.8851686835938],[105.997345,38.873843],[105.9795325,38.8516005683594],[105.900535917969,38.7883913398438],[105.902967558594,38.768843],[105.901102324219,38.7538430000001],[105.903013945313,38.7384706855469],[105.887345,38.7138430000001],[105.88298953125,38.6881996894531],[105.845079375,38.6291774726563],[105.864635039063,38.5967568183594],[105.85298953125,38.5281996894532],[105.841549101563,38.509233625],[105.843104277344,38.4987001777344],[105.837345,38.473843],[105.842955351563,38.4486391425782],[105.827157011719,38.4210549140625],[105.820264921875,38.3534291816407],[105.841883574219,38.3183803535157],[105.861663847656,38.3019496894531],[105.847345,38.263843],[105.827503691406,38.2290908027344],[105.774620390625,38.2061550117188],[105.765455351563,38.1162563300781],[105.786419707031,38.0679177070313],[105.839635039063,38.0006777167969],[105.812806425781,37.9683803535157],[105.79427859375,37.9529885078126],[105.803436308594,37.8631471992187],[105.771883574219,37.8193056464844],[105.762806425781,37.7983803535156],[105.711883574219,37.7893056464844],[105.676209746094,37.7759011054687],[105.622196074219,37.7814064765625],[105.612806425781,37.7183803535157],[105.601883574219,37.7093056464844],[105.597345,37.703843],[105.447345,37.703843],[105.354093046875,37.7113112617187],[105.242535429688,37.6786525703125],[105.16353640625,37.6598342109375],[105.025758085938,37.5799196601563],[104.866822539063,37.5646901679687],[104.78572390625,37.5362648750001],[104.421773710938,37.5094142890626],[104.402535429688,37.4686525703125],[104.372154570313,37.4590334296875],[104.352535429688,37.4486525703125],[104.302154570313,37.4390334296875],[104.287345,37.433843],[104.25271609375,37.4184706855469],[104.188231230469,37.4038210273438],[104.107701445313,37.4487502265625],[103.95271609375,37.5592153144531],[103.874014921875,37.6028871894532],[103.847345,37.633843],[103.821771269531,37.6614443183594],[103.674110136719,37.7827846503906],[103.40463015625,37.8608315253907],[103.392535429688,37.8990334296876],[103.387345,37.9138430000001],[103.38298953125,37.9394863105469],[103.37170046875,37.9781996894531],[103.359503203125,38.0500026679688],[103.367345,38.083843],[103.37498171875,38.0917897773437],[103.529781523438,38.1559255195313],[103.511795683594,38.2613808417969],[103.474171171875,38.3344179511719],[103.416512480469,38.405844953125],[103.662445097656,38.5387429023438],[103.856729765625,38.6438185859375],[104.02818484375,38.8855092597656],[104.166842070313,38.9401992011719],[104.193231230469,38.9804457832032],[104.19185671875,39.0478066230469],[104.202613554688,39.0792348457032],[104.180999785156,39.1423805976563],[104.047266875,39.2944008613282],[104.081732207031,39.3950917792969],[104.087345,39.423843],[104.114271269531,39.4290993476562],[104.202860136719,39.4594216132813],[104.224068632813,39.5464272285156],[104.286641875,39.6239418769532],[104.198929472656,39.8401833320312],[104.232445097656,39.9287429023438],[104.252244902344,39.9825173164063],[104.205933867188,40.0128798652344],[104.22556765625,40.031743390625],[104.332279082031,40.0835146308594],[104.473595,40.0988674140625],[104.562044707031,40.1291432929688],[104.622445097656,40.1487429023438],[104.632244902344,40.1544850898438],[104.602244902344,40.1987429023438],[104.572445097656,40.2516835761719],[104.623387480469,40.3505739570313],[104.534080839844,40.4035903144531],[104.582518339844,40.4353469062501],[104.581485625,40.4860097480469],[104.52838015625,40.5032424140625],[104.552449980469,40.5387490058594],[104.552108183594,40.55542503125],[104.472244902344,40.6187429023438],[104.452445097656,40.6489430976563],[104.361519804688,40.7596266914063],[104.342445097656,40.7989430976563],[104.315015898438,40.8394081855469],[104.24263796875,40.8379311347656],[104.232445097656,40.8589430976562],[104.172244902344,40.9287429023437],[104.162220488281,41.0005568671875],[104.121954375,41.0787197089844],[103.934796171875,41.2882814765626],[103.921214628906,41.3439907050782],[103.807918730469,41.4753542304688],[103.704295683594,41.5432924628906],[103.524918242188,41.6532338691407],[103.426046171875,41.8570326972656],[103.417345,41.883843],[103.436673613281,41.8772280097656],[103.712445097656,41.8289430976563]]]]}},{"type":"Feature","properties":{"name":"阿拉善右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.5273450000001,39.883843],[99.5205871875001,39.8704836250001],[99.4507043750001,39.8772023750001],[99.4373450000001,39.883843],[99.4443738085938,39.8920021796875],[99.5273450000001,39.883843]]],[[[101.217345,39.0138430000001],[101.229537382813,39.0172658515625],[101.220767851563,39.0260353828125],[101.20170046875,39.0094863105469],[101.1089075,38.9726027656251],[101.03170046875,38.9594863105469],[100.972127714844,38.9456825996094],[100.96298953125,38.9994863105469],[100.9040246875,39.0324965644531],[100.879783964844,39.0010903144531],[100.847345,39.0138430000001],[100.842535429688,39.0190334296875],[100.832154570313,39.0286525703126],[100.822535429688,39.070121076172],[100.862606230469,39.1072487617188],[100.862147246094,39.118843],[100.862550078125,39.1289943671876],[100.842791777344,39.1853627753906],[100.832535429688,39.3990334296875],[100.756658964844,39.4086525703126],[100.618255644531,39.3880141425782],[100.562423125,39.3902272773438],[100.497345,39.4038430000001],[100.492625761719,39.4791237617188],[100.422064238281,39.4885622382813],[100.328175078125,39.5052468085938],[100.301168242188,39.5640908027344],[100.304156523438,39.6142446113282],[100.25068484375,39.6832448554688],[100.117345,39.7038430000001],[100.039324980469,39.7543617988282],[99.9619739062501,39.768470685547],[99.9081164843751,39.7832106757813],[99.8211609179689,39.8576747871094],[99.7031360156251,39.879204328125],[99.5273450000001,39.883843],[99.5387781054688,39.8957424140625],[99.6224450976564,39.9287429023438],[99.6747107226564,39.9499428535157],[99.7453699023439,39.9978395820313],[99.8533923632814,40.0189284492188],[99.9180456835939,40.0522341132813],[99.9666369921876,40.1754323554688],[100.162445097656,40.2787429023438],[100.167345,40.4238430000001],[100.222535429688,40.4190334296876],[100.328160429688,40.4052614570312],[100.492154570313,40.5090334296875],[100.670067167969,40.5204128242188],[100.887786894531,40.4441042304687],[101.068924589844,40.4512831855469],[101.258880644531,40.4732875800782],[101.402154570313,40.4286525703126],[101.530870390625,40.4190334296876],[101.642740507813,40.5048195625],[101.783470488281,40.5353676582031],[101.938836699219,40.7075197578126],[102.004615507813,40.74999534375],[102.268082304688,40.8946376777344],[102.484442167969,40.9967458320313],[102.642015410156,41.0801259589844],[102.76830203125,41.16702659375],[103.001510039063,41.2885390449219],[103.102154570313,41.3808559394531],[103.061773710938,41.4182717109375],[103.022586699219,41.582778546875],[103.010965605469,41.7403310371094],[102.903956328125,41.9069948554688],[102.927345,42.0638430000001],[102.988460722656,42.0369435859376],[103.369193144531,41.8987123847656],[103.417345,41.883843],[103.426046171875,41.8570326972656],[103.524918242188,41.6532338691407],[103.704295683594,41.5432924628906],[103.807918730469,41.4753542304688],[103.921214628906,41.3439907050782],[103.934796171875,41.2882814765626],[104.121954375,41.0787197089844],[104.162220488281,41.0005568671875],[104.172244902344,40.9287429023437],[104.232445097656,40.8589430976562],[104.24263796875,40.8379311347656],[104.315015898438,40.8394081855469],[104.342445097656,40.7989430976563],[104.361519804688,40.7596266914063],[104.452445097656,40.6489430976563],[104.472244902344,40.6187429023438],[104.552108183594,40.55542503125],[104.552449980469,40.5387490058594],[104.52838015625,40.5032424140625],[104.581485625,40.4860097480469],[104.582518339844,40.4353469062501],[104.534080839844,40.4035903144531],[104.623387480469,40.3505739570313],[104.572445097656,40.2516835761719],[104.602244902344,40.1987429023438],[104.632244902344,40.1544850898438],[104.622445097656,40.1487429023438],[104.562044707031,40.1291432929688],[104.473595,40.0988674140625],[104.332279082031,40.0835146308594],[104.22556765625,40.031743390625],[104.205933867188,40.0128798652344],[104.252244902344,39.9825173164063],[104.232445097656,39.9287429023438],[104.198929472656,39.8401833320312],[104.286641875,39.6239418769532],[104.224068632813,39.5464272285156],[104.202860136719,39.4594216132813],[104.114271269531,39.4290993476562],[104.087345,39.423843],[104.055386992188,39.4299440742188],[103.982535429688,39.4490334296875],[103.904298125,39.4614968085938],[103.824049101563,39.45831565625],[103.619661894531,39.3946413398438],[103.512154570313,39.3690334296875],[103.472535429688,39.3586525703125],[103.349190703125,39.3351039863282],[103.262535429688,39.2686525703125],[103.187337675781,39.2156386542969],[103.102523222656,39.1756105781251],[103.024283476563,39.1119362617188],[102.978128691406,39.0990334296875],[102.783297148438,39.1397963691407],[102.595169707031,39.1757131171876],[102.455907011719,39.2540029121094],[102.36052859375,39.2340480781251],[102.276199980469,39.1894252753907],[102.11330203125,39.1550551582032],[102.008233671875,39.1275246406251],[101.892154570313,39.1090334296875],[101.825113554688,39.0950075507813],[101.949652128906,38.9826100898438],[101.977345,38.9738430000001],[101.977345,38.963843],[101.987345,38.963843],[101.987345,38.953843],[101.997345,38.953843],[101.997345,38.9438430000001],[102.007345,38.9438430000001],[102.007345,38.933843],[102.017345,38.933843],[102.017345,38.923843],[102.027345,38.923843],[102.027345,38.913843],[102.037345,38.913843],[102.037345,38.9038430000001],[102.047345,38.9038430000001],[102.057345,38.9038430000001],[102.057345,38.893843],[102.067345,38.893843],[102.060125761719,38.8848281074219],[102.001790800781,38.8493959785157],[101.972899199219,38.8282900214844],[101.934034453125,38.8046840644531],[101.880189238281,38.7374452949219],[101.781517363281,38.6653676582032],[101.721790800781,38.6782900214845],[101.672542753906,38.6923537421876],[101.641790800781,38.6793959785157],[101.612899199219,38.6582900214844],[101.597345,38.653843],[101.564637480469,38.710571515625],[101.47197390625,38.7384706855469],[101.45271609375,38.7492153144531],[101.415767851563,38.7657021308594],[101.33197390625,38.7784706855469],[101.30271609375,38.7912404609376],[101.332017851563,38.8164833808594],[101.34197390625,38.8447573066406],[101.243968535156,38.8596913886719],[101.23232546875,38.9109365058594],[101.199288359375,38.9394008613281],[101.21271609375,38.9884706855469],[101.217345,39.0138430000001]]]]}},{"type":"Feature","properties":{"name":"额济纳旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.1793298632814,42.5901149726563],[99.5026135546876,42.5665273261719],[99.9453943164064,42.6439846015625],[100.260960722656,42.637544171875],[100.324386015625,42.6887429023438],[100.856685820313,42.6718093085938],[101.549517851563,42.5299037910157],[101.798382597656,42.5028652167969],[102.089171171875,42.2220534492188],[102.442218046875,42.1457875800782],[102.544261503906,42.16069846875],[102.714957304688,42.1487673164063],[102.912244902344,42.0687429023438],[102.927345,42.0638430000001],[102.903956328125,41.9069948554688],[103.010965605469,41.7403310371094],[103.022586699219,41.582778546875],[103.061773710938,41.4182717109375],[103.102154570313,41.3808559394531],[103.001510039063,41.2885390449219],[102.76830203125,41.16702659375],[102.642015410156,41.0801259589844],[102.484442167969,40.9967458320313],[102.268082304688,40.8946376777344],[102.004615507813,40.74999534375],[101.938836699219,40.7075197578126],[101.783470488281,40.5353676582031],[101.642740507813,40.5048195625],[101.530870390625,40.4190334296876],[101.402154570313,40.4286525703126],[101.258880644531,40.4732875800782],[101.068924589844,40.4512831855469],[100.887786894531,40.4441042304687],[100.670067167969,40.5204128242188],[100.492154570313,40.5090334296875],[100.328160429688,40.4052614570312],[100.222535429688,40.4190334296876],[100.167345,40.4238430000001],[100.172154570313,40.5390334296876],[100.232535429688,40.6086525703125],[100.242154570313,40.7004091621094],[100.134261503906,40.8411061835938],[100.069117460938,40.9014662910156],[99.6755408007813,40.9323049140626],[99.5598547656251,40.8435903144532],[99.1836633593751,40.8585012031251],[99.1665173632814,40.7508730292969],[99.1233362109376,40.7108620429688],[99.1010339648438,40.6763259101563],[99.0424963671876,40.6916640449219],[98.9844348437502,40.7815798164063],[98.8094250781251,40.7135573554688],[98.7825354296876,40.6968300605469],[98.8025500781251,40.6590065742188],[98.8007580859376,40.6138149238282],[98.6968518359377,40.6722292304688],[98.6659509570313,40.7698281074219],[98.5733850390626,40.7504616523437],[98.6245178515626,40.6761525703125],[98.3545666796877,40.5710329414063],[98.3424646289063,40.6092543769531],[98.3325354296876,40.9090334296875],[98.3273450000001,40.913843],[98.3190735156251,40.9224513984375],[98.2514709765626,40.938930890625],[98.1909045703126,40.9799880195313],[98.1216565234376,41.0135829902344],[97.9799158007814,41.091294171875],[97.6413220507814,41.4200331855469],[97.6140759570314,41.4761916328125],[97.8455774218751,41.655335919922],[97.7322449023439,41.8487429023437],[97.6624450976564,41.9689430976563],[97.5578894335939,42.1461257148438],[97.3547937304689,42.4810317207032],[97.1826672656252,42.7774440742187],[97.1773450000001,42.7938430000001],[97.5014099414063,42.7502492500001],[98.1992859179689,42.6528798652344],[98.5233117968751,42.6384596992188],[99.1793298632814,42.5901149726563]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":210100,"name":"沈阳市","center":[123.429096,41.796767],"centroid":[123.143796,42.100641],"childrenNum":13,"level":"city","parent":{"adcode":210000},"subFeatureIndex":0,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.561912,43.005383],[123.557536,43.010156],[123.537601,43.00719],[123.522389,43.020349],[123.493771,43.025769],[123.486408,43.03545],[123.471891,43.042721],[123.462375,43.03897],[123.448483,43.038136],[123.434938,43.027761],[123.412085,43.02878],[123.402917,43.020581],[123.383051,43.016596],[123.373674,43.011778],[123.333178,43.005383],[123.323106,43.001027],[123.272886,42.996856],[123.259411,42.993287],[123.242115,42.979752],[123.231349,42.962968],[123.219332,42.953508],[123.206204,42.951652],[123.184116,42.925906],[123.18877,42.895832],[123.186755,42.886129],[123.179392,42.878793],[123.170015,42.859752],[123.17071,42.852134],[123.18231,42.846048],[123.189395,42.848185],[123.227598,42.832155],[123.222458,42.825742],[123.187241,42.825416],[123.166403,42.810961],[123.132368,42.802733],[123.117503,42.801105],[123.096179,42.789806],[123.083676,42.788783],[123.058461,42.76911],[123.047973,42.771529],[123.031094,42.767761],[123.022481,42.772273],[122.995669,42.775203],[122.988515,42.779017],[122.978999,42.776785],[122.969135,42.767063],[122.973928,42.762969],[122.954201,42.754455],[122.945935,42.753711],[122.929334,42.77204],[122.887311,42.770133],[122.878697,42.759433],[122.877864,42.751152],[122.88356,42.751989],[122.875294,42.739425],[122.857929,42.725461],[122.850844,42.714428],[122.85522,42.706978],[122.846537,42.708189],[122.848621,42.717082],[122.83973,42.718292],[122.836118,42.716476],[122.815766,42.718897],[122.80111,42.726299],[122.778118,42.710889],[122.767838,42.709074],[122.750959,42.697944],[122.747347,42.689188],[122.756238,42.679732],[122.769505,42.677962],[122.791802,42.662773],[122.792705,42.650983],[122.824935,42.652661],[122.842786,42.648839],[122.838688,42.645204],[122.842578,42.633364],[122.86293,42.621055],[122.873488,42.608604],[122.886477,42.611216],[122.892034,42.608884],[122.903078,42.613687],[122.926764,42.604407],[122.922874,42.596804],[122.930237,42.587707],[122.969899,42.571376],[122.974414,42.564329],[122.966912,42.561716],[122.957744,42.550327],[122.949408,42.545098],[122.943365,42.547899],[122.921832,42.535527],[122.916831,42.52969],[122.917804,42.521565],[122.911552,42.51951],[122.908357,42.500685],[122.899744,42.499424],[122.882101,42.503908],[122.871543,42.504049],[122.834382,42.497975],[122.819447,42.490126],[122.826463,42.490126],[122.818544,42.481434],[122.825004,42.461149],[122.822018,42.458017],[122.827297,42.445814],[122.826602,42.438846],[122.832853,42.431597],[122.824865,42.429352],[122.81778,42.416769],[122.833965,42.417986],[122.828269,42.410267],[122.832159,42.403342],[122.84619,42.399599],[122.850983,42.40526],[122.862027,42.406804],[122.865639,42.395715],[122.873627,42.389397],[122.882379,42.388367],[122.875294,42.37484],[122.883421,42.368333],[122.895298,42.368848],[122.903217,42.353256],[122.900994,42.349182],[122.871057,42.345669],[122.858345,42.346091],[122.838827,42.331898],[122.826324,42.330446],[122.810765,42.319624],[122.805555,42.312408],[122.781314,42.29863],[122.769505,42.297037],[122.734289,42.284287],[122.735053,42.281005],[122.703726,42.261124],[122.691779,42.249915],[122.651283,42.232651],[122.645101,42.237671],[122.63628,42.237061],[122.632598,42.231009],[122.626,42.234716],[122.620096,42.230071],[122.609329,42.230164],[122.614469,42.212755],[122.552024,42.188063],[122.520072,42.174681],[122.455821,42.144572],[122.439428,42.150961],[122.432621,42.144196],[122.436858,42.140625],[122.423522,42.140672],[122.425953,42.129018],[122.429704,42.125118],[122.446583,42.124178],[122.438456,42.117315],[122.447625,42.110499],[122.435608,42.104811],[122.428315,42.092352],[122.445194,42.094656],[122.449917,42.087602],[122.436164,42.084169],[122.439359,42.074481],[122.453182,42.072458],[122.447347,42.063473],[122.459016,42.055523],[122.462767,42.041688],[122.477076,42.043571],[122.477632,42.038582],[122.469366,42.029169],[122.483744,42.02145],[122.497289,41.999274],[122.494789,41.988771],[122.501526,41.970918],[122.500971,41.956783],[122.507917,41.938733],[122.517919,41.936329],[122.515766,41.926523],[122.521045,41.916622],[122.517849,41.912331],[122.523129,41.900117],[122.509028,41.90422],[122.473881,41.906201],[122.443388,41.901202],[122.443874,41.890636],[122.453321,41.882852],[122.459572,41.870538],[122.457627,41.861194],[122.459225,41.843022],[122.487148,41.832211],[122.498817,41.82494],[122.513612,41.820595],[122.511459,41.81677],[122.529519,41.808363],[122.540077,41.800664],[122.552927,41.786869],[122.560915,41.789137],[122.55772,41.774914],[122.56925,41.772835],[122.596479,41.772268],[122.600369,41.766549],[122.579878,41.754969],[122.570431,41.740644],[122.575432,41.731518],[122.572168,41.728444],[122.572515,41.712505],[122.555983,41.708106],[122.549524,41.69907],[122.550635,41.678911],[122.532992,41.669919],[122.526671,41.676261],[122.517502,41.676971],[122.515835,41.658131],[122.526532,41.655054],[122.510139,41.62773],[122.502429,41.630098],[122.487078,41.605323],[122.484439,41.597599],[122.492635,41.590917],[122.485828,41.58158],[122.479646,41.583239],[122.487356,41.566316],[122.497706,41.57044],[122.500345,41.562238],[122.492983,41.551854],[122.4959,41.54346],[122.506597,41.537437],[122.520767,41.542559],[122.553483,41.550669],[122.566125,41.547776],[122.572446,41.540045],[122.582934,41.535207],[122.595159,41.534448],[122.59891,41.530227],[122.599118,41.514618],[122.604536,41.513005],[122.625027,41.520976],[122.634613,41.516943],[122.631418,41.506694],[122.636905,41.501663],[122.623916,41.488896],[122.636419,41.481728],[122.632598,41.474085],[122.625166,41.471426],[122.634543,41.448204],[122.634752,41.435331],[122.629751,41.429725],[122.643018,41.432528],[122.647116,41.424499],[122.631209,41.416801],[122.634057,41.405253],[122.64913,41.395889],[122.640795,41.363605],[122.642601,41.357612],[122.656423,41.358754],[122.658993,41.354806],[122.629542,41.330163],[122.620304,41.317504],[122.604328,41.318075],[122.60669,41.303463],[122.594673,41.303463],[122.588491,41.296846],[122.595229,41.293513],[122.576405,41.279991],[122.569528,41.268466],[122.554108,41.254843],[122.552371,41.249602],[122.560012,41.244123],[122.596201,41.245076],[122.612455,41.220534],[122.615303,41.207903],[122.622527,41.199845],[122.633015,41.203088],[122.637044,41.210191],[122.659896,41.212813],[122.669482,41.223394],[122.666634,41.229399],[122.666981,41.2456],[122.674275,41.251508],[122.676706,41.260893],[122.692543,41.268228],[122.698239,41.278991],[122.705949,41.284562],[122.698447,41.299274],[122.70963,41.308509],[122.724148,41.314601],[122.717827,41.322787],[122.731163,41.323453],[122.737762,41.33002],[122.747834,41.329449],[122.749362,41.351857],[122.765616,41.368313],[122.773742,41.360323],[122.780966,41.366363],[122.798054,41.366839],[122.80368,41.373401],[122.841814,41.378584],[122.85133,41.394701],[122.849663,41.415898],[122.863347,41.424642],[122.871404,41.414378],[122.881754,41.422313],[122.886755,41.417894],[122.914609,41.417799],[122.929681,41.42811],[122.912664,41.432956],[122.92857,41.448537],[122.91704,41.451054],[122.91954,41.454901],[122.933641,41.447919],[122.940309,41.456041],[122.935308,41.458368],[122.937947,41.466963],[122.933293,41.469194],[122.934405,41.47869],[122.959688,41.468102],[122.975803,41.47869],[122.976428,41.488849],[122.982055,41.496158],[122.971288,41.49929],[122.969205,41.492598],[122.957813,41.496395],[122.969205,41.509778],[123.002198,41.513906],[123.010881,41.505175],[123.020675,41.5075],[123.027413,41.514144],[123.041166,41.540187],[123.050196,41.551048],[123.071173,41.554462],[123.082286,41.560769],[123.078744,41.563376],[123.087218,41.5794],[123.087565,41.588974],[123.109098,41.606318],[123.11403,41.617119],[123.134312,41.60845],[123.123546,41.589637],[123.114099,41.585277],[123.11535,41.564988],[123.111668,41.55854],[123.131117,41.554035],[123.127366,41.546638],[123.134451,41.536156],[123.143203,41.538765],[123.156748,41.53682],[123.16946,41.548961],[123.182032,41.549388],[123.188144,41.54512],[123.193493,41.549673],[123.187589,41.555648],[123.201898,41.564562],[123.219471,41.565273],[123.219818,41.559156],[123.235517,41.551712],[123.236003,41.540282],[123.252951,41.538148],[123.279694,41.538053],[123.284278,41.524439],[123.2956,41.525056],[123.313382,41.519979],[123.324079,41.508307],[123.33429,41.506931],[123.335679,41.514665],[123.353669,41.510775],[123.362352,41.513195],[123.362629,41.504701],[123.382565,41.509256],[123.383746,41.50043],[123.397638,41.495114],[123.40764,41.500619],[123.417087,41.487472],[123.430076,41.481396],[123.429659,41.472043],[123.439383,41.469337],[123.449386,41.474987],[123.458068,41.466535],[123.477726,41.463829],[123.489603,41.478975],[123.498147,41.483675],[123.516485,41.480067],[123.527529,41.491981],[123.546561,41.481111],[123.560801,41.486808],[123.58018,41.498436],[123.591502,41.494022],[123.605533,41.502423],[123.603866,41.506029],[123.61623,41.508639],[123.615813,41.513479],[123.625816,41.516896],[123.629567,41.523822],[123.646584,41.518651],[123.664714,41.527048],[123.677703,41.528709],[123.683815,41.519742],[123.692359,41.526479],[123.702917,41.520786],[123.703403,41.515662],[123.71924,41.510348],[123.727437,41.517133],[123.745635,41.520596],[123.74758,41.527238],[123.73987,41.54033],[123.729868,41.543175],[123.735633,41.55138],[123.725561,41.556549],[123.721741,41.568307],[123.760222,41.584898],[123.776337,41.58741],[123.791827,41.598499],[123.782102,41.606602],[123.770711,41.60826],[123.767446,41.61873],[123.759597,41.619441],[123.749872,41.636824],[123.752998,41.642932],[123.764459,41.6462],[123.76953,41.657326],[123.779115,41.65709],[123.79648,41.680757],[123.790507,41.685631],[123.808567,41.697272],[123.811553,41.708815],[123.801204,41.718512],[123.801065,41.728917],[123.790021,41.7388],[123.781824,41.752133],[123.789048,41.766786],[123.772794,41.773449],[123.786687,41.785452],[123.780157,41.796838],[123.768627,41.799389],[123.755638,41.794145],[123.761889,41.788665],[123.7605,41.779215],[123.745844,41.783467],[123.716809,41.775103],[123.714031,41.778033],[123.691109,41.779167],[123.69222,41.78342],[123.669715,41.785215],[123.665547,41.795893],[123.669506,41.803687],[123.676522,41.803876],[123.685413,41.811386],[123.681176,41.825365],[123.673813,41.832258],[123.67673,41.837263],[123.706668,41.84255],[123.719588,41.849064],[123.739801,41.86379],[123.739106,41.880399],[123.720421,41.886909],[123.715628,41.891815],[123.728826,41.897428],[123.728617,41.907285],[123.733271,41.915773],[123.741676,41.919876],[123.731049,41.923082],[123.732785,41.930342],[123.723408,41.946887],[123.732507,41.954804],[123.727089,41.957961],[123.734383,41.967196],[123.763348,41.972614],[123.774392,41.969175],[123.790021,41.989242],[123.771058,41.995977],[123.769391,42.002664],[123.762792,41.999085],[123.763695,42.017825],[123.773211,42.023568],[123.788354,42.019567],[123.797175,42.013635],[123.810095,42.022062],[123.813568,42.030581],[123.808219,42.03557],[123.813151,42.050112],[123.805858,42.051335],[123.80433,42.058157],[123.794744,42.060086],[123.789465,42.052982],[123.789118,42.043947],[123.783144,42.037688],[123.779879,42.041877],[123.752026,42.052935],[123.75529,42.05731],[123.746122,42.065355],[123.735147,42.065402],[123.727228,42.076362],[123.705626,42.085956],[123.704862,42.09127],[123.678189,42.098417],[123.662213,42.09395],[123.647418,42.100862],[123.632206,42.100956],[123.631164,42.107679],[123.620954,42.115764],[123.608728,42.119337],[123.589974,42.129441],[123.574901,42.132308],[123.556147,42.144619],[123.541768,42.147015],[123.540518,42.155706],[123.542046,42.182241],[123.53517,42.181584],[123.521416,42.191021],[123.504815,42.192289],[123.487242,42.180504],[123.469599,42.181537],[123.458138,42.200176],[123.449594,42.204729],[123.465223,42.230258],[123.476753,42.233073],[123.468765,42.249446],[123.473628,42.261921],[123.48238,42.27144],[123.497939,42.275988],[123.51579,42.298255],[123.528085,42.321639],[123.52864,42.339674],[123.522875,42.339815],[123.516971,42.349462],[123.505788,42.353724],[123.499675,42.363417],[123.487936,42.363042],[123.482449,42.371469],[123.465848,42.381674],[123.476545,42.397399],[123.472238,42.397961],[123.479115,42.414384],[123.455151,42.43272],[123.454456,42.441184],[123.473419,42.4561],[123.479045,42.464935],[123.496341,42.463299],[123.5094,42.470077],[123.52225,42.487322],[123.534197,42.482042],[123.542185,42.490593],[123.554341,42.493256],[123.558647,42.499984],[123.566427,42.498956],[123.571567,42.506478],[123.583028,42.502787],[123.584,42.512644],[123.608937,42.509327],[123.616786,42.525207],[123.613313,42.53548],[123.621787,42.534173],[123.624149,42.543744],[123.643737,42.553081],[123.653947,42.550187],[123.663811,42.55182],[123.662908,42.539869],[123.668256,42.530624],[123.657629,42.521144],[123.679439,42.516334],[123.683885,42.510028],[123.703889,42.52997],[123.736814,42.542671],[123.752859,42.543044],[123.758555,42.553968],[123.742093,42.559196],[123.737092,42.553128],[123.72577,42.555415],[123.730771,42.562556],[123.723894,42.567456],[123.712433,42.566243],[123.710349,42.579589],[123.694721,42.578516],[123.691109,42.592839],[123.701528,42.593725],[123.69479,42.603287],[123.673813,42.602028],[123.662491,42.6149],[123.651586,42.618397],[123.664714,42.623666],[123.662908,42.629028],[123.637068,42.63989],[123.624079,42.647441],[123.61887,42.655084],[123.625607,42.664078],[123.625746,42.6754],[123.611298,42.680291],[123.60338,42.670555],[123.592614,42.663705],[123.578999,42.676937],[123.587821,42.67731],[123.583306,42.688443],[123.569344,42.692868],[123.582611,42.70628],[123.57122,42.712007],[123.559481,42.724763],[123.559342,42.729464],[123.57247,42.741426],[123.575387,42.751152],[123.585598,42.752501],[123.586848,42.760178],[123.57761,42.76804],[123.586084,42.77511],[123.598865,42.771622],[123.603519,42.77911],[123.593864,42.789248],[123.600602,42.796595],[123.594697,42.807939],[123.591988,42.823418],[123.605325,42.829274],[123.593655,42.838846],[123.593378,42.847442],[123.585668,42.852598],[123.603519,42.866347],[123.600949,42.870481],[123.583931,42.875357],[123.584348,42.884829],[123.59956,42.893511],[123.598587,42.905162],[123.584973,42.910546],[123.588793,42.921823],[123.601088,42.923354],[123.603519,42.930268],[123.584348,42.943906],[123.582125,42.950075],[123.566496,42.951652],[123.554896,42.961206],[123.546839,42.977341],[123.554132,42.984388],[123.566496,42.988142],[123.561912,43.005383]]]]}},{"type":"Feature","properties":{"adcode":210200,"name":"大连市","center":[121.618622,38.91459],"centroid":[122.190893,39.593378],"childrenNum":10,"level":"city","parent":{"adcode":210000},"subFeatureIndex":1,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.518846,39.770327],[123.518846,39.79857],[123.514679,39.814342],[123.504468,39.820182],[123.501273,39.828358],[123.504399,39.843832],[123.500162,39.851907],[123.483074,39.859934],[123.476614,39.868299],[123.474253,39.881284],[123.480782,39.891446],[123.490506,39.898058],[123.470571,39.924887],[123.456749,39.929164],[123.437161,39.922701],[123.420143,39.933877],[123.407362,39.9348],[123.397846,39.926005],[123.399096,39.93446],[123.391247,39.935918],[123.393331,39.954378],[123.384996,39.954864],[123.377077,39.971523],[123.401666,39.981817],[123.401041,39.993178],[123.407918,39.9991],[123.404862,40.009245],[123.39215,40.01371],[123.380272,40.004779],[123.359504,40.002158],[123.338943,40.01963],[123.317341,40.025114],[123.299698,40.024483],[123.296572,40.01701],[123.281638,40.016961],[123.266704,40.039233],[123.242324,40.036759],[123.225723,40.049663],[123.191895,40.06494],[123.183838,40.064746],[123.172794,40.070469],[123.167862,40.067607],[123.141814,40.072699],[123.136327,40.079196],[123.127019,40.076287],[123.11792,40.063485],[123.103194,40.074736],[123.080342,40.055095],[123.073326,40.040349],[123.068672,40.042289],[123.053947,40.060139],[123.03165,40.062127],[123.028871,40.07042],[123.010256,40.07299],[122.993863,40.081863],[122.981707,40.103289],[122.988654,40.116859],[122.969552,40.118507],[122.960522,40.123546],[122.944963,40.143215],[122.939128,40.158956],[122.938711,40.174791],[122.927042,40.182247],[122.901967,40.184038],[122.890784,40.187378],[122.893979,40.20519],[122.881476,40.195607],[122.878558,40.185442],[122.869668,40.178906],[122.8539,40.154646],[122.847926,40.150432],[122.858276,40.134496],[122.851122,40.124612],[122.835215,40.119282],[122.824379,40.120687],[122.815558,40.111335],[122.813821,40.103435],[122.80111,40.102853],[122.797498,40.106634],[122.778535,40.112013],[122.767421,40.109881],[122.746861,40.097667],[122.733247,40.094758],[122.727482,40.085693],[122.71352,40.075996],[122.708936,40.067462],[122.694488,40.07105],[122.658646,40.062176],[122.650519,40.06591],[122.628709,40.061933],[122.617317,40.064019],[122.607315,40.052864],[122.577516,40.055726],[122.569806,40.049905],[122.55772,40.058975],[122.55126,40.057326],[122.539452,40.062127],[122.529866,40.047431],[122.536465,40.031276],[122.550982,40.024677],[122.544731,40.013225],[122.527435,40.015554],[122.519308,40.005605],[122.520142,39.99876],[122.541049,39.993275],[122.544106,39.989343],[122.539243,39.972785],[122.554108,39.974631],[122.555914,39.968075],[122.549524,39.954524],[122.561193,39.944565],[122.551538,39.939173],[122.530005,39.941796],[122.510695,39.928678],[122.512084,39.920611],[122.501318,39.927317],[122.497081,39.935918],[122.477423,39.939561],[122.456168,39.951707],[122.418312,39.968657],[122.417757,39.972154],[122.401434,39.9672],[122.400322,39.972154],[122.373371,39.966326],[122.357743,39.969629],[122.344059,39.982545],[122.326972,39.984633],[122.304466,39.979486],[122.285851,39.967589],[122.280919,39.967395],[122.269806,39.979098],[122.269597,39.98405],[122.259873,39.988906],[122.26029,40.00609],[122.248898,40.012982],[122.242577,40.022202],[122.231047,40.008905],[122.218683,40.000217],[122.198609,39.998469],[122.196664,40.006138],[122.185342,40.009924],[122.175061,40.027103],[122.157557,40.035643],[122.139914,40.030888],[122.12498,40.042435],[122.096015,40.042386],[122.090111,40.038942],[122.081915,40.055435],[122.07344,40.056453],[122.069203,40.067753],[122.058576,40.064601],[122.049824,40.068577],[122.044267,40.062515],[122.020928,40.058393],[122.008356,40.051457],[121.993422,40.052379],[121.982794,40.061836],[121.980294,40.078081],[121.986545,40.081912],[121.98724,40.09088],[121.970778,40.116423],[121.953274,40.128876],[121.929518,40.106488],[121.921669,40.095631],[121.910416,40.072796],[121.878395,40.051021],[121.864711,40.052088],[121.856793,40.041561],[121.84304,40.041998],[121.823313,40.036613],[121.824841,40.025502],[121.809768,40.015942],[121.796223,39.999052],[121.790666,39.967978],[121.783165,39.960935],[121.779066,39.942865],[121.76448,39.933488],[121.751977,39.935772],[121.723637,39.935626],[121.699812,39.937327],[121.688212,39.931302],[121.662095,39.905301],[121.64723,39.906516],[121.636255,39.904183],[121.632574,39.889987],[121.626809,39.882791],[121.589508,39.868202],[121.572143,39.865235],[121.552486,39.872141],[121.537969,39.872822],[121.536024,39.861052],[121.530189,39.851518],[121.519423,39.844805],[121.514421,39.836533],[121.497612,39.820912],[121.475176,39.814585],[121.472537,39.806894],[121.475176,39.791754],[121.488929,39.777243],[121.487193,39.760342],[121.459686,39.747919],[121.461423,39.740026],[121.480177,39.728428],[121.502752,39.703326],[121.495042,39.688504],[121.498029,39.677629],[121.492125,39.665923],[121.482539,39.659338],[121.451907,39.658167],[121.446142,39.655045],[121.445517,39.644799],[121.454199,39.641774],[121.456839,39.633771],[121.45024,39.625084],[121.421692,39.621179],[121.40384,39.612588],[121.376125,39.608438],[121.355496,39.609366],[121.325766,39.601457],[121.297357,39.605753],[121.278672,39.599309],[121.263669,39.589689],[121.234634,39.565855],[121.226577,39.555059],[121.224007,39.535416],[121.225813,39.515767],[121.233801,39.50775],[121.24936,39.499731],[121.257417,39.485061],[121.268253,39.482616],[121.273046,39.496064],[121.286799,39.507163],[121.294579,39.494548],[121.303747,39.488142],[121.301664,39.476306],[121.245887,39.456837],[121.257903,39.435698],[121.270059,39.434229],[121.265683,39.426643],[121.252138,39.427377],[121.247415,39.419594],[121.258042,39.408726],[121.244914,39.395114],[121.247484,39.388062],[121.256653,39.384193],[121.25957,39.375622],[121.273671,39.375132],[121.308054,39.391246],[121.318543,39.388601],[121.319723,39.374544],[121.324308,39.371605],[121.349591,39.377826],[121.383349,39.37087],[121.395505,39.363571],[121.406063,39.361954],[121.421414,39.366217],[121.433153,39.3573],[121.436348,39.344266],[121.436,39.329955],[121.461701,39.324171],[121.466702,39.319857],[121.465243,39.301227],[121.474898,39.296225],[121.484692,39.282836],[121.498029,39.281169],[121.508378,39.292155],[121.515533,39.286613],[121.524424,39.293577],[121.555612,39.31167],[121.562419,39.322897],[121.571588,39.322161],[121.621321,39.326181],[121.636464,39.337013],[121.672583,39.348039],[121.687031,39.347206],[121.69231,39.353233],[121.704535,39.358035],[121.715857,39.366657],[121.723706,39.367441],[121.722456,39.356467],[121.711134,39.34309],[121.718636,39.332602],[121.716343,39.3177],[121.702243,39.326622],[121.669527,39.312504],[121.662859,39.298088],[121.669388,39.290732],[121.685086,39.291615],[121.68592,39.282346],[121.667999,39.276264],[121.655218,39.283719],[121.643618,39.279305],[121.626045,39.285926],[121.620349,39.27798],[121.598747,39.279158],[121.589231,39.267434],[121.59451,39.249525],[121.60868,39.257032],[121.621877,39.244127],[121.639451,39.244323],[121.635491,39.236275],[121.624239,39.238925],[121.630976,39.226311],[121.602636,39.230728],[121.591175,39.228716],[121.590828,39.217327],[121.601942,39.210797],[121.588328,39.20137],[121.587008,39.193562],[121.604234,39.1663],[121.639451,39.166055],[121.650078,39.15726],[121.652162,39.147678],[121.663206,39.145909],[121.664317,39.136522],[121.672444,39.127674],[121.68335,39.12207],[121.682308,39.118039],[121.656746,39.095568],[121.636811,39.087797],[121.636394,39.080124],[121.614097,39.077419],[121.606665,39.073041],[121.606179,39.080567],[121.642854,39.110664],[121.64216,39.119858],[121.595065,39.154607],[121.590689,39.155],[121.562766,39.131361],[121.562419,39.127281],[121.599233,39.098666],[121.599094,39.09247],[121.585758,39.077862],[121.566517,39.073582],[121.559154,39.064333],[121.533662,39.052278],[121.507823,39.034117],[121.471286,39.025503],[121.460103,39.032444],[121.431138,39.027472],[121.417177,39.029146],[121.410231,39.039531],[121.39099,39.050506],[121.383141,39.062857],[121.373764,39.062266],[121.366331,39.048882],[121.352023,39.045929],[121.342437,39.040024],[121.344799,39.031459],[121.331879,39.025749],[121.326531,39.016395],[121.317778,39.015362],[121.321043,39.002067],[121.340492,38.999359],[121.340909,38.980593],[121.325905,38.972515],[121.312916,38.970298],[121.301941,38.974781],[121.280131,38.973746],[121.263252,38.960641],[121.238802,38.956995],[121.222895,38.940979],[121.20428,38.941028],[121.196848,38.953299],[121.180177,38.96],[121.127734,38.959015],[121.117454,38.951771],[121.112245,38.942654],[121.092587,38.928557],[121.086752,38.907259],[121.093907,38.894338],[121.125025,38.889752],[121.127943,38.87673],[121.115231,38.868738],[121.109605,38.851221],[121.113634,38.822297],[121.128637,38.799238],[121.125859,38.790496],[121.111689,38.783384],[121.112245,38.776073],[121.126762,38.756359],[121.133638,38.725222],[121.137875,38.722849],[121.182955,38.719833],[121.19914,38.721514],[121.214213,38.733526],[121.22102,38.744548],[121.222965,38.75463],[121.23769,38.764117],[121.259848,38.786446],[121.305553,38.789558],[121.326253,38.801362],[121.330212,38.814249],[121.340284,38.819088],[121.359455,38.822346],[121.398908,38.81262],[121.428777,38.811287],[121.445517,38.817064],[121.468091,38.816126],[121.489693,38.823136],[121.496014,38.813756],[121.509698,38.817804],[121.523868,38.83217],[121.526577,38.840166],[121.542692,38.847125],[121.549152,38.864248],[121.559918,38.866419],[121.565475,38.875102],[121.594926,38.873523],[121.608471,38.869922],[121.617432,38.862768],[121.660775,38.860991],[121.677168,38.862472],[121.687726,38.873178],[121.694811,38.864198],[121.70905,38.87298],[121.71169,38.887631],[121.723428,38.904004],[121.7194,38.920078],[121.687309,38.929001],[121.678001,38.93393],[121.677029,38.941077],[121.650842,38.946498],[121.627017,38.93743],[121.621391,38.938859],[121.618335,38.94916],[121.634102,38.952461],[121.636464,38.958719],[121.650009,38.958818],[121.662581,38.966209],[121.676681,38.988228],[121.675153,38.997093],[121.658205,39.001624],[121.671125,39.009896],[121.68196,39.005711],[121.698353,39.004874],[121.711134,39.000442],[121.738224,38.999112],[121.760798,39.006597],[121.764132,39.013392],[121.756908,39.025651],[121.762952,39.028407],[121.79018,39.022402],[121.792959,39.01093],[121.805184,38.98744],[121.804767,38.970987],[121.833176,38.950441],[121.863183,38.942506],[121.870615,38.944773],[121.892426,38.958818],[121.911667,38.963794],[121.920905,38.969805],[121.903887,38.97547],[121.902081,38.988524],[121.905901,38.997339],[121.900275,39.002559],[121.883257,39.009798],[121.855612,39.026094],[121.852834,39.035742],[121.888467,39.027275],[121.903957,39.028457],[121.91507,39.014081],[121.928129,39.017971],[121.92924,39.024863],[121.917918,39.045339],[121.907013,39.04716],[121.907082,39.055722],[121.923336,39.053606],[121.963415,39.030032],[121.973487,39.031902],[121.989463,39.063595],[121.996548,39.069253],[122.020511,39.072844],[122.061841,39.060298],[122.072815,39.064972],[122.071426,39.074123],[122.053644,39.091683],[122.048435,39.101273],[122.05031,39.108304],[122.057812,39.110664],[122.08129,39.10973],[122.088305,39.11209],[122.107685,39.131115],[122.127411,39.144877],[122.147069,39.148857],[122.164573,39.147187],[122.170408,39.150479],[122.167351,39.158881],[122.123938,39.17254],[122.119493,39.186391],[122.124147,39.200191],[122.11734,39.214038],[122.144707,39.218898],[122.151723,39.23063],[122.160336,39.237845],[122.242924,39.267777],[122.251746,39.274988],[122.271403,39.317161],[122.292311,39.336817],[122.306828,39.331033],[122.308912,39.346177],[122.324332,39.345638],[122.343503,39.351518],[122.363647,39.365825],[122.371496,39.380618],[122.39935,39.391784],[122.413103,39.411762],[122.420605,39.413426],[122.451515,39.411811],[122.455682,39.403194],[122.498887,39.401921],[122.511876,39.413426],[122.532922,39.420133],[122.555706,39.43834],[122.581406,39.464175],[122.597382,39.471415],[122.604259,39.478116],[122.626764,39.483594],[122.636905,39.488924],[122.644823,39.499584],[122.649408,39.516696],[122.661633,39.522953],[122.682888,39.514789],[122.725467,39.531799],[122.730885,39.531066],[122.808889,39.559847],[122.810834,39.563999],[122.799234,39.575673],[122.810904,39.579971],[122.822018,39.565416],[122.838896,39.57284],[122.847371,39.581778],[122.842786,39.591838],[122.851955,39.601603],[122.860915,39.604777],[122.896966,39.605851],[122.904676,39.602482],[122.942184,39.60463],[122.948922,39.596525],[122.959411,39.598723],[122.972747,39.595012],[122.978721,39.602873],[122.979068,39.616395],[123.003726,39.635967],[123.019425,39.639383],[123.021369,39.643286],[123.010464,39.650703],[123.010742,39.655191],[123.02651,39.659679],[123.032553,39.644896],[123.046375,39.644164],[123.044917,39.651337],[123.035053,39.660996],[123.049015,39.666606],[123.052418,39.661045],[123.06256,39.666264],[123.077494,39.668557],[123.086454,39.659484],[123.08958,39.663386],[123.101388,39.661582],[123.099096,39.674703],[123.106528,39.675824],[123.131951,39.65685],[123.133201,39.645823],[123.14876,39.649824],[123.15529,39.663386],[123.166681,39.674068],[123.181754,39.673727],[123.188006,39.670167],[123.207802,39.670215],[123.21315,39.665972],[123.225862,39.676751],[123.224125,39.685724],[123.214887,39.688357],[123.215581,39.696744],[123.224611,39.698792],[123.249548,39.694452],[123.25309,39.689918],[123.272678,39.697524],[123.284,39.69494],[123.287056,39.704008],[123.270386,39.71483],[123.276082,39.729159],[123.263787,39.738321],[123.244269,39.744314],[123.246839,39.749284],[123.257674,39.747724],[123.263926,39.740855],[123.274415,39.737687],[123.282125,39.741927],[123.274692,39.753814],[123.289696,39.758588],[123.29949,39.753278],[123.324635,39.753376],[123.34061,39.756104],[123.344848,39.75055],[123.369576,39.746848],[123.38826,39.747481],[123.386038,39.733156],[123.392567,39.72375],[123.419518,39.730914],[123.440912,39.734033],[123.447927,39.732327],[123.458068,39.746117],[123.473766,39.74524],[123.479671,39.759222],[123.48488,39.762875],[123.493146,39.758345],[123.502176,39.762485],[123.503009,39.77023],[123.518846,39.770327]]],[[[122.567028,39.273909],[122.578836,39.267188],[122.574738,39.263607],[122.581545,39.255021],[122.591756,39.262724],[122.588977,39.270671],[122.609954,39.270671],[122.62211,39.265815],[122.648366,39.266011],[122.66462,39.256149],[122.678026,39.265422],[122.688584,39.268954],[122.67226,39.270181],[122.650241,39.278961],[122.641003,39.288133],[122.631765,39.288231],[122.628014,39.281708],[122.595437,39.278226],[122.575224,39.284259],[122.560082,39.299952],[122.555011,39.287496],[122.549246,39.289703],[122.546467,39.304561],[122.540841,39.308189],[122.524518,39.298432],[122.519169,39.305345],[122.51521,39.299952],[122.497567,39.30005],[122.50882,39.290536],[122.534451,39.285338],[122.554316,39.274743],[122.567028,39.273909]]],[[[122.383999,39.198374],[122.395252,39.21335],[122.401225,39.211288],[122.408588,39.218309],[122.379067,39.211141],[122.377747,39.205887],[122.362605,39.202941],[122.343781,39.203727],[122.347393,39.194937],[122.335863,39.186342],[122.316483,39.185016],[122.322109,39.177157],[122.320026,39.160601],[122.328986,39.157604],[122.337182,39.146155],[122.348505,39.146351],[122.363647,39.155147],[122.366981,39.165613],[122.362674,39.172147],[122.379901,39.174701],[122.383791,39.16802],[122.396155,39.161928],[122.403101,39.164974],[122.393098,39.173031],[122.390459,39.186882],[122.383374,39.191008],[122.383999,39.198374]]],[[[122.640517,39.225918],[122.651353,39.232593],[122.669135,39.235293],[122.67747,39.232103],[122.685736,39.234851],[122.705463,39.232054],[122.698655,39.215854],[122.691987,39.210994],[122.695947,39.206084],[122.714979,39.217082],[122.723522,39.214283],[122.728246,39.225967],[122.739151,39.224543],[122.753877,39.23387],[122.743388,39.239563],[122.741443,39.247857],[122.700531,39.245795],[122.690181,39.24182],[122.675178,39.240643],[122.654409,39.243195],[122.635724,39.241771],[122.628292,39.232593],[122.640517,39.225918]]],[[[122.762559,39.019349],[122.758878,39.025405],[122.751446,39.024026],[122.749501,39.035053],[122.740957,39.038301],[122.73026,39.035003],[122.72387,39.050063],[122.715673,39.042632],[122.704768,39.044256],[122.715951,39.035594],[122.720397,39.020482],[122.732761,39.013589],[122.737206,39.015214],[122.758322,39.009699],[122.762559,39.019349]]],[[[122.42512,39.174308],[122.411992,39.181922],[122.402684,39.179122],[122.425328,39.172097],[122.42512,39.174308]]],[[[121.826369,38.873868],[121.830815,38.864001],[121.84165,38.873227],[121.834079,38.883932],[121.840331,38.894092],[121.829564,38.896213],[121.825952,38.887828],[121.832343,38.882846],[121.823521,38.881317],[121.826369,38.873868]]],[[[122.418035,39.225574],[122.432552,39.224347],[122.4495,39.227341],[122.445333,39.234066],[122.434983,39.237011],[122.418035,39.225574]]],[[[122.423453,39.270524],[122.44561,39.254824],[122.456307,39.259142],[122.436858,39.268513],[122.423453,39.270524]]],[[[123.022689,39.546411],[123.004699,39.554521],[122.997267,39.551297],[122.984347,39.553691],[122.978999,39.561801],[122.961981,39.552323],[122.949269,39.533412],[122.944338,39.520606],[122.952951,39.521877],[122.970108,39.51826],[122.973094,39.499878],[122.994836,39.495624],[123.023731,39.516158],[123.036373,39.53307],[123.022689,39.546411]]],[[[122.308148,39.20024],[122.312802,39.205936],[122.30016,39.201861],[122.308148,39.20024]]],[[[122.296062,39.277097],[122.284253,39.280433],[122.28474,39.274841],[122.294881,39.266894],[122.303633,39.27489],[122.296062,39.277097]]],[[[123.06506,39.486479],[123.068533,39.508678],[123.058045,39.509607],[123.059364,39.493081],[123.06506,39.486479]]],[[[122.597104,39.206182],[122.612177,39.215412],[122.609815,39.225378],[122.599605,39.224789],[122.595506,39.213792],[122.587796,39.212172],[122.597104,39.206182]]],[[[122.51264,39.222973],[122.537021,39.224445],[122.548482,39.229992],[122.545703,39.237698],[122.534173,39.234753],[122.518683,39.239268],[122.501387,39.241182],[122.491871,39.231759],[122.502151,39.224249],[122.51264,39.222973]]],[[[122.825629,39.058675],[122.825768,39.051933],[122.818614,39.053557],[122.815419,39.04524],[122.823615,39.041353],[122.840425,39.047406],[122.836674,39.055279],[122.825629,39.058675]]],[[[122.809167,39.081649],[122.80243,39.081354],[122.805764,39.072942],[122.817364,39.068515],[122.819378,39.075599],[122.809167,39.081649]]],[[[121.831995,38.91781],[121.83658,38.912584],[121.841234,38.918106],[121.831995,38.91781]]],[[[122.872585,39.055279],[122.877864,39.066793],[122.865361,39.068957],[122.862305,39.06571],[122.850566,39.071319],[122.862791,39.051343],[122.870848,39.049325],[122.872585,39.055279]]],[[[121.476635,39.186784],[121.478163,39.19474],[121.466771,39.198964],[121.462048,39.205986],[121.445239,39.204218],[121.459548,39.201321],[121.476635,39.186784]]],[[[123.086524,39.426937],[123.08694,39.439515],[123.10368,39.44157],[123.088052,39.451259],[123.07541,39.451455],[123.053808,39.457668],[123.055336,39.444506],[123.068186,39.432223],[123.075757,39.434915],[123.077355,39.42865],[123.086524,39.426937]]],[[[121.493097,39.193807],[121.50303,39.202597],[121.50046,39.208244],[121.487401,39.204071],[121.493097,39.193807]]],[[[122.778118,39.23171],[122.770408,39.228863],[122.781661,39.218947],[122.798609,39.225231],[122.80493,39.223365],[122.809167,39.230679],[122.791524,39.229207],[122.778118,39.23171]]],[[[122.78173,39.079682],[122.789996,39.070138],[122.799512,39.072303],[122.790899,39.079337],[122.78173,39.079682]]],[[[123.16043,39.025503],[123.170085,39.027374],[123.18356,39.040368],[123.197244,39.047307],[123.205648,39.056952],[123.206413,39.067678],[123.200856,39.078108],[123.186338,39.083715],[123.187728,39.097043],[123.173974,39.103092],[123.171474,39.09847],[123.176197,39.087797],[123.170224,39.086273],[123.145635,39.091781],[123.140494,39.080075],[123.149663,39.064726],[123.142995,39.048538],[123.144037,39.038646],[123.154248,39.027275],[123.16043,39.025503]]],[[[123.004629,39.248887],[123.01616,39.257081],[123.012687,39.262577],[123.001156,39.263558],[122.988098,39.257965],[122.992057,39.251684],[123.004629,39.248887]]],[[[121.163437,39.084699],[121.178371,39.088535],[121.170105,39.096896],[121.159339,39.092027],[121.163437,39.084699]]],[[[122.343364,39.346226],[122.32329,39.343727],[122.319956,39.328289],[122.331765,39.325446],[122.340864,39.331377],[122.34906,39.330445],[122.354617,39.338189],[122.349338,39.348186],[122.343364,39.346226]]],[[[120.976449,38.960444],[120.978533,38.951131],[120.987076,38.946597],[120.991522,38.950589],[120.986173,38.958424],[120.976449,38.960444]]]]}},{"type":"Feature","properties":{"adcode":210300,"name":"鞍山市","center":[122.995632,41.110626],"centroid":[123.016394,40.718251],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":2,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.533711,40.826996],[123.509608,40.816159],[123.487659,40.811411],[123.461611,40.809541],[123.442231,40.803114],[123.428964,40.803306],[123.411044,40.807095],[123.402639,40.802538],[123.394234,40.786515],[123.37541,40.775384],[123.357003,40.775959],[123.340055,40.771113],[123.315049,40.773464],[123.297614,40.76593],[123.287959,40.754506],[123.277054,40.749082],[123.258369,40.744569],[123.244685,40.731462],[123.230932,40.733959],[123.214262,40.732182],[123.1771,40.712684],[123.150288,40.725219],[123.136188,40.714461],[123.130075,40.72666],[123.100971,40.741305],[123.085412,40.755946],[123.073812,40.771641],[123.071798,40.780422],[123.074854,40.792081],[123.091386,40.802394],[123.107084,40.820091],[123.105834,40.824455],[123.084926,40.835866],[123.072979,40.839414],[123.054294,40.835099],[123.050265,40.845502],[123.055752,40.857772],[123.047973,40.871765],[123.055266,40.884175],[123.075063,40.898354],[123.073673,40.906879],[123.060406,40.923447],[123.089788,40.928378],[123.096387,40.934171],[123.097151,40.941973],[123.083884,40.961595],[123.087913,40.975519],[123.103125,40.984177],[123.126741,40.989343],[123.151052,40.983938],[123.161541,40.988434],[123.178212,40.989917],[123.192451,40.987621],[123.190923,40.996852],[123.201898,41.00173],[123.212247,41.017701],[123.199675,41.031278],[123.205162,41.039547],[123.214331,41.039833],[123.235517,41.048962],[123.226626,41.058996],[123.231835,41.066067],[123.214539,41.077867],[123.208357,41.078631],[123.213636,41.091145],[123.2119,41.098117],[123.203148,41.097687],[123.198494,41.103322],[123.183977,41.106043],[123.171891,41.098642],[123.162583,41.099024],[123.154595,41.105852],[123.145287,41.101841],[123.146746,41.10824],[123.142509,41.12576],[123.146815,41.133826],[123.140147,41.137214],[123.149385,41.154059],[123.13716,41.158018],[123.129381,41.174094],[123.119309,41.177242],[123.119031,41.184253],[123.109862,41.184634],[123.099304,41.178101],[123.075618,41.184634],[123.063254,41.183156],[123.057142,41.191501],[123.062282,41.199083],[123.038248,41.208427],[123.022411,41.206854],[123.005949,41.188497],[122.991363,41.18659],[122.987612,41.200465],[122.974484,41.202706],[122.962467,41.191358],[122.946144,41.196603],[122.909607,41.194219],[122.89898,41.181296],[122.895924,41.171519],[122.885505,41.166844],[122.875572,41.170612],[122.86675,41.163171],[122.875988,41.157732],[122.865291,41.144897],[122.858137,41.144945],[122.84876,41.129769],[122.856748,41.114971],[122.841605,41.106091],[122.831047,41.091575],[122.832437,41.082452],[122.824518,41.081831],[122.801388,41.093533],[122.800068,41.100266],[122.791594,41.096111],[122.784995,41.101316],[122.777215,41.099024],[122.760962,41.101221],[122.762837,41.104372],[122.704282,41.114828],[122.689556,41.122609],[122.690251,41.128289],[122.678581,41.140746],[122.639683,41.155204],[122.618706,41.169706],[122.598077,41.178911],[122.601897,41.185636],[122.59509,41.19584],[122.613149,41.202134],[122.622527,41.199845],[122.615303,41.207903],[122.612455,41.220534],[122.596201,41.245076],[122.560012,41.244123],[122.552371,41.249602],[122.554108,41.254843],[122.569528,41.268466],[122.576405,41.279991],[122.595229,41.293513],[122.588491,41.296846],[122.594673,41.303463],[122.60669,41.303463],[122.604328,41.318075],[122.620304,41.317504],[122.629542,41.330163],[122.658993,41.354806],[122.656423,41.358754],[122.642601,41.357612],[122.640795,41.363605],[122.64913,41.395889],[122.634057,41.405253],[122.631209,41.416801],[122.647116,41.424499],[122.643018,41.432528],[122.629751,41.429725],[122.634752,41.435331],[122.634543,41.448204],[122.625166,41.471426],[122.632598,41.474085],[122.636419,41.481728],[122.623916,41.488896],[122.636905,41.501663],[122.631418,41.506694],[122.634613,41.516943],[122.625027,41.520976],[122.604536,41.513005],[122.599118,41.514618],[122.59891,41.530227],[122.595159,41.534448],[122.582934,41.535207],[122.572446,41.540045],[122.566125,41.547776],[122.553483,41.550669],[122.520767,41.542559],[122.506597,41.537437],[122.4959,41.54346],[122.492983,41.551854],[122.500345,41.562238],[122.497706,41.57044],[122.487356,41.566316],[122.470547,41.556691],[122.452834,41.549341],[122.409213,41.548677],[122.368092,41.545404],[122.357118,41.541326],[122.330097,41.525483],[122.298284,41.514571],[122.283837,41.515899],[122.215557,41.485336],[122.193746,41.459602],[122.199303,41.45794],[122.192288,41.448964],[122.200345,41.441792],[122.198956,41.429203],[122.232436,41.387095],[122.245286,41.373877],[122.280294,41.353997],[122.277516,41.348908],[122.279461,41.334968],[122.271681,41.328355],[122.274737,41.319741],[122.26668,41.307414],[122.264388,41.291133],[122.254455,41.277896],[122.249801,41.260845],[122.250079,41.242551],[122.244591,41.236309],[122.231047,41.2304],[122.205138,41.223299],[122.215001,41.216578],[122.226948,41.201943],[122.254316,41.194076],[122.266194,41.194791],[122.274737,41.184539],[122.304814,41.190881],[122.338572,41.189975],[122.352533,41.198034],[122.343364,41.203707],[122.36191,41.206568],[122.369759,41.217579],[122.386499,41.2243],[122.388861,41.231639],[122.408866,41.251651],[122.423661,41.243266],[122.424633,41.253318],[122.457697,41.248078],[122.46374,41.256796],[122.480688,41.254938],[122.488745,41.250984],[122.463879,41.233307],[122.447208,41.21553],[122.435469,41.213003],[122.415326,41.212622],[122.411783,41.204041],[122.400461,41.196889],[122.384624,41.195602],[122.368926,41.183585],[122.366356,41.177147],[122.37233,41.162407],[122.386638,41.160165],[122.384416,41.135496],[122.396502,41.120461],[122.396502,41.10165],[122.412061,41.090954],[122.415881,41.084602],[122.414978,41.057085],[122.40956,41.038639],[122.415256,41.022482],[122.424008,41.012776],[122.41088,40.993074],[122.404698,40.991496],[122.396502,41.000869],[122.390111,40.997426],[122.390111,40.988052],[122.380665,40.989869],[122.368023,41.0002],[122.359966,41.001874],[122.3426,40.988817],[122.346629,40.980494],[122.36066,40.9881],[122.364411,40.985851],[122.358715,40.975327],[122.338988,40.968151],[122.328361,40.971117],[122.328917,40.96327],[122.350172,40.955422],[122.351213,40.951498],[122.338294,40.940872],[122.343364,40.927277],[122.331278,40.923974],[122.318845,40.927325],[122.327597,40.918276],[122.321345,40.909273],[122.335238,40.905777],[122.352672,40.916025],[122.363647,40.909082],[122.377609,40.909225],[122.377609,40.919425],[122.384138,40.924835],[122.394557,40.922298],[122.411505,40.927852],[122.433316,40.930676],[122.438595,40.940059],[122.449848,40.940298],[122.465059,40.935894],[122.488607,40.935751],[122.506111,40.929288],[122.503124,40.915355],[122.492566,40.90003],[122.493052,40.882881],[122.502429,40.879527],[122.502568,40.872963],[122.487634,40.8606],[122.484231,40.85159],[122.502568,40.847324],[122.51653,40.84809],[122.515002,40.839414],[122.523406,40.834188],[122.521531,40.826805],[122.542022,40.818701],[122.537993,40.800715],[122.541952,40.798557],[122.515974,40.766554],[122.556817,40.761082],[122.567583,40.758058],[122.581892,40.748506],[122.600785,40.751722],[122.639614,40.748698],[122.649825,40.739768],[122.651144,40.710571],[122.636558,40.696832],[122.622804,40.688136],[122.623082,40.671749],[122.636558,40.663819],[122.638642,40.659012],[122.647463,40.666606],[122.670941,40.67098],[122.669482,40.662569],[122.659758,40.658435],[122.653784,40.648099],[122.653228,40.638675],[122.645101,40.636704],[122.654617,40.628673],[122.650867,40.616937],[122.643573,40.611069],[122.625861,40.608423],[122.650589,40.593893],[122.651283,40.584702],[122.659549,40.583596],[122.662883,40.594615],[122.678929,40.592594],[122.691987,40.599956],[122.703657,40.598945],[122.720883,40.586387],[122.730677,40.582922],[122.743458,40.585136],[122.771103,40.577532],[122.797637,40.578879],[122.807431,40.570312],[122.811529,40.558181],[122.8166,40.5577],[122.829311,40.538006],[122.854872,40.532853],[122.86286,40.5277],[122.879461,40.52876],[122.897382,40.538632],[122.914678,40.537573],[122.936002,40.528856],[122.949825,40.515658],[122.969413,40.508961],[122.984347,40.486989],[122.999212,40.477012],[122.9865,40.463563],[122.99296,40.435161],[122.990182,40.427684],[122.971288,40.417795],[122.946213,40.416396],[122.936558,40.409304],[122.931974,40.396806],[122.934822,40.374024],[122.92982,40.358333],[122.932113,40.344715],[122.915859,40.331529],[122.891339,40.319548],[122.881337,40.306937],[122.88217,40.289829],[122.873002,40.26851],[122.874669,40.258597],[122.881823,40.249457],[122.884879,40.236204],[122.891131,40.234705],[122.896757,40.218739],[122.893979,40.20519],[122.890784,40.187378],[122.901967,40.184038],[122.927042,40.182247],[122.938711,40.174791],[122.939128,40.158956],[122.944963,40.143215],[122.960522,40.123546],[122.969552,40.118507],[122.988654,40.116859],[122.981707,40.103289],[122.993863,40.081863],[123.010256,40.07299],[123.028871,40.07042],[123.03165,40.062127],[123.053947,40.060139],[123.068672,40.042289],[123.073326,40.040349],[123.080342,40.055095],[123.103194,40.074736],[123.11792,40.063485],[123.127019,40.076287],[123.136327,40.079196],[123.141814,40.072699],[123.167862,40.067607],[123.172794,40.070469],[123.183838,40.064746],[123.191895,40.06494],[123.225723,40.049663],[123.242324,40.036759],[123.266704,40.039233],[123.281638,40.016961],[123.296572,40.01701],[123.299698,40.024483],[123.317341,40.025114],[123.338943,40.01963],[123.359504,40.002158],[123.380272,40.004779],[123.39215,40.01371],[123.404862,40.009245],[123.40632,40.013564],[123.422991,40.030548],[123.448483,40.037147],[123.457721,40.033023],[123.47717,40.031276],[123.472863,40.037438],[123.464111,40.038263],[123.458138,40.058102],[123.46814,40.041125],[123.471127,40.046898],[123.482935,40.050972],[123.476267,40.071875],[123.513776,40.090493],[123.513498,40.093789],[123.528849,40.103338],[123.546283,40.102514],[123.553577,40.09946],[123.563232,40.102514],[123.567955,40.114581],[123.575179,40.115745],[123.59046,40.130281],[123.606714,40.159392],[123.606297,40.168545],[123.599768,40.170336],[123.583306,40.166123],[123.571914,40.172854],[123.560523,40.187136],[123.576915,40.205383],[123.583653,40.221642],[123.589905,40.225948],[123.596156,40.243024],[123.611576,40.241332],[123.624149,40.249506],[123.635818,40.264787],[123.647696,40.260387],[123.673396,40.276826],[123.680342,40.290312],[123.711322,40.300172],[123.705487,40.314137],[123.708057,40.326215],[123.715976,40.333075],[123.71799,40.341721],[123.73855,40.363548],[123.75147,40.383292],[123.761681,40.402886],[123.747511,40.41765],[123.769252,40.443504],[123.766196,40.456957],[123.756818,40.471035],[123.76953,40.492386],[123.767307,40.499952],[123.738203,40.507805],[123.740843,40.511129],[123.737925,40.524955],[123.74112,40.532083],[123.735216,40.538632],[123.74119,40.549226],[123.738134,40.575703],[123.721324,40.586627],[123.717434,40.592498],[123.731396,40.603035],[123.748761,40.610732],[123.731118,40.648964],[123.725422,40.654205],[123.710488,40.657041],[123.694999,40.66603],[123.663811,40.675738],[123.636304,40.690875],[123.623176,40.693613],[123.592544,40.686118],[123.582889,40.686454],[123.577263,40.692316],[123.581014,40.704615],[123.570386,40.712156],[123.558925,40.713021],[123.560175,40.719937],[123.551423,40.722962],[123.556008,40.728485],[123.557328,40.747642],[123.567747,40.763482],[123.581083,40.768761],[123.585529,40.777543],[123.581222,40.786899],[123.55698,40.806088],[123.544894,40.821242],[123.533711,40.826996]]]]}},{"type":"Feature","properties":{"adcode":210400,"name":"抚顺市","center":[123.921109,41.875956],"centroid":[124.662356,41.837685],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":3,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.74758,41.527238],[123.771683,41.539476],[123.783769,41.541563],[123.787242,41.523538],[123.781685,41.512673],[123.791966,41.506599],[123.807247,41.507406],[123.825307,41.513384],[123.849132,41.518746],[123.859551,41.52387],[123.86219,41.532029],[123.860315,41.550906],[123.867747,41.562381],[123.887891,41.566885],[123.921926,41.568449],[123.933874,41.548961],[123.946793,41.550147],[123.959505,41.55726],[123.975064,41.560674],[123.986664,41.559346],[124.025701,41.546116],[124.052929,41.530464],[124.061751,41.529942],[124.09794,41.535539],[124.105441,41.528377],[124.115513,41.505934],[124.128016,41.509826],[124.140727,41.517797],[124.14677,41.516896],[124.169067,41.521071],[124.178236,41.535397],[124.201992,41.534211],[124.209146,41.536203],[124.230193,41.549151],[124.237764,41.548866],[124.257352,41.540519],[124.282983,41.542986],[124.300348,41.537958],[124.309378,41.515804],[124.317991,41.507073],[124.31035,41.504511],[124.310211,41.495351],[124.332508,41.488754],[124.331049,41.479117],[124.341538,41.473942],[124.371198,41.473705],[124.384465,41.461739],[124.378769,41.455281],[124.357653,41.441602],[124.345775,41.42944],[124.345497,41.408057],[124.348553,41.39993],[124.36057,41.383814],[124.368975,41.3773],[124.388563,41.369407],[124.389396,41.354711],[124.393842,41.344198],[124.413569,41.338346],[124.420862,41.325832],[124.424127,41.311698],[124.438783,41.304177],[124.462816,41.303654],[124.466706,41.307366],[124.458718,41.319027],[124.464275,41.32864],[124.476222,41.333826],[124.488169,41.335159],[124.500394,41.331876],[124.517065,41.318932],[124.542696,41.311841],[124.567007,41.286895],[124.601946,41.26537],[124.632995,41.264322],[124.64001,41.259892],[124.640705,41.244695],[124.654041,41.239788],[124.671059,41.254986],[124.677311,41.264798],[124.711971,41.262274],[124.733226,41.269418],[124.763233,41.2748],[124.7765,41.281324],[124.784766,41.289466],[124.803104,41.298084],[124.834778,41.310413],[124.839918,41.321883],[124.864368,41.324405],[124.872564,41.327403],[124.867841,41.333731],[124.87187,41.347956],[124.86416,41.361132],[124.868675,41.368741],[124.856519,41.373401],[124.86027,41.384195],[124.856797,41.396602],[124.862354,41.399787],[124.853602,41.419937],[124.863257,41.425877],[124.860964,41.434001],[124.864437,41.443407],[124.881594,41.444832],[124.888332,41.457703],[124.880413,41.470619],[124.89889,41.47399],[124.905836,41.484102],[124.916463,41.492503],[124.920423,41.500335],[124.940149,41.504701],[124.957028,41.520074],[124.959668,41.510775],[124.969948,41.501806],[124.989189,41.496395],[124.998496,41.497155],[125.057399,41.47399],[125.067193,41.474465],[125.068235,41.493975],[125.09206,41.493358],[125.105049,41.495494],[125.123664,41.50247],[125.132764,41.501331],[125.154644,41.488326],[125.172009,41.485668],[125.17576,41.492409],[125.201947,41.500809],[125.20917,41.482868],[125.22216,41.480019],[125.249735,41.486997],[125.252028,41.498294],[125.258765,41.50508],[125.278562,41.494592],[125.295927,41.493026],[125.3226,41.496823],[125.328434,41.511297],[125.338437,41.516563],[125.353857,41.531745],[125.367332,41.538907],[125.373723,41.552613],[125.381641,41.562381],[125.399979,41.547491],[125.417136,41.544077],[125.426235,41.550526],[125.451588,41.550574],[125.462493,41.568354],[125.464021,41.579874],[125.452908,41.591343],[125.450268,41.611482],[125.455756,41.623278],[125.468189,41.632798],[125.47062,41.639807],[125.45909,41.643359],[125.452699,41.658747],[125.450616,41.6738],[125.431861,41.674841],[125.411857,41.691452],[125.376084,41.686199],[125.363026,41.677444],[125.348231,41.677775],[125.34448,41.672806],[125.330865,41.674415],[125.325031,41.670203],[125.316973,41.677539],[125.326073,41.697224],[125.324892,41.700678],[125.334547,41.717424],[125.331352,41.729437],[125.338506,41.741684],[125.332602,41.7527],[125.345174,41.760688],[125.335103,41.770141],[125.320238,41.772126],[125.317807,41.792586],[125.305929,41.801325],[125.294676,41.823287],[125.291273,41.847271],[125.298914,41.857324],[125.300928,41.868698],[125.296482,41.875728],[125.296413,41.887381],[125.303845,41.895683],[125.303915,41.911341],[125.307596,41.924496],[125.324614,41.929211],[125.351704,41.928268],[125.349273,41.937224],[125.317251,41.945237],[125.309263,41.95537],[125.291968,41.958809],[125.298288,41.974122],[125.317529,41.977137],[125.32121,41.981989],[125.337047,41.988018],[125.341701,42.000215],[125.351495,41.997437],[125.369902,42.002947],[125.363442,42.016648],[125.379905,42.032652],[125.401646,42.050065],[125.408522,42.062156],[125.417691,42.065778],[125.423665,42.078055],[125.421928,42.089483],[125.416163,42.09127],[125.412065,42.100674],[125.434987,42.102508],[125.445337,42.098464],[125.454783,42.102931],[125.456103,42.113508],[125.465202,42.111957],[125.4668,42.117926],[125.476941,42.120747],[125.477705,42.126433],[125.48993,42.136255],[125.462007,42.159417],[125.457978,42.160356],[125.444711,42.152182],[125.431514,42.151995],[125.406578,42.158665],[125.397478,42.166697],[125.388657,42.169045],[125.384281,42.177264],[125.36886,42.182805],[125.353579,42.177968],[125.356913,42.167167],[125.351912,42.154625],[125.359692,42.15176],[125.357677,42.146122],[125.346286,42.143303],[125.335936,42.145699],[125.330657,42.141847],[125.31871,42.142034],[125.30579,42.146545],[125.307874,42.159088],[125.314264,42.164396],[125.310375,42.170783],[125.312042,42.185246],[125.317529,42.195199],[125.313153,42.197641],[125.298497,42.175526],[125.284327,42.170924],[125.280507,42.174775],[125.291412,42.183274],[125.293009,42.19412],[125.307527,42.202335],[125.306763,42.209892],[125.296621,42.208484],[125.312667,42.220076],[125.299886,42.222563],[125.277659,42.231947],[125.28398,42.235279],[125.28905,42.247429],[125.275922,42.266751],[125.285021,42.272988],[125.299261,42.28949],[125.278701,42.296662],[125.27495,42.303692],[125.264947,42.306879],[125.263489,42.312971],[125.253834,42.307675],[125.242025,42.312689],[125.214172,42.300646],[125.173815,42.310721],[125.173815,42.319624],[125.181942,42.328338],[125.176455,42.337894],[125.176385,42.347402],[125.167564,42.351991],[125.185971,42.361076],[125.193264,42.360045],[125.202988,42.366226],[125.199238,42.377461],[125.185693,42.38261],[125.185901,42.391409],[125.192917,42.396604],[125.197501,42.407506],[125.186665,42.414758],[125.186457,42.427528],[125.1809,42.432813],[125.170134,42.43445],[125.140057,42.446375],[125.149295,42.451939],[125.149851,42.459045],[125.136098,42.471526],[125.107966,42.478864],[125.099006,42.478023],[125.078446,42.464842],[125.079904,42.457315],[125.063164,42.450536],[125.057746,42.445533],[125.036214,42.438098],[125.03663,42.420231],[125.041562,42.414618],[125.036491,42.405541],[125.024336,42.401891],[125.004748,42.401845],[124.997732,42.392579],[125.005859,42.378444],[124.990717,42.37292],[124.985299,42.379146],[124.974255,42.368145],[124.956959,42.371329],[124.960988,42.384436],[124.952236,42.389116],[124.944734,42.400768],[124.931259,42.40278],[124.925077,42.396884],[124.895278,42.398242],[124.886248,42.41022],[124.864021,42.407787],[124.853185,42.412278],[124.821719,42.418266],[124.820399,42.411296],[124.800395,42.415881],[124.786016,42.409237],[124.775597,42.400347],[124.772055,42.391362],[124.777612,42.380551],[124.7856,42.382376],[124.787822,42.365523],[124.797061,42.359718],[124.787058,42.33958],[124.774625,42.336957],[124.763511,42.343093],[124.751494,42.338316],[124.732462,42.335693],[124.725586,42.324497],[124.712944,42.325106],[124.695995,42.317141],[124.679394,42.319577],[124.661126,42.315641],[124.647859,42.316344],[124.625701,42.327261],[124.62584,42.334475],[124.634523,42.345903],[124.628202,42.348432],[124.605141,42.345294],[124.59361,42.351008],[124.574648,42.351476],[124.569508,42.341641],[124.577843,42.321076],[124.564784,42.303739],[124.561033,42.282318],[124.553323,42.270034],[124.536722,42.257888],[124.516023,42.236733],[124.52797,42.202476],[124.536514,42.192899],[124.543946,42.176982],[124.561172,42.16402],[124.560061,42.155048],[124.543043,42.137477],[124.541446,42.131039],[124.550128,42.11896],[124.520121,42.087884],[124.497408,42.079654],[124.447604,42.067801],[124.423501,42.052182],[124.414124,42.050112],[124.408637,42.044041],[124.383978,42.033923],[124.366752,42.032888],[124.369044,42.022391],[124.35154,42.012222],[124.341955,42.009397],[124.33737,42.016601],[124.313267,42.015235],[124.294721,42.006054],[124.279926,42.00742],[124.283816,42.013117],[124.281177,42.020885],[124.285275,42.027428],[124.275689,42.036935],[124.275828,42.043147],[124.268604,42.046018],[124.264645,42.064602],[124.25374,42.067284],[124.234291,42.058157],[124.207618,42.055334],[124.191572,42.058957],[124.174416,42.055711],[124.164622,42.056793],[124.140797,42.068083],[124.095231,42.073446],[124.07988,42.065543],[124.067446,42.064367],[124.03994,42.045124],[124.034175,42.018907],[124.024381,42.011657],[124.004307,42.01161],[123.985969,42.005819],[123.954781,42.005631],[123.943529,42.008738],[123.950336,42.018625],[123.940194,42.023803],[123.92658,42.018766],[123.905742,42.031146],[123.880667,42.033123],[123.875457,42.028746],[123.842811,42.022909],[123.813915,42.007655],[123.80169,41.994093],[123.790021,41.989242],[123.774392,41.969175],[123.763348,41.972614],[123.734383,41.967196],[123.727089,41.957961],[123.732507,41.954804],[123.723408,41.946887],[123.732785,41.930342],[123.731049,41.923082],[123.741676,41.919876],[123.733271,41.915773],[123.728617,41.907285],[123.728826,41.897428],[123.715628,41.891815],[123.720421,41.886909],[123.739106,41.880399],[123.739801,41.86379],[123.719588,41.849064],[123.706668,41.84255],[123.67673,41.837263],[123.673813,41.832258],[123.681176,41.825365],[123.685413,41.811386],[123.676522,41.803876],[123.669506,41.803687],[123.665547,41.795893],[123.669715,41.785215],[123.69222,41.78342],[123.691109,41.779167],[123.714031,41.778033],[123.716809,41.775103],[123.745844,41.783467],[123.7605,41.779215],[123.761889,41.788665],[123.755638,41.794145],[123.768627,41.799389],[123.780157,41.796838],[123.786687,41.785452],[123.772794,41.773449],[123.789048,41.766786],[123.781824,41.752133],[123.790021,41.7388],[123.801065,41.728917],[123.801204,41.718512],[123.811553,41.708815],[123.808567,41.697272],[123.790507,41.685631],[123.79648,41.680757],[123.779115,41.65709],[123.76953,41.657326],[123.764459,41.6462],[123.752998,41.642932],[123.749872,41.636824],[123.759597,41.619441],[123.767446,41.61873],[123.770711,41.60826],[123.782102,41.606602],[123.791827,41.598499],[123.776337,41.58741],[123.760222,41.584898],[123.721741,41.568307],[123.725561,41.556549],[123.735633,41.55138],[123.729868,41.543175],[123.73987,41.54033],[123.74758,41.527238]]]]}},{"type":"Feature","properties":{"adcode":210500,"name":"本溪市","center":[123.770519,41.297909],"centroid":[124.574237,41.231499],"childrenNum":6,"level":"city","parent":{"adcode":210000},"subFeatureIndex":4,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.591502,41.494022],[123.601366,41.48676],[123.607617,41.467675],[123.644362,41.458178],[123.652697,41.449439],[123.652836,41.438609],[123.631164,41.416801],[123.633943,41.406869],[123.642556,41.392562],[123.652628,41.386952],[123.650058,41.378537],[123.655475,41.37245],[123.652628,41.353236],[123.658254,41.345958],[123.654642,41.327688],[123.661796,41.324928],[123.663324,41.316077],[123.65617,41.298655],[123.657768,41.286895],[123.664019,41.283705],[123.665547,41.269133],[123.670201,41.260702],[123.636374,41.246887],[123.619495,41.246601],[123.616022,41.254795],[123.600463,41.24217],[123.59692,41.23426],[123.608798,41.22001],[123.598934,41.206663],[123.619286,41.202849],[123.624913,41.189308],[123.63422,41.181248],[123.639013,41.169324],[123.638458,41.159259],[123.649085,41.157446],[123.664644,41.139123],[123.655267,41.129148],[123.651308,41.112775],[123.660477,41.095873],[123.660685,41.086846],[123.671104,41.071657],[123.679648,41.069889],[123.68972,41.059665],[123.685344,41.0503],[123.670757,41.043227],[123.65999,41.041602],[123.660824,41.017797],[123.650127,41.016314],[123.647349,41.006943],[123.652072,40.975423],[123.656587,40.973796],[123.648043,40.964658],[123.657976,40.952647],[123.646515,40.930724],[123.632415,40.923926],[123.623662,40.912242],[123.625191,40.906879],[123.619425,40.896629],[123.608659,40.89227],[123.604908,40.874017],[123.582264,40.857485],[123.597684,40.856958],[123.623593,40.851637],[123.638805,40.845071],[123.663741,40.826757],[123.671868,40.825798],[123.686594,40.833853],[123.695346,40.815344],[123.71417,40.820475],[123.722505,40.830113],[123.732646,40.830928],[123.737578,40.846892],[123.743135,40.852213],[123.767724,40.849193],[123.772864,40.855664],[123.791688,40.850871],[123.80169,40.857293],[123.814054,40.855088],[123.824543,40.862613],[123.835309,40.854226],[123.852257,40.852261],[123.872818,40.839797],[123.879208,40.842338],[123.895323,40.840181],[123.897962,40.831503],[123.915953,40.835003],[123.931442,40.826613],[123.938666,40.829058],[123.955545,40.846125],[123.974577,40.85274],[123.97298,40.857293],[123.980621,40.867692],[123.996597,40.861846],[124.016393,40.859881],[124.031257,40.865632],[124.043413,40.865632],[124.084395,40.861175],[124.093841,40.857629],[124.094189,40.848857],[124.10308,40.846461],[124.11593,40.853794],[124.134406,40.853555],[124.143506,40.863044],[124.141283,40.879911],[124.14934,40.887432],[124.149132,40.89318],[124.13142,40.909513],[124.132184,40.925075],[124.136212,40.935272],[124.147534,40.951594],[124.147951,40.957336],[124.129544,40.967002],[124.127321,40.98456],[124.118014,40.994126],[124.107039,41.016171],[124.093564,41.03601],[124.123223,41.039881],[124.120167,41.04662],[124.13517,41.049726],[124.146006,41.055078],[124.151007,41.053023],[124.174485,41.033046],[124.184696,41.027119],[124.200255,41.033381],[124.208938,41.045999],[124.216023,41.041841],[124.232068,41.042223],[124.237833,41.052354],[124.235888,41.064634],[124.241723,41.073042],[124.237347,41.080781],[124.250961,41.089855],[124.256588,41.098499],[124.268535,41.100982],[124.285483,41.100122],[124.295555,41.096064],[124.2975,41.089091],[124.291874,41.064921],[124.297222,41.053931],[124.31167,41.056607],[124.338621,41.072135],[124.35675,41.065685],[124.365502,41.056177],[124.375365,41.053023],[124.405511,41.071609],[124.420515,41.077198],[124.466359,41.061481],[124.475458,41.061767],[124.503867,41.0503],[124.510466,41.049439],[124.518037,41.062341],[124.53957,41.074666],[124.541446,41.089091],[124.56798,41.100457],[124.585136,41.102032],[124.591388,41.097878],[124.613893,41.091145],[124.633967,41.09635],[124.638204,41.103226],[124.650846,41.091622],[124.671267,41.095729],[124.672448,41.113444],[124.681131,41.126857],[124.702386,41.1249],[124.719543,41.133587],[124.71857,41.139409],[124.736005,41.154822],[124.74955,41.151721],[124.764623,41.13793],[124.79463,41.133158],[124.814009,41.143561],[124.836931,41.137882],[124.855824,41.138646],[124.892361,41.122514],[124.912018,41.118265],[124.921326,41.119363],[124.948624,41.115114],[124.960293,41.116976],[124.97995,41.111056],[124.997385,41.098451],[125.005998,41.098594],[125.016487,41.110579],[125.022877,41.109624],[125.051425,41.116929],[125.083516,41.097592],[125.103521,41.089999],[125.13707,41.098308],[125.146517,41.102701],[125.169022,41.106903],[125.197084,41.101603],[125.217784,41.113205],[125.230912,41.113491],[125.264531,41.096875],[125.27488,41.1006],[125.299886,41.08699],[125.307179,41.079061],[125.309263,41.064921],[125.317251,41.056321],[125.312181,41.045186],[125.326142,41.046333],[125.333922,41.036966],[125.350245,41.038352],[125.356288,41.031039],[125.346911,41.024585],[125.341562,41.010242],[125.34705,41.008951],[125.35469,40.998478],[125.390254,40.999674],[125.387545,41.015119],[125.395881,41.016793],[125.408106,41.012776],[125.432556,41.011342],[125.433667,41.026019],[125.443669,41.031517],[125.457006,41.025446],[125.46159,41.016984],[125.460618,41.007086],[125.467078,40.993457],[125.456659,40.980733],[125.45652,40.969108],[125.46555,40.962361],[125.495973,40.953364],[125.503753,40.957289],[125.502016,40.967385],[125.489513,40.975327],[125.490764,40.982407],[125.502364,40.987908],[125.523063,40.988721],[125.529592,40.986043],[125.531954,40.976858],[125.524522,40.957528],[125.502433,40.944414],[125.501113,40.938479],[125.520979,40.91229],[125.530912,40.908076],[125.547999,40.912242],[125.555501,40.926894],[125.572172,40.931969],[125.585925,40.918898],[125.591829,40.924596],[125.589398,40.931107],[125.614473,40.942069],[125.635659,40.941973],[125.64448,40.950254],[125.647814,40.967433],[125.662748,40.977432],[125.674001,40.974418],[125.683934,40.986282],[125.679141,40.998048],[125.682822,41.017079],[125.689074,41.026019],[125.706508,41.033763],[125.715816,41.046954],[125.726374,41.055222],[125.732487,41.076195],[125.739363,41.089378],[125.731306,41.094488],[125.712274,41.095634],[125.713802,41.105232],[125.724777,41.118361],[125.734848,41.125807],[125.747838,41.124805],[125.758048,41.130342],[125.765619,41.148428],[125.791111,41.166319],[125.783193,41.172043],[125.775066,41.17066],[125.738252,41.178625],[125.735404,41.194315],[125.748879,41.220106],[125.758048,41.23183],[125.749574,41.245505],[125.71922,41.243742],[125.71276,41.248411],[125.694909,41.244552],[125.691574,41.258035],[125.68317,41.274848],[125.67546,41.27761],[125.664832,41.268514],[125.647745,41.264179],[125.638645,41.283943],[125.642257,41.295799],[125.620099,41.318313],[125.631352,41.322168],[125.639271,41.3314],[125.637187,41.344436],[125.621072,41.361179],[125.610375,41.365079],[125.589606,41.35942],[125.579187,41.36741],[125.586411,41.380201],[125.581549,41.395556],[125.557863,41.397838],[125.548277,41.402164],[125.552723,41.409435],[125.54668,41.41932],[125.540081,41.41989],[125.534316,41.428823],[125.54022,41.436471],[125.535496,41.447112],[125.540845,41.459033],[125.539178,41.469764],[125.532162,41.47926],[125.516464,41.478642],[125.517645,41.489466],[125.505837,41.503324],[125.493473,41.509256],[125.495487,41.522257],[125.504517,41.524819],[125.507365,41.533642],[125.492848,41.536583],[125.477219,41.548297],[125.476802,41.560057],[125.462493,41.568354],[125.451588,41.550574],[125.426235,41.550526],[125.417136,41.544077],[125.399979,41.547491],[125.381641,41.562381],[125.373723,41.552613],[125.367332,41.538907],[125.353857,41.531745],[125.338437,41.516563],[125.328434,41.511297],[125.3226,41.496823],[125.295927,41.493026],[125.278562,41.494592],[125.258765,41.50508],[125.252028,41.498294],[125.249735,41.486997],[125.22216,41.480019],[125.20917,41.482868],[125.201947,41.500809],[125.17576,41.492409],[125.172009,41.485668],[125.154644,41.488326],[125.132764,41.501331],[125.123664,41.50247],[125.105049,41.495494],[125.09206,41.493358],[125.068235,41.493975],[125.067193,41.474465],[125.057399,41.47399],[124.998496,41.497155],[124.989189,41.496395],[124.969948,41.501806],[124.959668,41.510775],[124.957028,41.520074],[124.940149,41.504701],[124.920423,41.500335],[124.916463,41.492503],[124.905836,41.484102],[124.89889,41.47399],[124.880413,41.470619],[124.888332,41.457703],[124.881594,41.444832],[124.864437,41.443407],[124.860964,41.434001],[124.863257,41.425877],[124.853602,41.419937],[124.862354,41.399787],[124.856797,41.396602],[124.86027,41.384195],[124.856519,41.373401],[124.868675,41.368741],[124.86416,41.361132],[124.87187,41.347956],[124.867841,41.333731],[124.872564,41.327403],[124.864368,41.324405],[124.839918,41.321883],[124.834778,41.310413],[124.803104,41.298084],[124.784766,41.289466],[124.7765,41.281324],[124.763233,41.2748],[124.733226,41.269418],[124.711971,41.262274],[124.677311,41.264798],[124.671059,41.254986],[124.654041,41.239788],[124.640705,41.244695],[124.64001,41.259892],[124.632995,41.264322],[124.601946,41.26537],[124.567007,41.286895],[124.542696,41.311841],[124.517065,41.318932],[124.500394,41.331876],[124.488169,41.335159],[124.476222,41.333826],[124.464275,41.32864],[124.458718,41.319027],[124.466706,41.307366],[124.462816,41.303654],[124.438783,41.304177],[124.424127,41.311698],[124.420862,41.325832],[124.413569,41.338346],[124.393842,41.344198],[124.389396,41.354711],[124.388563,41.369407],[124.368975,41.3773],[124.36057,41.383814],[124.348553,41.39993],[124.345497,41.408057],[124.345775,41.42944],[124.357653,41.441602],[124.378769,41.455281],[124.384465,41.461739],[124.371198,41.473705],[124.341538,41.473942],[124.331049,41.479117],[124.332508,41.488754],[124.310211,41.495351],[124.31035,41.504511],[124.317991,41.507073],[124.309378,41.515804],[124.300348,41.537958],[124.282983,41.542986],[124.257352,41.540519],[124.237764,41.548866],[124.230193,41.549151],[124.209146,41.536203],[124.201992,41.534211],[124.178236,41.535397],[124.169067,41.521071],[124.14677,41.516896],[124.140727,41.517797],[124.128016,41.509826],[124.115513,41.505934],[124.105441,41.528377],[124.09794,41.535539],[124.061751,41.529942],[124.052929,41.530464],[124.025701,41.546116],[123.986664,41.559346],[123.975064,41.560674],[123.959505,41.55726],[123.946793,41.550147],[123.933874,41.548961],[123.921926,41.568449],[123.887891,41.566885],[123.867747,41.562381],[123.860315,41.550906],[123.86219,41.532029],[123.859551,41.52387],[123.849132,41.518746],[123.825307,41.513384],[123.807247,41.507406],[123.791966,41.506599],[123.781685,41.512673],[123.787242,41.523538],[123.783769,41.541563],[123.771683,41.539476],[123.74758,41.527238],[123.745635,41.520596],[123.727437,41.517133],[123.71924,41.510348],[123.703403,41.515662],[123.702917,41.520786],[123.692359,41.526479],[123.683815,41.519742],[123.677703,41.528709],[123.664714,41.527048],[123.646584,41.518651],[123.629567,41.523822],[123.625816,41.516896],[123.615813,41.513479],[123.61623,41.508639],[123.603866,41.506029],[123.605533,41.502423],[123.591502,41.494022]]]]}},{"type":"Feature","properties":{"adcode":210600,"name":"丹东市","center":[124.383044,40.124296],"centroid":[124.40518,40.544775],"childrenNum":6,"level":"city","parent":{"adcode":210000},"subFeatureIndex":5,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.518846,39.770327],[123.535586,39.775343],[123.534545,39.788345],[123.54156,39.786057],[123.548298,39.774905],[123.542949,39.762924],[123.546631,39.756347],[123.565454,39.76156],[123.570108,39.774077],[123.576638,39.780993],[123.586432,39.771301],[123.612549,39.774954],[123.64207,39.79633],[123.646307,39.802513],[123.645126,39.823881],[123.658462,39.831375],[123.661866,39.825585],[123.674924,39.826752],[123.687983,39.808257],[123.697013,39.806943],[123.73605,39.817506],[123.777657,39.822129],[123.795022,39.822762],[123.812318,39.831278],[123.828919,39.831424],[123.851007,39.825828],[123.871359,39.822811],[123.910813,39.819501],[123.944015,39.819404],[123.951725,39.817652],[123.967006,39.808063],[124.002709,39.800371],[124.052999,39.810253],[124.071683,39.817944],[124.103288,39.823395],[124.107247,39.818868],[124.095508,39.792289],[124.099259,39.777535],[124.144756,39.745435],[124.150799,39.745776],[124.164066,39.778412],[124.166497,39.827239],[124.173304,39.841302],[124.189905,39.848453],[124.213522,39.86329],[124.214842,39.892418],[124.224011,39.905398],[124.227067,39.915362],[124.241167,39.928095],[124.268465,39.934751],[124.286456,39.931885],[124.296111,39.9468],[124.288887,39.948063],[124.288678,39.963024],[124.297222,39.968755],[124.315143,39.968852],[124.328201,39.979583],[124.350429,39.989148],[124.349318,39.972348],[124.366474,40.000217],[124.371892,40.021377],[124.36064,40.039815],[124.344316,40.043308],[124.336606,40.049954],[124.336954,40.061449],[124.350776,40.083851],[124.377657,40.107409],[124.388771,40.113225],[124.405928,40.134738],[124.419751,40.1437],[124.427947,40.144475],[124.445729,40.164041],[124.445868,40.168593],[124.45719,40.177357],[124.490114,40.183989],[124.492059,40.189895],[124.506924,40.20519],[124.514842,40.220433],[124.524567,40.224884],[124.527206,40.231076],[124.548183,40.238429],[124.558255,40.247668],[124.588331,40.267543],[124.593541,40.273103],[124.620909,40.290602],[124.649735,40.294566],[124.705512,40.315973],[124.727461,40.325684],[124.735032,40.344039],[124.739269,40.371707],[124.756148,40.384692],[124.800603,40.40583],[124.833875,40.423102],[124.862701,40.441478],[124.881525,40.456861],[124.897362,40.478988],[124.906947,40.484724],[124.913268,40.481784],[124.914102,40.467419],[124.922298,40.458838],[124.940983,40.4558],[124.961821,40.460525],[124.978006,40.468432],[124.985855,40.475132],[124.995857,40.477157],[125.012458,40.470987],[125.024614,40.476385],[125.024891,40.464575],[125.044271,40.466455],[125.043021,40.48376],[125.032046,40.484724],[125.031143,40.49229],[125.017042,40.491422],[125.004609,40.496241],[125.001831,40.513394],[125.017945,40.536321],[125.035449,40.542966],[125.047744,40.550478],[125.07664,40.56184],[125.093171,40.563669],[125.113662,40.569301],[125.124915,40.576665],[125.150962,40.589563],[125.181734,40.611309],[125.190069,40.615158],[125.214866,40.620689],[125.237927,40.618092],[125.262725,40.620208],[125.269601,40.630116],[125.273213,40.648916],[125.279673,40.655166],[125.305373,40.661175],[125.311416,40.658868],[125.329268,40.64382],[125.34191,40.64406],[125.353649,40.650551],[125.375737,40.658291],[125.383725,40.656512],[125.407272,40.631895],[125.422553,40.635502],[125.42172,40.649013],[125.414357,40.661319],[125.418872,40.673191],[125.427902,40.676507],[125.453672,40.676651],[125.458951,40.69198],[125.460201,40.707161],[125.479233,40.72349],[125.495626,40.728773],[125.505489,40.726564],[125.536538,40.726036],[125.547999,40.733719],[125.551403,40.745866],[125.551056,40.761706],[125.572658,40.780566],[125.585439,40.788434],[125.597177,40.788962],[125.595997,40.775384],[125.604471,40.767369],[125.617252,40.763674],[125.657052,40.769241],[125.679002,40.768329],[125.688101,40.775959],[125.675946,40.787907],[125.640729,40.798317],[125.636492,40.80791],[125.648092,40.826037],[125.673306,40.835003],[125.68956,40.850966],[125.688588,40.857053],[125.699423,40.85897],[125.707759,40.866974],[125.705605,40.874257],[125.692894,40.891791],[125.6831,40.901132],[125.666082,40.90798],[125.655455,40.915977],[125.64712,40.908268],[125.625448,40.906927],[125.610861,40.90252],[125.587453,40.892079],[125.576964,40.898976],[125.585925,40.918898],[125.572172,40.931969],[125.555501,40.926894],[125.547999,40.912242],[125.530912,40.908076],[125.520979,40.91229],[125.501113,40.938479],[125.502433,40.944414],[125.524522,40.957528],[125.531954,40.976858],[125.529592,40.986043],[125.523063,40.988721],[125.502364,40.987908],[125.490764,40.982407],[125.489513,40.975327],[125.502016,40.967385],[125.503753,40.957289],[125.495973,40.953364],[125.46555,40.962361],[125.45652,40.969108],[125.456659,40.980733],[125.467078,40.993457],[125.460618,41.007086],[125.46159,41.016984],[125.457006,41.025446],[125.443669,41.031517],[125.433667,41.026019],[125.432556,41.011342],[125.408106,41.012776],[125.395881,41.016793],[125.387545,41.015119],[125.390254,40.999674],[125.35469,40.998478],[125.34705,41.008951],[125.341562,41.010242],[125.346911,41.024585],[125.356288,41.031039],[125.350245,41.038352],[125.333922,41.036966],[125.326142,41.046333],[125.312181,41.045186],[125.317251,41.056321],[125.309263,41.064921],[125.307179,41.079061],[125.299886,41.08699],[125.27488,41.1006],[125.264531,41.096875],[125.230912,41.113491],[125.217784,41.113205],[125.197084,41.101603],[125.169022,41.106903],[125.146517,41.102701],[125.13707,41.098308],[125.103521,41.089999],[125.083516,41.097592],[125.051425,41.116929],[125.022877,41.109624],[125.016487,41.110579],[125.005998,41.098594],[124.997385,41.098451],[124.97995,41.111056],[124.960293,41.116976],[124.948624,41.115114],[124.921326,41.119363],[124.912018,41.118265],[124.892361,41.122514],[124.855824,41.138646],[124.836931,41.137882],[124.814009,41.143561],[124.79463,41.133158],[124.764623,41.13793],[124.74955,41.151721],[124.736005,41.154822],[124.71857,41.139409],[124.719543,41.133587],[124.702386,41.1249],[124.681131,41.126857],[124.672448,41.113444],[124.671267,41.095729],[124.650846,41.091622],[124.638204,41.103226],[124.633967,41.09635],[124.613893,41.091145],[124.591388,41.097878],[124.585136,41.102032],[124.56798,41.100457],[124.541446,41.089091],[124.53957,41.074666],[124.518037,41.062341],[124.510466,41.049439],[124.503867,41.0503],[124.475458,41.061767],[124.466359,41.061481],[124.420515,41.077198],[124.405511,41.071609],[124.375365,41.053023],[124.365502,41.056177],[124.35675,41.065685],[124.338621,41.072135],[124.31167,41.056607],[124.297222,41.053931],[124.291874,41.064921],[124.2975,41.089091],[124.295555,41.096064],[124.285483,41.100122],[124.268535,41.100982],[124.256588,41.098499],[124.250961,41.089855],[124.237347,41.080781],[124.241723,41.073042],[124.235888,41.064634],[124.237833,41.052354],[124.232068,41.042223],[124.216023,41.041841],[124.208938,41.045999],[124.200255,41.033381],[124.184696,41.027119],[124.174485,41.033046],[124.151007,41.053023],[124.146006,41.055078],[124.13517,41.049726],[124.120167,41.04662],[124.123223,41.039881],[124.093564,41.03601],[124.107039,41.016171],[124.118014,40.994126],[124.127321,40.98456],[124.129544,40.967002],[124.147951,40.957336],[124.147534,40.951594],[124.136212,40.935272],[124.132184,40.925075],[124.13142,40.909513],[124.149132,40.89318],[124.14934,40.887432],[124.141283,40.879911],[124.143506,40.863044],[124.134406,40.853555],[124.11593,40.853794],[124.10308,40.846461],[124.094189,40.848857],[124.093841,40.857629],[124.084395,40.861175],[124.043413,40.865632],[124.031257,40.865632],[124.016393,40.859881],[123.996597,40.861846],[123.980621,40.867692],[123.97298,40.857293],[123.974577,40.85274],[123.955545,40.846125],[123.938666,40.829058],[123.931442,40.826613],[123.915953,40.835003],[123.897962,40.831503],[123.895323,40.840181],[123.879208,40.842338],[123.872818,40.839797],[123.852257,40.852261],[123.835309,40.854226],[123.824543,40.862613],[123.814054,40.855088],[123.80169,40.857293],[123.791688,40.850871],[123.772864,40.855664],[123.767724,40.849193],[123.743135,40.852213],[123.737578,40.846892],[123.732646,40.830928],[123.722505,40.830113],[123.71417,40.820475],[123.695346,40.815344],[123.686594,40.833853],[123.671868,40.825798],[123.663741,40.826757],[123.638805,40.845071],[123.623593,40.851637],[123.597684,40.856958],[123.582264,40.857485],[123.574971,40.856814],[123.544477,40.861079],[123.537531,40.851446],[123.539476,40.837353],[123.533711,40.826996],[123.544894,40.821242],[123.55698,40.806088],[123.581222,40.786899],[123.585529,40.777543],[123.581083,40.768761],[123.567747,40.763482],[123.557328,40.747642],[123.556008,40.728485],[123.551423,40.722962],[123.560175,40.719937],[123.558925,40.713021],[123.570386,40.712156],[123.581014,40.704615],[123.577263,40.692316],[123.582889,40.686454],[123.592544,40.686118],[123.623176,40.693613],[123.636304,40.690875],[123.663811,40.675738],[123.694999,40.66603],[123.710488,40.657041],[123.725422,40.654205],[123.731118,40.648964],[123.748761,40.610732],[123.731396,40.603035],[123.717434,40.592498],[123.721324,40.586627],[123.738134,40.575703],[123.74119,40.549226],[123.735216,40.538632],[123.74112,40.532083],[123.737925,40.524955],[123.740843,40.511129],[123.738203,40.507805],[123.767307,40.499952],[123.76953,40.492386],[123.756818,40.471035],[123.766196,40.456957],[123.769252,40.443504],[123.747511,40.41765],[123.761681,40.402886],[123.75147,40.383292],[123.73855,40.363548],[123.71799,40.341721],[123.715976,40.333075],[123.708057,40.326215],[123.705487,40.314137],[123.711322,40.300172],[123.680342,40.290312],[123.673396,40.276826],[123.647696,40.260387],[123.635818,40.264787],[123.624149,40.249506],[123.611576,40.241332],[123.596156,40.243024],[123.589905,40.225948],[123.583653,40.221642],[123.576915,40.205383],[123.560523,40.187136],[123.571914,40.172854],[123.583306,40.166123],[123.599768,40.170336],[123.606297,40.168545],[123.606714,40.159392],[123.59046,40.130281],[123.575179,40.115745],[123.567955,40.114581],[123.563232,40.102514],[123.553577,40.09946],[123.546283,40.102514],[123.528849,40.103338],[123.513498,40.093789],[123.513776,40.090493],[123.476267,40.071875],[123.482935,40.050972],[123.471127,40.046898],[123.46814,40.041125],[123.458138,40.058102],[123.464111,40.038263],[123.472863,40.037438],[123.47717,40.031276],[123.457721,40.033023],[123.448483,40.037147],[123.422991,40.030548],[123.40632,40.013564],[123.404862,40.009245],[123.407918,39.9991],[123.401041,39.993178],[123.401666,39.981817],[123.377077,39.971523],[123.384996,39.954864],[123.393331,39.954378],[123.391247,39.935918],[123.399096,39.93446],[123.397846,39.926005],[123.407362,39.9348],[123.420143,39.933877],[123.437161,39.922701],[123.456749,39.929164],[123.470571,39.924887],[123.490506,39.898058],[123.480782,39.891446],[123.474253,39.881284],[123.476614,39.868299],[123.483074,39.859934],[123.500162,39.851907],[123.504399,39.843832],[123.501273,39.828358],[123.504468,39.820182],[123.514679,39.814342],[123.518846,39.79857],[123.518846,39.770327]]],[[[123.825654,39.786252],[123.825446,39.796136],[123.808636,39.791462],[123.825654,39.786252]]],[[[123.716531,39.74524],[123.725631,39.748991],[123.752373,39.749332],[123.75668,39.754107],[123.748275,39.763265],[123.730632,39.765944],[123.720143,39.76307],[123.721324,39.758442],[123.711183,39.749186],[123.716531,39.74524]]],[[[124.811717,40.404286],[124.828943,40.415769],[124.796505,40.400184],[124.811717,40.404286]]]]}},{"type":"Feature","properties":{"adcode":210700,"name":"锦州市","center":[121.135742,41.119269],"centroid":[121.618541,41.461822],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":6,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.555125,40.849624],[121.56742,40.859162],[121.571032,40.867932],[121.584507,40.885708],[121.59708,40.896581],[121.618682,40.907837],[121.628754,40.908076],[121.647786,40.937761],[121.650981,40.952694],[121.663553,40.959298],[121.662164,40.969873],[121.666818,40.98566],[121.673417,40.991974],[121.676334,41.007756],[121.667165,41.027167],[121.661261,41.034385],[121.662789,41.050491],[121.651189,41.05417],[121.6473,41.062484],[121.666888,41.059809],[121.680154,41.084793],[121.672583,41.090237],[121.692102,41.096637],[121.691477,41.093294],[121.714537,41.091479],[121.714468,41.087276],[121.747531,41.085843],[121.758576,41.088661],[121.763438,41.100791],[121.739196,41.114589],[121.7426,41.107237],[121.722248,41.108096],[121.716899,41.103608],[121.695436,41.104897],[121.682377,41.099979],[121.665637,41.099502],[121.610763,41.103274],[121.585132,41.108049],[121.566795,41.134494],[121.567698,41.145947],[121.602359,41.180724],[121.615626,41.182011],[121.618821,41.186828],[121.620418,41.206758],[121.602706,41.211573],[121.591314,41.209333],[121.580895,41.215959],[121.577422,41.225587],[121.58027,41.249698],[121.6009,41.257606],[121.638061,41.281134],[121.685989,41.305224],[121.701548,41.315791],[121.717108,41.316457],[121.729333,41.328688],[121.747045,41.337062],[121.759062,41.331257],[121.784276,41.333493],[121.794973,41.345673],[121.801433,41.348765],[121.827411,41.35238],[121.845749,41.352713],[121.867768,41.340963],[121.869296,41.330401],[121.884716,41.322549],[121.90347,41.337014],[121.90229,41.354758],[121.910833,41.355805],[121.919585,41.363795],[121.944522,41.369169],[121.95626,41.386239],[121.975154,41.383862],[122.010648,41.386049],[122.020303,41.382483],[122.026346,41.371119],[122.040725,41.371547],[122.069967,41.38757],[122.077052,41.386477],[122.086291,41.393845],[122.093723,41.39375],[122.099071,41.399882],[122.123869,41.415898],[122.143318,41.422598],[122.137275,41.428728],[122.169296,41.443122],[122.177562,41.451956],[122.185064,41.448537],[122.193746,41.459602],[122.215557,41.485336],[122.283837,41.515899],[122.298284,41.514571],[122.330097,41.525483],[122.357118,41.541326],[122.368092,41.545404],[122.409213,41.548677],[122.452834,41.549341],[122.470547,41.556691],[122.487356,41.566316],[122.479646,41.583239],[122.485828,41.58158],[122.492635,41.590917],[122.484439,41.597599],[122.487078,41.605323],[122.502429,41.630098],[122.510139,41.62773],[122.526532,41.655054],[122.515835,41.658131],[122.517502,41.676971],[122.526671,41.676261],[122.532992,41.669919],[122.550635,41.678911],[122.549524,41.69907],[122.555983,41.708106],[122.572515,41.712505],[122.572168,41.728444],[122.575432,41.731518],[122.570431,41.740644],[122.579878,41.754969],[122.600369,41.766549],[122.596479,41.772268],[122.56925,41.772835],[122.55772,41.774914],[122.560915,41.789137],[122.552927,41.786869],[122.540077,41.800664],[122.529519,41.808363],[122.511459,41.81677],[122.513612,41.820595],[122.498817,41.82494],[122.487148,41.832211],[122.459225,41.843022],[122.457627,41.861194],[122.459572,41.870538],[122.453321,41.882852],[122.443874,41.890636],[122.443388,41.901202],[122.473881,41.906201],[122.509028,41.90422],[122.523129,41.900117],[122.517849,41.912331],[122.521045,41.916622],[122.515766,41.926523],[122.517919,41.936329],[122.507917,41.938733],[122.500971,41.956783],[122.501526,41.970918],[122.494789,41.988771],[122.497289,41.999274],[122.483744,42.02145],[122.469366,42.029169],[122.477632,42.038582],[122.477076,42.043571],[122.462767,42.041688],[122.459016,42.055523],[122.447347,42.063473],[122.453182,42.072458],[122.439359,42.074481],[122.436164,42.084169],[122.449917,42.087602],[122.445194,42.094656],[122.428315,42.092352],[122.435608,42.104811],[122.447625,42.110499],[122.438456,42.117315],[122.446583,42.124178],[122.429704,42.125118],[122.425953,42.129018],[122.409769,42.121452],[122.366703,42.108384],[122.312871,42.083558],[122.293631,42.080031],[122.272167,42.068225],[122.236326,42.052182],[122.22799,42.047053],[122.21264,42.050112],[122.200623,42.032841],[122.184369,42.031946],[122.174992,42.027192],[122.153251,42.032511],[122.145888,42.025027],[122.154362,42.017966],[122.140748,42.019331],[122.130884,41.998991],[122.11852,42.001769],[122.094904,41.986463],[122.097752,41.980858],[122.081915,41.967385],[122.068926,41.965406],[122.063021,41.969269],[122.062257,41.961024],[122.041975,41.944624],[122.042114,41.935339],[122.034334,41.930625],[122.014816,41.925298],[122.00391,41.930672],[121.996478,41.928645],[121.99113,41.919687],[121.997242,41.911247],[121.972514,41.892617],[121.955705,41.891391],[121.962442,41.888938],[121.960081,41.878512],[121.941674,41.872991],[121.933061,41.874643],[121.924517,41.868886],[121.927156,41.862138],[121.908472,41.864167],[121.916251,41.858363],[121.895066,41.845571],[121.848944,41.845288],[121.843734,41.835988],[121.833107,41.828859],[121.831648,41.820643],[121.840886,41.813559],[121.862558,41.813134],[121.845957,41.799011],[121.835121,41.786869],[121.822479,41.782758],[121.798029,41.801798],[121.77858,41.806285],[121.754338,41.796129],[121.722456,41.795751],[121.707314,41.803971],[121.697033,41.798869],[121.675153,41.774205],[121.65494,41.776332],[121.637089,41.774064],[121.629031,41.784034],[121.604859,41.787294],[121.554083,41.785215],[121.538802,41.783231],[121.538524,41.773922],[121.52616,41.770472],[121.519909,41.763052],[121.512407,41.762579],[121.512338,41.748587],[121.50692,41.744143],[121.515324,41.730383],[121.515116,41.720404],[121.502335,41.717755],[121.493305,41.721681],[121.477607,41.711937],[121.475385,41.695001],[121.457603,41.695994],[121.458158,41.707538],[121.452463,41.719553],[121.435723,41.733362],[121.416899,41.737996],[121.393838,41.736483],[121.374319,41.726647],[121.360149,41.725654],[121.338547,41.733457],[121.332712,41.741826],[121.342506,41.746743],[121.342923,41.768582],[121.336394,41.771984],[121.312222,41.770897],[121.307985,41.775765],[121.263669,41.794523],[121.256097,41.778789],[121.261307,41.774489],[121.226785,41.763241],[121.227549,41.753456],[121.215949,41.740218],[121.22227,41.730619],[121.233453,41.721539],[121.218102,41.689606],[121.226716,41.688707],[121.224493,41.678059],[121.210531,41.677965],[121.20164,41.673752],[121.194208,41.678059],[121.17844,41.664806],[121.173926,41.673847],[121.167118,41.666984],[121.156283,41.671055],[121.146905,41.658605],[121.147114,41.649278],[121.139265,41.648331],[121.122247,41.63886],[121.123914,41.633366],[121.111272,41.619441],[121.105715,41.624178],[121.09349,41.615982],[121.066956,41.618304],[121.072235,41.624604],[121.067442,41.629577],[121.06258,41.621099],[121.056051,41.626214],[121.04848,41.616125],[121.030698,41.607218],[121.014444,41.60826],[121.005067,41.604612],[120.997218,41.596035],[120.984159,41.600442],[120.976032,41.5994],[120.97374,41.583666],[120.981728,41.566695],[120.956375,41.545073],[120.957347,41.541326],[120.940121,41.537579],[120.936509,41.531128],[120.92616,41.531128],[120.924354,41.524866],[120.91456,41.527855],[120.906016,41.523443],[120.901223,41.512293],[120.902265,41.50005],[120.896986,41.485431],[120.904974,41.481159],[120.897472,41.471473],[120.893582,41.475699],[120.877537,41.476554],[120.878579,41.449582],[120.876009,41.435189],[120.883719,41.421173],[120.870799,41.421315],[120.864687,41.416231],[120.849753,41.423834],[120.842043,41.418274],[120.843015,41.404588],[120.833082,41.398171],[120.822385,41.409673],[120.819746,41.421458],[120.812036,41.425972],[120.805506,41.42141],[120.815995,41.405681],[120.79995,41.395319],[120.791336,41.396079],[120.778903,41.378489],[120.77029,41.376587],[120.768414,41.36955],[120.774527,41.368266],[120.770082,41.358278],[120.758829,41.357422],[120.752716,41.341962],[120.756606,41.337062],[120.748201,41.32431],[120.751605,41.307938],[120.755564,41.302416],[120.749243,41.292085],[120.737366,41.288467],[120.733337,41.2748],[120.737504,41.270943],[120.753272,41.26818],[120.755981,41.261559],[120.764038,41.261559],[120.769734,41.248554],[120.763969,41.248745],[120.746882,41.241217],[120.738407,41.240264],[120.730697,41.230972],[120.720626,41.22816],[120.720348,41.219581],[120.734448,41.218199],[120.742714,41.221297],[120.752647,41.213003],[120.76383,41.210048],[120.769317,41.202325],[120.763761,41.195745],[120.771471,41.194219],[120.781195,41.202658],[120.786752,41.20099],[120.795851,41.182441],[120.784251,41.170278],[120.788489,41.161835],[120.805576,41.158114],[120.805923,41.147379],[120.825233,41.140889],[120.834472,41.131535],[120.842876,41.132155],[120.850725,41.14065],[120.876078,41.156062],[120.888581,41.15153],[120.895805,41.144659],[120.907683,41.145661],[120.910114,41.134923],[120.898584,41.130962],[120.90935,41.121082],[120.914073,41.123659],[120.930605,41.117549],[120.938315,41.123803],[120.943664,41.099454],[120.948456,41.090046],[120.942761,41.061433],[120.944706,41.051877],[120.954986,41.045903],[120.964293,41.050108],[120.982978,41.045377],[120.980269,41.040837],[120.99055,41.033381],[121.006664,41.035819],[121.034726,41.050491],[121.032295,41.033668],[121.016736,40.99867],[121.011666,40.972887],[121.015972,40.973318],[121.015625,40.957145],[121.00986,40.956092],[121.017292,40.942261],[121.02521,40.95011],[121.024655,40.942261],[121.034171,40.943649],[121.036949,40.933884],[121.023613,40.928187],[121.036394,40.922394],[121.029031,40.913296],[121.033962,40.907166],[121.030628,40.884031],[121.02007,40.868219],[121.011596,40.863955],[121.00729,40.852884],[121.008748,40.843393],[121.030003,40.790545],[121.046604,40.794959],[121.058899,40.793856],[121.073694,40.798029],[121.086544,40.798221],[121.077028,40.815536],[121.087517,40.820763],[121.095435,40.829346],[121.096685,40.839893],[121.11412,40.83951],[121.126206,40.86913],[121.145169,40.875503],[121.167535,40.876221],[121.177676,40.87373],[121.216158,40.850679],[121.290828,40.851542],[121.342923,40.841427],[121.439196,40.830065],[121.440376,40.881683],[121.481983,40.882019],[121.499626,40.879815],[121.519214,40.862661],[121.526647,40.851733],[121.555125,40.849624]]]]}},{"type":"Feature","properties":{"adcode":210800,"name":"营口市","center":[122.235151,40.667432],"centroid":[122.456202,40.391795],"childrenNum":6,"level":"city","parent":{"adcode":210000},"subFeatureIndex":7,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.953274,40.128876],[121.970778,40.116423],[121.98724,40.09088],[121.986545,40.081912],[121.980294,40.078081],[121.982794,40.061836],[121.993422,40.052379],[122.008356,40.051457],[122.020928,40.058393],[122.044267,40.062515],[122.049824,40.068577],[122.058576,40.064601],[122.069203,40.067753],[122.07344,40.056453],[122.081915,40.055435],[122.090111,40.038942],[122.096015,40.042386],[122.12498,40.042435],[122.139914,40.030888],[122.157557,40.035643],[122.175061,40.027103],[122.185342,40.009924],[122.196664,40.006138],[122.198609,39.998469],[122.218683,40.000217],[122.231047,40.008905],[122.242577,40.022202],[122.248898,40.012982],[122.26029,40.00609],[122.259873,39.988906],[122.269597,39.98405],[122.269806,39.979098],[122.280919,39.967395],[122.285851,39.967589],[122.304466,39.979486],[122.326972,39.984633],[122.344059,39.982545],[122.357743,39.969629],[122.373371,39.966326],[122.400322,39.972154],[122.401434,39.9672],[122.417757,39.972154],[122.418312,39.968657],[122.456168,39.951707],[122.477423,39.939561],[122.497081,39.935918],[122.501318,39.927317],[122.512084,39.920611],[122.510695,39.928678],[122.530005,39.941796],[122.551538,39.939173],[122.561193,39.944565],[122.549524,39.954524],[122.555914,39.968075],[122.554108,39.974631],[122.539243,39.972785],[122.544106,39.989343],[122.541049,39.993275],[122.520142,39.99876],[122.519308,40.005605],[122.527435,40.015554],[122.544731,40.013225],[122.550982,40.024677],[122.536465,40.031276],[122.529866,40.047431],[122.539452,40.062127],[122.55126,40.057326],[122.55772,40.058975],[122.569806,40.049905],[122.577516,40.055726],[122.607315,40.052864],[122.617317,40.064019],[122.628709,40.061933],[122.650519,40.06591],[122.658646,40.062176],[122.694488,40.07105],[122.708936,40.067462],[122.71352,40.075996],[122.727482,40.085693],[122.733247,40.094758],[122.746861,40.097667],[122.767421,40.109881],[122.778535,40.112013],[122.797498,40.106634],[122.80111,40.102853],[122.813821,40.103435],[122.815558,40.111335],[122.824379,40.120687],[122.835215,40.119282],[122.851122,40.124612],[122.858276,40.134496],[122.847926,40.150432],[122.8539,40.154646],[122.869668,40.178906],[122.878558,40.185442],[122.881476,40.195607],[122.893979,40.20519],[122.896757,40.218739],[122.891131,40.234705],[122.884879,40.236204],[122.881823,40.249457],[122.874669,40.258597],[122.873002,40.26851],[122.88217,40.289829],[122.881337,40.306937],[122.891339,40.319548],[122.915859,40.331529],[122.932113,40.344715],[122.92982,40.358333],[122.934822,40.374024],[122.931974,40.396806],[122.936558,40.409304],[122.946213,40.416396],[122.971288,40.417795],[122.990182,40.427684],[122.99296,40.435161],[122.9865,40.463563],[122.999212,40.477012],[122.984347,40.486989],[122.969413,40.508961],[122.949825,40.515658],[122.936002,40.528856],[122.914678,40.537573],[122.897382,40.538632],[122.879461,40.52876],[122.86286,40.5277],[122.854872,40.532853],[122.829311,40.538006],[122.8166,40.5577],[122.811529,40.558181],[122.807431,40.570312],[122.797637,40.578879],[122.771103,40.577532],[122.743458,40.585136],[122.730677,40.582922],[122.720883,40.586387],[122.703657,40.598945],[122.691987,40.599956],[122.678929,40.592594],[122.662883,40.594615],[122.659549,40.583596],[122.651283,40.584702],[122.650589,40.593893],[122.625861,40.608423],[122.643573,40.611069],[122.650867,40.616937],[122.654617,40.628673],[122.645101,40.636704],[122.653228,40.638675],[122.653784,40.648099],[122.659758,40.658435],[122.669482,40.662569],[122.670941,40.67098],[122.647463,40.666606],[122.638642,40.659012],[122.636558,40.663819],[122.623082,40.671749],[122.622804,40.688136],[122.636558,40.696832],[122.651144,40.710571],[122.649825,40.739768],[122.639614,40.748698],[122.600785,40.751722],[122.581892,40.748506],[122.567583,40.758058],[122.556817,40.761082],[122.515974,40.766554],[122.541952,40.798557],[122.537993,40.800715],[122.542022,40.818701],[122.521531,40.826805],[122.523406,40.834188],[122.515002,40.839414],[122.51653,40.84809],[122.502568,40.847324],[122.484231,40.85159],[122.487634,40.8606],[122.502568,40.872963],[122.502429,40.879527],[122.493052,40.882881],[122.492566,40.90003],[122.503124,40.915355],[122.506111,40.929288],[122.488607,40.935751],[122.465059,40.935894],[122.449848,40.940298],[122.438595,40.940059],[122.433316,40.930676],[122.411505,40.927852],[122.394557,40.922298],[122.384138,40.924835],[122.377609,40.919425],[122.377609,40.909225],[122.363647,40.909082],[122.352672,40.916025],[122.335238,40.905777],[122.332251,40.894091],[122.320373,40.895815],[122.322943,40.904388],[122.318914,40.909034],[122.309468,40.905442],[122.304258,40.889827],[122.277307,40.864578],[122.264318,40.870903],[122.253482,40.870376],[122.22674,40.862421],[122.223128,40.853698],[122.209028,40.855999],[122.188884,40.875551],[122.182424,40.877515],[122.176589,40.868507],[122.178812,40.850008],[122.187078,40.84114],[122.183397,40.83299],[122.151584,40.840756],[122.129426,40.818125],[122.100877,40.804313],[122.096501,40.796926],[122.108657,40.787523],[122.128245,40.779798],[122.160266,40.75945],[122.180618,40.750522],[122.194163,40.742217],[122.206319,40.739961],[122.209861,40.725123],[122.201665,40.713405],[122.208333,40.709947],[122.246675,40.711099],[122.265777,40.710235],[122.27314,40.702741],[122.272723,40.695583],[122.245286,40.683283],[122.23452,40.68285],[122.232297,40.688136],[122.205416,40.693085],[122.19451,40.701876],[122.188051,40.695967],[122.172491,40.709898],[122.162836,40.711484],[122.154918,40.70644],[122.151931,40.697024],[122.154154,40.685541],[122.148388,40.671797],[122.154084,40.662665],[122.151514,40.653099],[122.134496,40.627134],[122.13408,40.61434],[122.150542,40.588504],[122.245633,40.519704],[122.246467,40.515513],[122.2332,40.510503],[122.231047,40.505107],[122.244661,40.485061],[122.25765,40.487037],[122.278697,40.482844],[122.276682,40.47518],[122.264804,40.480386],[122.222086,40.481109],[122.221253,40.461248],[122.240424,40.460959],[122.24987,40.452763],[122.250982,40.44577],[122.229102,40.424018],[122.199025,40.431736],[122.190968,40.429228],[122.187981,40.413984],[122.199928,40.389519],[122.198678,40.382375],[122.191801,40.382134],[122.171658,40.388264],[122.168115,40.376728],[122.178673,40.365624],[122.163531,40.358913],[122.152209,40.357657],[122.135538,40.374941],[122.12373,40.376245],[122.111088,40.368521],[122.105948,40.357174],[122.111088,40.348917],[122.1379,40.338871],[122.121438,40.327085],[122.110741,40.31578],[122.1006,40.31578],[122.088791,40.331094],[122.0799,40.333075],[122.03996,40.322206],[122.035932,40.299882],[122.039822,40.260241],[122.026902,40.245008],[121.940284,40.242202],[121.935908,40.237849],[121.950356,40.204125],[121.959108,40.192799],[121.981197,40.17329],[122.004258,40.171934],[122.010856,40.155034],[122.009815,40.148834],[121.995158,40.12844],[121.980433,40.124127],[121.960775,40.134883],[121.953274,40.128876]]]]}},{"type":"Feature","properties":{"adcode":210900,"name":"阜新市","center":[121.648962,42.011796],"centroid":[121.961888,42.282968],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":8,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.83973,42.718292],[122.831742,42.722296],[122.805139,42.741612],[122.798748,42.738773],[122.79465,42.747662],[122.784509,42.757479],[122.765754,42.759247],[122.756377,42.768226],[122.749917,42.767249],[122.736373,42.77311],[122.733038,42.785854],[122.71734,42.785947],[122.700323,42.78218],[122.678651,42.781064],[122.653437,42.782319],[122.625166,42.77325],[122.617873,42.778552],[122.58092,42.789713],[122.569737,42.809148],[122.576057,42.818724],[122.562791,42.826206],[122.522364,42.831086],[122.505277,42.836616],[122.486662,42.836895],[122.431857,42.84326],[122.39935,42.839171],[122.35934,42.836105],[122.352325,42.831551],[122.350519,42.820165],[122.355451,42.813378],[122.362188,42.793526],[122.361702,42.788179],[122.373302,42.775436],[122.437831,42.770087],[122.45721,42.774226],[122.460614,42.755339],[122.444569,42.749104],[122.434844,42.729651],[122.421021,42.721085],[122.401086,42.713357],[122.39671,42.707863],[122.395946,42.684204],[122.360591,42.683412],[122.341211,42.6713],[122.33489,42.672791],[122.334126,42.680385],[122.324471,42.68481],[122.311621,42.682201],[122.307801,42.690446],[122.259178,42.69692],[122.257442,42.704231],[122.241049,42.713078],[122.238062,42.718851],[122.225212,42.72844],[122.204165,42.73249],[122.209653,42.711495],[122.206527,42.706839],[122.203679,42.68318],[122.196038,42.68085],[122.197219,42.689049],[122.190759,42.691564],[122.173603,42.686813],[122.1636,42.690073],[122.162281,42.685089],[122.139775,42.690166],[122.133454,42.696268],[122.121646,42.696081],[122.109282,42.701949],[122.096293,42.7033],[122.091014,42.714475],[122.072815,42.710657],[122.073163,42.719735],[122.061076,42.723413],[122.050171,42.719223],[122.04906,42.711495],[122.026832,42.706652],[122.02197,42.699388],[121.994603,42.705162],[121.988976,42.695383],[121.981614,42.690492],[121.97953,42.69664],[121.968694,42.700925],[121.962165,42.699248],[121.959456,42.686766],[121.938479,42.687884],[121.935561,42.681689],[121.941465,42.66953],[121.939729,42.6631],[121.929449,42.66706],[121.915904,42.656716],[121.920419,42.637186],[121.903401,42.637326],[121.902151,42.630613],[121.91764,42.630473],[121.918543,42.627117],[121.90222,42.620822],[121.921322,42.606039],[121.911667,42.601468],[121.917085,42.587987],[121.906318,42.58794],[121.903957,42.593678],[121.895274,42.593632],[121.905901,42.584021],[121.905485,42.570956],[121.8868,42.555088],[121.870268,42.548413],[121.869435,42.527962],[121.855612,42.539169],[121.85207,42.525581],[121.844498,42.522405],[121.840956,42.531231],[121.832759,42.533893],[121.823382,42.525067],[121.817687,42.504189],[121.803655,42.499984],[121.80692,42.508907],[121.8031,42.514886],[121.792889,42.507505],[121.783581,42.495312],[121.765174,42.490873],[121.76052,42.486434],[121.747462,42.485266],[121.725651,42.457643],[121.713218,42.445673],[121.690574,42.437396],[121.673417,42.440062],[121.665568,42.437396],[121.646188,42.45437],[121.646536,42.459185],[121.637992,42.480359],[121.62799,42.47606],[121.605276,42.493957],[121.602011,42.50204],[121.610624,42.509888],[121.608193,42.515773],[121.59062,42.509094],[121.590828,42.502273],[121.577492,42.497321],[121.578464,42.492088],[121.570129,42.486902],[121.552416,42.490593],[121.528869,42.48321],[121.515116,42.491714],[121.506364,42.482462],[121.497056,42.492275],[121.479413,42.496387],[121.467744,42.486808],[121.470175,42.484425],[121.450726,42.476574],[121.434194,42.475312],[121.42315,42.485406],[121.41544,42.48606],[121.417038,42.478396],[121.411689,42.475873],[121.38835,42.475265],[121.384808,42.471152],[121.385155,42.452032],[121.359663,42.460728],[121.341812,42.449741],[121.327156,42.443522],[121.311319,42.440343],[121.304442,42.435573],[121.313611,42.429446],[121.306387,42.422617],[121.306804,42.413401],[121.299024,42.398897],[121.283882,42.387291],[121.263877,42.379334],[121.252208,42.382844],[121.256236,42.377461],[121.232481,42.37161],[121.218728,42.371891],[121.214421,42.362012],[121.185664,42.349884],[121.187957,42.342016],[121.184345,42.332788],[121.169897,42.322716],[121.150378,42.314564],[121.153365,42.310206],[121.148433,42.301067],[121.133638,42.300271],[121.121483,42.280911],[121.106132,42.279317],[121.103284,42.283302],[121.086058,42.277583],[121.068206,42.252494],[121.048758,42.259905],[121.03167,42.253573],[121.038894,42.248414],[121.027503,42.243394],[121.033615,42.23678],[121.047368,42.229742],[121.055842,42.219137],[121.057579,42.207874],[121.050841,42.19243],[121.055009,42.187688],[121.055356,42.175291],[121.071541,42.154062],[121.072513,42.143115],[121.078,42.136443],[121.08453,42.111205],[121.074597,42.101896],[121.066748,42.071564],[121.046118,42.058863],[121.044451,42.051476],[121.052717,42.03124],[121.05487,42.018484],[121.050563,42.005113],[121.039311,41.987735],[121.041534,41.980152],[121.053967,41.977938],[121.074527,41.978786],[121.079529,41.973651],[121.104882,41.964935],[121.149962,41.976996],[121.163159,41.977514],[121.192055,41.966113],[121.199834,41.955464],[121.212962,41.914925],[121.238524,41.903607],[121.26353,41.89823],[121.292564,41.889881],[121.298885,41.884079],[121.301941,41.86563],[121.290689,41.856286],[121.277283,41.826876],[121.268392,41.82069],[121.272699,41.803593],[121.263669,41.794523],[121.307985,41.775765],[121.312222,41.770897],[121.336394,41.771984],[121.342923,41.768582],[121.342506,41.746743],[121.332712,41.741826],[121.338547,41.733457],[121.360149,41.725654],[121.374319,41.726647],[121.393838,41.736483],[121.416899,41.737996],[121.435723,41.733362],[121.452463,41.719553],[121.458158,41.707538],[121.457603,41.695994],[121.475385,41.695001],[121.477607,41.711937],[121.493305,41.721681],[121.502335,41.717755],[121.515116,41.720404],[121.515324,41.730383],[121.50692,41.744143],[121.512338,41.748587],[121.512407,41.762579],[121.519909,41.763052],[121.52616,41.770472],[121.538524,41.773922],[121.538802,41.783231],[121.554083,41.785215],[121.604859,41.787294],[121.629031,41.784034],[121.637089,41.774064],[121.65494,41.776332],[121.675153,41.774205],[121.697033,41.798869],[121.707314,41.803971],[121.722456,41.795751],[121.754338,41.796129],[121.77858,41.806285],[121.798029,41.801798],[121.822479,41.782758],[121.835121,41.786869],[121.845957,41.799011],[121.862558,41.813134],[121.840886,41.813559],[121.831648,41.820643],[121.833107,41.828859],[121.843734,41.835988],[121.848944,41.845288],[121.895066,41.845571],[121.916251,41.858363],[121.908472,41.864167],[121.927156,41.862138],[121.924517,41.868886],[121.933061,41.874643],[121.941674,41.872991],[121.960081,41.878512],[121.962442,41.888938],[121.955705,41.891391],[121.972514,41.892617],[121.997242,41.911247],[121.99113,41.919687],[121.996478,41.928645],[122.00391,41.930672],[122.014816,41.925298],[122.034334,41.930625],[122.042114,41.935339],[122.041975,41.944624],[122.062257,41.961024],[122.063021,41.969269],[122.068926,41.965406],[122.081915,41.967385],[122.097752,41.980858],[122.094904,41.986463],[122.11852,42.001769],[122.130884,41.998991],[122.140748,42.019331],[122.154362,42.017966],[122.145888,42.025027],[122.153251,42.032511],[122.174992,42.027192],[122.184369,42.031946],[122.200623,42.032841],[122.21264,42.050112],[122.22799,42.047053],[122.236326,42.052182],[122.272167,42.068225],[122.293631,42.080031],[122.312871,42.083558],[122.366703,42.108384],[122.409769,42.121452],[122.425953,42.129018],[122.423522,42.140672],[122.436858,42.140625],[122.432621,42.144196],[122.439428,42.150961],[122.455821,42.144572],[122.520072,42.174681],[122.552024,42.188063],[122.614469,42.212755],[122.609329,42.230164],[122.620096,42.230071],[122.626,42.234716],[122.632598,42.231009],[122.63628,42.237061],[122.645101,42.237671],[122.651283,42.232651],[122.691779,42.249915],[122.703726,42.261124],[122.735053,42.281005],[122.734289,42.284287],[122.769505,42.297037],[122.781314,42.29863],[122.805555,42.312408],[122.810765,42.319624],[122.826324,42.330446],[122.838827,42.331898],[122.858345,42.346091],[122.871057,42.345669],[122.900994,42.349182],[122.903217,42.353256],[122.895298,42.368848],[122.883421,42.368333],[122.875294,42.37484],[122.882379,42.388367],[122.873627,42.389397],[122.865639,42.395715],[122.862027,42.406804],[122.850983,42.40526],[122.84619,42.399599],[122.832159,42.403342],[122.828269,42.410267],[122.833965,42.417986],[122.81778,42.416769],[122.824865,42.429352],[122.832853,42.431597],[122.826602,42.438846],[122.827297,42.445814],[122.822018,42.458017],[122.825004,42.461149],[122.818544,42.481434],[122.826463,42.490126],[122.819447,42.490126],[122.834382,42.497975],[122.871543,42.504049],[122.882101,42.503908],[122.899744,42.499424],[122.908357,42.500685],[122.911552,42.51951],[122.917804,42.521565],[122.916831,42.52969],[122.921832,42.535527],[122.943365,42.547899],[122.949408,42.545098],[122.957744,42.550327],[122.966912,42.561716],[122.974414,42.564329],[122.969899,42.571376],[122.930237,42.587707],[122.922874,42.596804],[122.926764,42.604407],[122.903078,42.613687],[122.892034,42.608884],[122.886477,42.611216],[122.873488,42.608604],[122.86293,42.621055],[122.842578,42.633364],[122.838688,42.645204],[122.842786,42.648839],[122.824935,42.652661],[122.792705,42.650983],[122.791802,42.662773],[122.769505,42.677962],[122.756238,42.679732],[122.747347,42.689188],[122.750959,42.697944],[122.767838,42.709074],[122.778118,42.710889],[122.80111,42.726299],[122.815766,42.718897],[122.836118,42.716476],[122.83973,42.718292]]]]}},{"type":"Feature","properties":{"adcode":211000,"name":"辽阳市","center":[123.18152,41.269402],"centroid":[123.251133,41.184819],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":9,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.622527,41.199845],[122.613149,41.202134],[122.59509,41.19584],[122.601897,41.185636],[122.598077,41.178911],[122.618706,41.169706],[122.639683,41.155204],[122.678581,41.140746],[122.690251,41.128289],[122.689556,41.122609],[122.704282,41.114828],[122.762837,41.104372],[122.760962,41.101221],[122.777215,41.099024],[122.784995,41.101316],[122.791594,41.096111],[122.800068,41.100266],[122.801388,41.093533],[122.824518,41.081831],[122.832437,41.082452],[122.831047,41.091575],[122.841605,41.106091],[122.856748,41.114971],[122.84876,41.129769],[122.858137,41.144945],[122.865291,41.144897],[122.875988,41.157732],[122.86675,41.163171],[122.875572,41.170612],[122.885505,41.166844],[122.895924,41.171519],[122.89898,41.181296],[122.909607,41.194219],[122.946144,41.196603],[122.962467,41.191358],[122.974484,41.202706],[122.987612,41.200465],[122.991363,41.18659],[123.005949,41.188497],[123.022411,41.206854],[123.038248,41.208427],[123.062282,41.199083],[123.057142,41.191501],[123.063254,41.183156],[123.075618,41.184634],[123.099304,41.178101],[123.109862,41.184634],[123.119031,41.184253],[123.119309,41.177242],[123.129381,41.174094],[123.13716,41.158018],[123.149385,41.154059],[123.140147,41.137214],[123.146815,41.133826],[123.142509,41.12576],[123.146746,41.10824],[123.145287,41.101841],[123.154595,41.105852],[123.162583,41.099024],[123.171891,41.098642],[123.183977,41.106043],[123.198494,41.103322],[123.203148,41.097687],[123.2119,41.098117],[123.213636,41.091145],[123.208357,41.078631],[123.214539,41.077867],[123.231835,41.066067],[123.226626,41.058996],[123.235517,41.048962],[123.214331,41.039833],[123.205162,41.039547],[123.199675,41.031278],[123.212247,41.017701],[123.201898,41.00173],[123.190923,40.996852],[123.192451,40.987621],[123.178212,40.989917],[123.161541,40.988434],[123.151052,40.983938],[123.126741,40.989343],[123.103125,40.984177],[123.087913,40.975519],[123.083884,40.961595],[123.097151,40.941973],[123.096387,40.934171],[123.089788,40.928378],[123.060406,40.923447],[123.073673,40.906879],[123.075063,40.898354],[123.055266,40.884175],[123.047973,40.871765],[123.055752,40.857772],[123.050265,40.845502],[123.054294,40.835099],[123.072979,40.839414],[123.084926,40.835866],[123.105834,40.824455],[123.107084,40.820091],[123.091386,40.802394],[123.074854,40.792081],[123.071798,40.780422],[123.073812,40.771641],[123.085412,40.755946],[123.100971,40.741305],[123.130075,40.72666],[123.136188,40.714461],[123.150288,40.725219],[123.1771,40.712684],[123.214262,40.732182],[123.230932,40.733959],[123.244685,40.731462],[123.258369,40.744569],[123.277054,40.749082],[123.287959,40.754506],[123.297614,40.76593],[123.315049,40.773464],[123.340055,40.771113],[123.357003,40.775959],[123.37541,40.775384],[123.394234,40.786515],[123.402639,40.802538],[123.411044,40.807095],[123.428964,40.803306],[123.442231,40.803114],[123.461611,40.809541],[123.487659,40.811411],[123.509608,40.816159],[123.533711,40.826996],[123.539476,40.837353],[123.537531,40.851446],[123.544477,40.861079],[123.574971,40.856814],[123.582264,40.857485],[123.604908,40.874017],[123.608659,40.89227],[123.619425,40.896629],[123.625191,40.906879],[123.623662,40.912242],[123.632415,40.923926],[123.646515,40.930724],[123.657976,40.952647],[123.648043,40.964658],[123.656587,40.973796],[123.652072,40.975423],[123.647349,41.006943],[123.650127,41.016314],[123.660824,41.017797],[123.65999,41.041602],[123.670757,41.043227],[123.685344,41.0503],[123.68972,41.059665],[123.679648,41.069889],[123.671104,41.071657],[123.660685,41.086846],[123.660477,41.095873],[123.651308,41.112775],[123.655267,41.129148],[123.664644,41.139123],[123.649085,41.157446],[123.638458,41.159259],[123.639013,41.169324],[123.63422,41.181248],[123.624913,41.189308],[123.619286,41.202849],[123.598934,41.206663],[123.608798,41.22001],[123.59692,41.23426],[123.600463,41.24217],[123.616022,41.254795],[123.619495,41.246601],[123.636374,41.246887],[123.670201,41.260702],[123.665547,41.269133],[123.664019,41.283705],[123.657768,41.286895],[123.65617,41.298655],[123.663324,41.316077],[123.661796,41.324928],[123.654642,41.327688],[123.658254,41.345958],[123.652628,41.353236],[123.655475,41.37245],[123.650058,41.378537],[123.652628,41.386952],[123.642556,41.392562],[123.633943,41.406869],[123.631164,41.416801],[123.652836,41.438609],[123.652697,41.449439],[123.644362,41.458178],[123.607617,41.467675],[123.601366,41.48676],[123.591502,41.494022],[123.58018,41.498436],[123.560801,41.486808],[123.546561,41.481111],[123.527529,41.491981],[123.516485,41.480067],[123.498147,41.483675],[123.489603,41.478975],[123.477726,41.463829],[123.458068,41.466535],[123.449386,41.474987],[123.439383,41.469337],[123.429659,41.472043],[123.430076,41.481396],[123.417087,41.487472],[123.40764,41.500619],[123.397638,41.495114],[123.383746,41.50043],[123.382565,41.509256],[123.362629,41.504701],[123.362352,41.513195],[123.353669,41.510775],[123.335679,41.514665],[123.33429,41.506931],[123.324079,41.508307],[123.313382,41.519979],[123.2956,41.525056],[123.284278,41.524439],[123.279694,41.538053],[123.252951,41.538148],[123.236003,41.540282],[123.235517,41.551712],[123.219818,41.559156],[123.219471,41.565273],[123.201898,41.564562],[123.187589,41.555648],[123.193493,41.549673],[123.188144,41.54512],[123.182032,41.549388],[123.16946,41.548961],[123.156748,41.53682],[123.143203,41.538765],[123.134451,41.536156],[123.127366,41.546638],[123.131117,41.554035],[123.111668,41.55854],[123.11535,41.564988],[123.114099,41.585277],[123.123546,41.589637],[123.134312,41.60845],[123.11403,41.617119],[123.109098,41.606318],[123.087565,41.588974],[123.087218,41.5794],[123.078744,41.563376],[123.082286,41.560769],[123.071173,41.554462],[123.050196,41.551048],[123.041166,41.540187],[123.027413,41.514144],[123.020675,41.5075],[123.010881,41.505175],[123.002198,41.513906],[122.969205,41.509778],[122.957813,41.496395],[122.969205,41.492598],[122.971288,41.49929],[122.982055,41.496158],[122.976428,41.488849],[122.975803,41.47869],[122.959688,41.468102],[122.934405,41.47869],[122.933293,41.469194],[122.937947,41.466963],[122.935308,41.458368],[122.940309,41.456041],[122.933641,41.447919],[122.91954,41.454901],[122.91704,41.451054],[122.92857,41.448537],[122.912664,41.432956],[122.929681,41.42811],[122.914609,41.417799],[122.886755,41.417894],[122.881754,41.422313],[122.871404,41.414378],[122.863347,41.424642],[122.849663,41.415898],[122.85133,41.394701],[122.841814,41.378584],[122.80368,41.373401],[122.798054,41.366839],[122.780966,41.366363],[122.773742,41.360323],[122.765616,41.368313],[122.749362,41.351857],[122.747834,41.329449],[122.737762,41.33002],[122.731163,41.323453],[122.717827,41.322787],[122.724148,41.314601],[122.70963,41.308509],[122.698447,41.299274],[122.705949,41.284562],[122.698239,41.278991],[122.692543,41.268228],[122.676706,41.260893],[122.674275,41.251508],[122.666981,41.2456],[122.666634,41.229399],[122.669482,41.223394],[122.659896,41.212813],[122.637044,41.210191],[122.633015,41.203088],[122.622527,41.199845]]]]}},{"type":"Feature","properties":{"adcode":211100,"name":"盘锦市","center":[122.06957,41.124484],"centroid":[121.999309,41.06851],"childrenNum":4,"level":"city","parent":{"adcode":210000},"subFeatureIndex":10,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.555125,40.849624],[121.558737,40.840325],[121.547276,40.8234],[121.552903,40.817742],[121.570823,40.827764],[121.577978,40.839462],[121.606387,40.84416],[121.626045,40.8444],[121.635075,40.83275],[121.647716,40.829154],[121.682655,40.829634],[121.69495,40.833277],[121.699534,40.840708],[121.718775,40.842722],[121.732458,40.84694],[121.736695,40.863044],[121.746628,40.852884],[121.753366,40.854609],[121.753088,40.869082],[121.77858,40.886953],[121.816089,40.894809],[121.825744,40.864194],[121.845054,40.853746],[121.849638,40.845598],[121.842276,40.838647],[121.847416,40.824599],[121.883882,40.802202],[121.902151,40.798941],[121.934241,40.798221],[121.942855,40.788818],[121.941187,40.777639],[121.930213,40.755322],[121.936117,40.711387],[121.951259,40.680784],[121.977932,40.67271],[122.025652,40.674248],[122.050032,40.653628],[122.066147,40.648628],[122.096988,40.65132],[122.121993,40.657474],[122.132621,40.666222],[122.148388,40.671797],[122.154154,40.685541],[122.151931,40.697024],[122.154918,40.70644],[122.162836,40.711484],[122.172491,40.709898],[122.188051,40.695967],[122.19451,40.701876],[122.205416,40.693085],[122.232297,40.688136],[122.23452,40.68285],[122.245286,40.683283],[122.272723,40.695583],[122.27314,40.702741],[122.265777,40.710235],[122.246675,40.711099],[122.208333,40.709947],[122.201665,40.713405],[122.209861,40.725123],[122.206319,40.739961],[122.194163,40.742217],[122.180618,40.750522],[122.160266,40.75945],[122.128245,40.779798],[122.108657,40.787523],[122.096501,40.796926],[122.100877,40.804313],[122.129426,40.818125],[122.151584,40.840756],[122.183397,40.83299],[122.187078,40.84114],[122.178812,40.850008],[122.176589,40.868507],[122.182424,40.877515],[122.188884,40.875551],[122.209028,40.855999],[122.223128,40.853698],[122.22674,40.862421],[122.253482,40.870376],[122.264318,40.870903],[122.277307,40.864578],[122.304258,40.889827],[122.309468,40.905442],[122.318914,40.909034],[122.322943,40.904388],[122.320373,40.895815],[122.332251,40.894091],[122.335238,40.905777],[122.321345,40.909273],[122.327597,40.918276],[122.318845,40.927325],[122.331278,40.923974],[122.343364,40.927277],[122.338294,40.940872],[122.351213,40.951498],[122.350172,40.955422],[122.328917,40.96327],[122.328361,40.971117],[122.338988,40.968151],[122.358715,40.975327],[122.364411,40.985851],[122.36066,40.9881],[122.346629,40.980494],[122.3426,40.988817],[122.359966,41.001874],[122.368023,41.0002],[122.380665,40.989869],[122.390111,40.988052],[122.390111,40.997426],[122.396502,41.000869],[122.404698,40.991496],[122.41088,40.993074],[122.424008,41.012776],[122.415256,41.022482],[122.40956,41.038639],[122.414978,41.057085],[122.415881,41.084602],[122.412061,41.090954],[122.396502,41.10165],[122.396502,41.120461],[122.384416,41.135496],[122.386638,41.160165],[122.37233,41.162407],[122.366356,41.177147],[122.368926,41.183585],[122.384624,41.195602],[122.400461,41.196889],[122.411783,41.204041],[122.415326,41.212622],[122.435469,41.213003],[122.447208,41.21553],[122.463879,41.233307],[122.488745,41.250984],[122.480688,41.254938],[122.46374,41.256796],[122.457697,41.248078],[122.424633,41.253318],[122.423661,41.243266],[122.408866,41.251651],[122.388861,41.231639],[122.386499,41.2243],[122.369759,41.217579],[122.36191,41.206568],[122.343364,41.203707],[122.352533,41.198034],[122.338572,41.189975],[122.304814,41.190881],[122.274737,41.184539],[122.266194,41.194791],[122.254316,41.194076],[122.226948,41.201943],[122.215001,41.216578],[122.205138,41.223299],[122.231047,41.2304],[122.244591,41.236309],[122.250079,41.242551],[122.249801,41.260845],[122.254455,41.277896],[122.264388,41.291133],[122.26668,41.307414],[122.274737,41.319741],[122.271681,41.328355],[122.279461,41.334968],[122.277516,41.348908],[122.280294,41.353997],[122.245286,41.373877],[122.232436,41.387095],[122.198956,41.429203],[122.200345,41.441792],[122.192288,41.448964],[122.199303,41.45794],[122.193746,41.459602],[122.185064,41.448537],[122.177562,41.451956],[122.169296,41.443122],[122.137275,41.428728],[122.143318,41.422598],[122.123869,41.415898],[122.099071,41.399882],[122.093723,41.39375],[122.086291,41.393845],[122.077052,41.386477],[122.069967,41.38757],[122.040725,41.371547],[122.026346,41.371119],[122.020303,41.382483],[122.010648,41.386049],[121.975154,41.383862],[121.95626,41.386239],[121.944522,41.369169],[121.919585,41.363795],[121.910833,41.355805],[121.90229,41.354758],[121.90347,41.337014],[121.884716,41.322549],[121.869296,41.330401],[121.867768,41.340963],[121.845749,41.352713],[121.827411,41.35238],[121.801433,41.348765],[121.794973,41.345673],[121.784276,41.333493],[121.759062,41.331257],[121.747045,41.337062],[121.729333,41.328688],[121.717108,41.316457],[121.701548,41.315791],[121.685989,41.305224],[121.638061,41.281134],[121.6009,41.257606],[121.58027,41.249698],[121.577422,41.225587],[121.580895,41.215959],[121.591314,41.209333],[121.602706,41.211573],[121.620418,41.206758],[121.618821,41.186828],[121.615626,41.182011],[121.602359,41.180724],[121.567698,41.145947],[121.566795,41.134494],[121.585132,41.108049],[121.610763,41.103274],[121.665637,41.099502],[121.682377,41.099979],[121.695436,41.104897],[121.716899,41.103608],[121.722248,41.108096],[121.7426,41.107237],[121.739196,41.114589],[121.763438,41.100791],[121.758576,41.088661],[121.747531,41.085843],[121.714468,41.087276],[121.714537,41.091479],[121.691477,41.093294],[121.692102,41.096637],[121.672583,41.090237],[121.680154,41.084793],[121.666888,41.059809],[121.6473,41.062484],[121.651189,41.05417],[121.662789,41.050491],[121.661261,41.034385],[121.667165,41.027167],[121.676334,41.007756],[121.673417,40.991974],[121.666818,40.98566],[121.662164,40.969873],[121.663553,40.959298],[121.650981,40.952694],[121.647786,40.937761],[121.628754,40.908076],[121.618682,40.907837],[121.59708,40.896581],[121.584507,40.885708],[121.571032,40.867932],[121.56742,40.859162],[121.555125,40.849624]]]]}},{"type":"Feature","properties":{"adcode":211200,"name":"铁岭市","center":[123.844279,42.290585],"centroid":[124.176584,42.648938],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":11,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.790021,41.989242],[123.80169,41.994093],[123.813915,42.007655],[123.842811,42.022909],[123.875457,42.028746],[123.880667,42.033123],[123.905742,42.031146],[123.92658,42.018766],[123.940194,42.023803],[123.950336,42.018625],[123.943529,42.008738],[123.954781,42.005631],[123.985969,42.005819],[124.004307,42.01161],[124.024381,42.011657],[124.034175,42.018907],[124.03994,42.045124],[124.067446,42.064367],[124.07988,42.065543],[124.095231,42.073446],[124.140797,42.068083],[124.164622,42.056793],[124.174416,42.055711],[124.191572,42.058957],[124.207618,42.055334],[124.234291,42.058157],[124.25374,42.067284],[124.264645,42.064602],[124.268604,42.046018],[124.275828,42.043147],[124.275689,42.036935],[124.285275,42.027428],[124.281177,42.020885],[124.283816,42.013117],[124.279926,42.00742],[124.294721,42.006054],[124.313267,42.015235],[124.33737,42.016601],[124.341955,42.009397],[124.35154,42.012222],[124.369044,42.022391],[124.366752,42.032888],[124.383978,42.033923],[124.408637,42.044041],[124.414124,42.050112],[124.423501,42.052182],[124.447604,42.067801],[124.497408,42.079654],[124.520121,42.087884],[124.550128,42.11896],[124.541446,42.131039],[124.543043,42.137477],[124.560061,42.155048],[124.561172,42.16402],[124.543946,42.176982],[124.536514,42.192899],[124.52797,42.202476],[124.516023,42.236733],[124.536722,42.257888],[124.553323,42.270034],[124.561033,42.282318],[124.564784,42.303739],[124.577843,42.321076],[124.569508,42.341641],[124.574648,42.351476],[124.59361,42.351008],[124.605141,42.345294],[124.628202,42.348432],[124.634523,42.345903],[124.62584,42.334475],[124.625701,42.327261],[124.647859,42.316344],[124.661126,42.315641],[124.679394,42.319577],[124.695995,42.317141],[124.712944,42.325106],[124.725586,42.324497],[124.732462,42.335693],[124.751494,42.338316],[124.763511,42.343093],[124.774625,42.336957],[124.787058,42.33958],[124.797061,42.359718],[124.787822,42.365523],[124.7856,42.382376],[124.777612,42.380551],[124.772055,42.391362],[124.775597,42.400347],[124.786016,42.409237],[124.800395,42.415881],[124.820399,42.411296],[124.821719,42.418266],[124.853185,42.412278],[124.864021,42.407787],[124.886248,42.41022],[124.895278,42.398242],[124.925077,42.396884],[124.931259,42.40278],[124.944734,42.400768],[124.952236,42.389116],[124.960988,42.384436],[124.956959,42.371329],[124.974255,42.368145],[124.985299,42.379146],[124.990717,42.37292],[125.005859,42.378444],[124.997732,42.392579],[125.004748,42.401845],[125.024336,42.401891],[125.036491,42.405541],[125.041562,42.414618],[125.03663,42.420231],[125.036214,42.438098],[125.057746,42.445533],[125.063164,42.450536],[125.079904,42.457315],[125.078446,42.464842],[125.099006,42.478023],[125.107966,42.478864],[125.105049,42.49064],[125.085253,42.500872],[125.068999,42.49961],[125.066776,42.502787],[125.078446,42.506571],[125.081085,42.513298],[125.089907,42.51241],[125.088934,42.518622],[125.067262,42.534406],[125.077334,42.54211],[125.076292,42.558075],[125.091504,42.572356],[125.084489,42.593025],[125.095533,42.599789],[125.089837,42.606505],[125.099631,42.613221],[125.097408,42.622081],[125.086225,42.625764],[125.072194,42.625158],[125.061914,42.620915],[125.055107,42.624039],[125.038436,42.615413],[125.028781,42.617698],[125.028642,42.623014],[125.010721,42.632478],[125.019335,42.652754],[125.012805,42.660211],[125.014403,42.666128],[124.996135,42.670461],[124.99037,42.677263],[124.968489,42.67349],[124.967586,42.680198],[124.985855,42.686673],[124.989258,42.695103],[124.978909,42.709539],[124.977172,42.716476],[124.968281,42.722715],[124.98002,42.729139],[124.985855,42.726997],[124.996413,42.745428],[124.980367,42.752547],[124.983007,42.760783],[124.988216,42.759806],[124.992662,42.773017],[124.987591,42.780552],[124.980159,42.781436],[124.975574,42.802035],[124.955987,42.807335],[124.948832,42.806266],[124.93105,42.819049],[124.915908,42.817794],[124.914935,42.803895],[124.906669,42.793573],[124.897779,42.787993],[124.887221,42.790876],[124.874857,42.78976],[124.868813,42.797711],[124.867077,42.80766],[124.858811,42.820304],[124.858742,42.840519],[124.855408,42.851112],[124.857005,42.863421],[124.849295,42.88209],[124.85638,42.886129],[124.850684,42.892304],[124.852212,42.899221],[124.860061,42.904698],[124.859922,42.914212],[124.86666,42.918528],[124.864507,42.926741],[124.869716,42.936438],[124.864924,42.939407],[124.869439,42.954667],[124.867563,42.96167],[124.874995,42.968811],[124.868536,42.973215],[124.872148,42.984388],[124.861867,42.990506],[124.857561,43.001537],[124.86159,43.002186],[124.855963,43.013909],[124.844433,43.02614],[124.844433,43.035172],[124.863118,43.034014],[124.857422,43.040081],[124.858255,43.05101],[124.868605,43.054252],[124.877288,43.068002],[124.887498,43.073788],[124.883817,43.093596],[124.879441,43.099704],[124.881872,43.1109],[124.893819,43.117931],[124.895,43.131158],[124.881247,43.133331],[124.873328,43.125932],[124.857561,43.119457],[124.841863,43.126996],[124.822622,43.124452],[124.819566,43.119873],[124.807896,43.117514],[124.802131,43.122371],[124.785461,43.116543],[124.785391,43.106551],[124.778167,43.098223],[124.758579,43.086285],[124.754481,43.073742],[124.738644,43.068141],[124.718501,43.069992],[124.695092,43.057261],[124.686201,43.050408],[124.674393,43.026557],[124.678283,43.013353],[124.677727,43.002695],[124.67092,42.990043],[124.660362,42.983183],[124.65939,42.972937],[124.652791,42.976229],[124.635704,42.973401],[124.633828,42.958145],[124.639177,42.95527],[124.622923,42.949055],[124.622645,42.941634],[124.608197,42.937783],[124.602432,42.930871],[124.603752,42.923725],[124.593333,42.911846],[124.563187,42.889008],[124.544293,42.886454],[124.538528,42.86709],[124.532902,42.871549],[124.514703,42.873638],[124.501575,42.86514],[124.480181,42.858544],[124.466289,42.846605],[124.472749,42.828019],[124.465664,42.822581],[124.452258,42.825928],[124.454689,42.852505],[124.446076,42.865465],[124.437532,42.867926],[124.440867,42.875775],[124.434546,42.880882],[124.426836,42.874521],[124.415444,42.879211],[124.371753,42.880975],[124.366474,42.891886],[124.366822,42.902841],[124.381061,42.91282],[124.388007,42.910082],[124.397801,42.915141],[124.400927,42.921962],[124.413916,42.922426],[124.414819,42.926417],[124.431906,42.930871],[124.442186,42.941402],[124.441631,42.959861],[124.429892,42.966399],[124.422112,42.97609],[124.402316,42.97099],[124.384465,42.970712],[124.360779,42.975904],[124.34772,42.988328],[124.333411,42.99732],[124.340565,43.004827],[124.369808,43.025491],[124.425933,43.076288],[124.421348,43.082629],[124.396829,43.092532],[124.381617,43.107754],[124.362307,43.122695],[124.340565,43.128615],[124.329243,43.142903],[124.308891,43.155062],[124.302987,43.148867],[124.292499,43.154322],[124.300487,43.158529],[124.283955,43.166016],[124.273814,43.178771],[124.282149,43.188982],[124.277565,43.196143],[124.287706,43.206906],[124.28069,43.216235],[124.282844,43.220622],[124.276314,43.233411],[124.268326,43.230641],[124.253184,43.237335],[124.24346,43.233411],[124.229776,43.234796],[124.227067,43.24209],[124.219218,43.241444],[124.216023,43.256121],[124.199491,43.245829],[124.190044,43.246521],[124.178375,43.242228],[124.172471,43.249567],[124.168373,43.244075],[124.154828,43.253583],[124.148715,43.250952],[124.132878,43.25529],[124.129336,43.247814],[124.114402,43.247306],[124.11725,43.263043],[124.111762,43.269134],[124.11718,43.2773],[124.111415,43.281175],[124.098634,43.281129],[124.10308,43.288556],[124.098287,43.292891],[124.066057,43.292661],[124.043135,43.287587],[124.032994,43.280898],[123.992776,43.308571],[123.98715,43.315671],[123.961866,43.338811],[123.964228,43.340839],[123.946863,43.350747],[123.922968,43.360422],[123.911577,43.358211],[123.895879,43.361528],[123.901366,43.37917],[123.892267,43.390131],[123.865941,43.395656],[123.863649,43.400905],[123.853021,43.405647],[123.849687,43.415636],[123.854897,43.423644],[123.855661,43.436759],[123.872331,43.451344],[123.857606,43.459163],[123.861148,43.461785],[123.849271,43.470109],[123.845798,43.467488],[123.833503,43.473558],[123.825932,43.471489],[123.804468,43.482433],[123.79787,43.489559],[123.786964,43.479812],[123.773975,43.480318],[123.771405,43.484042],[123.74626,43.471213],[123.753207,43.464545],[123.751956,43.454702],[123.74369,43.443845],[123.7489,43.439842],[123.734313,43.427234],[123.71021,43.417201],[123.710002,43.404726],[123.703056,43.402654],[123.705695,43.396991],[123.699444,43.390131],[123.708891,43.383776],[123.698541,43.382486],[123.705001,43.377328],[123.704654,43.364108],[123.69611,43.356184],[123.720421,43.357658],[123.711391,43.354479],[123.713058,43.346553],[123.705695,43.344802],[123.704445,43.337152],[123.71417,43.331852],[123.703334,43.327796],[123.709168,43.319728],[123.719727,43.319129],[123.716601,43.311614],[123.700625,43.311291],[123.703889,43.297872],[123.69604,43.294921],[123.696388,43.28136],[123.705487,43.278084],[123.698541,43.272225],[123.686455,43.277392],[123.678259,43.271118],[123.666936,43.268211],[123.665408,43.257829],[123.675758,43.241121],[123.667978,43.235904],[123.676869,43.224177],[123.657907,43.221591],[123.646376,43.213233],[123.655823,43.194203],[123.665408,43.193371],[123.667978,43.180943],[123.659504,43.174751],[123.649849,43.175398],[123.648738,43.166479],[123.653392,43.158713],[123.643389,43.143874],[123.635193,43.137771],[123.638249,43.124822],[123.629706,43.119318],[123.633456,43.112195],[123.627691,43.100583],[123.631234,43.088969],[123.625746,43.079111],[123.616161,43.077445],[123.605325,43.06416],[123.596295,43.062447],[123.598309,43.056937],[123.611507,43.049297],[123.594628,43.039711],[123.590044,43.032069],[123.580805,43.036052],[123.585668,43.024287],[123.581083,43.01933],[123.588585,43.015855],[123.583028,43.010202],[123.573442,43.010434],[123.572678,43.0039],[123.561912,43.005383],[123.566496,42.988142],[123.554132,42.984388],[123.546839,42.977341],[123.554896,42.961206],[123.566496,42.951652],[123.582125,42.950075],[123.584348,42.943906],[123.603519,42.930268],[123.601088,42.923354],[123.588793,42.921823],[123.584973,42.910546],[123.598587,42.905162],[123.59956,42.893511],[123.584348,42.884829],[123.583931,42.875357],[123.600949,42.870481],[123.603519,42.866347],[123.585668,42.852598],[123.593378,42.847442],[123.593655,42.838846],[123.605325,42.829274],[123.591988,42.823418],[123.594697,42.807939],[123.600602,42.796595],[123.593864,42.789248],[123.603519,42.77911],[123.598865,42.771622],[123.586084,42.77511],[123.57761,42.76804],[123.586848,42.760178],[123.585598,42.752501],[123.575387,42.751152],[123.57247,42.741426],[123.559342,42.729464],[123.559481,42.724763],[123.57122,42.712007],[123.582611,42.70628],[123.569344,42.692868],[123.583306,42.688443],[123.587821,42.67731],[123.578999,42.676937],[123.592614,42.663705],[123.60338,42.670555],[123.611298,42.680291],[123.625746,42.6754],[123.625607,42.664078],[123.61887,42.655084],[123.624079,42.647441],[123.637068,42.63989],[123.662908,42.629028],[123.664714,42.623666],[123.651586,42.618397],[123.662491,42.6149],[123.673813,42.602028],[123.69479,42.603287],[123.701528,42.593725],[123.691109,42.592839],[123.694721,42.578516],[123.710349,42.579589],[123.712433,42.566243],[123.723894,42.567456],[123.730771,42.562556],[123.72577,42.555415],[123.737092,42.553128],[123.742093,42.559196],[123.758555,42.553968],[123.752859,42.543044],[123.736814,42.542671],[123.703889,42.52997],[123.683885,42.510028],[123.679439,42.516334],[123.657629,42.521144],[123.668256,42.530624],[123.662908,42.539869],[123.663811,42.55182],[123.653947,42.550187],[123.643737,42.553081],[123.624149,42.543744],[123.621787,42.534173],[123.613313,42.53548],[123.616786,42.525207],[123.608937,42.509327],[123.584,42.512644],[123.583028,42.502787],[123.571567,42.506478],[123.566427,42.498956],[123.558647,42.499984],[123.554341,42.493256],[123.542185,42.490593],[123.534197,42.482042],[123.52225,42.487322],[123.5094,42.470077],[123.496341,42.463299],[123.479045,42.464935],[123.473419,42.4561],[123.454456,42.441184],[123.455151,42.43272],[123.479115,42.414384],[123.472238,42.397961],[123.476545,42.397399],[123.465848,42.381674],[123.482449,42.371469],[123.487936,42.363042],[123.499675,42.363417],[123.505788,42.353724],[123.516971,42.349462],[123.522875,42.339815],[123.52864,42.339674],[123.528085,42.321639],[123.51579,42.298255],[123.497939,42.275988],[123.48238,42.27144],[123.473628,42.261921],[123.468765,42.249446],[123.476753,42.233073],[123.465223,42.230258],[123.449594,42.204729],[123.458138,42.200176],[123.469599,42.181537],[123.487242,42.180504],[123.504815,42.192289],[123.521416,42.191021],[123.53517,42.181584],[123.542046,42.182241],[123.540518,42.155706],[123.541768,42.147015],[123.556147,42.144619],[123.574901,42.132308],[123.589974,42.129441],[123.608728,42.119337],[123.620954,42.115764],[123.631164,42.107679],[123.632206,42.100956],[123.647418,42.100862],[123.662213,42.09395],[123.678189,42.098417],[123.704862,42.09127],[123.705626,42.085956],[123.727228,42.076362],[123.735147,42.065402],[123.746122,42.065355],[123.75529,42.05731],[123.752026,42.052935],[123.779879,42.041877],[123.783144,42.037688],[123.789118,42.043947],[123.789465,42.052982],[123.794744,42.060086],[123.80433,42.058157],[123.805858,42.051335],[123.813151,42.050112],[123.808219,42.03557],[123.813568,42.030581],[123.810095,42.022062],[123.797175,42.013635],[123.788354,42.019567],[123.773211,42.023568],[123.763695,42.017825],[123.762792,41.999085],[123.769391,42.002664],[123.771058,41.995977],[123.790021,41.989242]]]]}},{"type":"Feature","properties":{"adcode":211300,"name":"朝阳市","center":[120.451176,41.576758],"centroid":[120.021858,41.516568],"childrenNum":7,"level":"city","parent":{"adcode":210000},"subFeatureIndex":12,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.027503,42.243394],[121.006456,42.254839],[121.012221,42.259014],[120.992842,42.264407],[120.984576,42.261593],[120.970267,42.262343],[120.961584,42.266142],[120.959709,42.273363],[120.933106,42.27927],[120.930188,42.274535],[120.912545,42.272238],[120.905599,42.267971],[120.890109,42.271816],[120.88226,42.26586],[120.892054,42.254558],[120.883094,42.242832],[120.867049,42.251791],[120.834749,42.24771],[120.829401,42.252494],[120.823775,42.241143],[120.827734,42.234903],[120.820857,42.228053],[120.804187,42.225707],[120.790503,42.218527],[120.745284,42.223501],[120.73813,42.22078],[120.722084,42.203696],[120.696662,42.198157],[120.68916,42.187876],[120.650887,42.169985],[120.6247,42.154531],[120.584205,42.167167],[120.567673,42.151948],[120.551003,42.143397],[120.536208,42.140296],[120.494879,42.120042],[120.480917,42.115764],[120.466539,42.105328],[120.469525,42.097806],[120.480153,42.091082],[120.487933,42.09569],[120.498629,42.092116],[120.496337,42.087931],[120.482862,42.086003],[120.493489,42.072975],[120.482931,42.063614],[120.450841,42.05731],[120.453133,42.037971],[120.451744,42.022862],[120.456467,42.016318],[120.438407,42.006148],[120.42771,42.007373],[120.422987,42.001534],[120.41097,41.996778],[120.422014,41.986181],[120.399579,41.984815],[120.373531,41.994706],[120.346302,41.977938],[120.332827,41.979162],[120.336508,41.971248],[120.33241,41.963521],[120.309905,41.951835],[120.310461,41.941608],[120.31699,41.938968],[120.307821,41.927089],[120.304279,41.934867],[120.286913,41.93482],[120.280662,41.925628],[120.290317,41.918555],[120.280593,41.916858],[120.273091,41.92591],[120.266839,41.914878],[120.269965,41.908606],[120.260449,41.904739],[120.273855,41.89856],[120.291567,41.896532],[120.30018,41.887947],[120.288164,41.880399],[120.274549,41.883183],[120.251627,41.883985],[120.228011,41.865913],[120.215994,41.85336],[120.188418,41.848215],[120.183487,41.842314],[120.18307,41.826498],[120.163135,41.80893],[120.149243,41.792255],[120.127154,41.772646],[120.123751,41.762106],[120.131252,41.736861],[120.138268,41.729295],[120.131391,41.721965],[120.11354,41.713167],[120.104927,41.702334],[120.096175,41.697083],[120.071725,41.697556],[120.044079,41.708626],[120.035258,41.708863],[120.036508,41.725323],[120.0247,41.738233],[120.035952,41.7475],[120.037272,41.763808],[120.044288,41.765982],[120.05172,41.776096],[120.043176,41.774442],[120.033591,41.779451],[120.042898,41.787814],[120.045885,41.804065],[120.041787,41.818754],[120.048733,41.825979],[120.023797,41.81592],[120.017962,41.82867],[120.006432,41.862185],[119.995248,41.868037],[119.991914,41.874313],[119.991845,41.894645],[119.978161,41.908983],[119.961768,41.913557],[119.954475,41.920394],[119.960101,41.937884],[119.956489,41.961966],[119.950724,41.974263],[119.924468,41.989195],[119.927802,41.999179],[119.921273,42.014247],[119.907659,42.018766],[119.897239,42.030958],[119.902727,42.041312],[119.900226,42.045971],[119.883486,42.053782],[119.882583,42.066155],[119.869733,42.083464],[119.84563,42.097289],[119.842227,42.103542],[119.842504,42.125728],[119.837851,42.135268],[119.839796,42.148706],[119.85473,42.170172],[119.856952,42.182898],[119.852924,42.209798],[119.846742,42.215242],[119.806038,42.213083],[119.790965,42.215242],[119.788395,42.211394],[119.765681,42.214397],[119.744565,42.211628],[119.732757,42.221859],[119.721504,42.220029],[119.719906,42.229461],[119.704069,42.223501],[119.680036,42.240721],[119.64225,42.240627],[119.634678,42.25104],[119.626482,42.255449],[119.617035,42.252635],[119.608908,42.276692],[119.584597,42.27852],[119.582791,42.285599],[119.573275,42.280583],[119.565704,42.294365],[119.554243,42.289115],[119.553479,42.294084],[119.541393,42.292162],[119.543824,42.306972],[119.557369,42.319249],[119.553201,42.324778],[119.565704,42.328198],[119.57133,42.335693],[119.572164,42.359343],[119.54431,42.366366],[119.539934,42.363417],[119.502356,42.388039],[119.498952,42.372078],[119.489575,42.353162],[119.48256,42.34698],[119.452692,42.332695],[119.438522,42.328151],[119.431923,42.316485],[119.422685,42.315548],[119.415669,42.309643],[119.393303,42.307956],[119.373715,42.299614],[119.362532,42.303083],[119.348223,42.300552],[119.337179,42.294224],[119.327593,42.282505],[119.305713,42.268768],[119.284458,42.265157],[119.278693,42.257325],[119.276192,42.242785],[119.271052,42.235325],[119.252089,42.218152],[119.247922,42.205761],[119.237919,42.20088],[119.249658,42.187829],[119.264592,42.189002],[119.276331,42.186044],[119.276331,42.174822],[119.282582,42.170924],[119.290084,42.152464],[119.307449,42.148189],[119.304393,42.129018],[119.315993,42.119243],[119.35239,42.118208],[119.362532,42.109418],[119.373506,42.106457],[119.377952,42.095972],[119.385037,42.08953],[119.384134,42.077303],[119.37816,42.062485],[119.383439,42.057875],[119.381008,42.040135],[119.376563,42.037265],[119.375382,42.023285],[119.349404,41.98976],[119.33051,41.977938],[119.324606,41.96894],[119.330371,41.957631],[119.330094,41.947075],[119.324259,41.940053],[119.326482,41.933736],[119.336553,41.931049],[119.340929,41.921903],[119.333497,41.911388],[119.336276,41.904692],[119.323773,41.890164],[119.328079,41.877002],[119.334053,41.872472],[119.325856,41.858268],[119.326551,41.850905],[119.316896,41.83495],[119.319466,41.831456],[119.312728,41.805718],[119.297378,41.795987],[119.290154,41.783373],[119.299878,41.771937],[119.317868,41.76395],[119.311964,41.750903],[119.300712,41.743859],[119.311895,41.741542],[119.319119,41.72764],[119.306338,41.720641],[119.2996,41.71014],[119.304115,41.694244],[119.313909,41.68194],[119.313354,41.664238],[119.308005,41.657468],[119.313006,41.640091],[119.319536,41.644022],[119.341277,41.623704],[119.343152,41.617072],[119.360656,41.608781],[119.379411,41.604801],[119.386357,41.598499],[119.397192,41.597409],[119.416711,41.589353],[119.419906,41.581533],[119.411293,41.580679],[119.419906,41.568686],[119.414349,41.562096],[119.403236,41.566505],[119.3924,41.56385],[119.387746,41.567122],[119.376702,41.564941],[119.362115,41.566505],[119.368783,41.556122],[119.362462,41.554462],[119.3717,41.536867],[119.383439,41.531697],[119.3833,41.52183],[119.394553,41.521972],[119.404903,41.510253],[119.405806,41.50304],[119.398512,41.503514],[119.404972,41.487709],[119.403444,41.475129],[119.378021,41.459745],[119.372326,41.436186],[119.376285,41.422123],[119.365032,41.42103],[119.348917,41.411004],[119.322383,41.405681],[119.30988,41.405966],[119.309464,41.396365],[119.330649,41.385145],[119.325856,41.374019],[119.318007,41.369169],[119.331066,41.340963],[119.326273,41.329401],[119.314257,41.334017],[119.314604,41.348194],[119.306338,41.33178],[119.296336,41.325166],[119.270218,41.323358],[119.252089,41.325642],[119.240211,41.319075],[119.241184,41.298893],[119.246671,41.292085],[119.248338,41.276657],[119.230973,41.256463],[119.219443,41.256701],[119.215553,41.244695],[119.20951,41.244505],[119.209788,41.225777],[119.197493,41.222203],[119.16964,41.222918],[119.166514,41.212956],[119.185199,41.203755],[119.18888,41.198177],[119.184296,41.182727],[119.178947,41.177815],[119.158595,41.169658],[119.13609,41.145279],[119.126366,41.138646],[119.088648,41.136069],[119.081216,41.131439],[119.079341,41.109481],[119.08066,41.095968],[119.073784,41.08422],[119.059822,41.077628],[119.050862,41.080351],[119.04211,41.075717],[119.037525,41.067357],[119.028357,41.063726],[119.029607,41.070272],[119.008352,41.068599],[118.98675,41.077341],[118.969871,41.076529],[118.964314,41.079204],[118.946532,41.058996],[118.937085,41.052832],[118.936182,41.037492],[118.941253,41.02774],[118.952019,41.018418],[118.960702,41.01598],[119.000017,41.010864],[119.013562,41.007612],[119.020438,40.997857],[119.005087,40.984273],[119.000572,40.96705],[118.992584,40.967433],[118.97126,40.959968],[118.946463,40.95815],[118.917011,40.968629],[118.903466,40.961787],[118.899368,40.954034],[118.900063,40.942644],[118.89395,40.93149],[118.894506,40.924787],[118.88631,40.925027],[118.891728,40.903383],[118.889991,40.890115],[118.880822,40.862709],[118.87339,40.856958],[118.872973,40.848043],[118.855052,40.840612],[118.852343,40.826277],[118.846231,40.822105],[118.849079,40.800955],[118.861512,40.802682],[118.865958,40.794527],[118.876099,40.790162],[118.87853,40.783253],[118.892978,40.777879],[118.901313,40.781238],[118.910968,40.776775],[118.895478,40.754026],[118.906939,40.75657],[118.92236,40.751482],[118.943684,40.749994],[118.955076,40.742793],[118.960841,40.720561],[118.982096,40.706872],[118.987722,40.697937],[119.001823,40.696015],[119.01245,40.687223],[119.027315,40.69246],[119.048709,40.681505],[119.054543,40.664732],[119.063156,40.662953],[119.070033,40.670067],[119.081563,40.671893],[119.095108,40.663338],[119.115113,40.66651],[119.138174,40.678573],[119.153316,40.688712],[119.165541,40.692748],[119.176238,40.690154],[119.185824,40.675738],[119.173182,40.654301],[119.14512,40.634588],[119.158873,40.618861],[119.157623,40.605152],[119.162555,40.600052],[119.178183,40.609337],[119.185407,40.609818],[119.206454,40.603805],[119.230834,40.603853],[119.235905,40.597117],[119.24681,40.608038],[119.250839,40.617515],[119.260494,40.619631],[119.265912,40.609193],[119.27779,40.606595],[119.296475,40.614148],[119.295849,40.620208],[119.323634,40.643435],[119.333011,40.657281],[119.345861,40.669154],[119.363782,40.679486],[119.374757,40.681361],[119.390316,40.67915],[119.404903,40.685445],[119.419489,40.696112],[119.426088,40.70865],[119.42588,40.719216],[119.432131,40.730838],[119.459638,40.75321],[119.454359,40.755466],[119.464222,40.764634],[119.478948,40.760074],[119.494646,40.763578],[119.505273,40.771017],[119.515553,40.797837],[119.527153,40.808342],[119.531321,40.816399],[119.528126,40.834812],[119.535141,40.837065],[119.549311,40.833229],[119.572928,40.818269],[119.585639,40.822297],[119.608561,40.840277],[119.638082,40.829921],[119.647806,40.816591],[119.658087,40.808534],[119.658087,40.808534],[119.660657,40.793328],[119.670451,40.782245],[119.684412,40.78047],[119.691358,40.791265],[119.691358,40.798941],[119.699138,40.803306],[119.711154,40.818557],[119.712405,40.826229],[119.695387,40.824024],[119.69504,40.835627],[119.705459,40.840756],[119.706223,40.849385],[119.715183,40.861223],[119.728033,40.860121],[119.741439,40.86774],[119.747274,40.858539],[119.763945,40.858539],[119.781171,40.846605],[119.785894,40.856287],[119.795271,40.854465],[119.802356,40.870136],[119.815832,40.872245],[119.826181,40.886378],[119.826042,40.896102],[119.818957,40.929719],[119.832433,40.936134],[119.834864,40.928426],[119.850145,40.928761],[119.859453,40.924404],[119.8689,40.912482],[119.895225,40.913392],[119.908006,40.909992],[119.917175,40.931969],[119.932734,40.937713],[119.938916,40.947047],[119.951905,40.947191],[119.959962,40.933596],[119.967395,40.927995],[119.979967,40.933213],[119.99629,40.948579],[120.006362,40.964658],[120.007057,40.977719],[120.016295,40.983938],[120.015948,40.989917],[120.023658,40.993217],[120.02977,41.003021],[120.023519,41.008234],[120.018726,41.027454],[120.018101,41.039881],[120.009002,41.043275],[120.004626,41.062054],[119.993651,41.067118],[119.999485,41.075574],[120.015392,41.081019],[120.022685,41.080446],[120.028798,41.086321],[120.056721,41.091575],[120.062417,41.10165],[120.078601,41.100886],[120.0852,41.093007],[120.099439,41.088375],[120.112845,41.087802],[120.119236,41.076291],[120.110761,41.070367],[120.108747,41.063057],[120.119791,41.060669],[120.12764,41.04791],[120.146186,41.006991],[120.153757,41.010625],[120.170497,41.02731],[120.178624,41.027501],[120.188557,41.001013],[120.199185,41.001013],[120.205019,40.9914],[120.204464,40.973988],[120.193281,40.96882],[120.190016,40.956906],[120.173762,40.955183],[120.176402,40.948961],[120.166886,40.943649],[120.169247,40.926942],[120.179875,40.922202],[120.196823,40.923543],[120.203908,40.93283],[120.208284,40.946712],[120.218425,40.956954],[120.239125,40.951067],[120.252183,40.959011],[120.257045,40.945372],[120.266909,40.947573],[120.279481,40.945659],[120.290873,40.96193],[120.290525,40.973031],[120.30407,40.973318],[120.30539,40.985038],[120.318379,40.994317],[120.320532,41.000439],[120.328937,41.001348],[120.33505,40.995609],[120.338314,41.002735],[120.348595,41.001013],[120.339495,40.996804],[120.381936,40.973557],[120.388326,40.972839],[120.399926,40.955805],[120.406594,40.953269],[120.418958,40.956427],[120.42514,40.96394],[120.444867,40.977719],[120.454383,40.990778],[120.451813,40.998],[120.459037,41.001013],[120.455494,41.015167],[120.457439,41.030178],[120.4548,41.051494],[120.456675,41.058662],[120.477027,41.077628],[120.49724,41.079013],[120.507729,41.068122],[120.527525,41.062245],[120.536069,41.066975],[120.537527,41.092625],[120.560866,41.098642],[120.598653,41.105661],[120.603446,41.117788],[120.602543,41.127812],[120.613309,41.143466],[120.611572,41.15549],[120.615045,41.16131],[120.63637,41.168752],[120.64026,41.18411],[120.657277,41.183347],[120.664154,41.177815],[120.676726,41.18101],[120.690202,41.195507],[120.701385,41.199035],[120.698259,41.184444],[120.727224,41.187067],[120.735976,41.194458],[120.746604,41.198129],[120.7639,41.18988],[120.771471,41.194219],[120.763761,41.195745],[120.769317,41.202325],[120.76383,41.210048],[120.752647,41.213003],[120.742714,41.221297],[120.734448,41.218199],[120.720348,41.219581],[120.720626,41.22816],[120.730697,41.230972],[120.738407,41.240264],[120.746882,41.241217],[120.763969,41.248745],[120.769734,41.248554],[120.764038,41.261559],[120.755981,41.261559],[120.753272,41.26818],[120.737504,41.270943],[120.733337,41.2748],[120.737366,41.288467],[120.749243,41.292085],[120.755564,41.302416],[120.751605,41.307938],[120.748201,41.32431],[120.756606,41.337062],[120.752716,41.341962],[120.758829,41.357422],[120.770082,41.358278],[120.774527,41.368266],[120.768414,41.36955],[120.77029,41.376587],[120.778903,41.378489],[120.791336,41.396079],[120.79995,41.395319],[120.815995,41.405681],[120.805506,41.42141],[120.812036,41.425972],[120.819746,41.421458],[120.822385,41.409673],[120.833082,41.398171],[120.843015,41.404588],[120.842043,41.418274],[120.849753,41.423834],[120.864687,41.416231],[120.870799,41.421315],[120.883719,41.421173],[120.876009,41.435189],[120.878579,41.449582],[120.877537,41.476554],[120.893582,41.475699],[120.897472,41.471473],[120.904974,41.481159],[120.896986,41.485431],[120.902265,41.50005],[120.901223,41.512293],[120.906016,41.523443],[120.91456,41.527855],[120.924354,41.524866],[120.92616,41.531128],[120.936509,41.531128],[120.940121,41.537579],[120.957347,41.541326],[120.956375,41.545073],[120.981728,41.566695],[120.97374,41.583666],[120.976032,41.5994],[120.984159,41.600442],[120.997218,41.596035],[121.005067,41.604612],[121.014444,41.60826],[121.030698,41.607218],[121.04848,41.616125],[121.056051,41.626214],[121.06258,41.621099],[121.067442,41.629577],[121.072235,41.624604],[121.066956,41.618304],[121.09349,41.615982],[121.105715,41.624178],[121.111272,41.619441],[121.123914,41.633366],[121.122247,41.63886],[121.139265,41.648331],[121.147114,41.649278],[121.146905,41.658605],[121.156283,41.671055],[121.167118,41.666984],[121.173926,41.673847],[121.17844,41.664806],[121.194208,41.678059],[121.20164,41.673752],[121.210531,41.677965],[121.224493,41.678059],[121.226716,41.688707],[121.218102,41.689606],[121.233453,41.721539],[121.22227,41.730619],[121.215949,41.740218],[121.227549,41.753456],[121.226785,41.763241],[121.261307,41.774489],[121.256097,41.778789],[121.263669,41.794523],[121.272699,41.803593],[121.268392,41.82069],[121.277283,41.826876],[121.290689,41.856286],[121.301941,41.86563],[121.298885,41.884079],[121.292564,41.889881],[121.26353,41.89823],[121.238524,41.903607],[121.212962,41.914925],[121.199834,41.955464],[121.192055,41.966113],[121.163159,41.977514],[121.149962,41.976996],[121.104882,41.964935],[121.079529,41.973651],[121.074527,41.978786],[121.053967,41.977938],[121.041534,41.980152],[121.039311,41.987735],[121.050563,42.005113],[121.05487,42.018484],[121.052717,42.03124],[121.044451,42.051476],[121.046118,42.058863],[121.066748,42.071564],[121.074597,42.101896],[121.08453,42.111205],[121.078,42.136443],[121.072513,42.143115],[121.071541,42.154062],[121.055356,42.175291],[121.055009,42.187688],[121.050841,42.19243],[121.057579,42.207874],[121.055842,42.219137],[121.047368,42.229742],[121.033615,42.23678],[121.027503,42.243394]]]]}},{"type":"Feature","properties":{"adcode":211400,"name":"葫芦岛市","center":[120.856394,40.755572],"centroid":[120.21031,40.620597],"childrenNum":6,"level":"city","parent":{"adcode":210000},"subFeatureIndex":13,"acroutes":[100000,210000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.030003,40.790545],[121.008748,40.843393],[121.00729,40.852884],[121.011596,40.863955],[121.02007,40.868219],[121.030628,40.884031],[121.033962,40.907166],[121.029031,40.913296],[121.036394,40.922394],[121.023613,40.928187],[121.036949,40.933884],[121.034171,40.943649],[121.024655,40.942261],[121.02521,40.95011],[121.017292,40.942261],[121.00986,40.956092],[121.015625,40.957145],[121.015972,40.973318],[121.011666,40.972887],[121.016736,40.99867],[121.032295,41.033668],[121.034726,41.050491],[121.006664,41.035819],[120.99055,41.033381],[120.980269,41.040837],[120.982978,41.045377],[120.964293,41.050108],[120.954986,41.045903],[120.944706,41.051877],[120.942761,41.061433],[120.948456,41.090046],[120.943664,41.099454],[120.938315,41.123803],[120.930605,41.117549],[120.914073,41.123659],[120.90935,41.121082],[120.898584,41.130962],[120.910114,41.134923],[120.907683,41.145661],[120.895805,41.144659],[120.888581,41.15153],[120.876078,41.156062],[120.850725,41.14065],[120.842876,41.132155],[120.834472,41.131535],[120.825233,41.140889],[120.805923,41.147379],[120.805576,41.158114],[120.788489,41.161835],[120.784251,41.170278],[120.795851,41.182441],[120.786752,41.20099],[120.781195,41.202658],[120.771471,41.194219],[120.7639,41.18988],[120.746604,41.198129],[120.735976,41.194458],[120.727224,41.187067],[120.698259,41.184444],[120.701385,41.199035],[120.690202,41.195507],[120.676726,41.18101],[120.664154,41.177815],[120.657277,41.183347],[120.64026,41.18411],[120.63637,41.168752],[120.615045,41.16131],[120.611572,41.15549],[120.613309,41.143466],[120.602543,41.127812],[120.603446,41.117788],[120.598653,41.105661],[120.560866,41.098642],[120.537527,41.092625],[120.536069,41.066975],[120.527525,41.062245],[120.507729,41.068122],[120.49724,41.079013],[120.477027,41.077628],[120.456675,41.058662],[120.4548,41.051494],[120.457439,41.030178],[120.455494,41.015167],[120.459037,41.001013],[120.451813,40.998],[120.454383,40.990778],[120.444867,40.977719],[120.42514,40.96394],[120.418958,40.956427],[120.406594,40.953269],[120.399926,40.955805],[120.388326,40.972839],[120.381936,40.973557],[120.339495,40.996804],[120.348595,41.001013],[120.338314,41.002735],[120.33505,40.995609],[120.328937,41.001348],[120.320532,41.000439],[120.318379,40.994317],[120.30539,40.985038],[120.30407,40.973318],[120.290525,40.973031],[120.290873,40.96193],[120.279481,40.945659],[120.266909,40.947573],[120.257045,40.945372],[120.252183,40.959011],[120.239125,40.951067],[120.218425,40.956954],[120.208284,40.946712],[120.203908,40.93283],[120.196823,40.923543],[120.179875,40.922202],[120.169247,40.926942],[120.166886,40.943649],[120.176402,40.948961],[120.173762,40.955183],[120.190016,40.956906],[120.193281,40.96882],[120.204464,40.973988],[120.205019,40.9914],[120.199185,41.001013],[120.188557,41.001013],[120.178624,41.027501],[120.170497,41.02731],[120.153757,41.010625],[120.146186,41.006991],[120.12764,41.04791],[120.119791,41.060669],[120.108747,41.063057],[120.110761,41.070367],[120.119236,41.076291],[120.112845,41.087802],[120.099439,41.088375],[120.0852,41.093007],[120.078601,41.100886],[120.062417,41.10165],[120.056721,41.091575],[120.028798,41.086321],[120.022685,41.080446],[120.015392,41.081019],[119.999485,41.075574],[119.993651,41.067118],[120.004626,41.062054],[120.009002,41.043275],[120.018101,41.039881],[120.018726,41.027454],[120.023519,41.008234],[120.02977,41.003021],[120.023658,40.993217],[120.015948,40.989917],[120.016295,40.983938],[120.007057,40.977719],[120.006362,40.964658],[119.99629,40.948579],[119.979967,40.933213],[119.967395,40.927995],[119.959962,40.933596],[119.951905,40.947191],[119.938916,40.947047],[119.932734,40.937713],[119.917175,40.931969],[119.908006,40.909992],[119.895225,40.913392],[119.8689,40.912482],[119.859453,40.924404],[119.850145,40.928761],[119.834864,40.928426],[119.832433,40.936134],[119.818957,40.929719],[119.826042,40.896102],[119.826181,40.886378],[119.815832,40.872245],[119.802356,40.870136],[119.795271,40.854465],[119.785894,40.856287],[119.781171,40.846605],[119.763945,40.858539],[119.747274,40.858539],[119.741439,40.86774],[119.728033,40.860121],[119.715183,40.861223],[119.706223,40.849385],[119.705459,40.840756],[119.69504,40.835627],[119.695387,40.824024],[119.712405,40.826229],[119.711154,40.818557],[119.699138,40.803306],[119.691358,40.798941],[119.691358,40.791265],[119.684412,40.78047],[119.670451,40.782245],[119.660657,40.793328],[119.658087,40.808534],[119.658087,40.808534],[119.647806,40.816591],[119.638082,40.829921],[119.608561,40.840277],[119.585639,40.822297],[119.572928,40.818269],[119.549311,40.833229],[119.535141,40.837065],[119.528126,40.834812],[119.531321,40.816399],[119.527153,40.808342],[119.515553,40.797837],[119.505273,40.771017],[119.494646,40.763578],[119.478948,40.760074],[119.464222,40.764634],[119.454359,40.755466],[119.459638,40.75321],[119.432131,40.730838],[119.42588,40.719216],[119.426088,40.70865],[119.419489,40.696112],[119.404903,40.685445],[119.390316,40.67915],[119.374757,40.681361],[119.363782,40.679486],[119.345861,40.669154],[119.333011,40.657281],[119.323634,40.643435],[119.295849,40.620208],[119.296475,40.614148],[119.27779,40.606595],[119.265912,40.609193],[119.260494,40.619631],[119.250839,40.617515],[119.24681,40.608038],[119.235905,40.597117],[119.232918,40.58937],[119.21979,40.578542],[119.220624,40.569109],[119.256118,40.543303],[119.27647,40.535021],[119.30217,40.530301],[119.338081,40.531264],[119.361837,40.537332],[119.381147,40.538921],[119.393719,40.537043],[119.441856,40.539885],[119.460541,40.534972],[119.477836,40.533335],[119.491034,40.536176],[119.503884,40.553945],[119.520277,40.547396],[119.534238,40.554233],[119.559036,40.54783],[119.572997,40.538536],[119.571955,40.523654],[119.555424,40.516814],[119.550909,40.509395],[119.553548,40.501783],[119.571747,40.488194],[119.575984,40.477349],[119.59071,40.47142],[119.604949,40.455029],[119.601754,40.445047],[119.593488,40.435643],[119.600434,40.406843],[119.591404,40.392945],[119.586681,40.375472],[119.599809,40.356547],[119.598142,40.334186],[119.616202,40.318341],[119.62287,40.301138],[119.64218,40.291327],[119.651905,40.272426],[119.642111,40.265077],[119.643986,40.259468],[119.633497,40.249409],[119.625162,40.224158],[119.639541,40.229722],[119.647667,40.229286],[119.666283,40.239252],[119.671562,40.23959],[119.676216,40.224497],[119.69629,40.208819],[119.716781,40.196091],[119.719281,40.204996],[119.73109,40.205771],[119.734076,40.200157],[119.745954,40.207948],[119.751233,40.187814],[119.752761,40.170481],[119.757554,40.158036],[119.75547,40.153145],[119.762625,40.13997],[119.755887,40.128052],[119.736716,40.10484],[119.762347,40.085596],[119.771585,40.082251],[119.760471,40.065619],[119.767556,40.059266],[119.770891,40.048789],[119.779782,40.049517],[119.796035,40.040155],[119.807635,40.044084],[119.816943,40.052864],[119.824375,40.047722],[119.835003,40.050245],[119.844658,40.037098],[119.854243,40.032295],[119.839796,40.006284],[119.846186,40.004828],[119.854243,39.988469],[119.864593,39.989925],[119.89071,39.987595],[119.913979,39.988469],[119.934748,40.001964],[119.94225,40.012108],[119.9435,40.029723],[119.94739,40.040252],[119.955864,40.046704],[119.973368,40.051166],[120.001361,40.054513],[120.025742,40.059848],[120.092215,40.077596],[120.123334,40.073766],[120.134309,40.07459],[120.161745,40.096019],[120.22037,40.109396],[120.272952,40.12718],[120.330743,40.155421],[120.371725,40.174549],[120.397634,40.179971],[120.450979,40.177647],[120.465149,40.178761],[120.483279,40.190379],[120.49731,40.210029],[120.511132,40.248442],[120.523913,40.256711],[120.524747,40.270589],[120.521413,40.292971],[120.521968,40.304666],[120.531832,40.321288],[120.537527,40.325394],[120.570243,40.336794],[120.595666,40.351669],[120.602334,40.360941],[120.601778,40.382472],[120.595596,40.390967],[120.596222,40.398978],[120.606571,40.404093],[120.615809,40.413212],[120.616435,40.444854],[120.622408,40.451943],[120.619005,40.459995],[120.639634,40.468142],[120.667002,40.467467],[120.676657,40.474313],[120.694022,40.505685],[120.709303,40.507853],[120.722015,40.515465],[120.724029,40.53112],[120.728127,40.539355],[120.772165,40.560203],[120.799324,40.575847],[120.822733,40.594134],[120.827525,40.606643],[120.831485,40.635405],[120.83718,40.651753],[120.830582,40.665309],[120.831624,40.674344],[120.847044,40.682274],[120.858505,40.68458],[120.876634,40.681216],[120.893096,40.685253],[120.942622,40.686935],[120.953944,40.696688],[120.971378,40.697505],[120.983534,40.71278],[121.010624,40.707209],[121.032295,40.709082],[121.039728,40.714173],[121.042506,40.726372],[121.035004,40.742409],[121.028753,40.746346],[120.994856,40.74673],[120.987702,40.743177],[120.979366,40.749658],[120.980478,40.76641],[120.996593,40.776823],[120.995829,40.78877],[120.990063,40.795007],[120.978186,40.797981],[120.971795,40.805704],[120.978463,40.811891],[120.979853,40.820427],[120.992842,40.808725],[121.007359,40.80767],[121.010971,40.784644],[121.023752,40.779126],[121.030003,40.790545]]],[[[120.786544,40.47359],[120.800505,40.486796],[120.82308,40.48723],[120.832804,40.492097],[120.831832,40.512575],[120.82183,40.517777],[120.822108,40.522787],[120.812383,40.521776],[120.806618,40.526833],[120.809466,40.516188],[120.802381,40.51296],[120.792934,40.515176],[120.793004,40.499711],[120.781056,40.498506],[120.775152,40.489495],[120.774458,40.480097],[120.786544,40.47359]]],[[[120.614837,40.396661],[120.620672,40.396323],[120.621366,40.406216],[120.614837,40.396661]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"皇姑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.4311340625,41.8491274238282],[123.437345,41.823843],[123.437345,41.813843],[123.427345,41.813843],[123.410704375,41.8104836250001],[123.397345,41.8038430000001],[123.393985625,41.8104836250001],[123.360704375,41.8172023750001],[123.347345,41.823843],[123.354796171875,41.8388283515626],[123.3458215625,41.8572023750001],[123.373985625,41.8504836250001],[123.3841028125,41.830483625],[123.403985625,41.837202375],[123.410704375,41.880483625],[123.447345,41.883843],[123.4311340625,41.8491274238282]]]]}},{"type":"Feature","properties":{"name":"大东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.494439726563,41.7767494941407],[123.477345,41.773843],[123.45170046875,41.8081996894532],[123.447345,41.823843],[123.46062625,41.83056175],[123.467345,41.843843],[123.528033476563,41.8407534003907],[123.504581328125,41.8146181464844],[123.51716921875,41.7971450019532],[123.494439726563,41.7767494941407]]],[[[123.501685820313,41.8903041816407],[123.504801054688,41.8597695136719],[123.467345,41.8738430000001],[123.479107695313,41.88800315625],[123.501685820313,41.8903041816407]]]]}},{"type":"Feature","properties":{"name":"东陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.467345,41.8738430000001],[123.504801054688,41.8597695136719],[123.501685820313,41.8903041816407],[123.479107695313,41.88800315625],[123.447345,41.883843],[123.447345,41.903843],[123.472760039063,41.8976003242188],[123.497261992188,41.9135561347656],[123.55326296875,41.9279274726563],[123.595987578125,41.9458730292969],[123.640230742188,41.9359548164063],[123.681300078125,41.9626967597657],[123.717345,41.9538430000001],[123.722896757813,41.9492336250001],[123.721803007813,41.9385207343751],[123.7358215625,41.9140456367188],[123.722808867188,41.8983803535157],[123.711324492188,41.888843],[123.74076296875,41.8643910957031],[123.712808867188,41.8483803535156],[123.67166140625,41.8305361152344],[123.673834257813,41.809233625],[123.652808867188,41.7917678046875],[123.703414335938,41.7728810859375],[123.777345,41.7938430000001],[123.770631132813,41.7642873359375],[123.807335234375,41.7018447089844],[123.791793242188,41.6893959785157],[123.781632109375,41.6652834296875],[123.747940703125,41.6383058906251],[123.757345,41.6138430000001],[123.678761015625,41.6083901191407],[123.642345,41.6098342109376],[123.612345,41.6086452460937],[123.602345,41.6090407539063],[123.592174101563,41.608637921875],[123.549327421875,41.6381215644531],[123.509595976563,41.6170961738282],[123.452535429688,41.6290334296875],[123.382154570313,41.6386525703125],[123.362535429688,41.6501210761719],[123.401475859375,41.6862026191407],[123.359971953125,41.6993434882813],[123.322408476563,41.6978542304688],[123.317345,41.713843],[123.327345,41.713843],[123.327345,41.7238430000001],[123.35142703125,41.7397585273437],[123.367345,41.743843],[123.394635039063,41.7618776679688],[123.427345,41.753843],[123.45142703125,41.7697585273438],[123.477345,41.773843],[123.494439726563,41.7767494941407],[123.51716921875,41.7971450019532],[123.504581328125,41.8146181464844],[123.528033476563,41.8407534003907],[123.467345,41.843843],[123.467345,41.8738430000001]]]]}},{"type":"Feature","properties":{"name":"法库县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.627257109375,42.6394887519531],[123.65326296875,42.6297585273438],[123.66142703125,42.6079274726563],[123.68326296875,42.5997585273438],[123.693443632813,42.5725429511719],[123.727345,42.5638430000001],[123.730343046875,42.5568398261719],[123.760260039063,42.54937034375],[123.747345,42.543843],[123.707261992188,42.5335561347656],[123.68326296875,42.5179274726563],[123.647345,42.513843],[123.660894804688,42.5507350898438],[123.620113554688,42.5474587226563],[123.602345,42.5076381660157],[123.57662234375,42.5097048164062],[123.50271609375,42.4684706855469],[123.47197390625,42.4592153144532],[123.451236601563,42.4476454902344],[123.452955351563,42.4262404609375],[123.472926054688,42.4090358710937],[123.461749296875,42.3786098457032],[123.517345,42.343843],[123.523726835938,42.3286452460938],[123.51142703125,42.3097585273437],[123.50326296875,42.2779274726563],[123.473204375,42.2666811347656],[123.46326296875,42.2279274726563],[123.447550078125,42.2037990546876],[123.467345,42.1738430000001],[123.452623320313,42.1676601386719],[123.442345,42.1699636054688],[123.4141028125,42.1636330390626],[123.40326296875,42.1479274726562],[123.370548125,42.1356874824219],[123.337345,42.1438430000001],[123.331832304688,42.1509841132813],[123.30978640625,42.1477260566406],[123.292857695313,42.1696572089844],[123.250806914063,42.1634438300782],[123.25677859375,42.203843],[123.22170046875,42.2181996894532],[123.210806914063,42.2323110175781],[123.176485625,42.2272377753906],[123.11654421875,42.2716799140625],[123.082345,42.266626203125],[123.05978640625,42.2699599433594],[123.041275664063,42.2459804511719],[122.982486601563,42.2596034980469],[122.953883085938,42.2553762031251],[122.892271757813,42.2696535468751],[122.845826445313,42.2561110664063],[122.807345,42.2617983222656],[122.755611601563,42.2541542792969],[122.747345,42.283843],[122.752061796875,42.2891237617187],[122.793189726563,42.3079994941406],[122.849268828125,42.3384743476563],[122.902003203125,42.3507436347657],[122.882061796875,42.3685622382813],[122.856236601563,42.3974672675782],[122.821715117188,42.4133107734375],[122.822642851563,42.428843],[122.81822390625,42.5029628730469],[122.897877226563,42.4982155585938],[122.912061796875,42.5291237617188],[122.95197390625,42.5474416328126],[122.967345,42.573843],[122.990616484375,42.5650991035157],[123.032701445313,42.5693886542969],[123.094976835938,42.5201039863281],[123.121954375,42.5173537421875],[123.139420195313,42.5383803535156],[123.192808867188,42.5293056464844],[123.212432890625,42.5180666328126],[123.261881132813,42.5593056464844],[123.287398710938,42.5703713203126],[123.332808867188,42.5983803535157],[123.342769804688,42.6213478828126],[123.45755984375,42.6096474433594],[123.506627226563,42.6377504707032],[123.522345,42.6393520332031],[123.542345,42.6373146796875],[123.567345,42.6398622871094],[123.582667265625,42.6383010078126],[123.601881132813,42.6493056464844],[123.617345,42.653843],[123.627257109375,42.6394887519531]]]]}},{"type":"Feature","properties":{"name":"和平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.418048125,41.7917031074219],[123.427345,41.753843],[123.394635039063,41.7618776679688],[123.367345,41.743843],[123.367345,41.7638430000001],[123.373985625,41.767202375],[123.390704375,41.800483625],[123.397345,41.8038430000001],[123.410704375,41.8104836250001],[123.427345,41.813843],[123.418048125,41.7917031074219]]]]}},{"type":"Feature","properties":{"name":"康平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.59361453125,42.7781728339844],[123.576925078125,42.7666469550782],[123.558409453125,42.7225661445313],[123.573565703125,42.6992897773438],[123.57107546875,42.6881728339844],[123.58361453125,42.6795131660156],[123.58037234375,42.6650380683594],[123.6126184375,42.6722670722656],[123.617345,42.653843],[123.601881132813,42.6493056464844],[123.582667265625,42.6383010078126],[123.567345,42.6398622871094],[123.542345,42.6373146796875],[123.522345,42.6393520332031],[123.506627226563,42.6377504707032],[123.45755984375,42.6096474433594],[123.342769804688,42.6213478828126],[123.332808867188,42.5983803535157],[123.287398710938,42.5703713203126],[123.261881132813,42.5593056464844],[123.212432890625,42.5180666328126],[123.192808867188,42.5293056464844],[123.139420195313,42.5383803535156],[123.121954375,42.5173537421875],[123.094976835938,42.5201039863281],[123.032701445313,42.5693886542969],[122.990616484375,42.5650991035157],[122.967345,42.573843],[122.92166140625,42.5823696113281],[122.9226575,42.5990956855469],[122.910220976563,42.6102065253907],[122.863101835938,42.6073976875],[122.852628203125,42.6191237617188],[122.842061796875,42.6285622382813],[122.823609648438,42.6492165351563],[122.812345,42.6485451484375],[122.802345,42.6491408515626],[122.79209109375,42.6485305],[122.774429960938,42.668296125],[122.743468046875,42.6825075507813],[122.78709109375,42.7214870429688],[122.837345,42.7138430000001],[122.859556914063,42.7316310859375],[122.888472929688,42.767739484375],[122.919210234375,42.7715627265626],[122.956143828125,42.7498537421875],[122.975513945313,42.7740456367188],[123.027345,42.7675991035156],[123.042345,42.7694643378907],[123.052706328125,42.7681764960938],[123.09068484375,42.7905019355469],[123.152896757813,42.8082900214844],[123.181793242188,42.8193959785157],[123.216685820313,42.8293727851563],[123.167960234375,42.8499050117188],[123.181793242188,42.9293959785157],[123.192896757813,42.9382900214844],[123.201793242188,42.9493959785156],[123.222896757813,42.9582900214844],[123.247281523438,42.9887392402344],[123.343599882813,43.002759015625],[123.432896757813,43.0282900214844],[123.463697539063,43.0401284003907],[123.512896757813,43.0193959785157],[123.531793242188,43.0082900214844],[123.557345,43.003843],[123.54580203125,42.9568471503906],[123.594132109375,42.9292629218751],[123.58060671875,42.9084950996094],[123.59408328125,42.8991909003906],[123.58060671875,42.8784950996094],[123.59408328125,42.8691909003907],[123.580831328125,42.848843],[123.593565703125,42.8292897773438],[123.587862578125,42.803843],[123.59361453125,42.7781728339844]]]]}},{"type":"Feature","properties":{"name":"辽中县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.627345,41.433843],[122.623922148438,41.4216506171875],[122.615152617188,41.4304201484376],[122.627345,41.433843]]],[[[122.597345,41.513843],[122.593922148438,41.5016506171875],[122.585152617188,41.5104201484376],[122.597345,41.513843]]],[[[122.957345,41.4938430000001],[122.945152617188,41.4904201484375],[122.953922148438,41.4816506171875],[122.98170046875,41.4870607734376],[122.952374296875,41.4677944160157],[122.931954375,41.4801100898438],[122.92298953125,41.4581996894532],[122.911514921875,41.4493422675782],[122.917345,41.4138430000001],[122.8519934375,41.4192751289063],[122.840328398438,41.3805434394531],[122.755670195313,41.3574990058594],[122.74271609375,41.3284706855469],[122.7119153125,41.3191970039063],[122.7127746875,41.3085195136719],[122.70197390625,41.2992153144531],[122.691715117188,41.2762221503907],[122.67197390625,41.2592153144531],[122.661300078125,41.2468288398438],[122.664068632813,41.2123659492188],[122.617345,41.203843],[122.607345,41.203843],[122.5976965625,41.2384938789063],[122.545748320313,41.2494557929688],[122.58298953125,41.2781996894532],[122.59306765625,41.3028212714844],[122.644068632813,41.3421877265625],[122.640362578125,41.3672658515625],[122.660592070313,41.4007997871094],[122.642345,41.3981044746094],[122.630284453125,41.3998867011719],[122.634483671875,41.4283315253907],[122.627345,41.433843],[122.6216028125,41.4688088203125],[122.623082304688,41.478843],[122.621607695313,41.4888430000001],[122.624195585938,41.5063661933594],[122.597345,41.513843],[122.593170195313,41.5296681953125],[122.537447539063,41.5408388496095],[122.512345,41.5358791328125],[122.489678984375,41.5403578925782],[122.4934778125,41.5595864082032],[122.477345,41.5638430000001],[122.470147734375,41.579575421875],[122.483624296875,41.5875649238282],[122.491065703125,41.6101210761719],[122.516666289063,41.641264875],[122.504498320313,41.6766884589844],[122.532345,41.6671254707032],[122.54642703125,41.6719606757813],[122.540445585938,41.6893679023438],[122.563624296875,41.7175649238282],[122.571065703125,41.7501210761719],[122.583624296875,41.7575649238281],[122.587345,41.7638430000001],[122.617769804688,41.7835720039063],[122.661119414063,41.750952375],[122.703077421875,41.7395778632813],[122.722818632813,41.7130385566407],[122.754547148438,41.7366396308594],[122.775733671875,41.7651235175782],[122.833077421875,41.7495778632813],[122.86205203125,41.7379311347657],[122.9148840625,41.7470278144532],[122.972345,41.7114650703125],[123.001612578125,41.7295778632813],[123.017345,41.733843],[123.026451445313,41.7121608710938],[123.016803007813,41.6691152167969],[123.05326296875,41.6597585273437],[123.085323515625,41.6121413398438],[123.097345,41.6038430000001],[123.08142703125,41.5797585273438],[123.07326296875,41.5579274726563],[123.043082304688,41.5466347480469],[123.01435671875,41.5050295234375],[122.980167265625,41.5126943183594],[122.96142703125,41.4997585273438],[122.957345,41.4938430000001]]]]}},{"type":"Feature","properties":{"name":"沈北新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.532896757813,42.1693959785157],[123.543761015625,42.1436220527344],[123.641793242188,42.0982900214844],[123.69375125,42.0892482734376],[123.742896757813,42.0593959785157],[123.754610625,42.044770734375],[123.811793242188,42.0518837714844],[123.798350859375,42.0162294746094],[123.76318484375,42.0206044746094],[123.761676054688,42.0084706855469],[123.777345,41.9838430000001],[123.777345,41.973843],[123.728463164063,41.9677297187501],[123.717345,41.9538430000001],[123.681300078125,41.9626967597657],[123.640230742188,41.9359548164063],[123.595987578125,41.9458730292969],[123.55326296875,41.9279274726563],[123.497261992188,41.9135561347656],[123.472760039063,41.8976003242188],[123.447345,41.903843],[123.369185820313,41.9084438300782],[123.37431765625,41.9497109199219],[123.362345,41.9482216621094],[123.348472929688,41.949946515625],[123.328453398438,41.9749489570313],[123.269635039063,42.0220497871095],[123.274156523438,42.0583901191407],[123.267345,42.0638430000001],[123.326104765625,42.1341591621094],[123.337345,42.1438430000001],[123.370548125,42.1356874824219],[123.40326296875,42.1479274726562],[123.4141028125,42.1636330390626],[123.442345,42.1699636054688],[123.452623320313,42.1676601386719],[123.467345,42.1738430000001],[123.482896757813,42.1782900214844],[123.516173125,42.1978493476563],[123.532896757813,42.1693959785157]]]]}},{"type":"Feature","properties":{"name":"沈河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.45142703125,41.7697585273438],[123.427345,41.753843],[123.418048125,41.7917031074219],[123.427345,41.813843],[123.437345,41.813843],[123.437345,41.823843],[123.447345,41.823843],[123.45170046875,41.8081996894532],[123.477345,41.773843],[123.45142703125,41.7697585273438]]]]}},{"type":"Feature","properties":{"name":"苏家屯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.317345,41.713843],[123.322408476563,41.6978542304688],[123.359971953125,41.6993434882813],[123.401475859375,41.6862026191407],[123.362535429688,41.6501210761719],[123.382154570313,41.6386525703125],[123.452535429688,41.6290334296875],[123.509595976563,41.6170961738282],[123.549327421875,41.6381215644531],[123.592174101563,41.608637921875],[123.602345,41.6090407539063],[123.612345,41.6086452460937],[123.642345,41.6098342109376],[123.678761015625,41.6083901191407],[123.757345,41.6138430000001],[123.79125125,41.5948622871094],[123.717296171875,41.5678786445313],[123.737345,41.523843],[123.728756132813,41.5114003730469],[123.711900664063,41.507622296875],[123.692789335938,41.5200637031251],[123.682345,41.5177223945313],[123.662345,41.5222060371094],[123.642345,41.5177223945313],[123.628258085938,41.5208803535157],[123.587345,41.4938430000001],[123.543707304688,41.4868080878907],[123.522345,41.4894643378906],[123.505318632813,41.4873464179688],[123.469210234375,41.4661232734375],[123.442345,41.4694643378907],[123.431954375,41.4681728339844],[123.402896757813,41.4893959785157],[123.350045195313,41.5116664863281],[123.321983671875,41.5081764960937],[123.293453398438,41.5249489570313],[123.231793242188,41.5382900214844],[123.210699492188,41.5646315742188],[123.182896757813,41.5482900214844],[123.138697539063,41.5296645332031],[123.122896757813,41.5493959785156],[123.103355742188,41.5650453925781],[123.128487578125,41.607798078125],[123.107345,41.6138430000001],[123.1224621875,41.6334267402344],[123.18298953125,41.6581996894532],[123.20170046875,41.6694863105469],[123.22298953125,41.6781996894532],[123.232857695313,41.6909841132813],[123.267086210938,41.6859255195313],[123.283160429688,41.6983315253907],[123.281514921875,41.7094643378907],[123.317345,41.713843]]],[[[123.317345,41.713843],[123.317345,41.7238430000001],[123.327345,41.7238430000001],[123.327345,41.713843],[123.317345,41.713843]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.373985625,41.767202375],[123.367345,41.7638430000001],[123.30298953125,41.7747756171875],[123.312955351563,41.8373622871094],[123.347345,41.823843],[123.360704375,41.8172023750001],[123.393985625,41.8104836250001],[123.397345,41.8038430000001],[123.390704375,41.800483625],[123.373985625,41.767202375]]]]}},{"type":"Feature","properties":{"name":"新民市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.467345,42.033843],[122.479537382813,42.0372658515625],[122.470767851563,42.0460353828126],[122.460523710938,42.0370217109375],[122.454166289063,42.0506642890625],[122.438873320313,42.0577895332032],[122.445816679688,42.0698964667969],[122.426612578125,42.078843],[122.448077421875,42.088843],[122.428873320313,42.0977895332032],[122.440338164063,42.1177895332031],[122.427345,42.123843],[122.432061796875,42.1391237617187],[122.463199492188,42.1487380195313],[122.600264921875,42.2059206367188],[122.620787382813,42.2288857246094],[122.672628203125,42.2385622382813],[122.729610625,42.2783669257813],[122.747345,42.283843],[122.755611601563,42.2541542792969],[122.807345,42.2617983222656],[122.845826445313,42.2561110664063],[122.892271757813,42.2696535468751],[122.953883085938,42.2553762031251],[122.982486601563,42.2596034980469],[123.041275664063,42.2459804511719],[123.05978640625,42.2699599433594],[123.082345,42.266626203125],[123.11654421875,42.2716799140625],[123.176485625,42.2272377753906],[123.210806914063,42.2323110175781],[123.22170046875,42.2181996894532],[123.25677859375,42.203843],[123.250806914063,42.1634438300782],[123.292857695313,42.1696572089844],[123.30978640625,42.1477260566406],[123.331832304688,42.1509841132813],[123.337345,42.1438430000001],[123.326104765625,42.1341591621094],[123.267345,42.0638430000001],[123.252154570313,42.0590334296876],[123.218482695313,42.0358632636719],[123.202535429688,42.0186525703125],[123.182154570313,42.0090334296875],[123.159654570313,41.9971279121094],[123.142535429688,41.9786525703125],[123.132154570313,41.9690334296875],[123.122535429688,41.9586525703126],[123.108468046875,41.9456179023438],[123.122550078125,41.9190065742188],[123.121749296875,41.898843],[123.142808867188,41.8889052558594],[123.132139921875,41.8790200019532],[123.132545195313,41.8688430000001],[123.132110625,41.8579579902345],[123.152535429688,41.8390334296875],[123.163472929688,41.81585471875],[123.151822539063,41.7264809394532],[123.017345,41.733843],[123.001612578125,41.7295778632813],[122.972345,41.7114650703125],[122.9148840625,41.7470278144532],[122.86205203125,41.7379311347657],[122.833077421875,41.7495778632813],[122.775733671875,41.7651235175782],[122.754547148438,41.7366396308594],[122.722818632813,41.7130385566407],[122.703077421875,41.7395778632813],[122.661119414063,41.750952375],[122.617769804688,41.7835720039063],[122.587345,41.7638430000001],[122.583077421875,41.7695778632813],[122.561612578125,41.7781081367188],[122.55291140625,41.7898012519532],[122.54177859375,41.7878847480469],[122.533077421875,41.7995778632813],[122.503839140625,41.8213271308594],[122.461612578125,41.8381081367188],[122.453077421875,41.8795778632813],[122.433756132813,41.8939528632812],[122.453526640625,41.9081081367188],[122.518140898438,41.8969838691406],[122.501612578125,41.9381081367188],[122.483077421875,42.0095778632813],[122.467345,42.033843]]]]}},{"type":"Feature","properties":{"name":"于洪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.447345,41.883843],[123.467345,41.8738430000001],[123.467345,41.843843],[123.46062625,41.83056175],[123.447345,41.823843],[123.437345,41.823843],[123.4311340625,41.8491274238282],[123.447345,41.883843]]],[[[123.447345,41.883843],[123.410704375,41.880483625],[123.403985625,41.837202375],[123.3841028125,41.830483625],[123.373985625,41.8504836250001],[123.3458215625,41.8572023750001],[123.354796171875,41.8388283515626],[123.347345,41.823843],[123.312955351563,41.8373622871094],[123.30298953125,41.7747756171875],[123.367345,41.7638430000001],[123.367345,41.743843],[123.35142703125,41.7397585273437],[123.327345,41.7238430000001],[123.317345,41.7238430000001],[123.317345,41.713843],[123.281514921875,41.7094643378907],[123.283160429688,41.6983315253907],[123.267086210938,41.6859255195313],[123.232857695313,41.6909841132813],[123.22298953125,41.6781996894532],[123.20170046875,41.6694863105469],[123.18298953125,41.6581996894532],[123.1224621875,41.6334267402344],[123.107345,41.6138430000001],[123.107345,41.6038430000001],[123.097345,41.6038430000001],[123.085323515625,41.6121413398438],[123.05326296875,41.6597585273437],[123.016803007813,41.6691152167969],[123.026451445313,41.7121608710938],[123.017345,41.733843],[123.151822539063,41.7264809394532],[123.163472929688,41.81585471875],[123.152535429688,41.8390334296875],[123.132110625,41.8579579902345],[123.132545195313,41.8688430000001],[123.132139921875,41.8790200019532],[123.142808867188,41.8889052558594],[123.121749296875,41.898843],[123.122550078125,41.9190065742188],[123.108468046875,41.9456179023438],[123.122535429688,41.9586525703126],[123.132154570313,41.9690334296875],[123.142535429688,41.9786525703125],[123.159654570313,41.9971279121094],[123.182154570313,42.0090334296875],[123.202535429688,42.0186525703125],[123.218482695313,42.0358632636719],[123.252154570313,42.0590334296876],[123.267345,42.0638430000001],[123.274156523438,42.0583901191407],[123.269635039063,42.0220497871095],[123.328453398438,41.9749489570313],[123.348472929688,41.949946515625],[123.362345,41.9482216621094],[123.37431765625,41.9497109199219],[123.369185820313,41.9084438300782],[123.447345,41.903843],[123.447345,41.883843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"西岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.617345,38.923843],[121.617345,38.933843],[121.637345,38.933843],[121.637345,38.923843],[121.617345,38.923843]]],[[[121.617345,38.933843],[121.604537382813,38.928843],[121.617345,38.923843],[121.63142703125,38.8979274726563],[121.644093046875,38.889184796875],[121.627345,38.8638430000001],[121.610704375,38.867202375],[121.597345,38.873843],[121.59326296875,38.9197585273437],[121.587345,38.9438430000001],[121.607345,38.9438430000001],[121.617345,38.9438430000001],[121.617345,38.933843]]],[[[121.637345,38.933843],[121.642345,38.9466506171875],[121.647345,38.933843],[121.637345,38.933843]]]]}},{"type":"Feature","properties":{"name":"中山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.717921171875,38.8961171699219],[121.693961210938,38.8683107734375],[121.6823059375,38.8692482734375],[121.627345,38.8638430000001],[121.644093046875,38.889184796875],[121.63142703125,38.8979274726563],[121.617345,38.923843],[121.637345,38.923843],[121.637345,38.933843],[121.647345,38.933843],[121.688521757813,38.9214455390625],[121.717921171875,38.8961171699219]]]]}},{"type":"Feature","properties":{"name":"庄河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.06072390625,39.457915265625],[123.077345,39.4338430000001],[123.04326296875,39.4425905585938],[123.06072390625,39.457915265625]]],[[[123.103922148438,39.5160353828125],[123.107345,39.503843],[123.095152617188,39.5072658515625],[123.103922148438,39.5160353828125]]],[[[123.00687625,39.5561940742187],[123.02341921875,39.5287746406251],[122.997345,39.493843],[122.969581328125,39.4985597968751],[122.947623320313,39.5349623847657],[122.972345,39.5498744941407],[122.992579375,39.5376699042969],[123.00687625,39.5561940742187]]],[[[123.287345,39.773843],[123.28334109375,39.7965688300781],[123.274346953125,39.7794045234375],[123.280709257813,39.7512245917969],[123.252345,39.7483339667969],[123.232808867188,39.7503249335938],[123.241881132813,39.7383803535157],[123.271314726563,39.713930890625],[123.272901640625,39.6983937812501],[123.211881132813,39.6893056464844],[123.202808867188,39.6783803535156],[123.151881132813,39.6693056464844],[123.140206328125,39.6552516914063],[123.09834109375,39.6709828925781],[123.072345,39.6683339667969],[123.061265898438,39.6694631171875],[122.98091921875,39.6591823554688],[122.995474882813,39.6470900703126],[122.962808867188,39.6283803535156],[122.8854309375,39.6168556953125],[122.8058215625,39.5870351386719],[122.741881132813,39.5593056464844],[122.722808867188,39.5483803535157],[122.701881132813,39.5393056464844],[122.672398710938,39.5180849433594],[122.647530546875,39.5323281074219],[122.629195585938,39.4900502753906],[122.612345,39.4883339667969],[122.601954375,39.4893923164063],[122.590206328125,39.4752516914063],[122.567345,39.483843],[122.551881132813,39.4883803535156],[122.532808867188,39.4993056464844],[122.496671171875,39.5149770332031],[122.512808867188,39.5283803535157],[122.543941679688,39.5658620429688],[122.5814465625,39.5821279121094],[122.561793242188,39.5984523750001],[122.563092070313,39.6111550117188],[122.603233671875,39.6285646796876],[122.591881132813,39.6483803535157],[122.578267851563,39.6947682929688],[122.561881132813,39.7083803535156],[122.545455351563,39.7281569648438],[122.484185820313,39.7547292304688],[122.504268828125,39.8449526191407],[122.501793242188,39.869233625],[122.524381132813,39.8879958320313],[122.511793242188,39.8984523750001],[122.513834257813,39.918452375],[122.507345,39.923843],[122.521173125,39.9404909492188],[122.556881132813,39.9368520332032],[122.534879179688,39.987583234375],[122.5132434375,40.0055580878906],[122.543233671875,40.0185646796876],[122.525836210938,40.0489394355469],[122.692301054688,40.0693569160156],[122.702691679688,40.0682973457032],[122.7576575,40.1078554511719],[122.772345,40.1093520332032],[122.799644804688,40.1065700507813],[122.822022734375,40.1193849921876],[122.838189726563,40.1177370429688],[122.862105742188,40.1728774238281],[122.887345,40.1938430000001],[122.89978640625,40.1777260566406],[122.930123320313,40.1822096992188],[122.94312625,40.1491347480469],[122.940982695313,40.1346108222656],[122.9831653125,40.1093825507813],[122.98045046875,40.0910182929688],[123.00170046875,40.0781996894532],[123.02298953125,40.0694863105469],[123.036549101563,40.0519155097657],[123.073883085938,40.0463991523438],[123.092857695313,40.0709841132813],[123.112345,40.0681044746094],[123.13369265625,40.0712587714844],[123.20298953125,40.0594863105469],[123.2310559375,40.0425551582031],[123.26298953125,40.0294863105469],[123.283922148438,40.0168593574219],[123.313219023438,40.0211891914063],[123.372686796875,39.9978115058594],[123.38170046875,40.0094863105469],[123.397345,40.0138430000001],[123.392652617188,39.9848146796875],[123.37080203125,39.9691518378906],[123.383170195313,39.9496681953125],[123.391636992188,39.9277150703126],[123.407447539063,39.9308388496094],[123.479879179688,39.9163185859375],[123.48341921875,39.8984096503907],[123.465201445313,39.8697145820313],[123.493453398438,39.8494631171875],[123.48968875,39.8304128242187],[123.513170195313,39.7996681953125],[123.517345,39.7838430000001],[123.481793242188,39.7793959785157],[123.472896757813,39.7682900214844],[123.461666289063,39.7592958808594],[123.46302859375,39.7483364082032],[123.409303007813,39.7293959785157],[123.412965117188,39.758843],[123.408912382813,39.7914296699219],[123.31291140625,39.7640163398438],[123.287345,39.773843]],[[123.095152617188,39.6972658515625],[123.107345,39.693843],[123.103922148438,39.7060353828125],[123.095152617188,39.6972658515625]]]]}},{"type":"Feature","properties":{"name":"长海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.717345,39.033843],[122.74517703125,39.0312636542969],[122.759888945313,39.0160305000001],[122.719888945313,39.0163869453125],[122.717345,39.033843]]],[[[122.717345,39.033843],[122.705152617188,39.0372658515626],[122.713922148438,39.0460353828125],[122.717345,39.033843]]],[[[122.831910429688,39.0565395332032],[122.837345,39.043843],[122.814346953125,39.047895734375],[122.831910429688,39.0565395332032]]],[[[122.863922148438,39.0660353828125],[122.867345,39.0538430000001],[122.855152617188,39.0572658515625],[122.863922148438,39.0660353828125]]],[[[122.803922148438,39.0860353828125],[122.807345,39.073843],[122.795152617188,39.0772658515626],[122.803922148438,39.0860353828125]]],[[[123.198643828125,39.0546181464844],[123.16406375,39.03712425],[123.157345,39.023843],[123.143985625,39.0306008125],[123.151026640625,39.0619277167969],[123.170704375,39.0523183417969],[123.163985625,39.0704836250001],[123.133985625,39.0791408515625],[123.172974882813,39.0869313789063],[123.198643828125,39.0546181464844]]],[[[122.423922148438,39.1760353828125],[122.427345,39.163843],[122.415152617188,39.1672658515625],[122.423922148438,39.1760353828125]]],[[[122.403922148438,39.1860353828126],[122.407345,39.1738430000001],[122.395152617188,39.1772658515625],[122.403922148438,39.1860353828126]]],[[[122.377345,39.2038430000001],[122.384918242188,39.1683913398438],[122.36259890625,39.1697219062501],[122.335260039063,39.1391237617188],[122.313375273438,39.1713613105469],[122.332628203125,39.1885622382813],[122.342061796875,39.1991237617188],[122.377345,39.2038430000001]]],[[[122.303922148438,39.2060353828125],[122.307345,39.193843],[122.295152617188,39.1972658515625],[122.303922148438,39.2060353828125]]],[[[122.697345,39.213843],[122.693922148438,39.2016506171875],[122.685152617188,39.2104201484375],[122.697345,39.213843]]],[[[122.377345,39.2038430000001],[122.380767851563,39.2160353828125],[122.389537382813,39.2072658515625],[122.377345,39.2038430000001]]],[[[122.603922148438,39.2260353828126],[122.607345,39.213843],[122.595152617188,39.2172658515625],[122.603922148438,39.2260353828126]]],[[[122.773922148438,39.2360353828125],[122.777345,39.223843],[122.765152617188,39.2272658515626],[122.773922148438,39.2360353828125]]],[[[122.431910429688,39.2365395332031],[122.437345,39.223843],[122.414346953125,39.2278957343751],[122.431910429688,39.2365395332031]]],[[[122.538365507813,39.2368520332031],[122.547345,39.223843],[122.48326296875,39.2285243964844],[122.538365507813,39.2368520332031]]],[[[122.697345,39.213843],[122.691358671875,39.23534690625],[122.632940703125,39.2267140937501],[122.62298953125,39.2386562324219],[122.723053007813,39.2481996894532],[122.75170046875,39.2230763984375],[122.697345,39.213843]]],[[[122.443922148438,39.2660353828126],[122.447345,39.253843],[122.435152617188,39.2572658515625],[122.443922148438,39.2660353828126]]],[[[123.003922148438,39.2660353828126],[123.007345,39.253843],[122.995152617188,39.2572658515625],[123.003922148438,39.2660353828126]]],[[[122.683922148438,39.2760353828125],[122.687345,39.263843],[122.675152617188,39.2672658515626],[122.683922148438,39.2760353828125]]],[[[122.663892851563,39.2703932929688],[122.667345,39.253843],[122.653892851563,39.2603932929688],[122.603892851563,39.2683974433594],[122.630513945313,39.2872927070313],[122.663892851563,39.2703932929688]]],[[[122.4849621875,39.2995034003907],[122.522345,39.2987404609375],[122.551344023438,39.2993325019531],[122.594698515625,39.2709084296876],[122.58224734375,39.2589430976563],[122.577345,39.253843],[122.57224734375,39.2587429023438],[122.56244265625,39.2689430976563],[122.4849621875,39.2995034003907]]]]}},{"type":"Feature","properties":{"name":"甘井子区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.497345,38.8238430000001],[121.509537382813,38.8204201484375],[121.500767851563,38.8116506171876],[121.497345,38.8238430000001]]],[[[121.497345,38.8238430000001],[121.467345,38.8238430000001],[121.461705351563,38.8486818671875],[121.463248320313,38.8611074042969],[121.413599882813,38.9008644843751],[121.390079375,38.8979396796876],[121.372896757813,38.9193959785156],[121.319815703125,38.9516384101563],[121.282174101563,38.9469557929688],[121.277345,38.963843],[121.283883085938,38.9723110175782],[121.31673953125,38.9674550605469],[121.347877226563,38.9801992011719],[121.33298953125,38.9994863105469],[121.3191028125,39.0102065253906],[121.34170046875,39.0394863105469],[121.36298953125,39.0481996894532],[121.375767851563,39.0647536445313],[121.412857695313,39.0167018867188],[121.432345,39.0195815253907],[121.442345,39.0181044746094],[121.452345,39.0195815253907],[121.46673953125,39.0174550605469],[121.5036340625,39.0325551582032],[121.53170046875,39.049486310547],[121.57298953125,39.0581996894532],[121.618365507813,39.0760390449219],[121.64170046875,39.0794863105469],[121.647345,39.083843],[121.652345,39.0710353828126],[121.657345,39.083843],[121.667345,39.083843],[121.693985625,39.080483625],[121.717345,39.033843],[121.72170046875,39.0281996894532],[121.75170046875,39.0159206367188],[121.738516875,39.0042360664063],[121.644029570313,39.0181996894532],[121.638507109375,38.9975368476563],[121.659854765625,39.0006911445313],[121.6631653125,38.9782973457031],[121.61170046875,38.9494863105469],[121.607345,38.9438430000001],[121.587345,38.9438430000001],[121.546417265625,38.9391884589844],[121.530972929688,38.8790138984376],[121.537345,38.8638430000001],[121.527266875,38.843921125],[121.500704375,38.830483625],[121.497345,38.8238430000001]]],[[[121.163922148438,39.0960353828125],[121.167345,39.083843],[121.155152617188,39.0872658515625],[121.163922148438,39.0960353828125]]]]}},{"type":"Feature","properties":{"name":"金州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.833619414063,38.889380109375],[121.827345,38.8638430000001],[121.81326296875,38.8735671210937],[121.825553007813,38.8979274726563],[121.833619414063,38.889380109375]]],[[[121.913922148438,39.0360353828126],[121.917345,39.023843],[121.905152617188,39.0272658515625],[121.913922148438,39.0360353828126]]],[[[121.657345,39.083843],[121.652345,39.0710353828126],[121.647345,39.083843],[121.652345,39.0966506171875],[121.657345,39.083843]]],[[[121.477345,39.193843],[121.473922148438,39.1816506171875],[121.465152617188,39.1904201484376],[121.477345,39.193843]]],[[[121.573922148438,39.1960353828125],[121.577345,39.183843],[121.565152617188,39.1872658515626],[121.573922148438,39.1960353828125]]],[[[121.477345,39.193843],[121.480767851563,39.2060353828125],[121.489537382813,39.1972658515625],[121.477345,39.193843]]],[[[121.597345,39.193843],[121.585152617188,39.1972658515625],[121.593922148438,39.2060353828125],[121.597345,39.193843]]],[[[121.493922148438,39.2260353828126],[121.497345,39.213843],[121.485152617188,39.2172658515625],[121.493922148438,39.2260353828126]]],[[[121.597345,39.253843],[121.607345,39.253843],[121.602345,39.2410353828125],[121.597345,39.253843]]],[[[122.293922148438,39.2760353828125],[122.297345,39.263843],[122.285152617188,39.2672658515626],[122.293922148438,39.2760353828125]]],[[[121.677345,39.303843],[121.665152617188,39.3072658515626],[121.673922148438,39.3160353828125],[121.677345,39.303843]]],[[[121.597345,39.193843],[121.610299101563,39.2038430000001],[121.584595976563,39.2236818671875],[121.622803984375,39.2180361152344],[121.64170046875,39.2346096015625],[121.607345,39.253843],[121.602345,39.2666506171876],[121.597345,39.253843],[121.5832434375,39.2655580878907],[121.616436796875,39.2799550605469],[121.652345,39.2762953925782],[121.686392851563,39.2797646308594],[121.677345,39.303843],[121.719996367188,39.2933669257813],[121.723468046875,39.308843],[121.721221953125,39.3188430000001],[121.723468046875,39.328843],[121.720714140625,39.3411208320313],[121.73298953125,39.3739321113281],[121.747345,39.383843],[121.75142703125,39.3779274726563],[121.809820585938,39.3629433417969],[121.817345,39.373843],[121.827345,39.373843],[121.857345,39.373843],[121.865465117188,39.3475392890626],[121.912076445313,39.3503176093751],[121.922076445313,39.3285292792969],[121.932345,39.3291408515626],[121.947345,39.328247296875],[121.962345,39.3291408515626],[121.972345,39.3285451484375],[121.982345,39.3291408515626],[122.002345,39.3279494453126],[122.0431653125,39.3303823066407],[122.132237578125,39.3185390449219],[122.142545195313,39.3191530585938],[122.172154570313,39.3085280585938],[122.247345,39.313843],[122.26197390625,39.3012404609375],[122.23271609375,39.2784706855469],[122.172867460938,39.2557595039063],[122.11170046875,39.2118398261719],[122.112877226563,39.1972243476563],[122.090582304688,39.1780165839844],[122.139952421875,39.1559853339844],[122.071363554688,39.1177162910157],[122.03271609375,39.1208217597656],[122.04197390625,39.0984706855469],[122.064527617188,39.0666591621094],[121.992022734375,39.0724843574219],[121.9585559375,39.0336403632812],[121.892535429688,39.0704750800781],[121.88271609375,39.0484706855469],[121.83271609375,39.0371120429688],[121.842003203125,39.0184133125],[121.858858671875,39.0197682929688],[121.891734648438,38.9914455390625],[121.894244414063,38.960200421875],[121.831646757813,38.9551711250001],[121.8327746875,38.9691896796875],[121.807628203125,38.9804091621094],[121.791920195313,39.0085646796875],[121.793331328125,39.0260927558594],[121.717345,39.033843],[121.693985625,39.080483625],[121.667345,39.083843],[121.68326296875,39.1079274726563],[121.69142703125,39.1329604316407],[121.65142703125,39.1479274726563],[121.637022734375,39.1687929511719],[121.60142703125,39.1779274726562],[121.597345,39.193843]]]]}},{"type":"Feature","properties":{"name":"旅顺口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.023922148438,38.8760353828125],[121.027345,38.8638430000001],[121.015152617188,38.8672658515625],[121.023922148438,38.8760353828125]]],[[[120.983922148438,38.9560353828126],[120.987345,38.9438430000001],[120.975152617188,38.9472658515625],[120.983922148438,38.9560353828126]]],[[[121.277345,38.963843],[121.282174101563,38.9469557929688],[121.319815703125,38.9516384101563],[121.372896757813,38.9193959785156],[121.390079375,38.8979396796876],[121.413599882813,38.9008644843751],[121.463248320313,38.8611074042969],[121.461705351563,38.8486818671875],[121.467345,38.8238430000001],[121.456490507813,38.8107753730469],[121.336959257813,38.8229592109375],[121.297730742188,38.7947267890625],[121.223209257813,38.8023220039062],[121.220640898438,38.7771401191407],[121.251881132813,38.7950331855469],[121.241119414063,38.7752870917969],[121.221881132813,38.7593056464844],[121.18865359375,38.7193056464844],[121.140347929688,38.7286782050781],[121.11142703125,38.7791725898438],[121.148741484375,38.7901222968751],[121.132808867188,38.8093056464844],[121.11318484375,38.8256056953125],[121.110816679688,38.848843],[121.114849882813,38.8884194160157],[121.082808867188,38.9023159003906],[121.097340117188,38.9295217109375],[121.147725859375,38.9583803535157],[121.182808867188,38.9493056464844],[121.207345,38.9352516914063],[121.244464140625,38.9565102363282],[121.271881132813,38.9593056464844],[121.277345,38.963843]]]]}},{"type":"Feature","properties":{"name":"普兰店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.343922148438,39.3460353828126],[122.347345,39.333843],[122.335152617188,39.3372658515626],[122.343922148438,39.3460353828126]]],[[[122.340767851563,39.9808266425782],[122.365889921875,39.9656728339844],[122.392345,39.9695815253907],[122.402345,39.9681044746094],[122.412735625,39.9696401191406],[122.43170046875,39.9581996894531],[122.45298953125,39.9494863105469],[122.47170046875,39.9381996894532],[122.507345,39.923843],[122.513834257813,39.918452375],[122.511793242188,39.8984523750001],[122.524381132813,39.8879958320313],[122.501793242188,39.869233625],[122.504268828125,39.8449526191407],[122.484185820313,39.7547292304688],[122.545455351563,39.7281569648438],[122.561881132813,39.7083803535156],[122.578267851563,39.6947682929688],[122.591881132813,39.6483803535157],[122.603233671875,39.6285646796876],[122.563092070313,39.6111550117188],[122.561793242188,39.5984523750001],[122.5814465625,39.5821279121094],[122.543941679688,39.5658620429688],[122.512808867188,39.5283803535157],[122.496671171875,39.5149770332031],[122.532808867188,39.4993056464844],[122.551881132813,39.4883803535156],[122.567345,39.483843],[122.56271609375,39.4584706855469],[122.55197390625,39.4492153144532],[122.526436796875,39.4195729804688],[122.512345,39.4184413886719],[122.49560671875,39.4197866035157],[122.377515898438,39.4077407050781],[122.304234648438,39.3618422675782],[122.29271609375,39.3484706855469],[122.25197390625,39.3192153144532],[122.247345,39.313843],[122.172154570313,39.3085280585938],[122.142545195313,39.3191530585938],[122.132237578125,39.3185390449219],[122.0431653125,39.3303823066407],[122.002345,39.3279494453126],[121.982345,39.3291408515626],[121.972345,39.3285451484375],[121.962345,39.3291408515626],[121.947345,39.328247296875],[121.932345,39.3291408515626],[121.922076445313,39.3285292792969],[121.912076445313,39.3503176093751],[121.865465117188,39.3475392890626],[121.857345,39.373843],[121.88142703125,39.3897585273438],[121.897345,39.3938430000001],[121.907345,39.3938430000001],[121.917345,39.3938430000001],[121.917345,39.4038430000001],[121.923648710938,39.4094753242188],[121.878761015625,39.4300783515625],[121.934718046875,39.5101918769531],[122.003272734375,39.5061061835938],[121.99033328125,39.5666506171876],[122.01420046875,39.6008180976563],[122.070396757813,39.5974684882813],[122.049386015625,39.6560207343751],[122.013121367188,39.6726662421875],[122.0326575,39.7086171699219],[122.030855742188,39.7388430000001],[122.075421171875,39.7492116523438],[122.11318484375,39.7697341132813],[122.1120325,39.7891091132813],[122.1326575,39.7985768867188],[122.131886015625,39.8115529609375],[122.182511015625,39.8085353828125],[122.192061796875,39.8106923652344],[122.1720325,39.8285903144532],[122.173521757813,39.8536244941407],[122.221798125,39.8967568183594],[122.235211210938,39.9259780097657],[122.270679960938,39.9422585273438],[122.277345,39.9638430000001],[122.312017851563,39.9796303535157],[122.322345,39.9781044746094],[122.340767851563,39.9808266425782]]]]}},{"type":"Feature","properties":{"name":"沙河口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.56142703125,38.8697585273438],[121.537345,38.8638430000001],[121.530972929688,38.8790138984376],[121.546417265625,38.9391884589844],[121.587345,38.9438430000001],[121.59326296875,38.9197585273437],[121.597345,38.873843],[121.56142703125,38.8697585273438]]]]}},{"type":"Feature","properties":{"name":"瓦房店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.447345,39.413843],[121.456553984375,39.4372634101562],[121.43298953125,39.4249245429688],[121.430894804688,39.3847475410157],[121.399268828125,39.3661550117188],[121.352564726563,39.3794924140625],[121.312896757813,39.3745583320313],[121.347515898438,39.4200661445313],[121.371793242188,39.417046125],[121.35935671875,39.4482900214844],[121.341656523438,39.4393288398438],[121.291793242188,39.3993959785157],[121.267769804688,39.3693959785156],[121.251671171875,39.3884316230469],[121.253590117188,39.4038430000001],[121.251666289063,39.4192958808594],[121.262896757813,39.4282900214844],[121.271793242188,39.4393959785157],[121.298912382813,39.4508242011719],[121.336261015625,39.4974648261719],[121.380079375,39.5029152656251],[121.39834109375,39.4801113105469],[121.417345,39.503843],[121.440069609375,39.5078481269532],[121.422906523438,39.5168398261719],[121.417345,39.503843],[121.371265898438,39.5207643867188],[121.329000273438,39.517368390625],[121.309229765625,39.4944228339844],[121.28271609375,39.5092153144531],[121.23197390625,39.5184706855469],[121.22271609375,39.5320546699219],[121.286866484375,39.5816823554688],[121.302022734375,39.5992702460937],[121.322345,39.5976381660156],[121.39423953125,39.6034145332031],[121.454273710938,39.6198439765625],[121.4519153125,39.6492018867188],[121.494742460938,39.6584706855469],[121.52388796875,39.6246413398438],[121.521944609375,39.648843],[121.523629179688,39.6698146796875],[121.5019153125,39.6885195136719],[121.5030871875,39.7030519843751],[121.460738554688,39.7395351386719],[121.48271609375,39.7584706855469],[121.49197390625,39.7812404609376],[121.470738554688,39.7995351386719],[121.540240507813,39.8594142890625],[121.567345,39.8572365546875],[121.607178984375,39.8604372382813],[121.639722929688,39.8982106757813],[121.690748320313,39.9209804511719],[121.776304960938,39.9141054511719],[121.795577421875,39.9572890449219],[121.83271609375,39.9684706855469],[121.858394804688,39.9827980781251],[121.87197390625,40.0006227851563],[121.831070585938,40.0188735175782],[121.890943632813,40.0415932441407],[121.948233671875,40.1080886054688],[121.967345,40.113843],[121.983033476563,40.0520632148438],[122.0532825,40.0659450507813],[122.081519804688,40.0480178046875],[122.161510039063,40.0319814277344],[122.183267851563,40.0016237617188],[122.210406523438,39.9962624335937],[122.241954375,40.0162917304688],[122.277345,39.9638430000001],[122.270679960938,39.9422585273438],[122.235211210938,39.9259780097657],[122.221798125,39.8967568183594],[122.173521757813,39.8536244941407],[122.1720325,39.8285903144532],[122.192061796875,39.8106923652344],[122.182511015625,39.8085353828125],[122.131886015625,39.8115529609375],[122.1326575,39.7985768867188],[122.1120325,39.7891091132813],[122.11318484375,39.7697341132813],[122.075421171875,39.7492116523438],[122.030855742188,39.7388430000001],[122.0326575,39.7086171699219],[122.013121367188,39.6726662421875],[122.049386015625,39.6560207343751],[122.070396757813,39.5974684882813],[122.01420046875,39.6008180976563],[121.99033328125,39.5666506171876],[122.003272734375,39.5061061835938],[121.934718046875,39.5101918769531],[121.878761015625,39.4300783515625],[121.923648710938,39.4094753242188],[121.917345,39.4038430000001],[121.907345,39.4038430000001],[121.907345,39.3938430000001],[121.897345,39.3938430000001],[121.888531523438,39.4076076484376],[121.840279570313,39.3940468574219],[121.827345,39.373843],[121.817345,39.373843],[121.79326296875,39.3797585273438],[121.747345,39.383843],[121.74298953125,39.3894863105469],[121.698839140625,39.4075551582032],[121.704615507813,39.3684755683594],[121.637564726563,39.3570851875001],[121.618082304688,39.3318447089844],[121.566910429688,39.3194863105469],[121.54298953125,39.3594863105469],[121.505889921875,39.3698171210938],[121.4786340625,39.4051308417969],[121.447345,39.413843]],[[121.477345,39.523843],[121.471910429688,39.5365395332031],[121.454346953125,39.5278957343751],[121.477345,39.523843]],[[121.537345,39.603843],[121.533922148438,39.6160353828125],[121.525152617188,39.6072658515626],[121.542779570313,39.5911464667969],[121.560343046875,39.599790265625],[121.537345,39.603843]],[[121.807345,39.9338430000001],[121.803922148438,39.9460353828126],[121.795152617188,39.9372658515625],[121.807345,39.9338430000001]],[[121.887345,39.993843],[121.883922148438,40.0060353828125],[121.875152617188,39.9972658515625],[121.887345,39.993843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,40.9638430000001],[122.315152617188,40.9672658515625],[122.323922148438,40.9760353828126],[122.327345,40.9638430000001]]],[[[122.327345,40.9638430000001],[122.347345,40.9638430000001],[122.347345,40.973843],[122.359537382813,40.9772658515626],[122.350767851563,40.9860353828125],[122.347345,40.973843],[122.337345,40.973843],[122.337345,40.983843],[122.346158476563,40.9976076484375],[122.38310671875,40.9872231269532],[122.39158328125,41.0004628730469],[122.406158476563,40.9963661933594],[122.417345,41.013843],[122.441959257813,41.0212538886719],[122.413756132813,41.0455495429688],[122.4427746875,41.0584963203126],[122.441304960938,41.0767909980469],[122.515513945313,41.0936501289063],[122.53271609375,41.1084706855469],[122.54197390625,41.1192153144532],[122.593287382813,41.1421120429688],[122.591163359375,41.1685195136719],[122.597345,41.173843],[122.614586210938,41.1686525703125],[122.63197390625,41.1484706855469],[122.66271609375,41.1392153144531],[122.700909453125,41.1121352363282],[122.827345,41.083843],[122.85218875,41.0785353828125],[122.892061796875,41.0809120917969],[122.882628203125,41.0585622382812],[122.86615359375,41.043843],[122.891910429688,41.0208278632813],[122.832628203125,40.9831215644531],[122.872276640625,40.9769789863282],[122.900494414063,41.0085622382813],[122.932628203125,40.9991237617187],[122.942061796875,40.9885622382813],[122.987086210938,40.9780861640625],[123.035094023438,40.9475551582032],[123.052061796875,40.9285622382813],[123.057345,40.9238430000001],[123.063585234375,40.8984291816406],[123.040347929688,40.8627443671876],[123.043468046875,40.8488430000001],[123.041051054688,40.8380605292969],[123.097345,40.8183266425781],[123.08326296875,40.7979274726563],[123.06326296875,40.7841188789063],[123.07142703125,40.7579274726563],[123.11904421875,40.7258632636719],[123.127345,40.713843],[123.136178007813,40.6600661445313],[123.11170046875,40.6194863105469],[123.101373320313,40.5705336738281],[123.06170046875,40.5594863105469],[123.05298953125,40.5381996894532],[123.03154421875,40.5092726875],[123.033170195313,40.4982717109375],[122.997345,40.483843],[122.98170046875,40.4881996894531],[122.96490359375,40.5099599433594],[122.951832304688,40.5080287910156],[122.94298953125,40.5194863105469],[122.922266875,40.5354811835937],[122.867345,40.5273647285157],[122.825264921875,40.5335842109375],[122.7987121875,40.5679848457031],[122.72170046875,40.5881996894532],[122.69244265625,40.5997023750001],[122.652554960938,40.5880727363282],[122.637261992188,40.5903334785157],[122.653267851563,40.659408185547],[122.62170046875,40.6681996894532],[122.61298953125,40.6827614570313],[122.64744265625,40.7093544746094],[122.640230742188,40.7581362128906],[122.571832304688,40.7480287910157],[122.56298953125,40.7594863105469],[122.515660429688,40.7694741035156],[122.536392851563,40.8038430000001],[122.518795195313,40.8330178046876],[122.481080351563,40.8484535957032],[122.494327421875,40.8704201484375],[122.490362578125,40.8972658515625],[122.506470976563,40.9239699531251],[122.46607546875,40.9405007148438],[122.385640898438,40.9218617988281],[122.362735625,40.9080458808594],[122.34478640625,40.91069846875],[122.327345,40.903843],[122.317345,40.903843],[122.320704375,40.920483625],[122.333985625,40.927202375],[122.345401640625,40.9497670722656],[122.330704375,40.957202375],[122.327345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"立山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.02361453125,41.17284690625],[123.068565703125,41.1368508125001],[123.027345,41.103843],[123.02062625,41.11712425],[123.000704375,41.127202375],[122.997345,41.133843],[123.007345,41.133843],[123.007345,41.163843],[122.997345,41.163843],[123.007345,41.1838430000001],[123.007345,41.1938430000001],[123.027345,41.1938430000001],[123.027345,41.203843],[123.047345,41.203843],[123.047345,41.1938430000001],[123.042896757813,41.1882900214844],[123.02361453125,41.17284690625]]]]}},{"type":"Feature","properties":{"name":"千山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.997345,41.163843],[122.952623320313,41.1384181953126],[122.941983671875,41.1392739082032],[122.93271609375,41.0942690253906],[122.967345,41.083843],[123.007345,41.0694899726563],[123.027345,41.103843],[123.068565703125,41.1368508125001],[123.02361453125,41.17284690625],[123.042896757813,41.1882900214844],[123.047345,41.1938430000001],[123.0855090625,41.1760231757813],[123.117345,41.1838430000001],[123.117345,41.173843],[123.127345,41.173843],[123.131519804688,41.1580178046875],[123.143453398438,41.1494631171875],[123.134351835938,41.1033864570313],[123.162345,41.0978554511719],[123.200079375,41.1053115058594],[123.203331328125,41.088843],[123.201236601563,41.0782228828125],[123.22021609375,41.0646181464844],[123.223453398438,41.0482228828126],[123.2007434375,41.0319448066407],[123.204361601563,41.0136342597657],[123.180484648438,40.9803188300782],[123.129386015625,40.9904152656251],[123.084146757813,40.9729677558594],[123.081358671875,40.9588430000001],[123.087315703125,40.9286879707032],[123.057345,40.9238430000001],[123.052061796875,40.9285622382813],[123.035094023438,40.9475551582032],[122.987086210938,40.9780861640625],[122.942061796875,40.9885622382813],[122.932628203125,40.9991237617187],[122.900494414063,41.0085622382813],[122.872276640625,40.9769789863282],[122.832628203125,40.9831215644531],[122.891910429688,41.0208278632813],[122.86615359375,41.043843],[122.882628203125,41.0585622382812],[122.892061796875,41.0809120917969],[122.85218875,41.0785353828125],[122.827345,41.083843],[122.842896757813,41.1082900214844],[122.851793242188,41.1393959785157],[122.862896757813,41.1482900214844],[122.871793242188,41.1593959785156],[122.888453398438,41.1727370429688],[122.902940703125,41.1908327460938],[122.972706328125,41.1995095039063],[122.991793242188,41.1882900214844],[123.007345,41.1838430000001],[122.997345,41.163843]]],[[[123.027345,41.1938430000001],[123.007345,41.1938430000001],[123.007345,41.203843],[123.027345,41.203843],[123.027345,41.1938430000001]]]]}},{"type":"Feature","properties":{"name":"台安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.607345,41.203843],[122.617345,41.203843],[122.612345,41.1910353828125],[122.607345,41.203843]]],[[[122.597345,41.513843],[122.585152617188,41.5104201484376],[122.593922148438,41.5016506171875],[122.624195585938,41.5063661933594],[122.621607695313,41.4888430000001],[122.623082304688,41.478843],[122.6216028125,41.4688088203125],[122.627345,41.433843],[122.615152617188,41.4304201484376],[122.623922148438,41.4216506171875],[122.627345,41.433843],[122.634483671875,41.4283315253907],[122.630284453125,41.3998867011719],[122.642345,41.3981044746094],[122.660592070313,41.4007997871094],[122.640362578125,41.3672658515625],[122.644068632813,41.3421877265625],[122.59306765625,41.3028212714844],[122.58298953125,41.2781996894532],[122.545748320313,41.2494557929688],[122.5976965625,41.2384938789063],[122.607345,41.203843],[122.597345,41.203843],[122.597345,41.173843],[122.591163359375,41.1685195136719],[122.593287382813,41.1421120429688],[122.54197390625,41.1192153144532],[122.53271609375,41.1084706855469],[122.515513945313,41.0936501289063],[122.441304960938,41.0767909980469],[122.4427746875,41.0584963203126],[122.413756132813,41.0455495429688],[122.441959257813,41.0212538886719],[122.417345,41.013843],[122.400308867188,41.0285195136719],[122.404874296875,41.0853444648438],[122.383331328125,41.1239601875],[122.37271609375,41.1592153144532],[122.3619153125,41.1685195136719],[122.363370390625,41.1866249824219],[122.40271609375,41.1984706855469],[122.41197390625,41.2092153144532],[122.43271609375,41.2184706855469],[122.45197390625,41.2292153144532],[122.47271609375,41.2384706855469],[122.48197390625,41.2508217597657],[122.452345,41.2484413886719],[122.407003203125,41.2520851875],[122.332652617188,41.1884169746095],[122.307345,41.1904494453126],[122.25584109375,41.1863112617188],[122.20603640625,41.2141005683594],[122.241593046875,41.244731671875],[122.25197390625,41.2792153144532],[122.26271609375,41.2984706855469],[122.273829375,41.3353774238282],[122.271793242188,41.3607021308594],[122.23197390625,41.3784706855469],[122.206090117188,41.40851096875],[122.187345,41.4538430000001],[122.187345,41.463843],[122.197345,41.463843],[122.197345,41.473843],[122.247340117188,41.5059535957031],[122.355523710938,41.5489553046875],[122.46298953125,41.5581996894531],[122.477345,41.5638430000001],[122.4934778125,41.5595864082032],[122.489678984375,41.5403578925782],[122.512345,41.5358791328125],[122.537447539063,41.5408388496095],[122.593170195313,41.5296681953125],[122.597345,41.513843]]]]}},{"type":"Feature","properties":{"name":"铁东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.027345,41.103843],[123.007345,41.0694899726563],[122.967345,41.083843],[122.990704375,41.1304836250001],[122.997345,41.133843],[123.000704375,41.127202375],[123.02062625,41.11712425],[123.027345,41.103843]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.007345,41.163843],[123.007345,41.133843],[122.997345,41.133843],[122.990704375,41.1304836250001],[122.967345,41.083843],[122.93271609375,41.0942690253906],[122.941983671875,41.1392739082032],[122.952623320313,41.1384181953126],[122.997345,41.163843],[123.007345,41.163843]]]]}},{"type":"Feature","properties":{"name":"岫岩满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.551793242188,40.8082900214844],[123.578018828125,40.7723891425781],[123.553448515625,40.7527150703125],[123.550611601563,40.7299062324219],[123.573013945313,40.6992348457031],[123.571163359375,40.6843422675781],[123.625206328125,40.6910646796875],[123.652896757813,40.6793959785157],[123.671793242188,40.6682900214844],[123.728844023438,40.651977765625],[123.735391875,40.599341046875],[123.71127078125,40.5891762519532],[123.733316679688,40.5516689277344],[123.731085234375,40.5337026191407],[123.741793242188,40.5082900214844],[123.755284453125,40.4974843574219],[123.751724882813,40.4688430000001],[123.754830351563,40.443843],[123.751099882813,40.413843],[123.7537903125,40.3922365546875],[123.722896757813,40.3482900214844],[123.700308867188,40.3302016425782],[123.70341921875,40.3051955390625],[123.652896757813,40.2682900214844],[123.631793242188,40.2593959785157],[123.612896757813,40.2482900214844],[123.590982695313,40.2390554023438],[123.552896757813,40.1742665839844],[123.576431914063,40.166821515625],[123.607345,40.173843],[123.595211210938,40.1314064765625],[123.558717070313,40.1099538398438],[123.520640898438,40.099067609375],[123.471666289063,40.0693178535156],[123.47474734375,40.0445363593751],[123.421793242188,40.0293959785157],[123.397345,40.0138430000001],[123.38170046875,40.0094863105469],[123.372686796875,39.9978115058594],[123.313219023438,40.0211891914063],[123.283922148438,40.0168593574219],[123.26298953125,40.0294863105469],[123.2310559375,40.0425551582031],[123.20298953125,40.0594863105469],[123.13369265625,40.0712587714844],[123.112345,40.0681044746094],[123.092857695313,40.0709841132813],[123.073883085938,40.0463991523438],[123.036549101563,40.0519155097657],[123.02298953125,40.0694863105469],[123.00170046875,40.0781996894532],[122.98045046875,40.0910182929688],[122.9831653125,40.1093825507813],[122.940982695313,40.1346108222656],[122.94312625,40.1491347480469],[122.930123320313,40.1822096992188],[122.89978640625,40.1777260566406],[122.887345,40.1938430000001],[122.88298953125,40.2294863105469],[122.86662234375,40.2711244941406],[122.887345,40.323843],[122.920416289063,40.333051984375],[122.93298953125,40.4070607734375],[122.9870325,40.4221108222657],[122.98154421875,40.4592458320313],[122.997345,40.483843],[123.033170195313,40.4982717109375],[123.03154421875,40.5092726875],[123.05298953125,40.5381996894532],[123.06170046875,40.5594863105469],[123.101373320313,40.5705336738281],[123.11170046875,40.6194863105469],[123.136178007813,40.6600661445313],[123.127345,40.713843],[123.148619414063,40.7227797675782],[123.172345,40.7073305488282],[123.204796171875,40.7284633613282],[123.25326296875,40.7379274726562],[123.322022734375,40.7700356269532],[123.338297148438,40.7663881660156],[123.387022734375,40.7788930488281],[123.40435671875,40.8039968085938],[123.439141875,40.7961977363282],[123.472066679688,40.8100258613281],[123.482491484375,40.8076894355469],[123.52142703125,40.8197585273438],[123.547345,40.823843],[123.551793242188,40.8082900214844]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"望花区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.777345,41.973843],[123.77326296875,41.9479274726563],[123.75326296875,41.9172145820313],[123.773765898438,41.8687990546875],[123.817345,41.863843],[123.833013945313,41.8411464667969],[123.907652617188,41.8578798652344],[123.917345,41.843843],[123.912535429688,41.8386525703126],[123.872535429688,41.8259877753906],[123.896090117188,41.7835378242187],[123.922535429688,41.7590334296876],[123.932154570313,41.7486525703125],[123.942535429688,41.7390334296875],[123.947345,41.733843],[123.880704375,41.737202375],[123.81545046875,41.769720685547],[123.827203398438,41.7937953925782],[123.787486601563,41.8138893867188],[123.777345,41.7938430000001],[123.703414335938,41.7728810859375],[123.652808867188,41.7917678046875],[123.673834257813,41.809233625],[123.67166140625,41.8305361152344],[123.712808867188,41.8483803535156],[123.74076296875,41.8643910957031],[123.711324492188,41.888843],[123.722808867188,41.8983803535157],[123.7358215625,41.9140456367188],[123.721803007813,41.9385207343751],[123.722896757813,41.9492336250001],[123.717345,41.9538430000001],[123.728463164063,41.9677297187501],[123.777345,41.973843]]],[[[123.777345,41.973843],[123.777345,41.9838430000001],[123.797345,41.9938430000001],[123.797345,41.973843],[123.777345,41.973843]]]]}},{"type":"Feature","properties":{"name":"新宾满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.395699492188,41.9805825019531],[124.422345,41.9784413886719],[124.440328398438,41.9798867011719],[124.472457304688,41.9522072578125],[124.493912382813,41.9041274238281],[124.536182890625,41.8805434394531],[124.562345,41.878441388672],[124.572584257813,41.8792641425782],[124.602105742188,41.8684218574219],[124.680621367188,41.8747304511719],[124.708228789063,41.8019863105469],[124.752647734375,41.7984169746095],[124.792974882813,41.8299977851563],[124.820787382813,41.8277626777344],[124.852252226563,41.8393166328125],[124.910074492188,41.826704328125],[125.01271609375,41.8384706855469],[125.022667265625,41.8500221992187],[125.054327421875,41.8474782539063],[125.116871367188,41.8616872382813],[125.140728789063,41.8893752265625],[125.161490507813,41.8877065253907],[125.218131132813,41.9230580878907],[125.287345,41.9538430000001],[125.304298125,41.9504201484375],[125.343985625,41.9304836250001],[125.347345,41.923843],[125.296695585938,41.9191188789063],[125.290621367188,41.883843],[125.293204375,41.8688430000001],[125.2855090625,41.8241274238281],[125.317393828125,41.7726076484376],[125.325787382813,41.7238430000001],[125.316534453125,41.6700954414062],[125.403917265625,41.6851393867188],[125.448267851563,41.667514875],[125.454068632813,41.633843],[125.4484778125,41.601372296875],[125.457345,41.5638430000001],[125.45170046875,41.5594863105469],[125.442857695313,41.5480287910156],[125.432345,41.5495815253906],[125.412345,41.5466262031251],[125.383922148438,41.5508266425781],[125.345914335938,41.5278993964844],[125.316715117188,41.4900698066406],[125.251832304688,41.4996572089844],[125.24298953125,41.4881996894532],[125.208424101563,41.4794863105469],[125.192686796875,41.4998744941406],[125.15615359375,41.485512921875],[125.132735625,41.4996401191407],[125.072686796875,41.4907656074219],[125.060914335938,41.475512921875],[125.009190703125,41.4905934882812],[124.991954375,41.4880458808594],[124.955484648438,41.5100453925782],[124.931080351563,41.5064394355469],[124.881905546875,41.4699806953126],[124.87298953125,41.4481996894531],[124.86170046875,41.4394863105469],[124.849429960938,41.4235854316407],[124.853082304688,41.398843],[124.85048953125,41.3812831855469],[124.8701965625,41.3311501289063],[124.84170046875,41.3194863105469],[124.83298953125,41.3081996894532],[124.797081328125,41.2935036445313],[124.757345,41.2638430000001],[124.75209109375,41.2697219062501],[124.695343046875,41.2663393378907],[124.648785429688,41.241040265625],[124.632628203125,41.2591237617188],[124.590011015625,41.2690395332032],[124.532628203125,41.3091237617188],[124.512061796875,41.3185622382813],[124.476168242188,41.3380678535156],[124.462628203125,41.3085622382813],[124.426392851563,41.2991237617187],[124.412628203125,41.3291237617188],[124.39197390625,41.3475783515625],[124.392867460938,41.3626113105469],[124.352061796875,41.3885622382813],[124.342628203125,41.4217568183594],[124.372628203125,41.4485622382813],[124.377345,41.4538430000001],[124.426329375,41.4590566230469],[124.44427859375,41.5157411933594],[124.43205203125,41.538843],[124.442672148438,41.5589076972657],[124.429683867188,41.5709401679688],[124.391749296875,41.588843],[124.392769804688,41.6146059394532],[124.422535429688,41.6286525703125],[124.43576296875,41.6429311347656],[124.422017851563,41.6689076972657],[124.451475859375,41.6962026191407],[124.408062773438,41.7099477363282],[124.392535429688,41.7328224921876],[124.432642851563,41.7587221503906],[124.42033328125,41.7938430000001],[124.435655546875,41.8375600410157],[124.410636015625,41.84937034375],[124.34166140625,41.84663596875],[124.343175078125,41.8847963691407],[124.373018828125,41.8988808417969],[124.319195585938,41.9159206367188],[124.302535429688,41.9460439277344],[124.352232695313,41.9286244941407],[124.402154570313,41.9333242011719],[124.377345,41.973843],[124.395699492188,41.9805825019531]]]]}},{"type":"Feature","properties":{"name":"新抚区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.979346953125,41.8580348945313],[123.930704375,41.8504836250001],[123.917345,41.843843],[123.907652617188,41.8578798652344],[123.833013945313,41.8411464667969],[123.817345,41.863843],[123.902628203125,41.8685622382813],[123.987345,41.8738430000001],[123.979346953125,41.8580348945313]]]]}},{"type":"Feature","properties":{"name":"东洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.069810820313,41.8186977363282],[124.073834257813,41.779233625],[124.056422148438,41.7647682929688],[124.035631132813,41.7397402167969],[124.0145325,41.7883803535157],[123.981793242188,41.7692531562501],[123.9828528125,41.7588430000001],[123.9818371875,41.748843],[123.983804960938,41.7295021796875],[123.953516875,41.7264138007813],[123.947345,41.733843],[123.942535429688,41.7390334296875],[123.932154570313,41.7486525703125],[123.922535429688,41.7590334296876],[123.896090117188,41.7835378242187],[123.872535429688,41.8259877753906],[123.912535429688,41.8386525703126],[123.917345,41.843843],[123.930704375,41.8504836250001],[123.979346953125,41.8580348945313],[123.987345,41.8738430000001],[124.049078398438,41.877505109375],[124.057345,41.893843],[124.090347929688,41.8879616523438],[124.113365507813,41.8688430000001],[124.100855742188,41.858452375],[124.10388796875,41.8286977363281],[124.069810820313,41.8186977363282]]]]}},{"type":"Feature","properties":{"name":"抚顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.247789335938,42.0759670234375],[124.2680871875,42.0395864082031],[124.28252078125,42.0072438789063],[124.337345,42.013843],[124.3551575,41.9783217597656],[124.377345,41.973843],[124.402154570313,41.9333242011719],[124.352232695313,41.9286244941407],[124.302535429688,41.9460439277344],[124.319195585938,41.9159206367188],[124.373018828125,41.8988808417969],[124.343175078125,41.8847963691407],[124.34166140625,41.84663596875],[124.410636015625,41.84937034375],[124.435655546875,41.8375600410157],[124.42033328125,41.7938430000001],[124.432642851563,41.7587221503906],[124.392535429688,41.7328224921876],[124.408062773438,41.7099477363282],[124.451475859375,41.6962026191407],[124.422017851563,41.6689076972657],[124.43576296875,41.6429311347656],[124.422535429688,41.6286525703125],[124.392769804688,41.6146059394532],[124.391749296875,41.588843],[124.429683867188,41.5709401679688],[124.442672148438,41.5589076972657],[124.43205203125,41.538843],[124.44427859375,41.5157411933594],[124.426329375,41.4590566230469],[124.377345,41.4538430000001],[124.373077421875,41.4595778632813],[124.35812625,41.4706996894531],[124.341886015625,41.4679030585938],[124.31025515625,41.4917031074219],[124.31330203125,41.5094106269531],[124.301612578125,41.5181081367188],[124.284049101563,41.5417189765625],[124.257345,41.5371218085938],[124.232345,41.5414260078126],[124.188580351563,41.5338906074219],[124.163077421875,41.5181081367188],[124.114058867188,41.5048183417969],[124.094049101563,41.5317189765626],[124.065050078125,41.5267263007813],[124.033077421875,41.5395778632813],[124.001612578125,41.5481081367188],[123.982603789063,41.5598720527344],[123.933687773438,41.5453139472656],[123.917237578125,41.5674318671875],[123.858306914063,41.5572878242188],[123.863258085938,41.5285488105469],[123.857345,41.513843],[123.793673125,41.5033827949219],[123.781143828125,41.5339919257813],[123.737345,41.523843],[123.717296171875,41.5678786445313],[123.79125125,41.5948622871094],[123.757345,41.6138430000001],[123.747940703125,41.6383058906251],[123.781632109375,41.6652834296875],[123.791793242188,41.6893959785157],[123.807335234375,41.7018447089844],[123.770631132813,41.7642873359375],[123.777345,41.7938430000001],[123.787486601563,41.8138893867188],[123.827203398438,41.7937953925782],[123.81545046875,41.769720685547],[123.880704375,41.737202375],[123.947345,41.733843],[123.953516875,41.7264138007813],[123.983804960938,41.7295021796875],[123.9818371875,41.748843],[123.9828528125,41.7588430000001],[123.981793242188,41.7692531562501],[124.0145325,41.7883803535157],[124.035631132813,41.7397402167969],[124.056422148438,41.7647682929688],[124.073834257813,41.779233625],[124.069810820313,41.8186977363282],[124.10388796875,41.8286977363281],[124.100855742188,41.858452375],[124.113365507813,41.8688430000001],[124.090347929688,41.8879616523438],[124.057345,41.893843],[124.050704375,41.8972023750001],[124.043336210938,41.9117690253907],[124.023336210938,41.9020009589845],[124.011353789063,41.9256850410157],[123.983336210938,41.9120009589844],[123.973985625,41.9304836250001],[123.940704375,41.9372023750001],[123.914796171875,41.9887783027344],[123.943985625,41.997202375],[123.947345,42.003843],[124.0252746875,42.01179221875],[124.049371367188,42.0657912421876],[124.09982546875,42.0698451972657],[124.15486453125,42.0578408027344],[124.182345,42.0600478339844],[124.230728789063,42.0561611152344],[124.247789335938,42.0759670234375]]]]}},{"type":"Feature","properties":{"name":"清原满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.2005871875,42.3665834785157],[125.16654421875,42.3479213691407],[125.174405546875,42.3288430000001],[125.165650664063,42.3075978828125],[125.257345,42.303843],[125.29146609375,42.2847414375],[125.271529570313,42.2693544746094],[125.274561796875,42.248843],[125.271519804688,42.2282497382813],[125.305421171875,42.2188100410156],[125.279742460938,42.1762416816407],[125.30623171875,42.1801564765625],[125.300225859375,42.1394863105469],[125.353175078125,42.1482302070313],[125.348834257813,42.1775856757813],[125.362735625,42.1796401191406],[125.39763796875,42.1585866523438],[125.447345,42.153843],[125.481793242188,42.1439943671876],[125.470831328125,42.1246450019531],[125.451793242188,42.1093959785156],[125.440987578125,42.0959023261719],[125.41037234375,42.0997109199219],[125.414156523438,42.0692958808594],[125.401793242188,42.0593959785157],[125.3491028125,41.9935451484375],[125.291793242188,41.9693959785156],[125.287345,41.9538430000001],[125.218131132813,41.9230580878907],[125.161490507813,41.8877065253907],[125.140728789063,41.8893752265625],[125.116871367188,41.8616872382813],[125.054327421875,41.8474782539063],[125.022667265625,41.8500221992187],[125.01271609375,41.8384706855469],[124.910074492188,41.826704328125],[124.852252226563,41.8393166328125],[124.820787382813,41.8277626777344],[124.792974882813,41.8299977851563],[124.752647734375,41.7984169746095],[124.708228789063,41.8019863105469],[124.680621367188,41.8747304511719],[124.602105742188,41.8684218574219],[124.572584257813,41.8792641425782],[124.562345,41.878441388672],[124.536182890625,41.8805434394531],[124.493912382813,41.9041274238281],[124.472457304688,41.9522072578125],[124.440328398438,41.9798867011719],[124.422345,41.9784413886719],[124.395699492188,41.9805825019531],[124.377345,41.973843],[124.3551575,41.9783217597656],[124.337345,42.013843],[124.363658476563,42.0179897285157],[124.361051054688,42.0296254707031],[124.41326296875,42.0479274726563],[124.46142703125,42.0697585273438],[124.521329375,42.0851308417969],[124.544010039063,42.1179775214844],[124.537345,42.133843],[124.54197390625,42.1392153144531],[124.56197390625,42.1564455390625],[124.55271609375,42.1692153144531],[124.524205351563,42.1937795234375],[124.511807890625,42.2390724921875],[124.52271609375,42.2484706855469],[124.53197390625,42.2592153144532],[124.551715117188,42.2762221503907],[124.56197390625,42.2992153144532],[124.572769804688,42.3185646796875],[124.570367460938,42.3484706855469],[124.6227746875,42.3392043281251],[124.621241484375,42.3201369453125],[124.681202421875,42.3153188300782],[124.73197390625,42.3292153144531],[124.791861601563,42.3428212714844],[124.763638945313,42.3934072089844],[124.79197390625,42.4092153144532],[124.817345,42.413843],[124.842896757813,42.4093959785157],[124.902799101563,42.3957900214844],[124.936422148438,42.3999721503907],[124.96365359375,42.3659658027344],[124.992896757813,42.3782900214844],[125.001793242188,42.3993959785157],[125.03302859375,42.4083278632813],[125.029957304688,42.4330471015625],[125.091793242188,42.4693959785157],[125.107345,42.473843],[125.12892703125,42.4692006660157],[125.145445585938,42.4390639472656],[125.175816679688,42.4296804023437],[125.18646609375,42.4038430000001],[125.17654421875,42.3797646308594],[125.2005871875,42.3665834785157]]]]}},{"type":"Feature","properties":{"name":"顺城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.973985625,41.9304836250001],[123.983336210938,41.9120009589844],[124.011353789063,41.9256850410157],[124.023336210938,41.9020009589845],[124.043336210938,41.9117690253907],[124.050704375,41.8972023750001],[124.057345,41.893843],[124.049078398438,41.877505109375],[123.987345,41.8738430000001],[123.902628203125,41.8685622382813],[123.817345,41.863843],[123.773765898438,41.8687990546875],[123.75326296875,41.9172145820313],[123.77326296875,41.9479274726563],[123.777345,41.973843],[123.797345,41.973843],[123.797345,41.9938430000001],[123.813531523438,41.9976552558594],[123.823902617188,42.0144887519532],[123.877701445313,42.0321828437501],[123.943531523438,42.0100307441407],[123.947345,42.003843],[123.943985625,41.997202375],[123.914796171875,41.9887783027344],[123.940704375,41.9372023750001],[123.973985625,41.9304836250001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"本溪满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.917237578125,41.5674318671875],[123.933687773438,41.5453139472656],[123.982603789063,41.5598720527344],[124.001612578125,41.5481081367188],[124.033077421875,41.5395778632813],[124.065050078125,41.5267263007813],[124.094049101563,41.5317189765626],[124.114058867188,41.5048183417969],[124.163077421875,41.5181081367188],[124.188580351563,41.5338906074219],[124.232345,41.5414260078126],[124.257345,41.5371218085938],[124.284049101563,41.5417189765625],[124.301612578125,41.5181081367188],[124.31330203125,41.5094106269531],[124.31025515625,41.4917031074219],[124.341886015625,41.4679030585938],[124.35812625,41.4706996894531],[124.373077421875,41.4595778632813],[124.377345,41.4538430000001],[124.372628203125,41.4485622382813],[124.342628203125,41.4217568183594],[124.352061796875,41.3885622382813],[124.392867460938,41.3626113105469],[124.39197390625,41.3475783515625],[124.412628203125,41.3291237617188],[124.426392851563,41.2991237617187],[124.462628203125,41.3085622382813],[124.476168242188,41.3380678535156],[124.512061796875,41.3185622382813],[124.532628203125,41.3091237617188],[124.590011015625,41.2690395332032],[124.632628203125,41.2591237617188],[124.648785429688,41.241040265625],[124.695343046875,41.2663393378907],[124.75209109375,41.2697219062501],[124.757345,41.2638430000001],[124.737428007813,41.2239138007813],[124.748004179688,41.2022585273438],[124.730704375,41.180483625],[124.727345,41.1538430000001],[124.708101835938,41.1306764960938],[124.679234648438,41.1181569648438],[124.656490507813,41.0907753730469],[124.566436796875,41.0999550605469],[124.541881132813,41.0893056464844],[124.528267851563,41.0729177070312],[124.511881132813,41.0593056464844],[124.507345,41.043843],[124.472808867188,41.0593056464844],[124.4209778125,41.0745143867188],[124.392667265625,41.0583010078125],[124.382345,41.0593520332032],[124.363531523438,41.0574355292969],[124.34244265625,41.0695156074219],[124.310474882813,41.0575051093751],[124.290885039063,41.0595021796876],[124.294361601563,41.0936354804688],[124.230987578125,41.0871755195313],[124.2328528125,41.068843],[124.231138945313,41.0519924140626],[124.201881132813,41.0393056464844],[124.18107546875,41.0273879218751],[124.137345,41.0524343085937],[124.112808867188,41.0383803535156],[124.091456328125,41.0291213203126],[124.102808867188,41.0093056464844],[124.111881132813,40.9883803535157],[124.122896757813,40.979233625],[124.121636992188,40.9668910957032],[124.1431653125,40.9490077949219],[124.130069609375,40.9261440253906],[124.136803007813,40.86011253125],[124.096612578125,40.8426833320313],[124.081954375,40.8603322578126],[124.062345,40.8583339667969],[124.037345,40.8608815742188],[124.012345,40.8583339667969],[123.97541140625,40.8620973945313],[123.929957304688,40.8261232734376],[123.856339140625,40.8467055488282],[123.82250125,40.8594203925781],[123.75892703125,40.8476625800782],[123.741988554688,40.8493886542969],[123.696690703125,40.8135390449219],[123.612808867188,40.8493056464844],[123.587345,40.853843],[123.62197390625,40.9092153144531],[123.64271609375,40.9384706855469],[123.647345,40.973843],[123.653170195313,40.9780178046875],[123.702896757813,40.9878444648437],[123.72216921875,41.0000795722656],[123.751519804688,40.9880178046876],[123.793170195313,40.9796681953125],[123.801519804688,40.9580178046875],[123.819088164063,40.9454262519532],[123.855308867188,40.968423078125],[123.91500125,40.9803908515625],[123.911236601563,40.9994631171875],[123.923170195313,41.0080178046875],[123.931519804688,41.0196681953125],[123.9469153125,41.0307033515626],[123.94127078125,41.0592763496094],[123.95341921875,41.0784096503906],[123.947681914063,41.1074428535156],[123.983170195313,41.1280178046875],[123.991519804688,41.1693483710938],[123.977345,41.203843],[124.00326296875,41.2179274726563],[124.01142703125,41.2341188789063],[123.99142703125,41.2479274726563],[123.98326296875,41.2641188789063],[124.00326296875,41.2779274726563],[124.02142703125,41.3076625800782],[123.971724882813,41.3204189277344],[123.95326296875,41.3697585273438],[123.91713015625,41.3832778144532],[123.865694609375,41.3717482734376],[123.84654421875,41.3994826484375],[123.885474882813,41.4263600898438],[123.87142703125,41.4479274726563],[123.857345,41.503843],[123.857345,41.513843],[123.863258085938,41.5285488105469],[123.858306914063,41.5572878242188],[123.917237578125,41.5674318671875]]]]}},{"type":"Feature","properties":{"name":"桓仁满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.469176054688,41.5556740546875],[125.48142703125,41.5379274726562],[125.49361453125,41.5295131660156],[125.489254179688,41.5100478339844],[125.51142703125,41.4779274726563],[125.535709257813,41.468843],[125.531221953125,41.448843],[125.533468046875,41.438843],[125.530943632813,41.4275966621094],[125.55142703125,41.3979274726563],[125.57326296875,41.3897585273438],[125.58142703125,41.3679274726563],[125.607345,41.363843],[125.61170046875,41.3581996894531],[125.625811796875,41.3473073554688],[125.620362578125,41.3104201484375],[125.63298953125,41.2894863105469],[125.642345,41.266626203125],[125.673883085938,41.2712868476563],[125.69170046875,41.2481996894531],[125.750831328125,41.2381545234375],[125.727701445313,41.1793129707032],[125.781085234375,41.1644472480469],[125.76170046875,41.1494863105469],[125.75298953125,41.1281996894531],[125.713560820313,41.1120619941406],[125.711529570313,41.0983315253907],[125.73170046875,41.0827614570313],[125.710865507813,41.0442800117188],[125.682276640625,41.022212140625],[125.67298953125,40.9781996894531],[125.648365507813,40.9681215644532],[125.63298953125,40.9481996894531],[125.593746367188,40.9321388984375],[125.58298953125,40.9181996894532],[125.577345,40.913843],[125.565982695313,40.9270314765626],[125.52713015625,40.9053530097657],[125.49271609375,40.9261598945313],[125.529049101563,40.9774025703125],[125.490367460938,40.988470685547],[125.49291140625,40.9567885566406],[125.450445585938,40.9602004218751],[125.455025664063,41.0172243476563],[125.434508085938,41.0349001289063],[125.422691679688,41.0084133125001],[125.381715117188,41.0117055488281],[125.382974882813,40.9959804511719],[125.340382109375,40.9994020820313],[125.3427746875,41.0291786933594],[125.31197390625,41.0484706855469],[125.287320585938,41.0878285957032],[125.25197390625,41.0984706855469],[125.222266875,41.109380109375],[125.202623320313,41.0984194160157],[125.172345,41.1008522773438],[125.089620390625,41.094204328125],[125.04654421875,41.1182375312501],[124.992266875,41.098305890625],[124.97271609375,41.1092153144531],[124.90197390625,41.1184706855469],[124.87271609375,41.1292153144532],[124.825714140625,41.1398928046875],[124.760875273438,41.1281374335937],[124.74271609375,41.1492153144532],[124.727345,41.1538430000001],[124.730704375,41.180483625],[124.748004179688,41.2022585273438],[124.737428007813,41.2239138007813],[124.757345,41.2638430000001],[124.797081328125,41.2935036445313],[124.83298953125,41.3081996894532],[124.84170046875,41.3194863105469],[124.8701965625,41.3311501289063],[124.85048953125,41.3812831855469],[124.853082304688,41.398843],[124.849429960938,41.4235854316407],[124.86170046875,41.4394863105469],[124.87298953125,41.4481996894531],[124.881905546875,41.4699806953126],[124.931080351563,41.5064394355469],[124.955484648438,41.5100453925782],[124.991954375,41.4880458808594],[125.009190703125,41.4905934882812],[125.060914335938,41.475512921875],[125.072686796875,41.4907656074219],[125.132735625,41.4996401191407],[125.15615359375,41.485512921875],[125.192686796875,41.4998744941406],[125.208424101563,41.4794863105469],[125.24298953125,41.4881996894532],[125.251832304688,41.4996572089844],[125.316715117188,41.4900698066406],[125.345914335938,41.5278993964844],[125.383922148438,41.5508266425781],[125.412345,41.5466262031251],[125.432345,41.5495815253906],[125.442857695313,41.5480287910156],[125.45170046875,41.5594863105469],[125.457345,41.5638430000001],[125.469176054688,41.5556740546875]]]]}},{"type":"Feature","properties":{"name":"明山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.84654421875,41.3994826484375],[123.865694609375,41.3717482734376],[123.91713015625,41.3832778144532],[123.95326296875,41.3697585273438],[123.971724882813,41.3204189277344],[124.02142703125,41.3076625800782],[124.00326296875,41.2779274726563],[123.98326296875,41.2641188789063],[123.99142703125,41.2479274726563],[124.01142703125,41.2341188789063],[124.00326296875,41.2179274726563],[123.977345,41.203843],[123.94142703125,41.2079274726563],[123.907345,41.2222426582031],[123.872310820313,41.2075283027344],[123.811553984375,41.235063703125],[123.777345,41.243843],[123.769615507813,41.2664186835938],[123.791715117188,41.2876491523438],[123.747345,41.293843],[123.7560559375,41.3051308417969],[123.787740507813,41.3295876289063],[123.747945585938,41.3832631660157],[123.76298953125,41.4081996894531],[123.783316679688,41.4578700996094],[123.83298953125,41.4781996894531],[123.8460559375,41.4951308417969],[123.857345,41.503843],[123.87142703125,41.4479274726563],[123.885474882813,41.4263600898438],[123.84654421875,41.3994826484375]]]]}},{"type":"Feature","properties":{"name":"南芬区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.811553984375,41.235063703125],[123.872310820313,41.2075283027344],[123.907345,41.2222426582031],[123.94142703125,41.2079274726563],[123.977345,41.203843],[123.991519804688,41.1693483710938],[123.983170195313,41.1280178046875],[123.947681914063,41.1074428535156],[123.95341921875,41.0784096503906],[123.94127078125,41.0592763496094],[123.9469153125,41.0307033515626],[123.931519804688,41.0196681953125],[123.923170195313,41.0080178046875],[123.911236601563,40.9994631171875],[123.91500125,40.9803908515625],[123.855308867188,40.968423078125],[123.819088164063,40.9454262519532],[123.801519804688,40.9580178046875],[123.793170195313,40.9796681953125],[123.751519804688,40.9880178046876],[123.72216921875,41.0000795722656],[123.702896757813,40.9878444648437],[123.653170195313,40.9780178046875],[123.647345,40.973843],[123.654849882813,41.0338356757813],[123.684830351563,41.05784690625],[123.666236601563,41.0727370429688],[123.647633085938,41.0959694648438],[123.653004179688,41.139126203125],[123.647345,41.1538430000001],[123.692345,41.1482204414063],[123.707345,41.1500868964844],[123.735484648438,41.146587140625],[123.781793242188,41.1572206855469],[123.751793242188,41.1982900214844],[123.742896757813,41.2256484199219],[123.772896757813,41.2382900214844],[123.777345,41.243843],[123.811553984375,41.235063703125]]]]}},{"type":"Feature","properties":{"name":"平山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.673531523438,41.3000307441406],[123.681383085938,41.2666994453125],[123.713531523438,41.2776552558594],[123.731158476563,41.2900307441407],[123.747345,41.293843],[123.791715117188,41.2876491523438],[123.769615507813,41.2664186835938],[123.777345,41.243843],[123.772896757813,41.2382900214844],[123.742896757813,41.2256484199219],[123.751793242188,41.1982900214844],[123.781793242188,41.1572206855469],[123.735484648438,41.146587140625],[123.707345,41.1500868964844],[123.692345,41.1482204414063],[123.647345,41.1538430000001],[123.634034453125,41.1605776191406],[123.613985625,41.2004836250001],[123.599420195313,41.2078530097657],[123.60478640625,41.218843],[123.595504179688,41.2378530097656],[123.607345,41.243843],[123.6660559375,41.2511855292969],[123.651578398438,41.288843],[123.657345,41.3038430000001],[123.673531523438,41.3000307441406]]]]}},{"type":"Feature","properties":{"name":"溪湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.781143828125,41.5339919257813],[123.793673125,41.5033827949219],[123.857345,41.513843],[123.857345,41.503843],[123.8460559375,41.4951308417969],[123.83298953125,41.4781996894531],[123.783316679688,41.4578700996094],[123.76298953125,41.4081996894531],[123.747945585938,41.3832631660157],[123.787740507813,41.3295876289063],[123.7560559375,41.3051308417969],[123.747345,41.293843],[123.731158476563,41.2900307441407],[123.713531523438,41.2776552558594],[123.681383085938,41.2666994453125],[123.673531523438,41.3000307441406],[123.657345,41.3038430000001],[123.65142703125,41.3279274726563],[123.64326296875,41.3897585273438],[123.6307825,41.4089223457032],[123.653580351563,41.4383376289062],[123.649112578125,41.4582570625],[123.603902617188,41.469858625],[123.587345,41.4938430000001],[123.628258085938,41.5208803535157],[123.642345,41.5177223945313],[123.662345,41.5222060371094],[123.682345,41.5177223945313],[123.692789335938,41.5200637031251],[123.711900664063,41.507622296875],[123.728756132813,41.5114003730469],[123.737345,41.523843],[123.781143828125,41.5339919257813]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东港市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.747345,39.753843],[123.759537382813,39.7504201484375],[123.750767851563,39.7416506171875],[123.747345,39.753843]]],[[[123.713922148438,39.7560353828126],[123.717345,39.7438430000001],[123.705152617188,39.7472658515625],[123.713922148438,39.7560353828126]]],[[[123.747345,39.753843],[123.724346953125,39.7578957343751],[123.741910429688,39.7665395332031],[123.747345,39.753843]]],[[[123.813922148438,39.7960353828126],[123.817345,39.7838430000001],[123.805152617188,39.7872658515625],[123.813922148438,39.7960353828126]]],[[[123.947345,39.823843],[123.959537382813,39.8272658515625],[123.950767851563,39.8360353828126],[123.851881132813,39.8283803535156],[123.842735625,39.8393923164062],[123.831954375,39.8382936835938],[123.822345,39.8498622871094],[123.805704375,39.8298268867188],[123.693804960938,39.8172780585938],[123.66634890625,39.8330055976563],[123.648267851563,39.8547682929688],[123.637345,39.863843],[123.63334109375,39.8865688300782],[123.624346953125,39.8694045234376],[123.637345,39.863843],[123.643643828125,39.8381923652344],[123.63142703125,39.8297585273437],[123.621085234375,39.7894557929688],[123.57142703125,39.7797585273438],[123.551998320313,39.76710471875],[123.54326296875,39.7797585273438],[123.517345,39.7838430000001],[123.513170195313,39.7996681953125],[123.48968875,39.8304128242187],[123.493453398438,39.8494631171875],[123.465201445313,39.8697145820313],[123.48341921875,39.8984096503907],[123.479879179688,39.9163185859375],[123.407447539063,39.9308388496094],[123.391636992188,39.9277150703126],[123.383170195313,39.9496681953125],[123.37080203125,39.9691518378906],[123.392652617188,39.9848146796875],[123.397345,40.0138430000001],[123.421793242188,40.0293959785157],[123.47474734375,40.0445363593751],[123.471666289063,40.0693178535156],[123.520640898438,40.099067609375],[123.558717070313,40.1099538398438],[123.595211210938,40.1314064765625],[123.607345,40.173843],[123.629049101563,40.1818141914063],[123.66197390625,40.1584706855469],[123.68271609375,40.1492153144531],[123.70197390625,40.1350612617187],[123.662843046875,40.1013491035157],[123.711158476563,40.0332082343751],[123.782291289063,40.05933128125],[123.835889921875,40.0446620917969],[123.867345,40.062212140625],[123.892183867188,40.04835471875],[123.942174101563,40.0592580390625],[123.982974882813,40.0559804511719],[123.981539335938,40.073843],[123.984298125,40.1081435371094],[124.03271609375,40.1384706855469],[124.056788359375,40.1769008613282],[124.087213164063,40.1904787421876],[124.107345,40.213843],[124.117345,40.213843],[124.135894804688,40.2086769843751],[124.15170046875,40.1881996894531],[124.187779570313,40.1781520820313],[124.13298953125,40.1042470527344],[124.161280546875,40.0951039863282],[124.215797148438,40.1279885078126],[124.233140898438,40.099233625],[124.231256132813,40.0864650703125],[124.252857695313,40.0896572089844],[124.26297,40.0765541816407],[124.307345,40.0838430000001],[124.2994934375,40.0210695625],[124.263863554688,40.0060549140626],[124.260479765625,39.978843],[124.282896757813,39.9693959785157],[124.287345,39.9638430000001],[124.281685820313,39.9491262031251],[124.283033476563,39.9383193183594],[124.22584109375,39.9259450507813],[124.211793242188,39.8893959785157],[124.202686796875,39.8575588203126],[124.152706328125,39.8281764960937],[124.120748320313,39.8321511054688],[124.061793242188,39.8193959785157],[124.009761992188,39.7993959785156],[123.9570325,39.8117470527344],[123.947345,39.823843]]]]}},{"type":"Feature","properties":{"name":"凤城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.107345,40.213843],[124.112345,40.2266506171875],[124.117345,40.213843],[124.107345,40.213843]]],[[[124.107345,40.213843],[124.087213164063,40.1904787421876],[124.056788359375,40.1769008613282],[124.03271609375,40.1384706855469],[123.984298125,40.1081435371094],[123.981539335938,40.073843],[123.982974882813,40.0559804511719],[123.942174101563,40.0592580390625],[123.892183867188,40.04835471875],[123.867345,40.062212140625],[123.835889921875,40.0446620917969],[123.782291289063,40.05933128125],[123.711158476563,40.0332082343751],[123.662843046875,40.1013491035157],[123.70197390625,40.1350612617187],[123.68271609375,40.1492153144531],[123.66197390625,40.1584706855469],[123.629049101563,40.1818141914063],[123.607345,40.173843],[123.576431914063,40.166821515625],[123.552896757813,40.1742665839844],[123.590982695313,40.2390554023438],[123.612896757813,40.2482900214844],[123.631793242188,40.2593959785157],[123.652896757813,40.2682900214844],[123.70341921875,40.3051955390625],[123.700308867188,40.3302016425782],[123.722896757813,40.3482900214844],[123.7537903125,40.3922365546875],[123.751099882813,40.413843],[123.754830351563,40.443843],[123.751724882813,40.4688430000001],[123.755284453125,40.4974843574219],[123.741793242188,40.5082900214844],[123.731085234375,40.5337026191407],[123.733316679688,40.5516689277344],[123.71127078125,40.5891762519532],[123.735391875,40.599341046875],[123.728844023438,40.651977765625],[123.671793242188,40.6682900214844],[123.652896757813,40.6793959785157],[123.625206328125,40.6910646796875],[123.571163359375,40.6843422675781],[123.573013945313,40.6992348457031],[123.550611601563,40.7299062324219],[123.553448515625,40.7527150703125],[123.578018828125,40.7723891425781],[123.551793242188,40.8082900214844],[123.547345,40.823843],[123.53916140625,40.8598622871094],[123.587345,40.853843],[123.612808867188,40.8493056464844],[123.696690703125,40.8135390449219],[123.741988554688,40.8493886542969],[123.75892703125,40.8476625800782],[123.82250125,40.8594203925781],[123.856339140625,40.8467055488282],[123.929957304688,40.8261232734376],[123.97541140625,40.8620973945313],[124.012345,40.8583339667969],[124.037345,40.8608815742188],[124.062345,40.8583339667969],[124.081954375,40.8603322578126],[124.096612578125,40.8426833320313],[124.136803007813,40.86011253125],[124.130069609375,40.9261440253906],[124.1431653125,40.9490077949219],[124.121636992188,40.9668910957032],[124.122896757813,40.979233625],[124.111881132813,40.9883803535157],[124.102808867188,41.0093056464844],[124.091456328125,41.0291213203126],[124.112808867188,41.0383803535156],[124.137345,41.0524343085937],[124.18107546875,41.0273879218751],[124.201881132813,41.0393056464844],[124.231138945313,41.0519924140626],[124.2328528125,41.068843],[124.230987578125,41.0871755195313],[124.294361601563,41.0936354804688],[124.290885039063,41.0595021796876],[124.310474882813,41.0575051093751],[124.34244265625,41.0695156074219],[124.363531523438,41.0574355292969],[124.382345,41.0593520332032],[124.392667265625,41.0583010078125],[124.4209778125,41.0745143867188],[124.472808867188,41.0593056464844],[124.507345,41.043843],[124.529595976563,40.9659523750001],[124.5361340625,40.9133766914063],[124.501676054688,40.8592153144532],[124.504156523438,40.8392958808594],[124.491099882813,40.828843],[124.519586210938,40.8060341621094],[124.5241809375,40.7690700507813],[124.4812121875,40.7429689765625],[124.483472929688,40.7247670722656],[124.451793242188,40.6993959785157],[124.442896757813,40.6882900214844],[124.431793242188,40.6793959785157],[124.4214075,40.6430800605469],[124.372345,40.6369777656251],[124.342896757813,40.640639875],[124.354117460938,40.6124428535156],[124.382896757813,40.5893959785156],[124.39373171875,40.5271498847657],[124.420279570313,40.5304518867188],[124.422965117188,40.508843],[124.420650664063,40.4902297187501],[124.433013945313,40.4692031074219],[124.430533476563,40.4492958808594],[124.448453398438,40.4349489570312],[124.461793242188,40.4182900214844],[124.474830351563,40.40784690625],[124.446236601563,40.3849489570313],[124.413702421875,40.3443202949219],[124.371890898438,40.3495217109376],[124.367345,40.3438430000001],[124.33982546875,40.3498451972657],[124.283316679688,40.3453054023437],[124.243961210938,40.390981671875],[124.199000273438,40.387368390625],[124.181300078125,40.3668288398438],[124.182745390625,40.3488430000001],[124.180167265625,40.3167360664063],[124.105386992188,40.2942214179688],[124.08271609375,40.2350612617188],[124.107345,40.213843]]]]}},{"type":"Feature","properties":{"name":"宽甸满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.74271609375,41.1492153144532],[124.760875273438,41.1281374335937],[124.825714140625,41.1398928046875],[124.87271609375,41.1292153144532],[124.90197390625,41.1184706855469],[124.97271609375,41.1092153144531],[124.992266875,41.098305890625],[125.04654421875,41.1182375312501],[125.089620390625,41.094204328125],[125.172345,41.1008522773438],[125.202623320313,41.0984194160157],[125.222266875,41.109380109375],[125.25197390625,41.0984706855469],[125.287320585938,41.0878285957032],[125.31197390625,41.0484706855469],[125.3427746875,41.0291786933594],[125.340382109375,40.9994020820313],[125.382974882813,40.9959804511719],[125.381715117188,41.0117055488281],[125.422691679688,41.0084133125001],[125.434508085938,41.0349001289063],[125.455025664063,41.0172243476563],[125.450445585938,40.9602004218751],[125.49291140625,40.9567885566406],[125.490367460938,40.988470685547],[125.529049101563,40.9774025703125],[125.49271609375,40.9261598945313],[125.52713015625,40.9053530097657],[125.565982695313,40.9270314765626],[125.577345,40.913843],[125.5676575,40.8897377753906],[125.657701445313,40.9110170722657],[125.691339140625,40.8859938789062],[125.697345,40.863843],[125.67873171875,40.8422389960937],[125.62271609375,40.807153546875],[125.63197390625,40.7984706855469],[125.68197390625,40.7761598945313],[125.661573515625,40.7592153144531],[125.59197390625,40.7684706855469],[125.574742460938,40.7884706855469],[125.544093046875,40.7662526679688],[125.53271609375,40.7284706855469],[125.457320585938,40.7169826484375],[125.442701445313,40.6684133125],[125.410162382813,40.6710268378906],[125.413511992188,40.6293386054688],[125.402047148438,40.6284169746094],[125.37060671875,40.6507118964844],[125.332345,40.6476381660157],[125.263170195313,40.6531960273438],[125.251988554688,40.6160585761719],[125.197877226563,40.6204067207031],[125.10345828125,40.5677272773438],[125.016168242188,40.5414455390626],[124.99271609375,40.5212404609375],[125.00625125,40.4879518867188],[125.031051054688,40.4899440742187],[125.03291140625,40.4667885566406],[124.977491484375,40.4712416816407],[124.925904570313,40.4522975898438],[124.897345,40.4854494453125],[124.840636015625,40.4196279121094],[124.80271609375,40.3984706855469],[124.764288359375,40.3869008613281],[124.727345,40.363843],[124.693531523438,40.3721486640625],[124.68326296875,40.3604714179688],[124.70326296875,40.3297585273438],[124.707345,40.3138430000001],[124.652564726563,40.2981935859376],[124.642345,40.2994643378907],[124.62658328125,40.2975038886719],[124.548804960938,40.2406899238282],[124.507345,40.223843],[124.501793242188,40.2282900214844],[124.489078398438,40.2870412421876],[124.409537382813,40.298618390625],[124.392896757813,40.3193959785157],[124.371793242188,40.3282900214844],[124.367345,40.3438430000001],[124.371890898438,40.3495217109376],[124.413702421875,40.3443202949219],[124.446236601563,40.3849489570313],[124.474830351563,40.40784690625],[124.461793242188,40.4182900214844],[124.448453398438,40.4349489570312],[124.430533476563,40.4492958808594],[124.433013945313,40.4692031074219],[124.420650664063,40.4902297187501],[124.422965117188,40.508843],[124.420279570313,40.5304518867188],[124.39373171875,40.5271498847657],[124.382896757813,40.5893959785156],[124.354117460938,40.6124428535156],[124.342896757813,40.640639875],[124.372345,40.6369777656251],[124.4214075,40.6430800605469],[124.431793242188,40.6793959785157],[124.442896757813,40.6882900214844],[124.451793242188,40.6993959785157],[124.483472929688,40.7247670722656],[124.4812121875,40.7429689765625],[124.5241809375,40.7690700507813],[124.519586210938,40.8060341621094],[124.491099882813,40.828843],[124.504156523438,40.8392958808594],[124.501676054688,40.8592153144532],[124.5361340625,40.9133766914063],[124.529595976563,40.9659523750001],[124.507345,41.043843],[124.511881132813,41.0593056464844],[124.528267851563,41.0729177070312],[124.541881132813,41.0893056464844],[124.566436796875,41.0999550605469],[124.656490507813,41.0907753730469],[124.679234648438,41.1181569648438],[124.708101835938,41.1306764960938],[124.727345,41.1538430000001],[124.74271609375,41.1492153144532]]]]}},{"type":"Feature","properties":{"name":"元宝区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.324845,40.2283803535157],[124.321016875,40.1907900214844],[124.372808867188,40.1793056464844],[124.392022734375,40.1683010078126],[124.402345,40.1693520332032],[124.416392851563,40.1679213691407],[124.407345,40.143843],[124.407345,40.133843],[124.397345,40.133843],[124.360704375,40.137202375],[124.351314726563,40.1557582832031],[124.327345,40.143843],[124.321881132813,40.1483803535157],[124.266236601563,40.1607680488281],[124.223272734375,40.1563893867188],[124.243511992188,40.2102529121094],[124.262345,40.2083339667969],[124.272345,40.2093520332032],[124.282667265625,40.2083010078126],[124.301881132813,40.2193056464844],[124.324845,40.2283803535157]]]]}},{"type":"Feature","properties":{"name":"振安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.723511992188,40.3220204902344],[124.707345,40.3138430000001],[124.70326296875,40.3297585273438],[124.68326296875,40.3604714179688],[124.693531523438,40.3721486640625],[124.727345,40.363843],[124.723511992188,40.3220204902344]]],[[[124.243961210938,40.390981671875],[124.283316679688,40.3453054023437],[124.33982546875,40.3498451972657],[124.367345,40.3438430000001],[124.371793242188,40.3282900214844],[124.392896757813,40.3193959785157],[124.409537382813,40.298618390625],[124.489078398438,40.2870412421876],[124.501793242188,40.2282900214844],[124.507345,40.223843],[124.502838164063,40.2062831855469],[124.483013945313,40.1775722480469],[124.470069609375,40.180473859375],[124.44142703125,40.1697585273438],[124.427022734375,40.1488930488282],[124.407345,40.143843],[124.416392851563,40.1679213691407],[124.402345,40.1693520332032],[124.392022734375,40.1683010078126],[124.372808867188,40.1793056464844],[124.321016875,40.1907900214844],[124.324845,40.2283803535157],[124.301881132813,40.2193056464844],[124.282667265625,40.2083010078126],[124.272345,40.2093520332032],[124.262345,40.2083339667969],[124.243511992188,40.2102529121094],[124.223272734375,40.1563893867188],[124.266236601563,40.1607680488281],[124.321881132813,40.1483803535157],[124.327345,40.143843],[124.33302859375,40.098344953125],[124.311793242188,40.0893959785157],[124.307345,40.0838430000001],[124.26297,40.0765541816407],[124.252857695313,40.0896572089844],[124.231256132813,40.0864650703125],[124.233140898438,40.099233625],[124.215797148438,40.1279885078126],[124.161280546875,40.0951039863282],[124.13298953125,40.1042470527344],[124.187779570313,40.1781520820313],[124.15170046875,40.1881996894531],[124.135894804688,40.2086769843751],[124.117345,40.213843],[124.112345,40.2266506171875],[124.107345,40.213843],[124.08271609375,40.2350612617188],[124.105386992188,40.2942214179688],[124.180167265625,40.3167360664063],[124.182745390625,40.3488430000001],[124.181300078125,40.3668288398438],[124.199000273438,40.387368390625],[124.243961210938,40.390981671875]]]]}},{"type":"Feature","properties":{"name":"振兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.30298953125,39.9681996894532],[124.287345,39.9638430000001],[124.282896757813,39.9693959785157],[124.260479765625,39.978843],[124.263863554688,40.0060549140626],[124.2994934375,40.0210695625],[124.307345,40.0838430000001],[124.311793242188,40.0893959785157],[124.33302859375,40.098344953125],[124.327345,40.143843],[124.351314726563,40.1557582832031],[124.360704375,40.137202375],[124.397345,40.133843],[124.38427859375,40.1169118476563],[124.36170046875,40.0994863105469],[124.35298953125,40.0881996894532],[124.33375125,40.0733498359375],[124.330128203125,40.0488430000001],[124.360484648438,40.0364174628907],[124.363140898438,40.018452375],[124.351549101563,39.9992336250001],[124.353219023438,39.9879445625001],[124.30298953125,39.9681996894532]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"凌河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.211158476563,41.1376552558594],[121.247345,41.133843],[121.239166289063,41.1176772285156],[121.197345,41.1138430000001],[121.181246367188,41.1099404121094],[121.16857546875,41.0901467109375],[121.137345,41.103843],[121.1289465625,41.1380434394532],[121.137345,41.143843],[121.141558867188,41.1370058417969],[121.189586210938,41.1528017402344],[121.211158476563,41.1376552558594]]]]}},{"type":"Feature","properties":{"name":"古塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.077345,41.143843],[121.065152617188,41.1472658515625],[121.073922148438,41.1560353828125],[121.077345,41.143843]]],[[[121.077345,41.143843],[121.103985625,41.147202375],[121.111422148438,41.1618984199219],[121.133985625,41.150483625],[121.137345,41.143843],[121.1289465625,41.1380434394532],[121.137345,41.103843],[121.110704375,41.107202375],[121.093985625,41.120483625],[121.06927859375,41.1276137519531],[121.077345,41.143843]]]]}},{"type":"Feature","properties":{"name":"太和区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.183922148438,41.0360353828125],[121.187345,41.023843],[121.175152617188,41.0272658515625],[121.183922148438,41.0360353828125]]],[[[121.077345,41.143843],[121.073922148438,41.1560353828125],[121.065152617188,41.1472658515625],[121.06927859375,41.1276137519531],[121.093985625,41.120483625],[121.110704375,41.107202375],[121.137345,41.103843],[121.16857546875,41.0901467109375],[121.181246367188,41.1099404121094],[121.197345,41.1138430000001],[121.20142703125,41.0979274726563],[121.21422,41.078286359375],[121.187257109375,41.0681972480469],[121.173013945313,41.0475722480469],[121.162066679688,41.0500258613281],[121.11380984375,41.0297585273438],[121.05142703125,41.0379274726563],[121.027345,41.043843],[120.991080351563,41.0349355292969],[120.937354765625,41.0515883613282],[120.9446496875,41.0841127753907],[120.937345,41.1138430000001],[120.95326296875,41.1179274726562],[120.96142703125,41.1297585273437],[120.99490359375,41.1383498359375],[121.02326296875,41.1579274726562],[121.042271757813,41.1854640937501],[121.082183867188,41.1944106269531],[121.122647734375,41.177415998047],[121.168175078125,41.2153823066406],[121.202345,41.2077223945312],[121.213053007813,41.210122296875],[121.23142703125,41.1779274726563],[121.2651965625,41.1692629218751],[121.25107546875,41.1595131660156],[121.253526640625,41.1485646796875],[121.247345,41.133843],[121.211158476563,41.1376552558594],[121.189586210938,41.1528017402344],[121.141558867188,41.1370058417969],[121.137345,41.143843],[121.133985625,41.150483625],[121.111422148438,41.1618984199219],[121.103985625,41.147202375],[121.077345,41.143843]]],[[[121.227345,41.273843],[121.207769804688,41.2493959785157],[121.183609648438,41.2628444648438],[121.202896757813,41.2782900214844],[121.207345,41.283843],[121.217345,41.283843],[121.217345,41.273843],[121.227345,41.273843]]],[[[121.227345,41.273843],[121.227345,41.293843],[121.227345,41.3038430000001],[121.237345,41.3038430000001],[121.2609778125,41.2887148261719],[121.2709778125,41.2531264472657],[121.227345,41.273843]]]]}},{"type":"Feature","properties":{"name":"黑山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.197345,41.473843],[122.197345,41.463843],[122.187345,41.463843],[122.187345,41.473843],[122.197345,41.473843]]],[[[122.467345,42.033843],[122.470767851563,42.0460353828126],[122.479537382813,42.0372658515625],[122.467345,42.033843]]],[[[122.467345,42.033843],[122.483077421875,42.0095778632813],[122.501612578125,41.9381081367188],[122.518140898438,41.8969838691406],[122.453526640625,41.9081081367188],[122.433756132813,41.8939528632812],[122.453077421875,41.8795778632813],[122.461612578125,41.8381081367188],[122.503839140625,41.8213271308594],[122.533077421875,41.7995778632813],[122.54177859375,41.7878847480469],[122.55291140625,41.7898012519532],[122.561612578125,41.7781081367188],[122.583077421875,41.7695778632813],[122.587345,41.7638430000001],[122.583624296875,41.7575649238281],[122.571065703125,41.7501210761719],[122.563624296875,41.7175649238282],[122.540445585938,41.6893679023438],[122.54642703125,41.6719606757813],[122.532345,41.6671254707032],[122.504498320313,41.6766884589844],[122.516666289063,41.641264875],[122.491065703125,41.6101210761719],[122.483624296875,41.5875649238282],[122.470147734375,41.579575421875],[122.477345,41.5638430000001],[122.46298953125,41.5581996894531],[122.355523710938,41.5489553046875],[122.247340117188,41.5059535957031],[122.197345,41.473843],[122.192628203125,41.4991237617188],[122.105640898438,41.5477407050782],[122.078678007813,41.5601149726563],[122.04310671875,41.5579946113282],[122.017994414063,41.5716396308594],[122.03373171875,41.6005947089844],[122.031451445313,41.638843],[122.033111601563,41.666684796875],[121.9820325,41.6785695625001],[121.98322390625,41.6985903144531],[121.972061796875,41.7085622382812],[121.962628203125,41.7291237617188],[121.893853789063,41.7790358710938],[121.827345,41.783843],[121.838365507813,41.7981215644531],[121.864859648438,41.8089650703126],[121.830474882813,41.818540265625],[121.84298953125,41.8281996894531],[121.85170046875,41.8394863105469],[121.89298953125,41.8481996894532],[121.9210559375,41.8651308417969],[121.95298953125,41.8781996894532],[121.96170046875,41.8894863105469],[121.9786340625,41.9025551582031],[121.99170046875,41.9194863105469],[122.02298953125,41.9281996894532],[122.06170046875,41.9594863105469],[122.09298953125,41.9781996894531],[122.10978640625,41.9999599433594],[122.122857695313,41.9980287910156],[122.133902617188,42.0123378730469],[122.27298953125,42.0681996894532],[122.296768828125,42.0825441718751],[122.35298953125,42.0981996894532],[122.40170046875,42.1194863105469],[122.417345,42.123843],[122.427345,42.123843],[122.440338164063,42.1177895332031],[122.428873320313,42.0977895332032],[122.448077421875,42.088843],[122.426612578125,42.078843],[122.445816679688,42.0698964667969],[122.438873320313,42.0577895332032],[122.454166289063,42.0506642890625],[122.460523710938,42.0370217109375],[122.467345,42.033843]]]]}},{"type":"Feature","properties":{"name":"凌海市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.193922148438,40.9260353828125],[121.197345,40.913843],[121.185152617188,40.9172658515625],[121.193922148438,40.9260353828125]]],[[[121.753531523438,41.1000307441406],[121.757345,41.083843],[121.71029421875,41.0877272773438],[121.673531523438,41.1002541328126],[121.753531523438,41.1000307441406]]],[[[121.227345,41.273843],[121.217345,41.273843],[121.217345,41.283843],[121.217345,41.293843],[121.227345,41.293843],[121.227345,41.273843]]],[[[121.187345,40.943843],[121.197345,40.943843],[121.197345,40.9538430000001],[121.209537382813,40.9572658515625],[121.200767851563,40.9660353828125],[121.197345,40.9538430000001],[121.187345,40.9538430000001],[121.181519804688,40.9396681953125],[121.170152617188,40.9101882148438],[121.132310820313,40.8830678535156],[121.081519804688,40.8696681953125],[121.070797148438,40.8161843085938],[121.01162234375,40.8278786445313],[121.003170195313,40.8396681953125],[120.997345,40.8438430000001],[121.001612578125,40.8595778632813],[121.022633085938,40.8752138496094],[121.031612578125,40.9332314277344],[121.003756132813,40.9539516425781],[121.013155546875,41.0085378242188],[121.027345,41.043843],[121.05142703125,41.0379274726563],[121.11380984375,41.0297585273438],[121.162066679688,41.0500258613281],[121.173013945313,41.0475722480469],[121.187257109375,41.0681972480469],[121.21422,41.078286359375],[121.20142703125,41.0979274726563],[121.197345,41.1138430000001],[121.239166289063,41.1176772285156],[121.247345,41.133843],[121.253526640625,41.1485646796875],[121.25107546875,41.1595131660156],[121.2651965625,41.1692629218751],[121.23142703125,41.1779274726563],[121.213053007813,41.210122296875],[121.202345,41.2077223945312],[121.168175078125,41.2153823066406],[121.122647734375,41.177415998047],[121.082183867188,41.1944106269531],[121.042271757813,41.1854640937501],[121.02326296875,41.1579274726562],[120.99490359375,41.1383498359375],[120.96142703125,41.1297585273437],[120.95326296875,41.1179274726562],[120.937345,41.1138430000001],[120.93330203125,41.12151878125],[120.922345,41.11659690625],[120.8992590625,41.1269692207031],[120.905142851563,41.1400673652344],[120.869698515625,41.1572927070313],[120.857345,41.133843],[120.847345,41.133843],[120.815303984375,41.1388930488282],[120.77970828125,41.1620729804688],[120.788853789063,41.2028774238281],[120.767345,41.1938430000001],[120.7534778125,41.2088088203125],[120.703389921875,41.2207399726563],[120.763331328125,41.249028546875],[120.7317590625,41.2782851386719],[120.742535429688,41.2986525703125],[120.752154570313,41.3490334296875],[120.767725859375,41.363462140625],[120.777345,41.393843],[120.804195585938,41.4013198066407],[120.800225859375,41.4281996894532],[120.81298953125,41.4194863105469],[120.831754179688,41.3951772285157],[120.841783476563,41.4196852851563],[120.877345,41.4138430000001],[120.88142703125,41.3979274726563],[120.896280546875,41.3876723457032],[120.881046171875,41.3385182929688],[120.89408328125,41.3184950996094],[120.87326296875,41.3041188789063],[120.925728789063,41.2862392402344],[120.942345,41.2899636054688],[120.961676054688,41.285630109375],[120.9770715625,41.3079274726562],[120.99326296875,41.2997585273438],[121.005553007813,41.2819545722657],[121.050440703125,41.316743390625],[121.085548125,41.3314882636719],[121.102345,41.3277223945313],[121.117345,41.3310842109376],[121.132345,41.3277223945313],[121.142789335938,41.3300637031251],[121.161900664063,41.317622296875],[121.173013945313,41.3201137519532],[121.18142703125,41.3079274726562],[121.199176054688,41.2956740546875],[121.207345,41.283843],[121.202896757813,41.2782900214844],[121.183609648438,41.2628444648438],[121.207769804688,41.2493959785157],[121.227345,41.273843],[121.2709778125,41.2531264472657],[121.2609778125,41.2887148261719],[121.237345,41.3038430000001],[121.250728789063,41.3193752265625],[121.262642851563,41.3184169746094],[121.29408328125,41.3407118964844],[121.366329375,41.334907453125],[121.394586210938,41.3506716132813],[121.525050078125,41.3401894355469],[121.521138945313,41.388843],[121.54271609375,41.3984706855469],[121.55197390625,41.4092153144531],[121.587345,41.433843],[121.59142703125,41.4279274726563],[121.628961210938,41.4065041328125],[121.643682890625,41.3491481757813],[121.70326296875,41.3397585273438],[121.717345,41.333843],[121.711246367188,41.314575421875],[121.649371367188,41.2949867988282],[121.632154570313,41.2790334296875],[121.622535429688,41.2686525703126],[121.572535429688,41.2363649726563],[121.586011992188,41.2115517402344],[121.621822539063,41.1946498847656],[121.562535429688,41.1563649726563],[121.578941679688,41.1090908027344],[121.671846953125,41.0963942695313],[121.672550078125,41.0786916328126],[121.661783476563,41.0479787421875],[121.664874296875,40.9700832343751],[121.642154570313,40.9490334296876],[121.632535429688,40.9286525703126],[121.622154570313,40.9190334296876],[121.596422148438,40.8791835761719],[121.557345,40.873843],[121.498863554688,40.8602919746094],[121.503170195313,40.8894130683594],[121.47673953125,40.9002309394532],[121.437857695313,40.8944850898438],[121.41298953125,40.9094863105469],[121.347564726563,40.9206008125001],[121.332857695313,40.9396572089844],[121.310494414063,40.9363527656251],[121.313175078125,40.9182326484375],[121.265264921875,40.9094863105469],[121.252808867188,40.9399233222656],[121.21990359375,40.92698753125],[121.197838164063,40.9302480292969],[121.187345,40.943843]],[[121.187345,41.023843],[121.183922148438,41.0360353828125],[121.175152617188,41.0272658515625],[121.187345,41.023843]]]]}},{"type":"Feature","properties":{"name":"北镇市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.03373171875,41.6005947089844],[122.017994414063,41.5716396308594],[122.04310671875,41.5579946113282],[122.078678007813,41.5601149726563],[122.105640898438,41.5477407050782],[122.192628203125,41.4991237617188],[122.197345,41.473843],[122.187345,41.473843],[122.187345,41.463843],[122.187345,41.4538430000001],[122.171793242188,41.4493959785157],[122.14537234375,41.4338649726563],[122.132896757813,41.4182900214844],[122.111793242188,41.4093959785157],[122.083453398438,41.3927370429687],[122.051793242188,41.3793959785157],[122.027345,41.3650258613282],[122.002896757813,41.3793959785157],[121.966920195313,41.3882900214844],[121.902711210938,41.3505458808594],[121.87834109375,41.3201113105469],[121.862896757813,41.3393959785157],[121.841129179688,41.3568288398438],[121.790181914063,41.3372463203125],[121.771890898438,41.3395217109376],[121.762799101563,41.3281642890625],[121.717345,41.333843],[121.70326296875,41.3397585273438],[121.643682890625,41.3491481757813],[121.628961210938,41.4065041328125],[121.59142703125,41.4279274726563],[121.587345,41.433843],[121.59170046875,41.4494863105469],[121.60312625,41.4785512519531],[121.601607695313,41.4888430000001],[121.603160429688,41.4993544746094],[121.569600859375,41.525259015625],[121.574561796875,41.558843],[121.569967070313,41.5899330878906],[121.590767851563,41.5868593574219],[121.61170046875,41.5994863105469],[121.6722278125,41.6163417792969],[121.693253203125,41.6677077460938],[121.690865507813,41.6838430000001],[121.697218046875,41.7268044257813],[121.733560820313,41.748540265625],[121.72170046875,41.7681996894532],[121.717345,41.7938430000001],[121.787447539063,41.8026015449219],[121.811793242188,41.7882900214844],[121.827345,41.783843],[121.893853789063,41.7790358710938],[121.962628203125,41.7291237617188],[121.972061796875,41.7085622382812],[121.98322390625,41.6985903144531],[121.9820325,41.6785695625001],[122.033111601563,41.666684796875],[122.031451445313,41.638843],[122.03373171875,41.6005947089844]]]]}},{"type":"Feature","properties":{"name":"义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.717345,41.7938430000001],[121.72170046875,41.7681996894532],[121.733560820313,41.748540265625],[121.697218046875,41.7268044257813],[121.690865507813,41.6838430000001],[121.693253203125,41.6677077460938],[121.6722278125,41.6163417792969],[121.61170046875,41.5994863105469],[121.590767851563,41.5868593574219],[121.569967070313,41.5899330878906],[121.574561796875,41.558843],[121.569600859375,41.525259015625],[121.603160429688,41.4993544746094],[121.601607695313,41.4888430000001],[121.60312625,41.4785512519531],[121.59170046875,41.4494863105469],[121.587345,41.433843],[121.55197390625,41.4092153144531],[121.54271609375,41.3984706855469],[121.521138945313,41.388843],[121.525050078125,41.3401894355469],[121.394586210938,41.3506716132813],[121.366329375,41.334907453125],[121.29408328125,41.3407118964844],[121.262642851563,41.3184169746094],[121.250728789063,41.3193752265625],[121.237345,41.3038430000001],[121.227345,41.3038430000001],[121.227345,41.293843],[121.217345,41.293843],[121.217345,41.283843],[121.207345,41.283843],[121.199176054688,41.2956740546875],[121.18142703125,41.3079274726562],[121.173013945313,41.3201137519532],[121.161900664063,41.317622296875],[121.142789335938,41.3300637031251],[121.132345,41.3277223945313],[121.117345,41.3310842109376],[121.102345,41.3277223945313],[121.085548125,41.3314882636719],[121.050440703125,41.316743390625],[121.005553007813,41.2819545722657],[120.99326296875,41.2997585273438],[120.9770715625,41.3079274726562],[120.961676054688,41.285630109375],[120.942345,41.2899636054688],[120.925728789063,41.2862392402344],[120.87326296875,41.3041188789063],[120.89408328125,41.3184950996094],[120.881046171875,41.3385182929688],[120.896280546875,41.3876723457032],[120.88142703125,41.3979274726563],[120.877345,41.4138430000001],[120.88197390625,41.4692153144532],[120.89271609375,41.4784706855469],[120.90197390625,41.5192153144531],[120.959576445313,41.5449184394532],[120.972769804688,41.5685646796875],[120.971085234375,41.5895107246094],[121.053902617188,41.6199233222656],[121.098624296875,41.6163295722657],[121.12345828125,41.6377272773438],[121.14197390625,41.6592153144532],[121.221295195313,41.6808071113281],[121.224176054688,41.7166030097656],[121.208878203125,41.7440163398438],[121.22197390625,41.7592153144532],[121.24271609375,41.7684706855469],[121.25197390625,41.7792153144532],[121.257345,41.783843],[121.283985625,41.7804836250001],[121.293336210938,41.7620009589844],[121.31740359375,41.773755109375],[121.337345,41.7638430000001],[121.33099734375,41.7364589667969],[121.356939726563,41.7164357734375],[121.42834109375,41.7372548652344],[121.456627226563,41.6899599433594],[121.47170046875,41.7094863105469],[121.50459109375,41.7186452460938],[121.501607695313,41.738843],[121.50375125,41.7533498359375],[121.52298953125,41.7681996894532],[121.527345,41.773843],[121.5318371875,41.7794509101563],[121.621890898438,41.7906520820313],[121.632799101563,41.7770339179688],[121.657345,41.7800868964844],[121.672799101563,41.7781642890625],[121.681793242188,41.7893959785157],[121.717345,41.7938430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大石桥市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.747345,40.443843],[122.759537382813,40.4472658515626],[122.750767851563,40.4560353828125],[122.69170046875,40.4481996894531],[122.67248171875,40.4597927070313],[122.64263796875,40.4480605292969],[122.627838164063,40.4502480292969],[122.598238554688,40.4885951972657],[122.532232695313,40.4998073554688],[122.499845,40.4802700019532],[122.43298953125,40.5094863105469],[122.407345,40.513843],[122.407345,40.523843],[122.445128203125,40.5302614570313],[122.437345,40.563843],[122.44312625,40.5785512519532],[122.43798953125,40.6133303046876],[122.453516875,40.639077375],[122.44170046875,40.6481996894532],[122.43298953125,40.6894863105469],[122.36170046875,40.7181996894531],[122.3500403125,40.7466957832031],[122.30298953125,40.7281996894532],[122.267345,40.723843],[122.267345,40.7338430000001],[122.247345,40.7338430000001],[122.227345,40.7338430000001],[122.211363554688,40.7417873359375],[122.207345,40.7338430000001],[122.086495390625,40.7961794257813],[122.122896757813,40.8182900214844],[122.151954375,40.8395131660156],[122.17447390625,40.8367116523438],[122.169425078125,40.8773159003906],[122.205421171875,40.8561550117187],[122.252125273438,40.8694924140625],[122.271402617188,40.8670937324219],[122.317345,40.903843],[122.322345,40.8910353828125],[122.327345,40.903843],[122.34478640625,40.91069846875],[122.362735625,40.9080458808594],[122.385640898438,40.9218617988281],[122.46607546875,40.9405007148438],[122.506470976563,40.9239699531251],[122.490362578125,40.8972658515625],[122.494327421875,40.8704201484375],[122.481080351563,40.8484535957032],[122.518795195313,40.8330178046876],[122.536392851563,40.8038430000001],[122.515660429688,40.7694741035156],[122.56298953125,40.7594863105469],[122.571832304688,40.7480287910157],[122.640230742188,40.7581362128906],[122.64744265625,40.7093544746094],[122.61298953125,40.6827614570313],[122.62170046875,40.6681996894532],[122.653267851563,40.659408185547],[122.637261992188,40.5903334785157],[122.652554960938,40.5880727363282],[122.69244265625,40.5997023750001],[122.72170046875,40.5881996894532],[122.7987121875,40.5679848457031],[122.825264921875,40.5335842109375],[122.867345,40.5273647285157],[122.922266875,40.5354811835937],[122.94298953125,40.5194863105469],[122.951832304688,40.5080287910156],[122.96490359375,40.5099599433594],[122.98170046875,40.4881996894531],[122.997345,40.483843],[122.98154421875,40.4592458320313],[122.9870325,40.4221108222657],[122.93298953125,40.4070607734375],[122.920416289063,40.333051984375],[122.887345,40.323843],[122.811300078125,40.3367617011719],[122.815386992188,40.3644130683594],[122.78170046875,40.3781996894531],[122.7686340625,40.3951308417969],[122.737608671875,40.4190761542969],[122.747345,40.443843]]]]}},{"type":"Feature","properties":{"name":"盖州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.747345,40.443843],[122.750767851563,40.4560353828125],[122.759537382813,40.4472658515626],[122.747345,40.443843]]],[[[122.747345,40.443843],[122.737608671875,40.4190761542969],[122.7686340625,40.3951308417969],[122.78170046875,40.3781996894531],[122.815386992188,40.3644130683594],[122.811300078125,40.3367617011719],[122.887345,40.323843],[122.86662234375,40.2711244941406],[122.88298953125,40.2294863105469],[122.887345,40.1938430000001],[122.862105742188,40.1728774238281],[122.838189726563,40.1177370429688],[122.822022734375,40.1193849921876],[122.799644804688,40.1065700507813],[122.772345,40.1093520332032],[122.7576575,40.1078554511719],[122.702691679688,40.0682973457032],[122.692301054688,40.0693569160156],[122.525836210938,40.0489394355469],[122.543233671875,40.0185646796876],[122.5132434375,40.0055580878906],[122.534879179688,39.987583234375],[122.556881132813,39.9368520332032],[122.521173125,39.9404909492188],[122.507345,39.923843],[122.47170046875,39.9381996894532],[122.45298953125,39.9494863105469],[122.43170046875,39.9581996894531],[122.412735625,39.9696401191406],[122.402345,39.9681044746094],[122.392345,39.9695815253907],[122.365889921875,39.9656728339844],[122.340767851563,39.9808266425782],[122.322345,39.9781044746094],[122.312017851563,39.9796303535157],[122.277345,39.9638430000001],[122.241954375,40.0162917304688],[122.210406523438,39.9962624335937],[122.183267851563,40.0016237617188],[122.161510039063,40.0319814277344],[122.081519804688,40.0480178046875],[122.0532825,40.0659450507813],[121.983033476563,40.0520632148438],[121.967345,40.113843],[122.013424101563,40.1404103828125],[122.009932890625,40.183843],[122.04271609375,40.1984706855469],[122.087345,40.223843],[122.115592070313,40.2139418769531],[122.132159453125,40.249048078125],[122.179390898438,40.2471767402344],[122.152139921875,40.2986794257813],[122.152701445313,40.3128749824219],[122.211475859375,40.3314833808594],[122.187345,40.3538430000001],[122.205548125,40.3821804023438],[122.20009890625,40.4190407539063],[122.23298953125,40.4281996894532],[122.272369414063,40.4573952460938],[122.277345,40.4638430000001],[122.306060820313,40.4504262519532],[122.3709778125,40.5102114082032],[122.407345,40.513843],[122.43298953125,40.5094863105469],[122.499845,40.4802700019532],[122.532232695313,40.4998073554688],[122.598238554688,40.4885951972657],[122.627838164063,40.4502480292969],[122.64263796875,40.4480605292969],[122.67248171875,40.4597927070313],[122.69170046875,40.4481996894531],[122.747345,40.443843]]],[[[122.445128203125,40.5302614570313],[122.407345,40.523843],[122.399288359375,40.5279189277344],[122.415201445313,40.5593727851563],[122.437345,40.563843],[122.445128203125,40.5302614570313]]]]}},{"type":"Feature","properties":{"name":"老边区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.267345,40.723843],[122.247345,40.723843],[122.247345,40.7338430000001],[122.267345,40.7338430000001],[122.267345,40.723843]]],[[[122.237345,40.713843],[122.19974734375,40.6997158027344],[122.207345,40.7338430000001],[122.211363554688,40.7417873359375],[122.227345,40.7338430000001],[122.237345,40.713843]]],[[[122.267345,40.723843],[122.30298953125,40.7281996894532],[122.3500403125,40.7466957832031],[122.36170046875,40.7181996894531],[122.43298953125,40.6894863105469],[122.44170046875,40.6481996894532],[122.453516875,40.639077375],[122.43798953125,40.6133303046876],[122.44312625,40.5785512519532],[122.437345,40.563843],[122.415201445313,40.5593727851563],[122.399288359375,40.5279189277344],[122.407345,40.523843],[122.407345,40.513843],[122.3709778125,40.5102114082032],[122.306060820313,40.4504262519532],[122.277345,40.4638430000001],[122.285787382813,40.5050575996094],[122.26513796875,40.5265468574219],[122.22244265625,40.5589430976563],[122.132735625,40.6098049140625],[122.147345,40.6238430000001],[122.16298953125,40.6281996894532],[122.1760559375,40.6451308417969],[122.227345,40.6538430000001],[122.239039335938,40.6397658515626],[122.271881132813,40.6793056464844],[122.28732546875,40.6921340156251],[122.267345,40.723843]]]]}},{"type":"Feature","properties":{"name":"西市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.16298953125,40.6281996894532],[122.147345,40.6238430000001],[122.169273710938,40.6678078437501],[122.150704375,40.6772023750001],[122.147345,40.683843],[122.155323515625,40.7149282050782],[122.195303984375,40.6888930488282],[122.227345,40.683843],[122.227345,40.6538430000001],[122.1760559375,40.6451308417969],[122.16298953125,40.6281996894532]]]]}},{"type":"Feature","properties":{"name":"站前区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.247345,40.7338430000001],[122.247345,40.723843],[122.267345,40.723843],[122.28732546875,40.6921340156251],[122.271881132813,40.6793056464844],[122.239039335938,40.6397658515626],[122.227345,40.6538430000001],[122.227345,40.683843],[122.25326296875,40.6879274726563],[122.27142703125,40.7050954414063],[122.237345,40.713843],[122.227345,40.7338430000001],[122.247345,40.7338430000001]]]]}},{"type":"Feature","properties":{"name":"鲅鱼圈区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.152139921875,40.2986794257813],[122.179390898438,40.2471767402344],[122.132159453125,40.249048078125],[122.115592070313,40.2139418769531],[122.087345,40.223843],[122.11142703125,40.2602883125],[122.10326296875,40.2797585273438],[122.087120390625,40.290903546875],[122.13142703125,40.3197585273438],[122.15326296875,40.3279274726563],[122.16142703125,40.3397585273438],[122.187345,40.3538430000001],[122.211475859375,40.3314833808594],[122.152701445313,40.3128749824219],[122.152139921875,40.2986794257813]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.631851835938,42.0331972480469],[121.652345,42.0274379707032],[121.662584257813,42.0303151679687],[121.677345,42.0238430000001],[121.673985625,42.0172023750001],[121.647437773438,42.0037721992188],[121.663985625,41.9704836250001],[121.667345,41.9538430000001],[121.657345,41.933843],[121.641246367188,41.9377455878906],[121.633443632813,41.9499404121094],[121.583912382813,41.9673598457031],[121.622159453125,41.9808119941406],[121.631851835938,42.0331972480469]]]]}},{"type":"Feature","properties":{"name":"清河门区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.452896757813,41.7893959785157],[121.462847929688,41.7657851386719],[121.527345,41.773843],[121.52298953125,41.7681996894532],[121.50375125,41.7533498359375],[121.501607695313,41.738843],[121.50459109375,41.7186452460938],[121.47170046875,41.7094863105469],[121.456627226563,41.6899599433594],[121.42834109375,41.7372548652344],[121.356939726563,41.7164357734375],[121.33099734375,41.7364589667969],[121.337345,41.7638430000001],[121.372896757813,41.7682900214844],[121.417789335938,41.8041909003907],[121.452896757813,41.7893959785157]]]]}},{"type":"Feature","properties":{"name":"太平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.747345,42.033843],[121.74326296875,42.0279274726563],[121.7305871875,42.0191762519531],[121.709454375,41.9867287421875],[121.71361453125,41.9681728339844],[121.70142703125,41.9597585273438],[121.697345,41.9538430000001],[121.667345,41.9538430000001],[121.663985625,41.9704836250001],[121.647437773438,42.0037721992188],[121.673985625,42.0172023750001],[121.677345,42.0238430000001],[121.70470828125,42.0107900214844],[121.717345,42.033843],[121.737345,42.033843],[121.747345,42.033843]]],[[[121.747345,42.033843],[121.747345,42.043843],[121.760152617188,42.038843],[121.747345,42.033843]]]]}},{"type":"Feature","properties":{"name":"阜新蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,42.283843],[122.327345,42.2938430000001],[122.340152617188,42.288843],[122.327345,42.283843]]],[[[121.597345,42.503843],[121.600767851563,42.5160353828125],[121.609537382813,42.5072658515626],[121.597345,42.503843]]],[[[122.327345,42.2938430000001],[122.314537382813,42.288843],[122.327345,42.283843],[122.332857695313,42.2767018867188],[122.352735625,42.2796401191407],[122.37170046875,42.2681996894532],[122.393170195313,42.2594130683594],[122.391607695313,42.248843],[122.393824492188,42.233843],[122.38845828125,42.1975295234376],[122.404425078125,42.1998891425782],[122.417345,42.123843],[122.40170046875,42.1194863105469],[122.35298953125,42.0981996894532],[122.296768828125,42.0825441718751],[122.27298953125,42.0681996894532],[122.133902617188,42.0123378730469],[122.122857695313,41.9980287910156],[122.10978640625,41.9999599433594],[122.09298953125,41.9781996894531],[122.06170046875,41.9594863105469],[122.02298953125,41.9281996894532],[121.99170046875,41.9194863105469],[121.9786340625,41.9025551582031],[121.96170046875,41.8894863105469],[121.95298953125,41.8781996894532],[121.9210559375,41.8651308417969],[121.89298953125,41.8481996894532],[121.85170046875,41.8394863105469],[121.84298953125,41.8281996894531],[121.830474882813,41.818540265625],[121.864859648438,41.8089650703126],[121.838365507813,41.7981215644531],[121.827345,41.783843],[121.811793242188,41.7882900214844],[121.787447539063,41.8026015449219],[121.717345,41.7938430000001],[121.681793242188,41.7893959785157],[121.672799101563,41.7781642890625],[121.657345,41.7800868964844],[121.632799101563,41.7770339179688],[121.621890898438,41.7906520820313],[121.5318371875,41.7794509101563],[121.527345,41.773843],[121.462847929688,41.7657851386719],[121.452896757813,41.7893959785157],[121.417789335938,41.8041909003907],[121.372896757813,41.7682900214844],[121.337345,41.7638430000001],[121.31740359375,41.773755109375],[121.293336210938,41.7620009589844],[121.283985625,41.7804836250001],[121.257345,41.783843],[121.262154570313,41.7990334296875],[121.27482546875,41.8351784492187],[121.302115507813,41.8867519355469],[121.252154570313,41.8986525703125],[121.206597929688,41.9146205878907],[121.192535429688,41.9590334296875],[121.172154570313,41.9686525703125],[121.1523840625,41.9791139960937],[121.118433867188,41.9672145820313],[121.041807890625,41.9702516914063],[121.042545195313,41.9888430000001],[121.042144804688,41.998843],[121.043136015625,42.0238430000001],[121.041729765625,42.0593740058595],[121.062535429688,42.0786525703125],[121.0789465625,42.1134255195313],[121.051417265625,42.1804457832031],[121.052550078125,42.2090200019532],[121.03248171875,42.22761253125],[121.027345,42.243843],[121.030704375,42.250483625],[121.063985625,42.257202375],[121.091881132813,42.2815102363282],[121.111353789063,42.2720009589844],[121.127393828125,42.3037038398438],[121.143336210938,42.2959169746094],[121.15406375,42.31712425],[121.173985625,42.327202375],[121.18406375,42.34712425],[121.203985625,42.3572023750001],[121.207345,42.363843],[121.211612578125,42.3695778632813],[121.271207304688,42.3818373847657],[121.293077421875,42.3981081367187],[121.304288359375,42.4394594550782],[121.373077421875,42.4581081367188],[121.385733671875,42.475122296875],[121.412345,42.4797035957031],[121.44623171875,42.4738698554688],[121.476285429688,42.4924684882813],[121.549703398438,42.479829328125],[121.581612578125,42.4995778632813],[121.597345,42.503843],[121.609595976563,42.4860964179688],[121.63326296875,42.4697585273438],[121.66033328125,42.4305458808594],[121.708756132813,42.4414003730469],[121.735426054688,42.4800283027344],[121.790069609375,42.500473859375],[121.805694609375,42.4969704414062],[121.828995390625,42.5307155585937],[121.842345,42.5277223945313],[121.852345,42.5299636054688],[121.863116484375,42.5275490546876],[121.87142703125,42.5497585273438],[121.889176054688,42.5620119453125],[121.897345,42.573843],[121.94197390625,42.5484706855469],[122.03838015625,42.4961415839844],[122.069371367188,42.4466616035156],[122.104586210938,42.4270143867188],[122.151373320313,42.4307741523437],[122.16197390625,42.4184706855469],[122.1727746875,42.4091664863282],[122.1719153125,42.3984963203126],[122.19271609375,42.3892153144532],[122.20197390625,42.3784706855469],[122.223287382813,42.3689614082031],[122.211539335938,42.358843],[122.22271609375,42.3492153144532],[122.232022734375,42.3384157539063],[122.242623320313,42.3392665839844],[122.26197390625,42.3284706855469],[122.306158476563,42.3184328437501],[122.327345,42.2938430000001]],[[121.783912382813,42.12788596875],[121.74970828125,42.1056130195313],[121.753468046875,42.088843],[121.750474882813,42.0754921699219],[121.767345,42.0638430000001],[121.767345,42.053843],[121.747345,42.053843],[121.747345,42.043843],[121.747345,42.033843],[121.737345,42.033843],[121.727345,42.0477956367188],[121.717345,42.033843],[121.70142703125,42.0379274726563],[121.691529570313,42.0765065742187],[121.652198515625,42.0676894355469],[121.6014465625,42.0834206367188],[121.57959109375,42.11507346875],[121.54422,42.0920412421875],[121.585611601563,42.0684169746094],[121.578980742188,42.038843],[121.583468046875,42.018843],[121.581221953125,42.008843],[121.5858215625,41.9883315253906],[121.52529421875,41.9787917304688],[121.584605742188,41.9388539863281],[121.569132109375,41.9281728339844],[121.57494265625,41.9022499824219],[121.652027617188,41.9261440253906],[121.657345,41.933843],[121.689176054688,41.9420119453126],[121.697345,41.9538430000001],[121.739615507813,41.9470290351563],[121.777550078125,41.9616091132813],[121.791793242188,41.9793959785157],[121.83468875,41.9916616035156],[121.883370390625,41.9856056953125],[121.881724882813,41.998843],[121.882965117188,42.008843],[121.874058867188,42.0804592109376],[121.851793242188,42.0982900214844],[121.847345,42.1038430000001],[121.847345,42.113843],[121.817345,42.113843],[121.783912382813,42.12788596875]]]]}},{"type":"Feature","properties":{"name":"细河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.657345,41.933843],[121.667345,41.9538430000001],[121.697345,41.9538430000001],[121.689176054688,41.9420119453126],[121.657345,41.933843]]],[[[121.717345,42.033843],[121.727345,42.0477956367188],[121.737345,42.033843],[121.717345,42.033843]]],[[[121.767345,42.053843],[121.767345,42.0638430000001],[121.780152617188,42.058843],[121.767345,42.053843]]],[[[121.697345,41.9538430000001],[121.70142703125,41.9597585273438],[121.71361453125,41.9681728339844],[121.709454375,41.9867287421875],[121.7305871875,42.0191762519531],[121.74326296875,42.0279274726563],[121.747345,42.033843],[121.760152617188,42.038843],[121.747345,42.043843],[121.747345,42.053843],[121.767345,42.053843],[121.771158476563,42.0476552558594],[121.803057890625,42.0367848945313],[121.827374296875,42.0814516425782],[121.817345,42.1038430000001],[121.847345,42.1038430000001],[121.851793242188,42.0982900214844],[121.874058867188,42.0804592109376],[121.882965117188,42.008843],[121.881724882813,41.998843],[121.883370390625,41.9856056953125],[121.83468875,41.9916616035156],[121.791793242188,41.9793959785157],[121.777550078125,41.9616091132813],[121.739615507813,41.9470290351563],[121.697345,41.9538430000001]]],[[[121.717345,42.033843],[121.70470828125,42.0107900214844],[121.677345,42.0238430000001],[121.662584257813,42.0303151679687],[121.652345,42.0274379707032],[121.631851835938,42.0331972480469],[121.622159453125,41.9808119941406],[121.583912382813,41.9673598457031],[121.633443632813,41.9499404121094],[121.641246367188,41.9377455878906],[121.657345,41.933843],[121.652027617188,41.9261440253906],[121.57494265625,41.9022499824219],[121.569132109375,41.9281728339844],[121.584605742188,41.9388539863281],[121.52529421875,41.9787917304688],[121.5858215625,41.9883315253906],[121.581221953125,42.008843],[121.583468046875,42.018843],[121.578980742188,42.038843],[121.585611601563,42.0684169746094],[121.54422,42.0920412421875],[121.57959109375,42.11507346875],[121.6014465625,42.0834206367188],[121.652198515625,42.0676894355469],[121.691529570313,42.0765065742187],[121.70142703125,42.0379274726563],[121.717345,42.033843]]],[[[121.817345,42.1038430000001],[121.78170046875,42.0894863105469],[121.767345,42.0638430000001],[121.750474882813,42.0754921699219],[121.753468046875,42.088843],[121.74970828125,42.1056130195313],[121.783912382813,42.12788596875],[121.817345,42.113843],[121.817345,42.1038430000001]]]]}},{"type":"Feature","properties":{"name":"新邱区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.817345,42.1038430000001],[121.827374296875,42.0814516425782],[121.803057890625,42.0367848945313],[121.771158476563,42.0476552558594],[121.767345,42.053843],[121.780152617188,42.058843],[121.767345,42.0638430000001],[121.78170046875,42.0894863105469],[121.817345,42.1038430000001]]],[[[121.817345,42.1038430000001],[121.817345,42.113843],[121.847345,42.113843],[121.847345,42.1038430000001],[121.817345,42.1038430000001]]]]}},{"type":"Feature","properties":{"name":"彰武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,42.283843],[122.314537382813,42.288843],[122.327345,42.2938430000001],[122.327345,42.283843]]],[[[122.327345,42.283843],[122.340152617188,42.288843],[122.327345,42.2938430000001],[122.306158476563,42.3184328437501],[122.26197390625,42.3284706855469],[122.242623320313,42.3392665839844],[122.232022734375,42.3384157539063],[122.22271609375,42.3492153144532],[122.211539335938,42.358843],[122.223287382813,42.3689614082031],[122.20197390625,42.3784706855469],[122.19271609375,42.3892153144532],[122.1719153125,42.3984963203126],[122.1727746875,42.4091664863282],[122.16197390625,42.4184706855469],[122.151373320313,42.4307741523437],[122.104586210938,42.4270143867188],[122.069371367188,42.4466616035156],[122.03838015625,42.4961415839844],[121.94197390625,42.5484706855469],[121.897345,42.573843],[121.9052746875,42.5940151191406],[121.900206328125,42.6283315253907],[121.913160429688,42.6383315253906],[121.911226835938,42.6514028144532],[121.933160429688,42.6683315253907],[121.931519804688,42.6794203925782],[121.991265898438,42.7012197089844],[122.015484648438,42.6976406074219],[122.059400664063,42.7241323066406],[122.071832304688,42.7080287910157],[122.082345,42.7095815253907],[122.100767851563,42.7068593574219],[122.13170046875,42.6881996894532],[122.19283328125,42.6778151679687],[122.204361601563,42.7059902167969],[122.197345,42.723843],[122.222896757813,42.7193959785156],[122.255972929688,42.6999538398438],[122.321422148438,42.6812416816407],[122.33205203125,42.6679653144532],[122.3819934375,42.6871620917969],[122.396236601563,42.7049489570313],[122.441949492188,42.7415529609375],[122.461793242188,42.7718837714844],[122.427345,42.7675991035156],[122.36687625,42.7751210761719],[122.342896757813,42.8278481269532],[122.419136992188,42.8411159492187],[122.561226835938,42.8233632636719],[122.574757109375,42.7912538886719],[122.614039335938,42.7746999335938],[122.710479765625,42.7866957832032],[122.751236601563,42.7627370429687],[122.782896757813,42.7493959785157],[122.791793242188,42.7382900214844],[122.83099734375,42.7217690253907],[122.837345,42.7138430000001],[122.78709109375,42.7214870429688],[122.743468046875,42.6825075507813],[122.774429960938,42.668296125],[122.79209109375,42.6485305],[122.802345,42.6491408515626],[122.812345,42.6485451484375],[122.823609648438,42.6492165351563],[122.842061796875,42.6285622382813],[122.852628203125,42.6191237617188],[122.863101835938,42.6073976875],[122.910220976563,42.6102065253907],[122.9226575,42.5990956855469],[122.92166140625,42.5823696113281],[122.967345,42.573843],[122.95197390625,42.5474416328126],[122.912061796875,42.5291237617188],[122.897877226563,42.4982155585938],[122.81822390625,42.5029628730469],[122.822642851563,42.428843],[122.821715117188,42.4133107734375],[122.856236601563,42.3974672675782],[122.882061796875,42.3685622382813],[122.902003203125,42.3507436347657],[122.849268828125,42.3384743476563],[122.793189726563,42.3079994941406],[122.752061796875,42.2891237617187],[122.747345,42.283843],[122.729610625,42.2783669257813],[122.672628203125,42.2385622382813],[122.620787382813,42.2288857246094],[122.600264921875,42.2059206367188],[122.463199492188,42.1487380195313],[122.432061796875,42.1391237617187],[122.427345,42.123843],[122.417345,42.123843],[122.404425078125,42.1998891425782],[122.38845828125,42.1975295234376],[122.393824492188,42.233843],[122.391607695313,42.248843],[122.393170195313,42.2594130683594],[122.37170046875,42.2681996894532],[122.352735625,42.2796401191407],[122.332857695313,42.2767018867188],[122.327345,42.283843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宏伟区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.167345,41.213843],[123.179537382813,41.2172658515625],[123.170767851563,41.2260353828125],[123.147345,41.213843],[123.147345,41.203843],[123.13361453125,41.2148390937501],[123.162896757813,41.2382900214844],[123.167345,41.243843],[123.183326445313,41.2358986640626],[123.187345,41.243843],[123.197345,41.243843],[123.202345,41.2310353828125],[123.207345,41.243843],[123.227345,41.243843],[123.240704375,41.237202375],[123.287345,41.233843],[123.281148710938,41.1998622871094],[123.2573059375,41.1721901679688],[123.220787382813,41.1518141914063],[123.167345,41.213843]]]]}},{"type":"Feature","properties":{"name":"辽阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.167345,41.213843],[123.170767851563,41.2260353828125],[123.179537382813,41.2172658515625],[123.167345,41.213843]]],[[[123.537345,41.243843],[123.527345,41.243843],[123.527345,41.253843],[123.537345,41.253843],[123.537345,41.243843]]],[[[123.537345,41.243843],[123.567003203125,41.2302724433594],[123.555191679688,41.2646694160157],[123.581002226563,41.2735329414063],[123.603624296875,41.2601210761719],[123.607345,41.243843],[123.595504179688,41.2378530097656],[123.60478640625,41.218843],[123.599420195313,41.2078530097657],[123.613985625,41.2004836250001],[123.634034453125,41.1605776191406],[123.647345,41.1538430000001],[123.653004179688,41.139126203125],[123.647633085938,41.0959694648438],[123.666236601563,41.0727370429688],[123.684830351563,41.05784690625],[123.654849882813,41.0338356757813],[123.647345,40.973843],[123.64271609375,40.9384706855469],[123.62197390625,40.9092153144531],[123.587345,40.853843],[123.53916140625,40.8598622871094],[123.547345,40.823843],[123.52142703125,40.8197585273438],[123.482491484375,40.8076894355469],[123.472066679688,40.8100258613281],[123.439141875,40.7961977363282],[123.40435671875,40.8039968085938],[123.387022734375,40.7788930488281],[123.338297148438,40.7663881660156],[123.322022734375,40.7700356269532],[123.25326296875,40.7379274726562],[123.204796171875,40.7284633613282],[123.172345,40.7073305488282],[123.148619414063,40.7227797675782],[123.127345,40.713843],[123.11904421875,40.7258632636719],[123.07142703125,40.7579274726563],[123.06326296875,40.7841188789063],[123.08326296875,40.7979274726563],[123.097345,40.8183266425781],[123.041051054688,40.8380605292969],[123.043468046875,40.8488430000001],[123.040347929688,40.8627443671876],[123.063585234375,40.8984291816406],[123.057345,40.9238430000001],[123.087315703125,40.9286879707032],[123.081358671875,40.9588430000001],[123.084146757813,40.9729677558594],[123.129386015625,40.9904152656251],[123.180484648438,40.9803188300782],[123.204361601563,41.0136342597657],[123.2007434375,41.0319448066407],[123.223453398438,41.0482228828126],[123.22021609375,41.0646181464844],[123.201236601563,41.0782228828125],[123.203331328125,41.088843],[123.200079375,41.1053115058594],[123.162345,41.0978554511719],[123.134351835938,41.1033864570313],[123.143453398438,41.1494631171875],[123.131519804688,41.1580178046875],[123.127345,41.173843],[123.133985625,41.1772023750001],[123.147345,41.203843],[123.147345,41.213843],[123.167345,41.213843],[123.220787382813,41.1518141914063],[123.2573059375,41.1721901679688],[123.281148710938,41.1998622871094],[123.287345,41.233843],[123.297345,41.233843],[123.321329375,41.2504030585938],[123.327345,41.273843],[123.327345,41.283843],[123.359991484375,41.2914076972657],[123.382735625,41.2880458808594],[123.407345,41.3028908515625],[123.431978789063,41.2880324531251],[123.519600859375,41.302426984375],[123.52312625,41.2785512519532],[123.517345,41.2638430000001],[123.493765898438,41.2577919746094],[123.460230742188,41.2359548164063],[123.43037234375,41.2426479316406],[123.433526640625,41.2285646796876],[123.418736601563,41.1933534980469],[123.35142703125,41.1697585273438],[123.34326296875,41.1579274726562],[123.30142703125,41.1497585273438],[123.253624296875,41.1349404121094],[123.24326296875,41.1104714179688],[123.27093875,41.0679689765625],[123.3676184375,41.0597585273438],[123.38142703125,41.0797585273438],[123.41755984375,41.0932778144531],[123.472418242188,41.0809804511719],[123.48142703125,41.0679274726563],[123.511964140625,41.0468459296875],[123.558819609375,41.0859206367188],[123.54142703125,41.0979274726563],[123.529176054688,41.1156740546875],[123.500474882813,41.1354921699219],[123.505709257813,41.158843],[123.48142703125,41.1679274726563],[123.46654421875,41.1894826484376],[123.509176054688,41.2189150214844],[123.53326296875,41.2279274726563],[123.537345,41.243843]]],[[[122.987345,41.353843],[122.975152617188,41.3504201484375],[122.983922148438,41.3416506171875],[123.137345,41.353843],[123.137345,41.3438430000001],[123.132535429688,41.3155202460938],[123.082345,41.3081044746094],[123.056495390625,41.3119240546875],[123.050128203125,41.2688430000001],[123.1171496875,41.2414125800782],[123.089390898438,41.2199831367188],[123.112178984375,41.2023928046876],[123.117345,41.1838430000001],[123.0855090625,41.1760231757813],[123.047345,41.1938430000001],[123.047345,41.203843],[123.027345,41.203843],[123.007345,41.203843],[123.007345,41.1938430000001],[123.007345,41.1838430000001],[122.991793242188,41.1882900214844],[122.972706328125,41.1995095039063],[122.902940703125,41.1908327460938],[122.888453398438,41.1727370429688],[122.871793242188,41.1593959785156],[122.862896757813,41.1482900214844],[122.851793242188,41.1393959785157],[122.842896757813,41.1082900214844],[122.827345,41.083843],[122.700909453125,41.1121352363282],[122.66271609375,41.1392153144531],[122.63197390625,41.1484706855469],[122.614586210938,41.1686525703125],[122.597345,41.173843],[122.597345,41.203843],[122.607345,41.203843],[122.612345,41.1910353828125],[122.617345,41.203843],[122.664068632813,41.2123659492188],[122.661300078125,41.2468288398438],[122.67197390625,41.2592153144531],[122.691715117188,41.2762221503907],[122.70197390625,41.2992153144531],[122.7127746875,41.3085195136719],[122.7119153125,41.3191970039063],[122.74271609375,41.3284706855469],[122.755670195313,41.3574990058594],[122.840328398438,41.3805434394531],[122.8519934375,41.4192751289063],[122.917345,41.4138430000001],[122.924801054688,41.4112990546875],[122.930494414063,41.3722280097656],[122.942374296875,41.3836989570313],[122.959888945313,41.3663869453125],[122.984801054688,41.3612990546876],[122.987345,41.353843]]]]}},{"type":"Feature","properties":{"name":"白塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.203531523438,41.3000307441406],[123.207345,41.293843],[123.183682890625,41.277505109375],[123.167345,41.253843],[123.167345,41.243843],[123.137471953125,41.2481923652344],[123.143902617188,41.2688430000001],[123.133531523438,41.3021352363282],[123.153018828125,41.3108644843751],[123.162345,41.295727765625],[123.171685820313,41.310884015625],[123.203531523438,41.3000307441406]]]]}},{"type":"Feature","properties":{"name":"灯塔市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.987345,41.353843],[122.983922148438,41.3416506171875],[122.975152617188,41.3504201484375],[122.987345,41.353843]]],[[[122.957345,41.4938430000001],[122.953922148438,41.4816506171875],[122.945152617188,41.4904201484375],[122.957345,41.4938430000001]]],[[[122.987345,41.353843],[122.984801054688,41.3612990546876],[122.959888945313,41.3663869453125],[122.942374296875,41.3836989570313],[122.930494414063,41.3722280097656],[122.924801054688,41.4112990546875],[122.917345,41.4138430000001],[122.911514921875,41.4493422675782],[122.92298953125,41.4581996894532],[122.931954375,41.4801100898438],[122.952374296875,41.4677944160157],[122.98170046875,41.4870607734376],[122.957345,41.4938430000001],[122.96142703125,41.4997585273438],[122.980167265625,41.5126943183594],[123.01435671875,41.5050295234375],[123.043082304688,41.5466347480469],[123.07326296875,41.5579274726563],[123.08142703125,41.5797585273438],[123.097345,41.6038430000001],[123.107345,41.6038430000001],[123.107345,41.6138430000001],[123.128487578125,41.607798078125],[123.103355742188,41.5650453925781],[123.122896757813,41.5493959785156],[123.138697539063,41.5296645332031],[123.182896757813,41.5482900214844],[123.210699492188,41.5646315742188],[123.231793242188,41.5382900214844],[123.293453398438,41.5249489570313],[123.321983671875,41.5081764960937],[123.350045195313,41.5116664863281],[123.402896757813,41.4893959785157],[123.431954375,41.4681728339844],[123.442345,41.4694643378907],[123.469210234375,41.4661232734375],[123.505318632813,41.4873464179688],[123.522345,41.4894643378906],[123.543707304688,41.4868080878907],[123.587345,41.4938430000001],[123.603902617188,41.469858625],[123.649112578125,41.4582570625],[123.653580351563,41.4383376289062],[123.6307825,41.4089223457032],[123.64326296875,41.3897585273438],[123.65142703125,41.3279274726563],[123.657345,41.3038430000001],[123.651578398438,41.288843],[123.6660559375,41.2511855292969],[123.607345,41.243843],[123.603624296875,41.2601210761719],[123.581002226563,41.2735329414063],[123.555191679688,41.2646694160157],[123.567003203125,41.2302724433594],[123.537345,41.243843],[123.537345,41.253843],[123.527345,41.253843],[123.517345,41.253843],[123.517345,41.2638430000001],[123.52312625,41.2785512519532],[123.519600859375,41.302426984375],[123.431978789063,41.2880324531251],[123.407345,41.3028908515625],[123.382735625,41.2880458808594],[123.359991484375,41.2914076972657],[123.327345,41.283843],[123.313985625,41.310483625],[123.2941028125,41.317202375],[123.287345,41.3038430000001],[123.267345,41.3038430000001],[123.257345,41.3038430000001],[123.19298953125,41.3294863105469],[123.15170046875,41.3381996894532],[123.137345,41.3438430000001],[123.137345,41.353843],[122.987345,41.353843]]]]}},{"type":"Feature","properties":{"name":"弓长岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.517345,41.2638430000001],[123.517345,41.253843],[123.527345,41.253843],[123.527345,41.243843],[123.537345,41.243843],[123.53326296875,41.2279274726563],[123.509176054688,41.2189150214844],[123.46654421875,41.1894826484376],[123.48142703125,41.1679274726563],[123.505709257813,41.158843],[123.500474882813,41.1354921699219],[123.529176054688,41.1156740546875],[123.54142703125,41.0979274726563],[123.558819609375,41.0859206367188],[123.511964140625,41.0468459296875],[123.48142703125,41.0679274726563],[123.472418242188,41.0809804511719],[123.41755984375,41.0932778144531],[123.38142703125,41.0797585273438],[123.3676184375,41.0597585273438],[123.27093875,41.0679689765625],[123.24326296875,41.1104714179688],[123.253624296875,41.1349404121094],[123.30142703125,41.1497585273438],[123.34326296875,41.1579274726562],[123.35142703125,41.1697585273438],[123.418736601563,41.1933534980469],[123.433526640625,41.2285646796876],[123.43037234375,41.2426479316406],[123.460230742188,41.2359548164063],[123.493765898438,41.2577919746094],[123.517345,41.2638430000001]]]]}},{"type":"Feature","properties":{"name":"太子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.207345,41.243843],[123.202345,41.2310353828125],[123.197345,41.243843],[123.207345,41.243843]]],[[[123.167345,41.243843],[123.167345,41.253843],[123.187345,41.253843],[123.187345,41.243843],[123.183326445313,41.2358986640626],[123.167345,41.243843]]],[[[123.287345,41.3038430000001],[123.277345,41.2898903632813],[123.267345,41.3038430000001],[123.287345,41.3038430000001]]],[[[123.287345,41.3038430000001],[123.2941028125,41.317202375],[123.313985625,41.310483625],[123.327345,41.283843],[123.327345,41.273843],[123.298892851563,41.2773220039062],[123.310538359375,41.29931175],[123.287345,41.3038430000001]]],[[[123.167345,41.243843],[123.162896757813,41.2382900214844],[123.13361453125,41.2148390937501],[123.147345,41.203843],[123.133985625,41.1772023750001],[123.127345,41.173843],[123.117345,41.173843],[123.117345,41.1838430000001],[123.112178984375,41.2023928046876],[123.089390898438,41.2199831367188],[123.1171496875,41.2414125800782],[123.050128203125,41.2688430000001],[123.056495390625,41.3119240546875],[123.082345,41.3081044746094],[123.132535429688,41.3155202460938],[123.137345,41.3438430000001],[123.15170046875,41.3381996894532],[123.19298953125,41.3294863105469],[123.257345,41.3038430000001],[123.250733671875,41.2881056953126],[123.286163359375,41.2790138984376],[123.24326296875,41.2629604316407],[123.269156523438,41.2470070625],[123.285694609375,41.2507155585938],[123.297345,41.233843],[123.287345,41.233843],[123.240704375,41.237202375],[123.227345,41.243843],[123.2237121875,41.2502114082031],[123.203922148438,41.2614968085938],[123.214561796875,41.2897280097657],[123.207345,41.293843],[123.203531523438,41.3000307441406],[123.171685820313,41.310884015625],[123.162345,41.295727765625],[123.153018828125,41.3108644843751],[123.133531523438,41.3021352363282],[123.143902617188,41.2688430000001],[123.137471953125,41.2481923652344],[123.167345,41.243843]]]]}},{"type":"Feature","properties":{"name":"文圣区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.203922148438,41.2614968085938],[123.2237121875,41.2502114082031],[123.227345,41.243843],[123.207345,41.243843],[123.197345,41.243843],[123.187345,41.243843],[123.187345,41.253843],[123.167345,41.253843],[123.183682890625,41.277505109375],[123.207345,41.293843],[123.214561796875,41.2897280097657],[123.203922148438,41.2614968085938]]],[[[123.310538359375,41.29931175],[123.298892851563,41.2773220039062],[123.327345,41.273843],[123.321329375,41.2504030585938],[123.297345,41.233843],[123.285694609375,41.2507155585938],[123.269156523438,41.2470070625],[123.24326296875,41.2629604316407],[123.286163359375,41.2790138984376],[123.250733671875,41.2881056953126],[123.257345,41.3038430000001],[123.267345,41.3038430000001],[123.277345,41.2898903632813],[123.287345,41.3038430000001],[123.310538359375,41.29931175]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大洼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.317345,40.903843],[122.327345,40.903843],[122.322345,40.8910353828125],[122.317345,40.903843]]],[[[122.347345,40.973843],[122.350767851563,40.9860353828125],[122.359537382813,40.9772658515626],[122.347345,40.973843]]],[[[122.347345,40.973843],[122.347345,40.9638430000001],[122.327345,40.9638430000001],[122.323922148438,40.9760353828126],[122.315152617188,40.9672658515625],[122.327345,40.9638430000001],[122.330704375,40.957202375],[122.345401640625,40.9497670722656],[122.333985625,40.927202375],[122.320704375,40.920483625],[122.317345,40.903843],[122.271402617188,40.8670937324219],[122.252125273438,40.8694924140625],[122.205421171875,40.8561550117187],[122.169425078125,40.8773159003906],[122.17447390625,40.8367116523438],[122.151954375,40.8395131660156],[122.122896757813,40.8182900214844],[122.086495390625,40.7961794257813],[122.207345,40.7338430000001],[122.19974734375,40.6997158027344],[122.237345,40.713843],[122.27142703125,40.7050954414063],[122.25326296875,40.6879274726563],[122.227345,40.683843],[122.195303984375,40.6888930488282],[122.155323515625,40.7149282050782],[122.147345,40.683843],[122.12170046875,40.6881996894532],[122.085914335938,40.7097866035156],[122.06298953125,40.7394863105469],[122.0160559375,40.7525551582032],[122.00298953125,40.7694863105469],[121.97673953125,40.7802309394532],[121.962345,40.7781044746094],[121.948834257813,40.7801003242187],[121.957139921875,40.8362831855469],[121.941529570313,40.8483315253906],[121.945933867188,40.8781362128907],[121.923990507813,40.8881996894532],[121.90193484375,40.8041774726563],[121.861378203125,40.8201198554688],[121.830328398438,40.8959902167969],[121.847779570313,40.9403847480469],[121.823487578125,40.9367958808594],[121.81298953125,40.9450429511719],[121.84298953125,40.9681996894532],[121.847345,40.973843],[121.887994414063,41.0484059882813],[121.802628203125,41.0598244453125],[121.81771609375,41.0746938300782],[121.847345,41.083843],[121.877345,41.103843],[121.887345,41.103843],[121.892515898438,41.0973842597656],[121.901793242188,41.1193959785156],[121.917769804688,41.1382900214844],[121.951983671875,41.1181764960938],[122.028267851563,41.1276650214844],[122.060792265625,41.0870510078125],[122.089678984375,41.1040322089844],[122.127345,41.1538430000001],[122.182965117188,41.1493910957032],[122.260714140625,41.1271620917969],[122.291632109375,41.1024025703126],[122.301793242188,41.0782900214844],[122.313013945313,41.0592031074219],[122.307633085938,41.0159694648438],[122.326236601563,40.9927370429688],[122.337345,40.983843],[122.337345,40.973843],[122.347345,40.973843]],[[122.277345,41.013843],[122.271910429688,41.0265395332031],[122.254346953125,41.0178957343751],[122.277345,41.013843]],[[122.247345,41.023843],[122.243922148438,41.0360353828125],[122.235152617188,41.0272658515625],[122.247345,41.023843]],[[122.217345,41.0338430000001],[122.213922148438,41.0460353828125],[122.205152617188,41.0372658515625],[122.217345,41.0338430000001]],[[122.275152617188,41.0472658515625],[122.287345,41.043843],[122.283922148438,41.0560353828126],[122.275152617188,41.0472658515625]]]]}},{"type":"Feature","properties":{"name":"盘山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.877345,41.1138430000001],[121.887345,41.1138430000001],[121.887345,41.103843],[121.877345,41.103843],[121.877345,41.1138430000001]]],[[[121.877345,41.1138430000001],[121.865152617188,41.1172658515625],[121.873922148438,41.1260353828126],[121.877345,41.1138430000001]]],[[[121.890025664063,41.1581520820313],[121.897345,41.133843],[121.85271609375,41.1396816230469],[121.890025664063,41.1581520820313]]],[[[122.23197390625,41.3784706855469],[122.271793242188,41.3607021308594],[122.273829375,41.3353774238282],[122.26271609375,41.2984706855469],[122.25197390625,41.2792153144532],[122.241593046875,41.244731671875],[122.20603640625,41.2141005683594],[122.25584109375,41.1863112617188],[122.307345,41.1904494453126],[122.332652617188,41.1884169746095],[122.407003203125,41.2520851875],[122.452345,41.2484413886719],[122.48197390625,41.2508217597657],[122.47271609375,41.2384706855469],[122.45197390625,41.2292153144532],[122.43271609375,41.2184706855469],[122.41197390625,41.2092153144532],[122.40271609375,41.1984706855469],[122.363370390625,41.1866249824219],[122.3619153125,41.1685195136719],[122.37271609375,41.1592153144532],[122.383331328125,41.1239601875],[122.404874296875,41.0853444648438],[122.400308867188,41.0285195136719],[122.417345,41.013843],[122.406158476563,40.9963661933594],[122.39158328125,41.0004628730469],[122.38310671875,40.9872231269532],[122.346158476563,40.9976076484375],[122.337345,40.983843],[122.326236601563,40.9927370429688],[122.307633085938,41.0159694648438],[122.313013945313,41.0592031074219],[122.301793242188,41.0782900214844],[122.291632109375,41.1024025703126],[122.260714140625,41.1271620917969],[122.182965117188,41.1493910957032],[122.127345,41.1538430000001],[122.120704375,41.157202375],[122.109263945313,41.1798183417969],[122.077345,41.1838430000001],[122.0876184375,41.2072670722657],[122.065816679688,41.2212233710938],[122.051886015625,41.2173085761719],[122.024073515625,41.2363552070313],[121.974112578125,41.2223146796875],[121.9951575,41.208843],[121.973648710938,41.1950746894532],[121.987345,41.163843],[121.962183867188,41.1532753730469],[121.92724734375,41.1611061835938],[121.937345,41.2061440253907],[121.870733671875,41.22323753125],[121.85326296875,41.1979274726563],[121.84107546875,41.1895131660156],[121.847003203125,41.1630690742188],[121.804620390625,41.1472121406251],[121.788541289063,41.1508168769532],[121.796207304688,41.1166164375],[121.84326296875,41.0897585273437],[121.847345,41.083843],[121.81771609375,41.0746938300782],[121.802628203125,41.0598244453125],[121.887994414063,41.0484059882813],[121.847345,40.973843],[121.804605742188,40.9665822578125],[121.790030546875,40.9309694648438],[121.803516875,40.9086086250001],[121.77033328125,40.882993390625],[121.74298953125,40.8994863105469],[121.72170046875,40.9081996894531],[121.701846953125,40.9201760078126],[121.69298953125,40.8781996894532],[121.655264921875,40.8494863105469],[121.6425403125,40.8805763984376],[121.632857695313,40.8680287910157],[121.621954375,40.8696401191407],[121.60298953125,40.8581996894532],[121.576143828125,40.8494863105469],[121.557345,40.873843],[121.596422148438,40.8791835761719],[121.622154570313,40.9190334296876],[121.632535429688,40.9286525703126],[121.642154570313,40.9490334296876],[121.664874296875,40.9700832343751],[121.661783476563,41.0479787421875],[121.672550078125,41.0786916328126],[121.671846953125,41.0963942695313],[121.578941679688,41.1090908027344],[121.562535429688,41.1563649726563],[121.621822539063,41.1946498847656],[121.586011992188,41.2115517402344],[121.572535429688,41.2363649726563],[121.622535429688,41.2686525703126],[121.632154570313,41.2790334296875],[121.649371367188,41.2949867988282],[121.711246367188,41.314575421875],[121.717345,41.333843],[121.762799101563,41.3281642890625],[121.771890898438,41.3395217109376],[121.790181914063,41.3372463203125],[121.841129179688,41.3568288398438],[121.862896757813,41.3393959785157],[121.87834109375,41.3201113105469],[121.902711210938,41.3505458808594],[121.966920195313,41.3882900214844],[122.002896757813,41.3793959785157],[122.027345,41.3650258613282],[122.051793242188,41.3793959785157],[122.083453398438,41.3927370429687],[122.111793242188,41.4093959785157],[122.132896757813,41.4182900214844],[122.14537234375,41.4338649726563],[122.171793242188,41.4493959785157],[122.187345,41.4538430000001],[122.206090117188,41.40851096875],[122.23197390625,41.3784706855469]],[[122.235152617188,41.3372658515625],[122.247345,41.333843],[122.243922148438,41.3460353828125],[122.235152617188,41.3372658515625]],[[121.71029421875,41.0877272773438],[121.757345,41.083843],[121.753531523438,41.1000307441406],[121.673531523438,41.1002541328126],[121.71029421875,41.0877272773438]],[[121.687345,41.053843],[121.675152617188,41.0504201484376],[121.683922148438,41.0416506171875],[121.699537382813,41.0572658515626],[121.690767851563,41.0660353828125],[121.687345,41.053843]]]]}},{"type":"Feature","properties":{"name":"双台子区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.024073515625,41.2363552070313],[122.051886015625,41.2173085761719],[122.065816679688,41.2212233710938],[122.0876184375,41.2072670722657],[122.077345,41.1838430000001],[122.071519804688,41.1796681953125],[122.056861601563,41.1592201972656],[122.027506132813,41.1496681953125],[122.007345,41.1777956367188],[121.992345,41.1568666816407],[121.987345,41.163843],[121.973648710938,41.1950746894532],[121.9951575,41.208843],[121.974112578125,41.2223146796875],[122.024073515625,41.2363552070313]]]]}},{"type":"Feature","properties":{"name":"兴隆台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.271910429688,41.0265395332031],[122.277345,41.013843],[122.254346953125,41.0178957343751],[122.271910429688,41.0265395332031]]],[[[122.243922148438,41.0360353828125],[122.247345,41.023843],[122.235152617188,41.0272658515625],[122.243922148438,41.0360353828125]]],[[[122.213922148438,41.0460353828125],[122.217345,41.0338430000001],[122.205152617188,41.0372658515625],[122.213922148438,41.0460353828125]]],[[[121.687345,41.053843],[121.683922148438,41.0416506171875],[121.675152617188,41.0504201484376],[121.687345,41.053843]]],[[[122.283922148438,41.0560353828126],[122.287345,41.043843],[122.275152617188,41.0472658515625],[122.283922148438,41.0560353828126]]],[[[121.687345,41.053843],[121.690767851563,41.0660353828125],[121.699537382813,41.0572658515626],[121.687345,41.053843]]],[[[121.877345,41.1138430000001],[121.873922148438,41.1260353828126],[121.865152617188,41.1172658515625],[121.877345,41.103843],[121.847345,41.083843],[121.84326296875,41.0897585273437],[121.796207304688,41.1166164375],[121.788541289063,41.1508168769532],[121.804620390625,41.1472121406251],[121.847003203125,41.1630690742188],[121.84107546875,41.1895131660156],[121.85326296875,41.1979274726563],[121.870733671875,41.22323753125],[121.937345,41.2061440253907],[121.92724734375,41.1611061835938],[121.962183867188,41.1532753730469],[121.987345,41.163843],[121.992345,41.1568666816407],[122.007345,41.1777956367188],[122.027506132813,41.1496681953125],[122.056861601563,41.1592201972656],[122.071519804688,41.1796681953125],[122.077345,41.1838430000001],[122.109263945313,41.1798183417969],[122.120704375,41.157202375],[122.127345,41.1538430000001],[122.089678984375,41.1040322089844],[122.060792265625,41.0870510078125],[122.028267851563,41.1276650214844],[121.951983671875,41.1181764960938],[121.917769804688,41.1382900214844],[121.901793242188,41.1193959785156],[121.892515898438,41.0973842597656],[121.887345,41.103843],[121.887345,41.1138430000001],[121.877345,41.1138430000001]],[[121.897345,41.133843],[121.890025664063,41.1581520820313],[121.85271609375,41.1396816230469],[121.897345,41.133843]]],[[[122.243922148438,41.3460353828125],[122.247345,41.333843],[122.235152617188,41.3372658515625],[122.243922148438,41.3460353828125]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昌图县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.767345,43.483843],[123.77252078125,43.4782552314453],[123.799971953125,43.4793434882813],[123.862115507813,43.4596688056641],[123.862550078125,43.4486788154297],[123.842720976563,43.4112026191407],[123.892935820313,43.3787746406251],[123.892139921875,43.3586562324219],[123.9439075,43.3463246894532],[124.013961210938,43.2871230292969],[124.09259890625,43.2902407050781],[124.092139921875,43.2786659980469],[124.102535429688,43.2690334296875],[124.112345,43.2482485175782],[124.137345,43.2492397285157],[124.172345,43.2478517890626],[124.202511015625,43.249048078125],[124.222154570313,43.2386525703125],[124.277345,43.223843],[124.270753203125,43.1710695625],[124.322896757813,43.1393959785157],[124.331793242188,43.1282900214844],[124.347345,43.123843],[124.382154570313,43.0986525703126],[124.422037382813,43.0728969550782],[124.32490359375,42.9930727363282],[124.372550078125,42.9678603339844],[124.42093875,42.9697780585938],[124.442154570313,42.9501210761719],[124.425206328125,42.9299123359375],[124.402154570313,42.9190334296875],[124.382535429688,42.9086525703126],[124.362154570313,42.8990334296876],[124.357345,42.883843],[124.342345,42.8896083808594],[124.310655546875,42.8774282050782],[124.313023710938,42.8583901191407],[124.301793242188,42.8493959785157],[124.292896757813,42.8182900214844],[124.251793242188,42.8093959785156],[124.193453398438,42.7327370429688],[124.161793242188,42.7193959785156],[124.152896757813,42.7082900214844],[124.131793242188,42.6993959785157],[124.110709257813,42.6870021796875],[124.11302859375,42.6683388496094],[124.088912382813,42.6593959785156],[124.072896757813,42.6793959785157],[123.960943632813,42.6882900214844],[123.87138796875,42.6538649726563],[123.811920195313,42.5796022773438],[123.741793242188,42.5693959785156],[123.727345,42.5638430000001],[123.693443632813,42.5725429511719],[123.68326296875,42.5997585273438],[123.66142703125,42.6079274726563],[123.65326296875,42.6297585273438],[123.627257109375,42.6394887519531],[123.617345,42.653843],[123.6126184375,42.6722670722656],[123.58037234375,42.6650380683594],[123.58361453125,42.6795131660156],[123.57107546875,42.6881728339844],[123.573565703125,42.6992897773438],[123.558409453125,42.7225661445313],[123.576925078125,42.7666469550782],[123.59361453125,42.7781728339844],[123.587862578125,42.803843],[123.593565703125,42.8292897773438],[123.580831328125,42.848843],[123.59408328125,42.8691909003907],[123.58060671875,42.8784950996094],[123.59408328125,42.8991909003906],[123.58060671875,42.9084950996094],[123.594132109375,42.9292629218751],[123.54580203125,42.9568471503906],[123.557345,43.003843],[123.57326296875,43.0079274726563],[123.58298953125,43.0339321113281],[123.604586210938,43.048843],[123.590103789063,43.0588430000001],[123.622164335938,43.0809804511719],[123.63142703125,43.1397585273438],[123.643565703125,43.1583962226563],[123.641051054688,43.1696169257813],[123.664361601563,43.1783388496094],[123.640328398438,43.2093471503907],[123.669845,43.2203908515625],[123.66107546875,43.2595131660157],[123.679176054688,43.2720119453126],[123.703746367188,43.3075966621094],[123.701221953125,43.3188430000001],[123.7046496875,43.3341127753907],[123.697345,43.3638430000001],[123.689561796875,43.3812142158203],[123.708780546875,43.4124056220704],[123.737564726563,43.4301387763672],[123.75281375,43.4748891425781],[123.767345,43.483843]]]]}},{"type":"Feature","properties":{"name":"调兵山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.647345,42.513843],[123.66576296875,42.4669875312501],[123.659303007813,42.4232729316407],[123.70170046875,42.4059206367187],[123.69298953125,42.3981996894531],[123.651514921875,42.3894472480469],[123.65423953125,42.3710182929688],[123.620767851563,42.3508266425781],[123.596607695313,42.3472560859376],[123.522276640625,42.3615468574219],[123.517345,42.343843],[123.461749296875,42.3786098457032],[123.472926054688,42.4090358710937],[123.452955351563,42.4262404609375],[123.451236601563,42.4476454902344],[123.47197390625,42.4592153144532],[123.50271609375,42.4684706855469],[123.57662234375,42.5097048164062],[123.602345,42.5076381660157],[123.620113554688,42.5474587226563],[123.660894804688,42.5507350898438],[123.647345,42.513843]]]]}},{"type":"Feature","properties":{"name":"开原市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.757345,42.5238430000001],[123.769537382813,42.5272658515625],[123.760767851563,42.5360353828125],[123.747345,42.5238430000001],[123.747345,42.543843],[123.760260039063,42.54937034375],[123.730343046875,42.5568398261719],[123.727345,42.5638430000001],[123.741793242188,42.5693959785156],[123.811920195313,42.5796022773438],[123.87138796875,42.6538649726563],[123.960943632813,42.6882900214844],[124.072896757813,42.6793959785157],[124.088912382813,42.6593959785156],[124.11302859375,42.6683388496094],[124.110709257813,42.6870021796875],[124.131793242188,42.6993959785157],[124.152896757813,42.7082900214844],[124.161793242188,42.7193959785156],[124.193453398438,42.7327370429688],[124.251793242188,42.8093959785156],[124.292896757813,42.8182900214844],[124.301793242188,42.8493959785157],[124.313023710938,42.8583901191407],[124.310655546875,42.8774282050782],[124.342345,42.8896083808594],[124.357345,42.883843],[124.37142703125,42.8779274726563],[124.440953398438,42.8687416816407],[124.45142703125,42.8279274726563],[124.457345,42.8238430000001],[124.466812773438,42.7997634101563],[124.434605742188,42.7865822578126],[124.416207304688,42.7416298652344],[124.367345,42.73440940625],[124.331773710938,42.7396657539063],[124.32298953125,42.7181996894532],[124.27298953125,42.6796059394532],[124.308507109375,42.6283827949219],[124.33298953125,42.6094863105469],[124.337345,42.583843],[124.312486601563,42.5896034980469],[124.301954375,42.5880458808594],[124.27281375,42.6056240058594],[124.180689726563,42.6269716621094],[124.13298953125,42.5981996894532],[124.087393828125,42.58550315625],[124.065152617188,42.5486318183594],[124.08170046875,42.5081996894531],[124.12427859375,42.4907741523438],[124.173922148438,42.4608266425781],[124.192345,42.4581044746094],[124.205953398438,42.4601149726563],[124.26170046875,42.4381996894531],[124.317750273438,42.428676984375],[124.38263796875,42.3895388007813],[124.429215117188,42.3826552558594],[124.433140898438,42.4092336250001],[124.414576445313,42.4400112128907],[124.39123171875,42.4993886542969],[124.437471953125,42.509145734375],[124.431519804688,42.5494362617188],[124.447345,42.553843],[124.468551054688,42.5451296210938],[124.495303984375,42.5504152656251],[124.523170195313,42.5396681953126],[124.568717070313,42.5020790839844],[124.628023710938,42.526450421875],[124.698350859375,42.4949587226563],[124.730904570313,42.5156264472657],[124.758995390625,42.495493390625],[124.771519804688,42.4780178046876],[124.783170195313,42.4696681953125],[124.791519804688,42.4580178046875],[124.811295195313,42.4438430000001],[124.790025664063,42.4285951972657],[124.813170195313,42.4196681953126],[124.817345,42.413843],[124.79197390625,42.4092153144532],[124.763638945313,42.3934072089844],[124.791861601563,42.3428212714844],[124.73197390625,42.3292153144531],[124.681202421875,42.3153188300782],[124.621241484375,42.3201369453125],[124.6227746875,42.3392043281251],[124.570367460938,42.3484706855469],[124.572769804688,42.3185646796875],[124.56197390625,42.2992153144532],[124.551715117188,42.2762221503907],[124.53197390625,42.2592153144532],[124.52271609375,42.2484706855469],[124.511807890625,42.2390724921875],[124.524205351563,42.1937795234375],[124.55271609375,42.1692153144531],[124.56197390625,42.1564455390625],[124.54197390625,42.1392153144531],[124.537345,42.133843],[124.531793242188,42.1293959785157],[124.471143828125,42.1156191230469],[124.42062625,42.130044171875],[124.423214140625,42.1508351875001],[124.377486601563,42.1701039863282],[124.34486453125,42.1660463691407],[124.312896757813,42.1893959785156],[124.251656523438,42.1983095527344],[124.25302859375,42.2093581367188],[124.18259890625,42.2294960761719],[124.172345,42.2282216621094],[124.162345,42.2294643378907],[124.151890898438,42.2281642890625],[124.140079375,42.242915265625],[124.102203398438,42.2382033515625],[124.082896757813,42.2422743964844],[124.114381132813,42.2674843574219],[124.11150515625,42.2906044746095],[124.092345,42.2882216621094],[124.06951296875,42.2910610175781],[124.072965117188,42.318843],[124.070982695313,42.3347988105469],[124.042706328125,42.3181764960938],[123.99119265625,42.3245839667969],[123.99880984375,42.385805890625],[123.958580351563,42.4102407050781],[123.920889921875,42.4055519843751],[123.923922148438,42.3811586738281],[123.88537234375,42.4038210273438],[123.869342070313,42.4238356757813],[123.842706328125,42.4081764960938],[123.832345,42.4094643378906],[123.817345,42.4075991035157],[123.800582304688,42.4096840644532],[123.803023710938,42.4292958808594],[123.791099882813,42.438843],[123.806163359375,42.4509035468751],[123.790928984375,42.490532453125],[123.7676965625,42.4876430488281],[123.757345,42.5238430000001]]]]}},{"type":"Feature","properties":{"name":"清河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.27281375,42.6056240058594],[124.301954375,42.5880458808594],[124.312486601563,42.5896034980469],[124.337345,42.583843],[124.353804960938,42.5803029609375],[124.375440703125,42.5639369941406],[124.40806765625,42.5773830390625],[124.443077421875,42.5616323066407],[124.447345,42.553843],[124.431519804688,42.5494362617188],[124.437471953125,42.509145734375],[124.39123171875,42.4993886542969],[124.414576445313,42.4400112128907],[124.433140898438,42.4092336250001],[124.429215117188,42.3826552558594],[124.38263796875,42.3895388007813],[124.317750273438,42.428676984375],[124.26170046875,42.4381996894531],[124.205953398438,42.4601149726563],[124.192345,42.4581044746094],[124.173922148438,42.4608266425781],[124.12427859375,42.4907741523438],[124.08170046875,42.5081996894531],[124.065152617188,42.5486318183594],[124.087393828125,42.58550315625],[124.13298953125,42.5981996894532],[124.180689726563,42.6269716621094],[124.27281375,42.6056240058594]]]]}},{"type":"Feature","properties":{"name":"铁岭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.757345,42.5238430000001],[123.760767851563,42.5360353828125],[123.769537382813,42.5272658515625],[123.757345,42.5238430000001]]],[[[123.757345,42.5238430000001],[123.7676965625,42.4876430488281],[123.790928984375,42.490532453125],[123.806163359375,42.4509035468751],[123.791099882813,42.438843],[123.803023710938,42.4292958808594],[123.800582304688,42.4096840644532],[123.817345,42.4075991035157],[123.832345,42.4094643378906],[123.842706328125,42.4081764960938],[123.869342070313,42.4238356757813],[123.88537234375,42.4038210273438],[123.923922148438,42.3811586738281],[123.920889921875,42.4055519843751],[123.958580351563,42.4102407050781],[123.99880984375,42.385805890625],[123.99119265625,42.3245839667969],[124.042706328125,42.3181764960938],[124.070982695313,42.3347988105469],[124.072965117188,42.318843],[124.06951296875,42.2910610175781],[124.092345,42.2882216621094],[124.11150515625,42.2906044746095],[124.114381132813,42.2674843574219],[124.082896757813,42.2422743964844],[124.102203398438,42.2382033515625],[124.140079375,42.242915265625],[124.151890898438,42.2281642890625],[124.162345,42.2294643378907],[124.172345,42.2282216621094],[124.18259890625,42.2294960761719],[124.25302859375,42.2093581367188],[124.251656523438,42.1983095527344],[124.312896757813,42.1893959785156],[124.34486453125,42.1660463691407],[124.377486601563,42.1701039863282],[124.423214140625,42.1508351875001],[124.42062625,42.130044171875],[124.471143828125,42.1156191230469],[124.531793242188,42.1293959785157],[124.537345,42.133843],[124.544010039063,42.1179775214844],[124.521329375,42.0851308417969],[124.46142703125,42.0697585273438],[124.41326296875,42.0479274726563],[124.361051054688,42.0296254707031],[124.363658476563,42.0179897285157],[124.337345,42.013843],[124.28252078125,42.0072438789063],[124.2680871875,42.0395864082031],[124.247789335938,42.0759670234375],[124.230728789063,42.0561611152344],[124.182345,42.0600478339844],[124.15486453125,42.0578408027344],[124.09982546875,42.0698451972657],[124.049371367188,42.0657912421876],[124.0252746875,42.01179221875],[123.947345,42.003843],[123.943531523438,42.0100307441407],[123.877701445313,42.0321828437501],[123.823902617188,42.0144887519532],[123.813531523438,41.9976552558594],[123.797345,41.9938430000001],[123.777345,41.9838430000001],[123.761676054688,42.0084706855469],[123.76318484375,42.0206044746094],[123.798350859375,42.0162294746094],[123.811793242188,42.0518837714844],[123.754610625,42.044770734375],[123.742896757813,42.0593959785157],[123.69375125,42.0892482734376],[123.641793242188,42.0982900214844],[123.543761015625,42.1436220527344],[123.532896757813,42.1693959785157],[123.516173125,42.1978493476563],[123.482896757813,42.1782900214844],[123.467345,42.1738430000001],[123.447550078125,42.2037990546876],[123.46326296875,42.2279274726563],[123.473204375,42.2666811347656],[123.50326296875,42.2779274726563],[123.51142703125,42.3097585273437],[123.523726835938,42.3286452460938],[123.517345,42.343843],[123.522276640625,42.3615468574219],[123.596607695313,42.3472560859376],[123.620767851563,42.3508266425781],[123.65423953125,42.3710182929688],[123.651514921875,42.3894472480469],[123.69298953125,42.3981996894531],[123.70170046875,42.4059206367187],[123.659303007813,42.4232729316407],[123.66576296875,42.4669875312501],[123.647345,42.513843],[123.68326296875,42.5179274726563],[123.707261992188,42.5335561347656],[123.747345,42.543843],[123.747345,42.5238430000001],[123.757345,42.5238430000001]],[[123.793682890625,42.2187673164063],[123.750054960938,42.1922658515625],[123.75326296875,42.1664455390625],[123.797345,42.153843],[123.790787382813,42.1709023261719],[123.823214140625,42.1668691230469],[123.82166140625,42.179341046875],[123.842896757813,42.1882900214844],[123.87595828125,42.2077223945313],[123.9614465625,42.1970888496094],[123.971793242188,42.2056484199219],[123.941793242188,42.2182900214844],[123.932896757813,42.2293959785156],[123.8992590625,42.2390151191406],[123.904210234375,42.278843],[123.880714140625,42.2887429023438],[123.928531523438,42.3177858710938],[123.867203398438,42.3353200507813],[123.799195585938,42.3091786933594],[123.804156523438,42.2692958808594],[123.784371367188,42.2534560371095],[123.772896757813,42.2354116035156],[123.793682890625,42.2187673164063]]]]}},{"type":"Feature","properties":{"name":"西丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.887345,43.1338430000001],[124.87271609375,43.0684706855469],[124.836949492188,43.0227992988282],[124.85271609375,43.0092153144531],[124.8663684375,42.9786183906251],[124.849146757813,42.8836330390625],[124.852745390625,42.838843],[124.851217070313,42.8198232246094],[124.8668371875,42.7918300605469],[124.886124296875,42.7792153144531],[124.913316679688,42.8107741523437],[124.955689726563,42.8073683906251],[124.97986453125,42.7793105292969],[124.99197390625,42.7364455390625],[124.971163359375,42.7185195136719],[124.973150664063,42.693843],[124.9719153125,42.6785073066406],[125.00271609375,42.6592153144531],[125.01197390625,42.628470685547],[125.034742460938,42.6092153144532],[125.047345,42.623843],[125.090279570313,42.6193190742188],[125.079229765625,42.583843],[125.08404421875,42.5683852363282],[125.066329375,42.5431545234375],[125.075460234375,42.513843],[125.07048953125,42.4978835273438],[125.098389921875,42.48837425],[125.107345,42.473843],[125.091793242188,42.4693959785157],[125.029957304688,42.4330471015625],[125.03302859375,42.4083278632813],[125.001793242188,42.3993959785157],[124.992896757813,42.3782900214844],[124.96365359375,42.3659658027344],[124.936422148438,42.3999721503907],[124.902799101563,42.3957900214844],[124.842896757813,42.4093959785157],[124.817345,42.413843],[124.813170195313,42.4196681953126],[124.790025664063,42.4285951972657],[124.811295195313,42.4438430000001],[124.791519804688,42.4580178046875],[124.783170195313,42.4696681953125],[124.771519804688,42.4780178046876],[124.758995390625,42.495493390625],[124.730904570313,42.5156264472657],[124.698350859375,42.4949587226563],[124.628023710938,42.526450421875],[124.568717070313,42.5020790839844],[124.523170195313,42.5396681953126],[124.495303984375,42.5504152656251],[124.468551054688,42.5451296210938],[124.447345,42.553843],[124.443077421875,42.5616323066407],[124.40806765625,42.5773830390625],[124.375440703125,42.5639369941406],[124.353804960938,42.5803029609375],[124.337345,42.583843],[124.33298953125,42.6094863105469],[124.308507109375,42.6283827949219],[124.27298953125,42.6796059394532],[124.32298953125,42.7181996894532],[124.331773710938,42.7396657539063],[124.367345,42.73440940625],[124.416207304688,42.7416298652344],[124.434605742188,42.7865822578126],[124.466812773438,42.7997634101563],[124.457345,42.8238430000001],[124.463453398438,42.8282228828125],[124.460089140625,42.845259015625],[124.493170195313,42.8580178046876],[124.514283476563,42.8714235664063],[124.532965117188,42.8677321601563],[124.541519804688,42.8796681953126],[124.582862578125,42.903637921875],[124.601519804688,42.9296681953125],[124.62166140625,42.9441030097657],[124.631519804688,42.9696681953125],[124.6618371875,42.9813600898438],[124.676529570313,43.0546584296876],[124.743170195313,43.0680178046875],[124.755694609375,43.0854933906251],[124.773170195313,43.0980178046875],[124.789244414063,43.1204433417969],[124.807345,43.1168666816406],[124.832345,43.1218068671875],[124.852345,43.1178554511719],[124.868121367188,43.12097190625],[124.877345,43.1338430000001],[124.887345,43.1338430000001]]]]}},{"type":"Feature","properties":{"name":"银州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.941793242188,42.2182900214844],[123.971793242188,42.2056484199219],[123.9614465625,42.1970888496094],[123.87595828125,42.2077223945313],[123.842896757813,42.1882900214844],[123.82166140625,42.179341046875],[123.823214140625,42.1668691230469],[123.790787382813,42.1709023261719],[123.797345,42.153843],[123.75326296875,42.1664455390625],[123.750054960938,42.1922658515625],[123.793682890625,42.2187673164063],[123.772896757813,42.2354116035156],[123.784371367188,42.2534560371095],[123.804156523438,42.2692958808594],[123.799195585938,42.3091786933594],[123.867203398438,42.3353200507813],[123.928531523438,42.3177858710938],[123.880714140625,42.2887429023438],[123.904210234375,42.278843],[123.8992590625,42.2390151191406],[123.932896757813,42.2293959785156],[123.941793242188,42.2182900214844]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"双塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.447345,41.713843],[120.471890898438,41.6976210761719],[120.491676054688,41.702055890625],[120.505513945313,41.6820119453125],[120.52326296875,41.6697585273438],[120.53142703125,41.6579274726563],[120.556158476563,41.6408534980469],[120.551041289063,41.6180275703125],[120.611329375,41.6025551582031],[120.62142703125,41.5879274726563],[120.634586210938,41.578843],[120.62142703125,41.5697585273438],[120.617345,41.5638430000001],[120.59170046875,41.5594863105469],[120.552320585938,41.5302907539063],[120.541202421875,41.5158876777344],[120.522579375,41.5400160957032],[120.49486453125,41.5232985664063],[120.452345,41.5295815253907],[120.421031523438,41.5249550605469],[120.4231653125,41.5393886542969],[120.397345,41.553843],[120.40170046875,41.5594863105469],[120.4186340625,41.5725551582031],[120.4360559375,41.5951308417969],[120.45298953125,41.6081996894532],[120.46170046875,41.6227614570312],[120.423678007813,41.6521108222656],[120.463721953125,41.6684987617188],[120.4413684375,41.6986452460938],[120.447345,41.713843]]]]}},{"type":"Feature","properties":{"name":"龙城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.447345,41.713843],[120.4413684375,41.6986452460938],[120.463721953125,41.6684987617188],[120.423678007813,41.6521108222656],[120.46170046875,41.6227614570312],[120.45298953125,41.6081996894532],[120.4360559375,41.5951308417969],[120.4186340625,41.5725551582031],[120.40170046875,41.5594863105469],[120.397345,41.553843],[120.391881132813,41.5493056464844],[120.377257109375,41.5316994453125],[120.362808867188,41.4983803535156],[120.34119265625,41.4606423164062],[120.282808867188,41.4534609199219],[120.31322390625,41.4787270332031],[120.291881132813,41.5083803535156],[120.274439726563,41.5485976386719],[120.244908476563,41.5614052558594],[120.225103789063,41.6070632148437],[120.262808867188,41.6383803535157],[120.285299101563,41.6748464179688],[120.281822539063,41.7089687324219],[120.285269804688,41.7283803535156],[120.301881132813,41.7083803535157],[120.335269804688,41.6993056464844],[120.351881132813,41.7193056464844],[120.372808867188,41.7283803535156],[120.387345,41.753843],[120.41142703125,41.7379274726563],[120.437432890625,41.7281972480469],[120.447345,41.713843]]]]}},{"type":"Feature","properties":{"name":"北票市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.934307890625,42.274887921875],[120.99326296875,42.2597585273438],[121.01142703125,42.2479274726563],[121.027345,42.243843],[121.03248171875,42.22761253125],[121.052550078125,42.2090200019532],[121.051417265625,42.1804457832031],[121.0789465625,42.1134255195313],[121.062535429688,42.0786525703125],[121.041729765625,42.0593740058595],[121.043136015625,42.0238430000001],[121.042144804688,41.998843],[121.042545195313,41.9888430000001],[121.041807890625,41.9702516914063],[121.118433867188,41.9672145820313],[121.1523840625,41.9791139960937],[121.172154570313,41.9686525703125],[121.192535429688,41.9590334296875],[121.206597929688,41.9146205878907],[121.252154570313,41.8986525703125],[121.302115507813,41.8867519355469],[121.27482546875,41.8351784492187],[121.262154570313,41.7990334296875],[121.257345,41.783843],[121.25197390625,41.7792153144532],[121.24271609375,41.7684706855469],[121.22197390625,41.7592153144532],[121.208878203125,41.7440163398438],[121.224176054688,41.7166030097656],[121.221295195313,41.6808071113281],[121.14197390625,41.6592153144532],[121.12345828125,41.6377272773438],[121.098624296875,41.6163295722657],[121.053902617188,41.6199233222656],[120.971085234375,41.5895107246094],[120.972769804688,41.5685646796875],[120.959576445313,41.5449184394532],[120.90197390625,41.5192153144531],[120.89271609375,41.4784706855469],[120.88197390625,41.4692153144532],[120.877345,41.4138430000001],[120.841783476563,41.4196852851563],[120.831754179688,41.3951772285157],[120.81298953125,41.4194863105469],[120.800225859375,41.4281996894532],[120.804195585938,41.4013198066407],[120.777345,41.393843],[120.77326296875,41.4097585273438],[120.732960234375,41.4201015449219],[120.71033328125,41.4150295234375],[120.687022734375,41.4487929511719],[120.627691679688,41.46401878125],[120.65755984375,41.5098854804688],[120.63060671875,41.5284950996094],[120.650250273438,41.5586574531251],[120.617345,41.5638430000001],[120.62142703125,41.5697585273438],[120.634586210938,41.578843],[120.62142703125,41.5879274726563],[120.611329375,41.6025551582031],[120.551041289063,41.6180275703125],[120.556158476563,41.6408534980469],[120.53142703125,41.6579274726563],[120.52326296875,41.6697585273438],[120.505513945313,41.6820119453125],[120.491676054688,41.702055890625],[120.471890898438,41.6976210761719],[120.447345,41.713843],[120.437432890625,41.7281972480469],[120.41142703125,41.7379274726563],[120.387345,41.753843],[120.38298953125,41.7794863105469],[120.36170046875,41.8081996894532],[120.341436796875,41.8577077460938],[120.343082304688,41.8688430000001],[120.340728789063,41.8847743964844],[120.287345,41.893843],[120.287345,41.903843],[120.267345,41.903843],[120.275338164063,41.9310854316407],[120.302769804688,41.9282900214844],[120.316422148438,41.9597682929688],[120.365513945313,41.9900490546876],[120.410391875,41.985473859375],[120.421881132813,41.9993056464845],[120.4421496875,42.0161415839844],[120.453785429688,42.0557949042969],[120.482896757813,42.0684194160156],[120.481793242188,42.079233625],[120.493541289063,42.0889882636719],[120.4632434375,42.1021279121094],[120.482882109375,42.118442609375],[120.562808867188,42.1483803535156],[120.585045195313,42.1611159492188],[120.61255984375,42.1583119941407],[120.665479765625,42.1731069160156],[120.701881132813,42.1993056464844],[120.722808867188,42.2083803535157],[120.733516875,42.2212721992188],[120.781173125,42.2164138007813],[120.791881132813,42.2293056464844],[120.8490246875,42.2507106757813],[120.883604765625,42.2471852851563],[120.877345,42.263843],[120.881676054688,42.2701137519531],[120.897345,42.2666017890626],[120.934307890625,42.274887921875]]]]}},{"type":"Feature","properties":{"name":"朝阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.337345,40.9938430000001],[120.349537382813,40.9972658515625],[120.340767851563,41.0060353828125],[120.319439726563,41.00136253125],[120.30326296875,40.9779274726563],[120.29142703125,40.9697585273438],[120.270753203125,40.9398110175781],[120.237345,40.9538430000001],[120.210787382813,40.9488857246094],[120.18552859375,40.9206179023437],[120.152628203125,40.9317568183594],[120.1944153125,40.9690956855469],[120.191925078125,41.010903546875],[120.142345,41.0079494453126],[120.127906523438,41.0394057441407],[120.107882109375,41.0762538886719],[120.057345,41.103843],[120.040924101563,41.1299013496094],[120.0428528125,41.1488430000001],[120.040069609375,41.1761550117188],[119.9979309375,41.1944301582032],[119.972584257813,41.2528774238282],[119.9332434375,41.2855580878907],[119.96431765625,41.2990358710937],[119.911881132813,41.3083803535156],[119.883507109375,41.3246315742188],[119.86937625,41.35722190625],[119.882808867188,41.3683803535157],[119.89345828125,41.3929360175782],[119.8918371875,41.408843],[119.89287234375,41.4190151191407],[119.881754179688,41.4689614082032],[119.8940246875,41.5016164375001],[119.887345,41.543843],[119.897345,41.543843],[119.897345,41.553843],[119.908795195313,41.568676984375],[119.94298953125,41.5781996894532],[119.97170046875,41.5894863105469],[120.041695585938,41.5994362617188],[120.045391875,41.6244741035157],[120.001529570313,41.6583315253907],[120.003160429688,41.6693544746094],[119.987672148438,41.6813100410156],[120.00170046875,41.6994863105469],[120.027345,41.713843],[120.03197390625,41.7084706855469],[120.055655546875,41.6979042792969],[120.072345,41.6992446113281],[120.091363554688,41.6977162910157],[120.136300078125,41.7227883125001],[120.119088164063,41.7536391425782],[120.188658476563,41.8377443671875],[120.239859648438,41.8818544746094],[120.282701445313,41.8784133125001],[120.287345,41.893843],[120.340728789063,41.8847743964844],[120.343082304688,41.8688430000001],[120.341436796875,41.8577077460938],[120.36170046875,41.8081996894532],[120.38298953125,41.7794863105469],[120.387345,41.753843],[120.372808867188,41.7283803535156],[120.351881132813,41.7193056464844],[120.335269804688,41.6993056464844],[120.301881132813,41.7083803535157],[120.285269804688,41.7283803535156],[120.281822539063,41.7089687324219],[120.285299101563,41.6748464179688],[120.262808867188,41.6383803535157],[120.225103789063,41.6070632148437],[120.244908476563,41.5614052558594],[120.274439726563,41.5485976386719],[120.291881132813,41.5083803535156],[120.31322390625,41.4787270332031],[120.282808867188,41.4534609199219],[120.34119265625,41.4606423164062],[120.362808867188,41.4983803535156],[120.377257109375,41.5316994453125],[120.391881132813,41.5493056464844],[120.397345,41.553843],[120.4231653125,41.5393886542969],[120.421031523438,41.5249550605469],[120.452345,41.5295815253907],[120.49486453125,41.5232985664063],[120.522579375,41.5400160957032],[120.541202421875,41.5158876777344],[120.552320585938,41.5302907539063],[120.59170046875,41.5594863105469],[120.617345,41.5638430000001],[120.650250273438,41.5586574531251],[120.63060671875,41.5284950996094],[120.65755984375,41.5098854804688],[120.627691679688,41.46401878125],[120.687022734375,41.4487929511719],[120.71033328125,41.4150295234375],[120.732960234375,41.4201015449219],[120.77326296875,41.4097585273438],[120.777345,41.393843],[120.767725859375,41.363462140625],[120.752154570313,41.3490334296875],[120.742535429688,41.2986525703125],[120.7317590625,41.2782851386719],[120.763331328125,41.249028546875],[120.703389921875,41.2207399726563],[120.7534778125,41.2088088203125],[120.767345,41.1938430000001],[120.712369414063,41.1869741035157],[120.68373171875,41.1905361152344],[120.662706328125,41.1781764960938],[120.651983671875,41.1795095039063],[120.632896757813,41.1682900214844],[120.611793242188,41.1593959785156],[120.592896757813,41.1082900214844],[120.541793242188,41.0893959785156],[120.52834109375,41.0574758125],[120.508472929688,41.059946515625],[120.49263796875,41.0797206855469],[120.456046171875,41.0656569648438],[120.442896757813,41.0154116035156],[120.457345,41.0038430000001],[120.427633085938,40.9603639960938],[120.403863554688,40.9568508125],[120.348365507813,40.9795644355469],[120.337345,40.9938430000001]]],[[[120.287345,41.893843],[120.254288359375,41.8977602363281],[120.267345,41.903843],[120.287345,41.903843],[120.287345,41.893843]]]]}},{"type":"Feature","properties":{"name":"建平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.797345,41.5338430000001],[119.793922148438,41.5460353828126],[119.785152617188,41.5372658515625],[119.788267851563,41.5229177070313],[119.76650515625,41.5048403144532],[119.748355742188,41.4731508613281],[119.729405546875,41.4227089667969],[119.751881132813,41.3834609199219],[119.722457304688,41.3580788398438],[119.643975859375,41.3246157050782],[119.577345,41.3178237128906],[119.56201296875,41.3193862128907],[119.537345,41.3038430000001],[119.53326296875,41.3097585273438],[119.517193632813,41.3208534980469],[119.52361453125,41.3495131660156],[119.493590117188,41.3702431464844],[119.477076445313,41.3665407539063],[119.415806914063,41.3815895820313],[119.396734648438,41.4092116523438],[119.367345,41.4138430000001],[119.371612578125,41.4495778632813],[119.393287382813,41.4783815742188],[119.390621367188,41.4938430000001],[119.393287382813,41.509321515625],[119.353360625,41.5582094550781],[119.413326445313,41.568149640625],[119.410069609375,41.5870607734375],[119.351612578125,41.6081081367188],[119.300299101563,41.6519533515625],[119.304068632813,41.673843],[119.296807890625,41.7160048652344],[119.31330203125,41.7282753730469],[119.309776640625,41.7487538886719],[119.288062773438,41.783843],[119.311226835938,41.8212721992188],[119.317345,41.843843],[119.323424101563,41.8603993964844],[119.321539335938,41.883843],[119.323951445313,41.9138430000001],[119.321944609375,41.938843],[119.322745390625,41.9488430000001],[119.321187773438,41.9682631660156],[119.374815703125,42.0330971503907],[119.371944609375,42.0688430000001],[119.373629179688,42.0898146796876],[119.357345,42.1038430000001],[119.35298953125,42.1094863105469],[119.308131132813,42.1189528632813],[119.26724734375,42.1777443671875],[119.225611601563,42.1947853828125],[119.24298953125,42.2081996894531],[119.27744265625,42.2577443671875],[119.30298953125,42.2681996894532],[119.346485625,42.3004482246094],[119.367345,42.2973647285156],[119.395299101563,42.3014955878906],[119.44170046875,42.3294863105469],[119.46298953125,42.3381996894532],[119.48900515625,42.353891828125],[119.497345,42.383843],[119.571500273438,42.3508596015626],[119.53271609375,42.2961598945313],[119.552095976563,42.2884218574219],[119.562623320313,42.2892665839844],[119.58197390625,42.2784706855469],[119.60271609375,42.2692153144532],[119.6173840625,42.2521901679688],[119.642066679688,42.2384194160157],[119.652345,42.2392446113281],[119.662345,42.2384413886719],[119.672623320313,42.2392665839844],[119.7220715625,42.2116774726563],[119.762345,42.2084413886719],[119.833233671875,42.2141371894531],[119.853502226563,42.1778041816406],[119.82271609375,42.1226247382813],[119.84197390625,42.0984706855469],[119.869542265625,42.0747170234375],[119.90197390625,42.018470685547],[119.91271609375,42.0092153144532],[119.93123171875,41.9877272773438],[119.955025664063,41.9672243476563],[119.95115359375,41.9189858222656],[119.98271609375,41.8992153144531],[119.99197390625,41.8684706855469],[120.00271609375,41.8492153144532],[120.016651640625,41.8179836250001],[120.035206328125,41.8194753242188],[120.031944609375,41.778843],[120.032764921875,41.7686049628906],[120.021871367188,41.7389382148438],[120.027345,41.713843],[120.00170046875,41.6994863105469],[119.987672148438,41.6813100410156],[120.003160429688,41.6693544746094],[120.001529570313,41.6583315253907],[120.045391875,41.6244741035157],[120.041695585938,41.5994362617188],[119.97170046875,41.5894863105469],[119.94298953125,41.5781996894532],[119.908795195313,41.568676984375],[119.897345,41.553843],[119.887345,41.553843],[119.887345,41.543843],[119.852843046875,41.5353688789063],[119.827076445313,41.5411452460938],[119.797345,41.5338430000001]]]]}},{"type":"Feature","properties":{"name":"喀喇沁左翼蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.797345,41.5338430000001],[119.827076445313,41.5411452460938],[119.852843046875,41.5353688789063],[119.887345,41.543843],[119.8940246875,41.5016164375001],[119.881754179688,41.4689614082032],[119.89287234375,41.4190151191407],[119.8918371875,41.408843],[119.89345828125,41.3929360175782],[119.882808867188,41.3683803535157],[119.86937625,41.35722190625],[119.883507109375,41.3246315742188],[119.911881132813,41.3083803535156],[119.96431765625,41.2990358710937],[119.9332434375,41.2855580878907],[119.972584257813,41.2528774238282],[119.9979309375,41.1944301582032],[120.040069609375,41.1761550117188],[120.0428528125,41.1488430000001],[120.040924101563,41.1299013496094],[120.057345,41.103843],[120.05013796875,41.0957790351563],[119.991124296875,41.0686928535157],[120.021827421875,41.0121889472657],[119.990367460938,40.9436354804688],[119.961529570313,40.9279665351563],[119.937345,40.9550356269532],[119.922628203125,40.9385622382813],[119.912061796875,40.9291237617188],[119.902271757813,40.9077919746094],[119.82209109375,40.9292678046876],[119.812628203125,40.8785622382813],[119.802061796875,40.8691237617188],[119.784312773438,40.8492580390626],[119.772164335938,40.8485341621094],[119.727086210938,40.8606081367188],[119.6930090625,40.8449684882813],[119.6920325,40.8285903144531],[119.706690703125,40.815493390625],[119.674195585938,40.7791237617188],[119.662061796875,40.7885622382813],[119.617628203125,40.838296125],[119.562198515625,40.8184084296875],[119.552628203125,40.8291237617188],[119.527345,40.833843],[119.522628203125,40.8591237617188],[119.472061796875,40.8685622382812],[119.462628203125,40.8770827460938],[119.5726575,40.938579328125],[119.5719934375,40.9497158027344],[119.549605742188,40.9483815742188],[119.522628203125,40.9847927070312],[119.556011992188,41.0001149726562],[119.582569609375,40.9985317207031],[119.602061796875,41.0091237617188],[119.622628203125,41.0185622382813],[119.632061796875,41.0510231757813],[119.572061796875,41.0785622382813],[119.552628203125,41.0891237617188],[119.502061796875,41.1085622382813],[119.492628203125,41.1203163886719],[119.522345,41.1185451484375],[119.532569609375,41.1191542792969],[119.56172,41.1033144355469],[119.582061796875,41.1317568183594],[119.55968875,41.172934796875],[119.474254179688,41.2121462226563],[119.4937903125,41.2296010566406],[119.491910429688,41.2611183906251],[119.522628203125,41.2885622382812],[119.532061796875,41.2991237617187],[119.537345,41.3038430000001],[119.56201296875,41.3193862128907],[119.577345,41.3178237128906],[119.643975859375,41.3246157050782],[119.722457304688,41.3580788398438],[119.751881132813,41.3834609199219],[119.729405546875,41.4227089667969],[119.748355742188,41.4731508613281],[119.76650515625,41.5048403144532],[119.788267851563,41.5229177070313],[119.797345,41.5338430000001]]],[[[119.797345,41.5338430000001],[119.785152617188,41.5372658515625],[119.793922148438,41.5460353828126],[119.797345,41.5338430000001]]],[[[119.887345,41.543843],[119.887345,41.553843],[119.897345,41.553843],[119.897345,41.543843],[119.887345,41.543843]]]]}},{"type":"Feature","properties":{"name":"凌源市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.415806914063,41.3815895820313],[119.477076445313,41.3665407539063],[119.493590117188,41.3702431464844],[119.52361453125,41.3495131660156],[119.517193632813,41.3208534980469],[119.53326296875,41.3097585273438],[119.537345,41.3038430000001],[119.532061796875,41.2991237617187],[119.522628203125,41.2885622382812],[119.491910429688,41.2611183906251],[119.4937903125,41.2296010566406],[119.474254179688,41.2121462226563],[119.55968875,41.172934796875],[119.582061796875,41.1317568183594],[119.56172,41.1033144355469],[119.532569609375,41.1191542792969],[119.522345,41.1185451484375],[119.492628203125,41.1203163886719],[119.502061796875,41.1085622382813],[119.552628203125,41.0891237617188],[119.572061796875,41.0785622382813],[119.632061796875,41.0510231757813],[119.622628203125,41.0185622382813],[119.602061796875,41.0091237617188],[119.582569609375,40.9985317207031],[119.556011992188,41.0001149726562],[119.522628203125,40.9847927070312],[119.549605742188,40.9483815742188],[119.5719934375,40.9497158027344],[119.5726575,40.938579328125],[119.462628203125,40.8770827460938],[119.472061796875,40.8685622382812],[119.522628203125,40.8591237617188],[119.527345,40.833843],[119.52107546875,40.8295131660157],[119.525557890625,40.8095131660156],[119.51142703125,40.7997585273438],[119.50170046875,40.7737538886719],[119.47697390625,40.7566835761719],[119.461676054688,40.7601137519532],[119.45326296875,40.7479274726563],[119.42455203125,40.7281069160156],[119.41170046875,40.6937538886719],[119.38697390625,40.6766835761719],[119.372345,40.6799636054688],[119.3441028125,40.6736330390625],[119.33326296875,40.6579274726563],[119.32142703125,40.6497585273438],[119.309176054688,40.6320119453125],[119.265582304688,40.6019130683594],[119.250797148438,40.6233266425782],[119.237345,40.603843],[119.147345,40.603843],[119.147345,40.6138430000001],[119.141358671875,40.6290651679688],[119.174400664063,40.6699440742188],[119.170308867188,40.6976186347657],[119.10013796875,40.6669533515626],[119.077345,40.6703212714844],[119.052857695313,40.6667018867188],[119.04298953125,40.6794863105469],[119.027086210938,40.6917604804688],[119.002345,40.6881044746094],[118.980113554688,40.6913893867188],[118.937125273438,40.7470851875],[118.897345,40.753843],[118.891632109375,40.7728115058594],[118.841158476563,40.8090566230469],[118.842955351563,40.8314455390625],[118.86271609375,40.8484706855469],[118.884766875,40.8836782050782],[118.881920195313,40.9191213203126],[118.89271609375,40.9384706855469],[118.903038359375,40.9615993476563],[118.952345,40.9576381660157],[118.98404421875,40.9601845527344],[119.02197390625,40.9964284492188],[118.953819609375,41.01694846875],[118.92271609375,41.0426247382813],[118.956920195313,41.0720912910156],[119.017345,41.0672365546876],[119.068834257813,41.0713735175781],[119.08197390625,41.1292153144532],[119.12271609375,41.1384706855469],[119.191080351563,41.1920095039063],[119.162730742188,41.2164321113282],[119.20271609375,41.2284706855469],[119.21197390625,41.2492153144531],[119.243199492188,41.2761159492187],[119.237345,41.313843],[119.24197390625,41.3192153144532],[119.32392703125,41.3341640449219],[119.321944609375,41.358843],[119.323472929688,41.3778627753907],[119.306842070313,41.407671125],[119.367345,41.4138430000001],[119.396734648438,41.4092116523438],[119.415806914063,41.3815895820313]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"建昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.127906523438,41.0394057441407],[120.142345,41.0079494453126],[120.191925078125,41.010903546875],[120.1944153125,40.9690956855469],[120.152628203125,40.9317568183594],[120.18552859375,40.9206179023437],[120.210787382813,40.9488857246094],[120.237345,40.9538430000001],[120.2438684375,40.9141408515625],[120.240206328125,40.8893544746094],[120.2586340625,40.8751308417969],[120.2760559375,40.8525551582032],[120.293375273438,40.8391872382812],[120.287345,40.823843],[120.270343046875,40.7973757148438],[120.275421171875,40.7630141425782],[120.245328398438,40.6894863105469],[120.23170046875,40.6981996894532],[120.216265898438,40.7181996894531],[120.20170046875,40.7094863105469],[120.192857695313,40.6980287910156],[120.172945585938,40.7009706855469],[120.1176575,40.6855751777344],[120.125953398438,40.6294130683594],[120.10170046875,40.6194863105469],[120.097345,40.6138430000001],[120.07197390625,40.6092153144531],[120.06271609375,40.5864455390625],[120.090499296875,40.5625112128906],[120.03197390625,40.5492153144532],[120.011363554688,40.5377162910156],[119.963961210938,40.5415248847656],[119.95271609375,40.5284706855469],[119.9091809375,40.5153627753906],[119.884464140625,40.4599770332032],[119.8666028125,40.4445864082032],[119.852667265625,40.4284157539063],[119.842345,40.4292446113282],[119.822345,40.4276381660157],[119.802105742188,40.4292641425781],[119.74814578125,40.40944846875],[119.706329375,40.432778546875],[119.652345,40.4284413886719],[119.632345,40.4300478339844],[119.612345,40.4284413886719],[119.602105742188,40.4292641425781],[119.587345,40.4238430000001],[119.593472929688,40.4488014960937],[119.58978640625,40.4652529121094],[119.565513945313,40.4820119453125],[119.55326296875,40.4997585273438],[119.54060671875,40.5084950996094],[119.553858671875,40.528843],[119.539112578125,40.5514821601563],[119.517345,40.5466017890625],[119.501900664063,40.550063703125],[119.472550078125,40.5309511542969],[119.425548125,40.5414882636719],[119.391842070313,40.5273305488281],[119.38326296875,40.5397585273438],[119.363975859375,40.5479274726562],[119.332789335938,40.527622296875],[119.312345,40.5322060371094],[119.291900664063,40.527622296875],[119.272789335938,40.540063703125],[119.261900664063,40.537622296875],[119.214136992188,40.5687233710938],[119.237345,40.603843],[119.250797148438,40.6233266425782],[119.265582304688,40.6019130683594],[119.309176054688,40.6320119453125],[119.32142703125,40.6497585273438],[119.33326296875,40.6579274726563],[119.3441028125,40.6736330390625],[119.372345,40.6799636054688],[119.38697390625,40.6766835761719],[119.41170046875,40.6937538886719],[119.42455203125,40.7281069160156],[119.45326296875,40.7479274726563],[119.461676054688,40.7601137519532],[119.47697390625,40.7566835761719],[119.50170046875,40.7737538886719],[119.51142703125,40.7997585273438],[119.525557890625,40.8095131660156],[119.52107546875,40.8295131660157],[119.527345,40.833843],[119.552628203125,40.8291237617188],[119.562198515625,40.8184084296875],[119.617628203125,40.838296125],[119.662061796875,40.7885622382813],[119.674195585938,40.7791237617188],[119.706690703125,40.815493390625],[119.6920325,40.8285903144531],[119.6930090625,40.8449684882813],[119.727086210938,40.8606081367188],[119.772164335938,40.8485341621094],[119.784312773438,40.8492580390626],[119.802061796875,40.8691237617188],[119.812628203125,40.8785622382813],[119.82209109375,40.9292678046876],[119.902271757813,40.9077919746094],[119.912061796875,40.9291237617188],[119.922628203125,40.9385622382813],[119.937345,40.9550356269532],[119.961529570313,40.9279665351563],[119.990367460938,40.9436354804688],[120.021827421875,41.0121889472657],[119.991124296875,41.0686928535157],[120.05013796875,41.0957790351563],[120.057345,41.103843],[120.107882109375,41.0762538886719],[120.127906523438,41.0394057441407]]]]}},{"type":"Feature","properties":{"name":"连山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.337345,40.9938430000001],[120.340767851563,41.0060353828125],[120.349537382813,40.9972658515625],[120.337345,40.9938430000001]]],[[[120.717345,41.023843],[120.707345,41.023843],[120.712345,41.0366506171875],[120.717345,41.023843]]],[[[120.857345,41.133843],[120.852345,41.1210353828125],[120.847345,41.133843],[120.857345,41.133843]]],[[[120.337345,40.9938430000001],[120.348365507813,40.9795644355469],[120.403863554688,40.9568508125],[120.427633085938,40.9603639960938],[120.457345,41.0038430000001],[120.484644804688,40.9858034492188],[120.524830351563,41.0119716621094],[120.55033328125,40.9750295234376],[120.572652617188,40.9800331855469],[120.639454375,40.9497585273438],[120.67326296875,40.9579274726563],[120.692862578125,41.013843],[120.707345,41.023843],[120.712345,41.0005995917969],[120.717345,41.023843],[120.768643828125,41.0112429023438],[120.78142703125,41.0297585273438],[120.814176054688,41.0420119453125],[120.84142703125,41.0897585273437],[120.869234648438,41.1256349921876],[120.857345,41.133843],[120.869698515625,41.1572927070313],[120.905142851563,41.1400673652344],[120.8992590625,41.1269692207031],[120.922345,41.11659690625],[120.93330203125,41.12151878125],[120.937345,41.1138430000001],[120.9446496875,41.0841127753907],[120.937354765625,41.0515883613282],[120.991080351563,41.0349355292969],[121.027345,41.043843],[121.013155546875,41.0085378242188],[121.003756132813,40.9539516425781],[121.031612578125,40.9332314277344],[121.022633085938,40.8752138496094],[121.001612578125,40.8595778632813],[120.997345,40.8438430000001],[120.99298953125,40.8381996894531],[120.957345,40.823843],[120.945650664063,40.8379201484375],[120.8914465625,40.7726638007813],[120.893897734375,40.7486220527344],[120.851881132813,40.7393056464844],[120.832808867188,40.7283803535157],[120.817345,40.723843],[120.810079375,40.7322768378906],[120.761998320313,40.7284133125],[120.75271609375,40.7492153144532],[120.7069934375,40.7696181464844],[120.659288359375,40.7657851386719],[120.5724621875,40.7792543769532],[120.562345,40.7784413886719],[120.542345,40.7800478339844],[120.517345,40.7780397773437],[120.502105742188,40.7792641425782],[120.44814578125,40.7594484687501],[120.41271609375,40.7792153144532],[120.39197390625,40.7884706855469],[120.376304960938,40.8235805488281],[120.303902617188,40.8177626777344],[120.287345,40.823843],[120.293375273438,40.8391872382812],[120.2760559375,40.8525551582032],[120.2586340625,40.8751308417969],[120.240206328125,40.8893544746094],[120.2438684375,40.9141408515625],[120.237345,40.9538430000001],[120.270753203125,40.9398110175781],[120.29142703125,40.9697585273438],[120.30326296875,40.9779274726563],[120.319439726563,41.00136253125],[120.337345,40.9938430000001]]]]}},{"type":"Feature","properties":{"name":"龙港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.021910429688,40.7265395332031],[121.027345,40.713843],[121.004346953125,40.717895734375],[121.021910429688,40.7265395332031]]],[[[120.92298953125,40.7670607734376],[120.937349882813,40.7194863105469],[120.96298953125,40.7281996894532],[120.990709257813,40.7449196601563],[120.99459109375,40.7186452460938],[120.96170046875,40.7094863105469],[120.938590117188,40.6955471015625],[120.83298953125,40.6781996894531],[120.827345,40.673843],[120.823443632813,40.6799404121094],[120.803648710938,40.6926113105469],[120.817345,40.723843],[120.832808867188,40.7283803535157],[120.851881132813,40.7393056464844],[120.893897734375,40.7486220527344],[120.8914465625,40.7726638007813],[120.945650664063,40.8379201484375],[120.957345,40.823843],[120.96170046875,40.7981996894531],[120.981085234375,40.7832387519531],[120.92298953125,40.7670607734376]]]]}},{"type":"Feature","properties":{"name":"南票区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.707345,41.023843],[120.717345,41.023843],[120.712345,41.0005995917969],[120.707345,41.023843]]],[[[120.717345,41.023843],[120.712345,41.0366506171875],[120.707345,41.023843],[120.692862578125,41.013843],[120.67326296875,40.9579274726563],[120.639454375,40.9497585273438],[120.572652617188,40.9800331855469],[120.55033328125,40.9750295234376],[120.524830351563,41.0119716621094],[120.484644804688,40.9858034492188],[120.457345,41.0038430000001],[120.442896757813,41.0154116035156],[120.456046171875,41.0656569648438],[120.49263796875,41.0797206855469],[120.508472929688,41.059946515625],[120.52834109375,41.0574758125],[120.541793242188,41.0893959785156],[120.592896757813,41.1082900214844],[120.611793242188,41.1593959785156],[120.632896757813,41.1682900214844],[120.651983671875,41.1795095039063],[120.662706328125,41.1781764960938],[120.68373171875,41.1905361152344],[120.712369414063,41.1869741035157],[120.767345,41.1938430000001],[120.788853789063,41.2028774238281],[120.77970828125,41.1620729804688],[120.815303984375,41.1388930488282],[120.847345,41.133843],[120.852345,41.1210353828125],[120.857345,41.133843],[120.869234648438,41.1256349921876],[120.84142703125,41.0897585273437],[120.814176054688,41.0420119453125],[120.78142703125,41.0297585273438],[120.768643828125,41.0112429023438],[120.717345,41.023843]]]]}},{"type":"Feature","properties":{"name":"绥中县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,40.2338430000001],[119.623922148438,40.2216506171876],[119.615152617188,40.2304201484375],[119.627345,40.2338430000001]]],[[[119.627345,40.2338430000001],[119.630704375,40.2504836250001],[119.644976835938,40.2684511542969],[119.631090117188,40.2968898750001],[119.610704375,40.307202375],[119.607345,40.3138430000001],[119.602896757813,40.3293959785156],[119.590533476563,40.3392958808594],[119.593013945313,40.3592031074219],[119.581676054688,40.3784841132813],[119.587345,40.4238430000001],[119.602105742188,40.4292641425781],[119.612345,40.4284413886719],[119.632345,40.4300478339844],[119.652345,40.4284413886719],[119.706329375,40.432778546875],[119.74814578125,40.40944846875],[119.802105742188,40.4292641425781],[119.822345,40.4276381660157],[119.842345,40.4292446113282],[119.852667265625,40.4284157539063],[119.8666028125,40.4445864082032],[119.884464140625,40.4599770332032],[119.9091809375,40.5153627753906],[119.95271609375,40.5284706855469],[119.963961210938,40.5415248847656],[120.011363554688,40.5377162910156],[120.03197390625,40.5492153144532],[120.090499296875,40.5625112128906],[120.06271609375,40.5864455390625],[120.07197390625,40.6092153144531],[120.097345,40.6138430000001],[120.10298953125,40.6094863105469],[120.111832304688,40.5980287910157],[120.12869265625,40.6005202460938],[120.14298953125,40.5894863105469],[120.161890898438,40.5578798652344],[120.2115246875,40.5723513007813],[120.186612578125,40.5310488105469],[120.253487578125,40.4936098457031],[120.27170046875,40.4281996894532],[120.312569609375,40.4114723945313],[120.32490359375,40.3530190253906],[120.392086210938,40.3236623359376],[120.44298953125,40.309486310547],[120.472984648438,40.2706264472657],[120.497345,40.263843],[120.5080871875,40.2542470527344],[120.442628203125,40.1985622382813],[120.31595828125,40.1866738105469],[120.233726835938,40.1419899726563],[120.192061796875,40.1291237617188],[120.12060671875,40.1034853339844],[119.91451296875,40.0470571113282],[119.899766875,39.9993056464844],[119.847345,39.993843],[119.83654421875,39.9997646308594],[119.84966921875,40.0316078925782],[119.8135559375,40.0514028144532],[119.787345,40.0405995917969],[119.754263945313,40.0542348457031],[119.76478640625,40.0797646308594],[119.741988554688,40.09226096875],[119.737345,40.113843],[119.74298953125,40.1181996894532],[119.756256132813,40.1353871894531],[119.740748320313,40.2023012519531],[119.706485625,40.1972377753906],[119.66111453125,40.2308779121094],[119.64205203125,40.2280605292969],[119.627345,40.2338430000001]]]]}},{"type":"Feature","properties":{"name":"兴城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.613922148438,40.4060353828126],[120.617345,40.3938430000001],[120.605152617188,40.3972658515625],[120.613922148438,40.4060353828126]]],[[[120.767345,40.473843],[120.763922148438,40.4616506171875],[120.755152617188,40.4704201484375],[120.767345,40.473843]]],[[[120.767345,40.473843],[120.775513945313,40.4856740546875],[120.79361453125,40.4981728339844],[120.789185820313,40.5179274726563],[120.83142703125,40.5078005195313],[120.82326296875,40.4879274726563],[120.767345,40.473843]]],[[[120.287345,40.823843],[120.303902617188,40.8177626777344],[120.376304960938,40.8235805488281],[120.39197390625,40.7884706855469],[120.41271609375,40.7792153144532],[120.44814578125,40.7594484687501],[120.502105742188,40.7792641425782],[120.517345,40.7780397773437],[120.542345,40.7800478339844],[120.562345,40.7784413886719],[120.5724621875,40.7792543769532],[120.659288359375,40.7657851386719],[120.7069934375,40.7696181464844],[120.75271609375,40.7492153144532],[120.761998320313,40.7284133125],[120.810079375,40.7322768378906],[120.817345,40.723843],[120.803648710938,40.6926113105469],[120.823443632813,40.6799404121094],[120.827345,40.673843],[120.820533476563,40.6683901191406],[120.823013945313,40.6484511542969],[120.79072390625,40.6042470527344],[120.731793242188,40.5593959785156],[120.722896757813,40.5482900214844],[120.675562773438,40.5283437324219],[120.662896757813,40.4982900214844],[120.650504179688,40.4772060371094],[120.61783328125,40.4812697578125],[120.582896757813,40.4554116035157],[120.603409453125,40.4389882636719],[120.568375273438,40.3910268378907],[120.591138945313,40.3727968574219],[120.50216921875,40.3241335273438],[120.497345,40.263843],[120.472984648438,40.2706264472657],[120.44298953125,40.309486310547],[120.392086210938,40.3236623359376],[120.32490359375,40.3530190253906],[120.312569609375,40.4114723945313],[120.27170046875,40.4281996894532],[120.253487578125,40.4936098457031],[120.186612578125,40.5310488105469],[120.2115246875,40.5723513007813],[120.161890898438,40.5578798652344],[120.14298953125,40.5894863105469],[120.12869265625,40.6005202460938],[120.111832304688,40.5980287910157],[120.10298953125,40.6094863105469],[120.097345,40.6138430000001],[120.10170046875,40.6194863105469],[120.125953398438,40.6294130683594],[120.1176575,40.6855751777344],[120.172945585938,40.7009706855469],[120.192857695313,40.6980287910156],[120.20170046875,40.7094863105469],[120.216265898438,40.7181996894531],[120.23170046875,40.6981996894532],[120.245328398438,40.6894863105469],[120.275421171875,40.7630141425782],[120.270343046875,40.7973757148438],[120.287345,40.823843]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":220100,"name":"长春市","center":[125.3245,43.886841],"centroid":[125.593273,44.290795],"childrenNum":11,"level":"city","parent":{"adcode":220000},"subFeatureIndex":0,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.69798,43.262741],[125.716852,43.267283],[125.718207,43.27445],[125.730497,43.27456],[125.781789,43.292776],[125.788563,43.301472],[125.80066,43.31033],[125.815854,43.315743],[125.832306,43.300542],[125.844791,43.294745],[125.857178,43.294964],[125.891534,43.30169],[125.900631,43.307541],[125.915147,43.310275],[125.913889,43.317001],[125.928019,43.318094],[125.94989,43.323561],[125.956664,43.327934],[125.957826,43.336953],[125.969536,43.342527],[125.979117,43.336406],[126.006021,43.345041],[126.018892,43.353074],[126.020537,43.361597],[126.013859,43.371266],[126.000988,43.37427],[125.996536,43.391692],[125.988504,43.403267],[125.975342,43.405232],[125.969439,43.398353],[125.957826,43.398572],[125.950374,43.407744],[125.93847,43.430504],[125.934019,43.435142],[125.912341,43.446654],[125.914663,43.451128],[125.901502,43.451401],[125.882727,43.462583],[125.873049,43.484886],[125.866759,43.484232],[125.868501,43.491482],[125.855339,43.495353],[125.852726,43.501621],[125.866178,43.510996],[125.867243,43.523583],[125.872566,43.526526],[125.857952,43.532845],[125.856501,43.538838],[125.86763,43.543794],[125.865017,43.551202],[125.870824,43.561821],[125.878082,43.562202],[125.886114,43.59187],[125.89434,43.604006],[125.885824,43.61924],[125.893663,43.624843],[125.886888,43.63447],[125.887759,43.650838],[125.878372,43.650947],[125.878856,43.670897],[125.867049,43.683397],[125.871791,43.689972],[125.863178,43.690679],[125.849339,43.697524],[125.848758,43.707411],[125.838016,43.729624],[125.834048,43.728212],[125.830177,43.738692],[125.832887,43.747649],[125.824564,43.760187],[125.815661,43.759482],[125.818661,43.765886],[125.811016,43.767893],[125.821177,43.77473],[125.816048,43.783411],[125.803564,43.790897],[125.806661,43.798762],[125.801725,43.80321],[125.805596,43.812103],[125.813145,43.812808],[125.806177,43.818339],[125.80908,43.824899],[125.802209,43.827772],[125.810532,43.831838],[125.821564,43.851674],[125.825242,43.863757],[125.844307,43.862782],[125.844403,43.859639],[125.860468,43.860506],[125.86492,43.853842],[125.87934,43.861644],[125.89105,43.863865],[125.892792,43.855955],[125.899857,43.853842],[125.917373,43.861644],[125.935374,43.859206],[125.95018,43.849615],[125.972342,43.852162],[125.984633,43.856226],[125.986568,43.870421],[125.994988,43.8773],[126.002053,43.875513],[126.042215,43.882066],[126.044151,43.898638],[126.036602,43.898096],[126.044925,43.910765],[126.045118,43.920942],[126.035634,43.923864],[126.02344,43.93274],[126.036989,43.937664],[126.03515,43.94854],[126.029731,43.954761],[126.02915,43.965092],[126.021311,43.979153],[126.000891,43.995751],[126.007085,44.02742],[126.018118,44.041088],[126.029053,44.049784],[126.036699,44.050324],[126.042893,44.061773],[126.051796,44.06755],[126.063796,44.066525],[126.065151,44.081047],[126.077055,44.088928],[126.078119,44.095782],[126.089732,44.103229],[126.092926,44.115153],[126.106765,44.126049],[126.120024,44.122975],[126.133282,44.113588],[126.140734,44.12017],[126.133379,44.129717],[126.150121,44.137268],[126.162412,44.139694],[126.15767,44.150317],[126.162992,44.158027],[126.177122,44.16428],[126.209639,44.157164],[126.22522,44.176461],[126.244188,44.176892],[126.249704,44.180611],[126.263543,44.178994],[126.272834,44.182012],[126.273608,44.169239],[126.278641,44.158781],[126.287544,44.177593],[126.297028,44.176245],[126.296641,44.192303],[126.331674,44.187346],[126.338545,44.179802],[126.349481,44.17479],[126.36632,44.177269],[126.376288,44.174359],[126.390902,44.182173],[126.402515,44.181904],[126.40387,44.176084],[126.413741,44.17991],[126.425354,44.171071],[126.433193,44.17479],[126.445193,44.174305],[126.462129,44.177647],[126.468613,44.18282],[126.467936,44.203078],[126.48071,44.215574],[126.500743,44.221552],[126.503646,44.234152],[126.494453,44.239913],[126.470936,44.243035],[126.463097,44.257514],[126.473549,44.271667],[126.474613,44.28232],[126.481001,44.29098],[126.494356,44.297918],[126.489807,44.305609],[126.474613,44.310394],[126.470549,44.315664],[126.472194,44.336306],[126.468033,44.344368],[126.455161,44.354201],[126.461161,44.365054],[126.474226,44.366235],[126.484194,44.371016],[126.493582,44.379986],[126.491743,44.385517],[126.479646,44.392606],[126.484968,44.407853],[126.484775,44.416441],[126.467645,44.424653],[126.434161,44.41832],[126.424773,44.425565],[126.441032,44.437317],[126.440742,44.447617],[126.422257,44.465478],[126.425644,44.478723],[126.42429,44.488427],[126.442677,44.493626],[126.445967,44.502792],[126.422257,44.513563],[126.415096,44.5201],[126.41316,44.528511],[126.424193,44.534189],[126.442774,44.534778],[126.438709,44.541045],[126.452548,44.555718],[126.464452,44.546294],[126.476452,44.547793],[126.507808,44.543241],[126.512743,44.539063],[126.528228,44.544526],[126.531712,44.549239],[126.546615,44.545758],[126.546615,44.555451],[126.560358,44.556629],[126.554648,44.563107],[126.58039,44.567604],[126.58039,44.57087],[126.594229,44.569478],[126.598004,44.565516],[126.620746,44.557914],[126.608068,44.575045],[126.627714,44.574938],[126.635166,44.569424],[126.630424,44.560591],[126.646489,44.55695],[126.641844,44.554487],[126.646392,44.544419],[126.655199,44.545437],[126.703684,44.534778],[126.709297,44.531993],[126.7122,44.53285],[126.709587,44.537349],[126.720523,44.535475],[126.730104,44.534403],[126.733201,44.528189],[126.726813,44.521225],[126.733975,44.517582],[126.738717,44.521654],[126.759621,44.518867],[126.770169,44.525618],[126.797751,44.522886],[126.811687,44.530761],[126.834139,44.535742],[126.856494,44.536546],[126.860752,44.527547],[126.878463,44.512223],[126.89985,44.514849],[126.902754,44.524332],[126.91098,44.524493],[126.92027,44.53285],[126.949013,44.524707],[126.959271,44.530118],[126.991207,44.527761],[126.999337,44.531511],[127.010369,44.552077],[127.035725,44.558128],[127.050435,44.566962],[127.04579,44.571833],[127.041435,44.591101],[127.02866,44.597308],[127.033692,44.608543],[127.041435,44.611753],[127.041144,44.640686],[127.044725,44.650095],[127.036499,44.65961],[127.030692,44.676284],[127.035144,44.68291],[127.036499,44.702835],[127.041144,44.712234],[127.036402,44.722433],[127.018886,44.739889],[127.019563,44.741918],[126.997982,44.76449],[126.997208,44.77452],[126.989369,44.798733],[126.98424,44.824961],[126.993143,44.835726],[126.994885,44.847714],[127.003111,44.854746],[127.001175,44.870032],[127.011143,44.890425],[127.021595,44.89873],[127.033209,44.900433],[127.045886,44.907139],[127.072597,44.906926],[127.076661,44.919485],[127.084597,44.915707],[127.088952,44.929966],[127.085081,44.944169],[127.093694,44.94486],[127.086436,44.958049],[127.076468,44.956826],[127.079274,44.963207],[127.071242,44.967832],[127.071532,44.97453],[127.057209,44.991804],[127.038047,44.996534],[127.050338,45.003919],[127.036886,45.00886],[127.035918,45.01651],[127.018402,45.024371],[127.009111,45.043754],[126.987433,45.066315],[126.974949,45.068915],[126.968562,45.074487],[126.967013,45.084357],[126.97282,45.097513],[126.967207,45.108545],[126.969529,45.116924],[126.957045,45.12106],[126.964304,45.133095],[126.95869,45.137919],[126.944077,45.13882],[126.931787,45.130179],[126.925206,45.140834],[126.914754,45.143537],[126.902754,45.14041],[126.888334,45.14253],[126.872946,45.137707],[126.856397,45.145551],[126.838881,45.132724],[126.832784,45.136116],[126.8323,45.144756],[126.822042,45.146399],[126.812848,45.136594],[126.802299,45.139191],[126.792622,45.135374],[126.78817,45.143696],[126.787009,45.159012],[126.772395,45.165899],[126.758556,45.177607],[126.739298,45.175753],[126.731652,45.17909],[126.732233,45.187194],[126.712587,45.188359],[126.705426,45.186293],[126.68578,45.18767],[126.677651,45.196514],[126.67136,45.195455],[126.649876,45.211233],[126.640973,45.213245],[126.644844,45.225207],[126.630908,45.225895],[126.622488,45.23595],[126.607875,45.237696],[126.600326,45.244257],[126.574681,45.252298],[126.557454,45.251135],[126.548744,45.239971],[126.540034,45.23886],[126.519518,45.247908],[126.51284,45.239865],[126.497259,45.241929],[126.494743,45.238807],[126.473936,45.233674],[126.460484,45.234574],[126.452839,45.224466],[126.439871,45.22399],[126.432128,45.23468],[126.420225,45.232616],[126.416257,45.227112],[126.398934,45.220179],[126.379772,45.206098],[126.377643,45.201385],[126.36603,45.198526],[126.359836,45.188041],[126.346868,45.185499],[126.338255,45.192437],[126.323545,45.179567],[126.316093,45.181474],[126.304286,45.178031],[126.297125,45.192172],[126.289383,45.190159],[126.293447,45.180202],[126.28077,45.17231],[126.292189,45.166005],[126.285125,45.162509],[126.264705,45.168178],[126.258511,45.163197],[126.262479,45.152229],[126.250866,45.1526],[126.25164,45.144544],[126.235672,45.140198],[126.225413,45.153872],[126.217091,45.146664],[126.206639,45.152812],[126.193671,45.148943],[126.192025,45.155143],[126.182541,45.144915],[126.170928,45.146346],[126.169864,45.134632],[126.17538,45.123817],[126.183896,45.123552],[126.185445,45.115121],[126.19638,45.103242],[126.174412,45.088919],[126.177606,45.07332],[126.18138,45.071887],[126.173735,45.048638],[126.177122,45.038497],[126.190187,45.032019],[126.188154,45.000891],[126.16096,44.985852],[126.144605,44.9816],[126.146831,44.962675],[126.156895,44.953901],[126.170541,44.950019],[126.171606,44.938158],[126.179832,44.938531],[126.186993,44.933158],[126.192509,44.917303],[126.179154,44.908523],[126.168218,44.912408],[126.164347,44.902136],[126.153315,44.905276],[126.145185,44.902668],[126.147411,44.926455],[126.10812,44.924274],[126.098152,44.891969],[126.086636,44.897931],[126.060893,44.902722],[126.056828,44.881747],[126.061764,44.883398],[126.050441,44.862097],[126.041151,44.862363],[126.038247,44.84798],[126.055957,44.847767],[126.051409,44.833487],[126.043473,44.829544],[126.049667,44.826559],[126.037763,44.804011],[126.043957,44.800652],[126.049667,44.786787],[126.02644,44.781934],[126.00873,44.783427],[125.997407,44.775747],[125.985214,44.772012],[125.977665,44.773666],[125.951439,44.760969],[125.920664,44.771426],[125.91505,44.775747],[125.911083,44.789134],[125.916018,44.795213],[125.906631,44.807956],[125.880888,44.814833],[125.87634,44.820057],[125.873436,44.836685],[125.858049,44.839509],[125.851468,44.837324],[125.826209,44.840947],[125.818661,44.832102],[125.809274,44.830237],[125.800757,44.840628],[125.810822,44.848992],[125.801144,44.85693],[125.791563,44.857516],[125.781789,44.863641],[125.787305,44.87573],[125.771144,44.887071],[125.760595,44.887604],[125.751982,44.893353],[125.749175,44.905702],[125.742304,44.912514],[125.738143,44.923742],[125.719949,44.93901],[125.696625,44.936935],[125.682206,44.937946],[125.665657,44.935712],[125.654044,44.93901],[125.641076,44.930339],[125.641753,44.917995],[125.612914,44.900752],[125.600623,44.885687],[125.590558,44.885208],[125.577203,44.893726],[125.569751,44.891064],[125.54488,44.890159],[125.531331,44.884303],[125.505588,44.883877],[125.496104,44.880948],[125.493104,44.874985],[125.48091,44.872535],[125.469297,44.884143],[125.449748,44.884675],[125.436877,44.897186],[125.421005,44.890585],[125.412586,44.874559],[125.391392,44.871736],[125.384037,44.873547],[125.391489,44.881321],[125.36952,44.884516],[125.354133,44.880363],[125.340294,44.879724],[125.329745,44.867369],[125.307293,44.86199],[125.296357,44.852668],[125.283099,44.850964],[125.266743,44.858102],[125.251646,44.857196],[125.247194,44.860073],[125.232,44.853734],[125.231904,44.84505],[125.253485,44.832155],[125.274776,44.832262],[125.285034,44.837537],[125.292196,44.826773],[125.303422,44.823522],[125.313099,44.814247],[125.288808,44.804064],[125.262485,44.796013],[125.243904,44.802838],[125.239936,44.808703],[125.229291,44.803638],[125.222807,44.806144],[125.215065,44.800545],[125.189612,44.793987],[125.171999,44.786521],[125.156515,44.790254],[125.153515,44.796653],[125.133385,44.783321],[125.136772,44.77916],[125.125353,44.769985],[125.107352,44.765344],[125.0879,44.772546],[125.074738,44.772279],[125.0699,44.776813],[125.042318,44.770785],[125.03835,44.777934],[125.031673,44.776173],[125.02635,44.788014],[125.01164,44.7782],[124.994994,44.759902],[124.985317,44.759582],[124.963542,44.750083],[124.95851,44.754886],[124.897153,44.726063],[124.886314,44.730014],[124.877895,44.726757],[124.868894,44.733057],[124.807248,44.704117],[124.8297,44.683284],[124.825538,44.67591],[124.826409,44.66597],[124.819151,44.672276],[124.80357,44.663833],[124.781311,44.680292],[124.778698,44.66907],[124.766795,44.659878],[124.746762,44.649668],[124.721697,44.660145],[124.699632,44.656831],[124.689277,44.652608],[124.667115,44.648599],[124.634308,44.640686],[124.618146,44.62951],[124.628404,44.620258],[124.601597,44.601535],[124.595113,44.602659],[124.582145,44.593616],[124.57508,44.583983],[124.552434,44.569371],[124.569661,44.553202],[124.57508,44.545062],[124.570822,44.540188],[124.574112,44.529422],[124.561531,44.529422],[124.552628,44.524332],[124.545467,44.514367],[124.559789,44.504292],[124.564822,44.507079],[124.592597,44.491268],[124.580887,44.483923],[124.581371,44.476685],[124.595307,44.46698],[124.603145,44.471216],[124.621146,44.45856],[124.643308,44.448636],[124.635082,44.434366],[124.625791,44.438336],[124.617856,44.434044],[124.612533,44.43796],[124.60421,44.430931],[124.600726,44.434366],[124.585629,44.428409],[124.577693,44.435117],[124.568983,44.43619],[124.562693,44.428248],[124.550789,44.424063],[124.555918,44.411503],[124.56337,44.413167],[124.573532,44.394216],[124.584855,44.397062],[124.590468,44.387504],[124.599855,44.389599],[124.60963,44.375367],[124.601113,44.376119],[124.605178,44.367686],[124.611662,44.369781],[124.624823,44.359251],[124.622114,44.34915],[124.607404,44.344314],[124.607113,44.337596],[124.620565,44.324104],[124.618339,44.322008],[124.628501,44.305931],[124.627727,44.297434],[124.61321,44.288882],[124.620372,44.283234],[124.604016,44.272205],[124.600145,44.253262],[124.605081,44.236683],[124.617275,44.211589],[124.622017,44.217944],[124.625114,44.208195],[124.63634,44.20394],[124.655986,44.207334],[124.658986,44.204209],[124.669341,44.209488],[124.67147,44.198984],[124.679502,44.203832],[124.687922,44.200546],[124.698471,44.206849],[124.712213,44.200977],[124.717148,44.192411],[124.727213,44.201031],[124.734375,44.201408],[124.751891,44.210134],[124.751794,44.220475],[124.761569,44.225322],[124.762827,44.213905],[124.757698,44.202863],[124.749182,44.199792],[124.735052,44.183682],[124.724697,44.17797],[124.729729,44.176245],[124.736117,44.159159],[124.731762,44.148699],[124.721794,44.151018],[124.686761,44.142337],[124.65376,44.12756],[124.655308,44.122004],[124.626953,44.125402],[124.583693,44.121626],[124.562015,44.116286],[124.551176,44.120655],[124.516434,44.116609],[124.50124,44.10911],[124.505788,44.100585],[124.486239,44.091302],[124.471432,44.07878],[124.469497,44.070628],[124.461948,44.073057],[124.44598,44.061233],[124.436496,44.060693],[124.435625,44.051296],[124.424496,44.036929],[124.41956,44.038279],[124.402721,44.030068],[124.397689,44.03936],[124.397592,44.028177],[124.3523,44.017694],[124.352397,44.014884],[124.326364,44.008615],[124.314073,44.008291],[124.317848,44.003265],[124.308073,43.990994],[124.300815,43.993859],[124.28717,43.991859],[124.270137,43.995751],[124.266459,44.000184],[124.253588,43.999211],[124.251072,43.992291],[124.231233,43.990129],[124.229297,43.994508],[124.218555,43.992183],[124.212555,43.998238],[124.198329,43.993805],[124.191264,43.98829],[124.181005,43.995048],[124.164747,43.997697],[124.165521,44.00494],[124.157586,44.013695],[124.13794,44.009858],[124.134069,44.00667],[124.125262,44.01202],[124.110939,44.012885],[124.0761,44.021045],[124.06226,44.009102],[124.015711,44.004508],[124.016679,43.99348],[124.021227,43.995589],[124.018808,43.981694],[124.028872,43.949946],[124.040389,43.927166],[124.063809,43.8975],[124.064486,43.892031],[124.078422,43.880062],[124.076777,43.871612],[124.085293,43.862836],[124.077648,43.843599],[124.06439,43.852216],[124.060518,43.849669],[124.067099,43.84154],[124.065841,43.834169],[124.074358,43.820074],[124.072519,43.812103],[124.057228,43.810476],[124.051131,43.799901],[124.041647,43.803047],[124.03855,43.793989],[124.04755,43.790897],[124.043099,43.784225],[124.048905,43.781133],[124.040195,43.769521],[124.050841,43.772343],[124.051421,43.768219],[124.063228,43.771149],[124.070777,43.751937],[124.078519,43.748843],[124.083261,43.741026],[124.081035,43.724791],[124.076583,43.717731],[124.084809,43.715885],[124.105036,43.705021],[124.116649,43.704261],[124.126617,43.709476],[124.13223,43.703718],[124.147134,43.703555],[124.151101,43.708335],[124.172779,43.707194],[124.176941,43.711594],[124.187683,43.711268],[124.194167,43.716537],[124.199393,43.729787],[124.206555,43.734294],[124.203554,43.740918],[124.212071,43.743523],[124.212264,43.754597],[124.222523,43.758722],[124.251072,43.759265],[124.305751,43.763498],[124.362268,43.771203],[124.398366,43.762358],[124.430496,43.75628],[124.465819,43.760838],[124.470271,43.756931],[124.496304,43.7483],[124.517401,43.751123],[124.524272,43.755248],[124.550692,43.740646],[124.550015,43.735325],[124.559306,43.727507],[124.573725,43.723542],[124.598984,43.690624],[124.626759,43.681604],[124.666147,43.659863],[124.681535,43.627998],[124.67776,43.617336],[124.680857,43.592415],[124.693825,43.576412],[124.694503,43.552563],[124.689761,43.545374],[124.686857,43.528977],[124.677567,43.516336],[124.682406,43.497533],[124.703406,43.456364],[124.717245,43.43285],[124.730697,43.422809],[124.735246,43.40223],[124.743375,43.389944],[124.757601,43.383227],[124.757311,43.366841],[124.76273,43.356407],[124.761569,43.348757],[124.76844,43.344658],[124.775021,43.326021],[124.766311,43.314157],[124.767956,43.307487],[124.756149,43.296167],[124.760021,43.280742],[124.774827,43.272864],[124.783924,43.257707],[124.801344,43.242984],[124.775989,43.228859],[124.784021,43.219606],[124.779473,43.211172],[124.784311,43.201313],[124.799312,43.195671],[124.840539,43.161642],[124.854378,43.169425],[124.85883,43.176933],[124.844023,43.187946],[124.829409,43.212267],[124.835506,43.221632],[124.837248,43.232363],[124.846539,43.237017],[124.849152,43.245939],[124.86483,43.26586],[124.867152,43.2727],[124.863088,43.285446],[124.871314,43.289658],[124.892314,43.293104],[124.928702,43.317985],[124.931702,43.323889],[124.92667,43.332799],[124.917573,43.332853],[124.919218,43.348047],[124.883798,43.358974],[124.885927,43.369245],[124.880508,43.374653],[124.882056,43.382845],[124.870539,43.393548],[124.868507,43.404414],[124.860378,43.406706],[124.871604,43.420626],[124.88525,43.4239],[124.895508,43.421444],[124.910895,43.431159],[124.916121,43.439725],[124.911476,43.450146],[124.91496,43.460619],[124.897637,43.470654],[124.893669,43.481178],[124.916799,43.49737],[124.931702,43.502276],[124.953477,43.5062],[124.986768,43.518189],[124.989478,43.523747],[125.00593,43.541017],[124.995672,43.552019],[125.003124,43.554524],[125.010479,43.549241],[125.015511,43.558227],[125.034092,43.580059],[125.053544,43.591707],[125.082093,43.603081],[125.108223,43.611079],[125.130772,43.613636],[125.152644,43.621035],[125.199967,43.632947],[125.223387,43.637135],[125.235194,43.642247],[125.254066,43.645781],[125.290067,43.649805],[125.290067,43.638712],[125.296647,43.636101],[125.30226,43.615214],[125.308938,43.611134],[125.299938,43.601884],[125.289873,43.598891],[125.297325,43.591762],[125.276808,43.578045],[125.281937,43.577936],[125.28455,43.567973],[125.277582,43.563944],[125.281744,43.543086],[125.289292,43.536822],[125.275937,43.532954],[125.27284,43.536986],[125.258808,43.533554],[125.266163,43.521894],[125.263646,43.514919],[125.273421,43.514593],[125.268001,43.509742],[125.274389,43.496062],[125.248259,43.487176],[125.241291,43.480088],[125.241968,43.4676],[125.248646,43.460237],[125.247678,43.452328],[125.256098,43.44529],[125.261614,43.449437],[125.265292,43.443981],[125.27526,43.448127],[125.277098,43.441471],[125.292196,43.452055],[125.302938,43.445727],[125.306035,43.453855],[125.318132,43.453637],[125.323938,43.462092],[125.334197,43.46471],[125.334681,43.469236],[125.358681,43.480251],[125.380456,43.473599],[125.385101,43.485104],[125.377843,43.489356],[125.378327,43.49786],[125.368456,43.504456],[125.361681,43.51541],[125.370875,43.525981],[125.389553,43.530012],[125.392166,43.53753],[125.387327,43.543413],[125.379004,43.540254],[125.374359,43.552509],[125.394198,43.554578],[125.39536,43.56438],[125.386553,43.579678],[125.400779,43.581638],[125.40465,43.586754],[125.426328,43.587027],[125.446167,43.601448],[125.453038,43.599762],[125.453038,43.57614],[125.45991,43.560514],[125.456329,43.556756],[125.4572,43.545156],[125.447909,43.530339],[125.458748,43.522766],[125.463103,43.503529],[125.459039,43.50064],[125.467265,43.493881],[125.476555,43.491973],[125.479942,43.482923],[125.495814,43.473653],[125.489717,43.466128],[125.488846,43.456637],[125.502491,43.452928],[125.50462,43.445181],[125.51275,43.443545],[125.514492,43.435469],[125.499491,43.428375],[125.495233,43.421936],[125.507233,43.41817],[125.515169,43.409491],[125.529686,43.412384],[125.546525,43.411565],[125.551073,43.404141],[125.559686,43.407853],[125.576622,43.4096],[125.582622,43.405342],[125.578364,43.378749],[125.547686,43.367333],[125.541589,43.361433],[125.55417,43.345533],[125.569945,43.338647],[125.576913,43.329847],[125.599655,43.313501],[125.621914,43.305956],[125.628785,43.296987],[125.65356,43.286103],[125.673689,43.280742],[125.682786,43.275545],[125.685399,43.268596],[125.69798,43.262741]]],[[[126.716749,44.532957],[126.719071,44.531618],[126.720233,44.533975],[126.715394,44.533332],[126.715974,44.532957],[126.716749,44.532957]]],[[[126.715974,44.532957],[126.715394,44.533332],[126.712781,44.532421],[126.719071,44.531618],[126.716749,44.532957],[126.715974,44.532957]]]]}},{"type":"Feature","properties":{"adcode":220200,"name":"吉林市","center":[126.55302,43.843577],"centroid":[126.849983,43.588212],"childrenNum":9,"level":"city","parent":{"adcode":220000},"subFeatureIndex":1,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.750427,42.67231],[126.760008,42.667337],[126.774234,42.671536],[126.784492,42.691313],[126.796977,42.701806],[126.807235,42.702579],[126.812461,42.709205],[126.810816,42.722014],[126.800461,42.733109],[126.801719,42.740946],[126.813138,42.753418],[126.813042,42.766162],[126.818655,42.768259],[126.822139,42.77747],[126.832978,42.777801],[126.853785,42.78464],[126.869075,42.783813],[126.879237,42.780228],[126.89927,42.787011],[126.897334,42.802616],[126.907883,42.809066],[126.913593,42.804711],[126.947368,42.805648],[126.950271,42.811492],[126.972142,42.808074],[126.979981,42.803608],[126.990046,42.804876],[126.99953,42.793739],[127.016853,42.788997],[127.041338,42.80653],[127.053145,42.804325],[127.072693,42.813145],[127.094759,42.799528],[127.104049,42.803167],[127.12505,42.804876],[127.130566,42.807578],[127.135792,42.801624],[127.149631,42.805538],[127.160083,42.804049],[127.161728,42.810941],[127.169373,42.813145],[127.180987,42.825216],[127.181374,42.831664],[127.191729,42.843456],[127.201697,42.835742],[127.193761,42.823563],[127.19289,42.803333],[127.202471,42.784805],[127.200729,42.764949],[127.210987,42.754245],[127.211374,42.748783],[127.226762,42.738242],[127.234988,42.720413],[127.243311,42.71837],[127.253569,42.708984],[127.251246,42.690816],[127.246988,42.678332],[127.225214,42.656065],[127.218246,42.642302],[127.219213,42.627708],[127.211665,42.622123],[127.204213,42.608354],[127.211568,42.602325],[127.221923,42.605644],[127.240214,42.599449],[127.280957,42.617423],[127.279602,42.626547],[127.287925,42.63202],[127.305538,42.632297],[127.319571,42.640312],[127.338829,42.605644],[127.352475,42.601993],[127.351991,42.587943],[127.370572,42.584014],[127.384992,42.57743],[127.405992,42.573501],[127.40425,42.569628],[127.432412,42.573446],[127.458155,42.561492],[127.468026,42.566805],[127.470252,42.584734],[127.463671,42.592036],[127.467542,42.59779],[127.48564,42.598343],[127.497543,42.602215],[127.498221,42.611561],[127.485349,42.614492],[127.486607,42.631025],[127.510124,42.633789],[127.534512,42.641639],[127.541577,42.641363],[127.552222,42.648327],[127.558222,42.656728],[127.567513,42.657501],[127.573126,42.668608],[127.58861,42.669713],[127.597707,42.680818],[127.598965,42.693301],[127.620837,42.711359],[127.643386,42.713954],[127.652579,42.726596],[127.641353,42.732226],[127.650934,42.744975],[127.64716,42.751045],[127.656934,42.760921],[127.67029,42.755404],[127.677645,42.76539],[127.693226,42.771182],[127.69671,42.77576],[127.705613,42.774437],[127.714226,42.780173],[127.709387,42.789107],[127.726517,42.799087],[127.727291,42.803663],[127.716742,42.801182],[127.710936,42.804215],[127.717613,42.81728],[127.725356,42.821854],[127.738324,42.821799],[127.759131,42.814634],[127.777905,42.814909],[127.800551,42.812649],[127.808874,42.807026],[127.809358,42.799749],[127.820293,42.793022],[127.837617,42.788335],[127.847004,42.801017],[127.843617,42.805593],[127.85252,42.811106],[127.841778,42.818933],[127.835197,42.818878],[127.829197,42.834254],[127.815455,42.840866],[127.819713,42.864004],[127.825036,42.868134],[127.819035,42.875789],[127.807325,42.878598],[127.794744,42.874192],[127.776938,42.887958],[127.774034,42.895445],[127.759421,42.902436],[127.754098,42.901831],[127.744324,42.890271],[127.728356,42.892803],[127.711613,42.891317],[127.696129,42.900345],[127.674838,42.902712],[127.655096,42.917902],[127.640966,42.921699],[127.636321,42.937765],[127.616579,42.945631],[127.608449,42.954596],[127.596643,42.957346],[127.5859,42.955916],[127.575448,42.966749],[127.557932,42.979175],[127.548351,42.978076],[127.531221,42.984452],[127.516802,43.003195],[127.504705,43.011822],[127.497253,43.023359],[127.479543,43.021986],[127.469768,43.028688],[127.469962,43.038026],[127.483414,43.053018],[127.484769,43.060869],[127.501124,43.065591],[127.501801,43.070586],[127.492898,43.091552],[127.503447,43.120574],[127.488833,43.129239],[127.480027,43.139768],[127.510608,43.140865],[127.532189,43.146238],[127.548544,43.157695],[127.54748,43.161039],[127.561513,43.168986],[127.562287,43.178796],[127.5679,43.186631],[127.581352,43.187508],[127.585997,43.195068],[127.595965,43.197533],[127.611933,43.206243],[127.634192,43.223822],[127.636224,43.236688],[127.644547,43.249333],[127.657225,43.260169],[127.659451,43.27352],[127.654128,43.283258],[127.643482,43.292721],[127.618417,43.300159],[127.61532,43.305464],[127.630514,43.312955],[127.633902,43.323288],[127.617449,43.334821],[127.625192,43.341216],[127.639902,43.340068],[127.647934,43.346298],[127.671741,43.349522],[127.682193,43.35433],[127.678999,43.364219],[127.686064,43.367278],[127.688096,43.375144],[127.694968,43.378039],[127.703484,43.395023],[127.698645,43.401957],[127.70571,43.409272],[127.710162,43.430231],[127.701742,43.430285],[127.696323,43.43727],[127.697097,43.451346],[127.706678,43.464655],[127.704258,43.480851],[127.698161,43.484232],[127.71771,43.502439],[127.719839,43.510396],[127.733775,43.504456],[127.745001,43.503693],[127.761356,43.523257],[127.774518,43.525763],[127.769873,43.531974],[127.770841,43.54984],[127.777034,43.555014],[127.791164,43.554578],[127.791744,43.563509],[127.798809,43.564761],[127.797938,43.572166],[127.8111,43.581148],[127.819326,43.583053],[127.816519,43.590728],[127.82939,43.598564],[127.840907,43.595136],[127.853585,43.610644],[127.854649,43.616411],[127.865682,43.624897],[127.884263,43.620382],[127.896554,43.625006],[127.899457,43.645618],[127.913006,43.651871],[127.916393,43.657851],[127.913296,43.666223],[127.905651,43.670082],[127.909909,43.68443],[127.90265,43.689864],[127.913489,43.694591],[127.910296,43.70312],[127.924716,43.7079],[127.917457,43.716374],[127.920554,43.721316],[127.915909,43.730602],[127.906522,43.732339],[127.893457,43.729733],[127.877101,43.735],[127.856972,43.746998],[127.857262,43.754868],[127.839358,43.779234],[127.84052,43.79502],[127.844197,43.800389],[127.835584,43.801528],[127.826874,43.809771],[127.813422,43.812103],[127.817971,43.81861],[127.807809,43.827935],[127.816713,43.836066],[127.811003,43.840944],[127.816519,43.853571],[127.83752,43.86717],[127.854456,43.857635],[127.861036,43.882175],[127.850972,43.888836],[127.851262,43.896147],[127.839552,43.896634],[127.836068,43.901074],[127.795228,43.916774],[127.781196,43.929709],[127.762518,43.937231],[127.775873,43.936744],[127.778679,43.949513],[127.786131,43.956113],[127.779841,43.97169],[127.792325,43.973421],[127.782744,43.978828],[127.785744,43.989318],[127.783422,43.995913],[127.788938,44.00267],[127.800551,44.008183],[127.807809,44.017911],[127.820971,44.02045],[127.835778,44.031797],[127.835584,44.037415],[127.84981,44.041574],[127.852423,44.048272],[127.860456,44.049082],[127.870133,44.055779],[127.865004,44.062259],[127.848455,44.074137],[127.845746,44.082127],[127.821648,44.081047],[127.808293,44.086445],[127.791454,44.073867],[127.783518,44.071978],[127.766679,44.082181],[127.736775,44.093299],[127.729227,44.09902],[127.735904,44.114236],[127.73484,44.129987],[127.727775,44.140989],[127.72913,44.14719],[127.722065,44.153606],[127.720517,44.162824],[127.724001,44.196613],[127.719452,44.202486],[127.712387,44.199038],[127.703387,44.188155],[127.699226,44.176138],[127.681129,44.166867],[127.668451,44.172203],[127.667967,44.176569],[127.640869,44.193112],[127.637869,44.187023],[127.626643,44.187885],[127.62045,44.196721],[127.607385,44.207172],[127.597901,44.224352],[127.590546,44.227853],[127.602062,44.238082],[127.604965,44.245996],[127.623159,44.258321],[127.614933,44.271021],[127.623353,44.277585],[127.609223,44.294745],[127.596933,44.298295],[127.59132,44.306361],[127.585513,44.306361],[127.556383,44.340552],[127.541673,44.348935],[127.534318,44.359574],[127.521641,44.360595],[127.523479,44.372466],[127.520479,44.380684],[127.506931,44.393035],[127.487865,44.397492],[127.485543,44.408658],[127.502769,44.42315],[127.501995,44.430126],[127.508285,44.437209],[127.50064,44.450246],[127.478962,44.458613],[127.472575,44.467891],[127.464639,44.486711],[127.475478,44.498504],[127.468413,44.506597],[127.465607,44.516296],[127.474317,44.517528],[127.484188,44.528297],[127.49464,44.526797],[127.508963,44.530332],[127.514479,44.523046],[127.536931,44.522618],[127.54206,44.525779],[127.546803,44.538528],[127.570222,44.550738],[127.56819,44.559948],[127.55648,44.576008],[127.537512,44.577186],[127.513221,44.582538],[127.506737,44.594526],[127.487769,44.602552],[127.48293,44.600625],[127.474123,44.608971],[127.465994,44.607473],[127.451477,44.615016],[127.435413,44.613839],[127.425251,44.620205],[127.411315,44.622504],[127.401734,44.634377],[127.393024,44.632291],[127.321893,44.635553],[127.319764,44.638013],[127.276215,44.640472],[127.27186,44.627371],[127.263053,44.61293],[127.230923,44.6232],[127.213987,44.625499],[127.219407,44.635606],[127.229472,44.642557],[127.2196,44.64245],[127.211665,44.648117],[127.181761,44.643627],[127.152728,44.616567],[127.142857,44.614535],[127.138985,44.607634],[127.126888,44.609881],[127.117888,44.615337],[127.094759,44.615819],[127.088662,44.60619],[127.089436,44.593991],[127.077629,44.587408],[127.0605,44.57087],[127.050435,44.566962],[127.035725,44.558128],[127.010369,44.552077],[126.999337,44.531511],[126.991207,44.527761],[126.959271,44.530118],[126.949013,44.524707],[126.92027,44.53285],[126.91098,44.524493],[126.902754,44.524332],[126.89985,44.514849],[126.878463,44.512223],[126.860752,44.527547],[126.856494,44.536546],[126.834139,44.535742],[126.811687,44.530761],[126.797751,44.522886],[126.770169,44.525618],[126.759621,44.518867],[126.738717,44.521654],[126.733975,44.517582],[126.726813,44.521225],[126.733201,44.528189],[126.730104,44.534403],[126.720523,44.535475],[126.720233,44.533975],[126.719071,44.531618],[126.712781,44.532421],[126.7122,44.53285],[126.709297,44.531993],[126.707361,44.530332],[126.703877,44.533278],[126.703684,44.534778],[126.655199,44.545437],[126.646392,44.544419],[126.641844,44.554487],[126.646489,44.55695],[126.630424,44.560591],[126.635166,44.569424],[126.627714,44.574938],[126.608068,44.575045],[126.620746,44.557914],[126.598004,44.565516],[126.594229,44.569478],[126.58039,44.57087],[126.58039,44.567604],[126.554648,44.563107],[126.560358,44.556629],[126.546615,44.555451],[126.546615,44.545758],[126.531712,44.549239],[126.528228,44.544526],[126.512743,44.539063],[126.507808,44.543241],[126.476452,44.547793],[126.464452,44.546294],[126.452548,44.555718],[126.438709,44.541045],[126.442774,44.534778],[126.424193,44.534189],[126.41316,44.528511],[126.415096,44.5201],[126.422257,44.513563],[126.445967,44.502792],[126.442677,44.493626],[126.42429,44.488427],[126.425644,44.478723],[126.422257,44.465478],[126.440742,44.447617],[126.441032,44.437317],[126.424773,44.425565],[126.434161,44.41832],[126.467645,44.424653],[126.484775,44.416441],[126.484968,44.407853],[126.479646,44.392606],[126.491743,44.385517],[126.493582,44.379986],[126.484194,44.371016],[126.474226,44.366235],[126.461161,44.365054],[126.455161,44.354201],[126.468033,44.344368],[126.472194,44.336306],[126.470549,44.315664],[126.474613,44.310394],[126.489807,44.305609],[126.494356,44.297918],[126.481001,44.29098],[126.474613,44.28232],[126.473549,44.271667],[126.463097,44.257514],[126.470936,44.243035],[126.494453,44.239913],[126.503646,44.234152],[126.500743,44.221552],[126.48071,44.215574],[126.467936,44.203078],[126.468613,44.18282],[126.462129,44.177647],[126.445193,44.174305],[126.433193,44.17479],[126.425354,44.171071],[126.413741,44.17991],[126.40387,44.176084],[126.402515,44.181904],[126.390902,44.182173],[126.376288,44.174359],[126.36632,44.177269],[126.349481,44.17479],[126.338545,44.179802],[126.331674,44.187346],[126.296641,44.192303],[126.297028,44.176245],[126.287544,44.177593],[126.278641,44.158781],[126.273608,44.169239],[126.272834,44.182012],[126.263543,44.178994],[126.249704,44.180611],[126.244188,44.176892],[126.22522,44.176461],[126.209639,44.157164],[126.177122,44.16428],[126.162992,44.158027],[126.15767,44.150317],[126.162412,44.139694],[126.150121,44.137268],[126.133379,44.129717],[126.140734,44.12017],[126.133282,44.113588],[126.120024,44.122975],[126.106765,44.126049],[126.092926,44.115153],[126.089732,44.103229],[126.078119,44.095782],[126.077055,44.088928],[126.065151,44.081047],[126.063796,44.066525],[126.051796,44.06755],[126.042893,44.061773],[126.036699,44.050324],[126.029053,44.049784],[126.018118,44.041088],[126.007085,44.02742],[126.000891,43.995751],[126.021311,43.979153],[126.02915,43.965092],[126.029731,43.954761],[126.03515,43.94854],[126.036989,43.937664],[126.02344,43.93274],[126.035634,43.923864],[126.045118,43.920942],[126.044925,43.910765],[126.036602,43.898096],[126.044151,43.898638],[126.042215,43.882066],[126.002053,43.875513],[125.994988,43.8773],[125.986568,43.870421],[125.984633,43.856226],[125.972342,43.852162],[125.95018,43.849615],[125.935374,43.859206],[125.917373,43.861644],[125.899857,43.853842],[125.892792,43.855955],[125.89105,43.863865],[125.87934,43.861644],[125.86492,43.853842],[125.860468,43.860506],[125.844403,43.859639],[125.844307,43.862782],[125.825242,43.863757],[125.821564,43.851674],[125.810532,43.831838],[125.802209,43.827772],[125.80908,43.824899],[125.806177,43.818339],[125.813145,43.812808],[125.805596,43.812103],[125.801725,43.80321],[125.806661,43.798762],[125.803564,43.790897],[125.816048,43.783411],[125.821177,43.77473],[125.811016,43.767893],[125.818661,43.765886],[125.815661,43.759482],[125.824564,43.760187],[125.832887,43.747649],[125.830177,43.738692],[125.834048,43.728212],[125.838016,43.729624],[125.848758,43.707411],[125.849339,43.697524],[125.863178,43.690679],[125.871791,43.689972],[125.867049,43.683397],[125.878856,43.670897],[125.878372,43.650947],[125.887759,43.650838],[125.886888,43.63447],[125.893663,43.624843],[125.885824,43.61924],[125.89434,43.604006],[125.886114,43.59187],[125.878082,43.562202],[125.870824,43.561821],[125.865017,43.551202],[125.86763,43.543794],[125.856501,43.538838],[125.857952,43.532845],[125.872566,43.526526],[125.867243,43.523583],[125.866178,43.510996],[125.852726,43.501621],[125.855339,43.495353],[125.868501,43.491482],[125.866759,43.484232],[125.873049,43.484886],[125.882727,43.462583],[125.901502,43.451401],[125.914663,43.451128],[125.912341,43.446654],[125.934019,43.435142],[125.93847,43.430504],[125.950374,43.407744],[125.957826,43.398572],[125.969439,43.398353],[125.975342,43.405232],[125.988504,43.403267],[125.996536,43.391692],[126.000988,43.37427],[126.013859,43.371266],[126.020537,43.361597],[126.018892,43.353074],[126.006021,43.345041],[125.979117,43.336406],[125.969536,43.342527],[125.957826,43.336953],[125.956664,43.327934],[125.94989,43.323561],[125.928019,43.318094],[125.913889,43.317001],[125.915147,43.310275],[125.900631,43.307541],[125.891534,43.30169],[125.857178,43.294964],[125.844791,43.294745],[125.832306,43.300542],[125.815854,43.315743],[125.80066,43.31033],[125.788563,43.301472],[125.781789,43.292776],[125.730497,43.27456],[125.718207,43.27445],[125.716852,43.267283],[125.69798,43.262741],[125.65927,43.231871],[125.660141,43.226888],[125.64785,43.222782],[125.645721,43.217251],[125.655205,43.200217],[125.666528,43.199834],[125.674173,43.186302],[125.683464,43.178577],[125.680754,43.16948],[125.688787,43.159504],[125.692464,43.146786],[125.698755,43.150514],[125.713368,43.125565],[125.725271,43.123371],[125.75353,43.13061],[125.760595,43.12913],[125.769305,43.113059],[125.776273,43.109384],[125.776176,43.102855],[125.786725,43.102142],[125.787596,43.096875],[125.749756,43.083156],[125.732723,43.091113],[125.728465,43.084418],[125.73882,43.072507],[125.733401,43.064822],[125.70398,43.056038],[125.697109,43.060046],[125.67998,43.060101],[125.664689,43.07602],[125.65985,43.058399],[125.67456,43.044506],[125.693625,43.036598],[125.707755,43.033357],[125.726239,43.02292],[125.727013,43.010943],[125.736788,43.006162],[125.742111,43.012151],[125.772305,43.020118],[125.809661,43.005832],[125.805306,43.004239],[125.821564,42.997919],[125.831726,42.982254],[125.834435,42.966749],[125.8505,42.958721],[125.861436,42.960591],[125.864339,42.955036],[125.849726,42.953276],[125.865501,42.947556],[125.857855,42.943926],[125.8415,42.925661],[125.857759,42.924065],[125.887663,42.913444],[125.892308,42.91394],[125.906921,42.905244],[125.903244,42.900455],[125.903631,42.876065],[125.911567,42.876395],[125.919599,42.850894],[125.939922,42.830672],[125.951342,42.822846],[125.980568,42.813145],[125.994311,42.816177],[126.007569,42.796386],[126.018021,42.797047],[126.029344,42.788611],[126.05499,42.787783],[126.060796,42.783151],[126.067667,42.788004],[126.078216,42.785633],[126.089926,42.789217],[126.09912,42.783096],[126.135605,42.787232],[126.138218,42.791809],[126.149153,42.792085],[126.16667,42.784971],[126.190961,42.787453],[126.195025,42.790761],[126.217284,42.786074],[126.21951,42.778684],[126.227639,42.773719],[126.243027,42.775871],[126.246704,42.783206],[126.261027,42.784144],[126.270124,42.794456],[126.287544,42.796275],[126.299641,42.800135],[126.312125,42.814965],[126.325964,42.815185],[126.344642,42.805538],[126.354997,42.804215],[126.36603,42.813807],[126.38403,42.815406],[126.394676,42.804987],[126.395547,42.793794],[126.387224,42.779621],[126.38916,42.769913],[126.39816,42.761363],[126.391676,42.755514],[126.400386,42.737801],[126.390127,42.73184],[126.389063,42.718923],[126.382869,42.708764],[126.387998,42.697554],[126.404257,42.693356],[126.405031,42.688661],[126.422257,42.67905],[126.435322,42.674962],[126.465807,42.682088],[126.484678,42.684629],[126.49242,42.679879],[126.50713,42.685734],[126.514098,42.681094],[126.527744,42.678663],[126.533454,42.67126],[126.541873,42.668498],[126.563261,42.670818],[126.567422,42.686065],[126.583681,42.697001],[126.596649,42.696559],[126.602843,42.703904],[126.619004,42.712684],[126.628585,42.713512],[126.648715,42.729411],[126.66178,42.727093],[126.673006,42.718205],[126.682877,42.716935],[126.68578,42.706886],[126.700877,42.706113],[126.720329,42.696891],[126.734459,42.695731],[126.750427,42.67231]]],[[[126.720233,44.533975],[126.720523,44.535475],[126.709587,44.537349],[126.7122,44.53285],[126.712781,44.532421],[126.715394,44.533332],[126.720233,44.533975]]],[[[126.703684,44.534778],[126.703877,44.533278],[126.707361,44.530332],[126.709297,44.531993],[126.703684,44.534778]]]]}},{"type":"Feature","properties":{"adcode":220300,"name":"四平市","center":[124.370785,43.170344],"centroid":[124.388756,43.487587],"childrenNum":5,"level":"city","parent":{"adcode":220000},"subFeatureIndex":2,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.015711,44.004508],[123.951741,43.998616],[123.901321,44.000454],[123.872675,43.9984],[123.857578,43.999859],[123.818577,43.986236],[123.76864,44.003643],[123.766221,44.016614],[123.773576,44.022882],[123.756736,44.040926],[123.745607,44.042601],[123.732639,44.039522],[123.721219,44.050702],[123.718703,44.062907],[123.695574,44.083422],[123.699445,44.090223],[123.687928,44.098588],[123.683186,44.109865],[123.66354,44.107815],[123.660444,44.092544],[123.652411,44.089467],[123.641862,44.079374],[123.635669,44.078132],[123.6107,44.081425],[123.589893,44.088334],[123.571796,44.087956],[123.55186,44.081425],[123.547989,44.077916],[123.503085,44.080399],[123.478503,44.083638],[123.449664,44.07689],[123.437083,44.077862],[123.424986,44.075217],[123.409502,44.076998],[123.400114,44.07187],[123.399243,44.066633],[123.358694,44.075001],[123.328499,44.070952],[123.332854,44.066957],[123.331209,44.055671],[123.320757,44.052053],[123.326274,44.045679],[123.332371,44.028339],[123.365759,44.013966],[123.369823,44.004724],[123.400888,43.979261],[123.381436,43.974827],[123.374952,43.965903],[123.382501,43.95211],[123.397017,43.954761],[123.404469,43.939179],[123.412405,43.938097],[123.415115,43.928789],[123.428276,43.927382],[123.429341,43.917586],[123.439986,43.89788],[123.438438,43.894793],[123.444051,43.877246],[123.453148,43.878221],[123.463697,43.864624],[123.461955,43.859043],[123.468245,43.853083],[123.466503,43.839101],[123.462729,43.836228],[123.462051,43.822622],[123.467084,43.816061],[123.473955,43.816007],[123.474923,43.804511],[123.482278,43.794749],[123.492439,43.792687],[123.496891,43.785581],[123.498246,43.771149],[123.490213,43.770227],[123.485568,43.763335],[123.485568,43.745586],[123.482665,43.737769],[123.490213,43.729896],[123.49902,43.730384],[123.509278,43.716754],[123.520795,43.70676],[123.518666,43.701382],[123.525343,43.69508],[123.518956,43.681495],[123.527376,43.669321],[123.529118,43.6597],[123.537247,43.649696],[123.533956,43.645509],[123.535989,43.631696],[123.511601,43.626039],[123.513149,43.614996],[123.507053,43.611569],[123.51373,43.604006],[123.51044,43.592251],[123.496988,43.59002],[123.473955,43.590238],[123.46718,43.585394],[123.458567,43.593993],[123.441148,43.598183],[123.429147,43.603843],[123.426244,43.610807],[123.421115,43.598238],[123.433986,43.575595],[123.446664,43.58093],[123.46089,43.568572],[123.455954,43.547988],[123.45247,43.545701],[123.403211,43.558826],[123.356662,43.567701],[123.3405,43.560841],[123.304499,43.550711],[123.306144,43.535406],[123.329854,43.519061],[123.325499,43.5062],[123.316015,43.492028],[123.335371,43.480851],[123.3645,43.483359],[123.375823,43.476543],[123.389469,43.457783],[123.389469,43.449382],[123.395469,43.441799],[123.413953,43.42592],[123.419857,43.410091],[123.442696,43.420571],[123.442019,43.437652],[123.48702,43.445509],[123.500665,43.426083],[123.519633,43.402448],[123.52515,43.398572],[123.532505,43.40152],[123.545086,43.415058],[123.555925,43.406433],[123.584087,43.377274],[123.608571,43.366295],[123.703703,43.370665],[123.704961,43.377329],[123.698574,43.382517],[123.708929,43.383774],[123.700219,43.389289],[123.705638,43.396988],[123.703025,43.402612],[123.709896,43.416696],[123.734381,43.427229],[123.749188,43.439234],[123.743091,43.441962],[123.751994,43.454728],[123.753252,43.464546],[123.746285,43.471199],[123.77135,43.484013],[123.773963,43.480306],[123.787028,43.479815],[123.797866,43.489574],[123.804544,43.482432],[123.825932,43.471527],[123.83348,43.473544],[123.845771,43.467491],[123.849255,43.470109],[123.861158,43.461764],[123.857578,43.459146],[123.872288,43.451346],[123.855642,43.436779],[123.854868,43.423682],[123.849739,43.415659],[123.853029,43.405615],[123.863675,43.400919],[123.865901,43.395623],[123.892321,43.390108],[123.901418,43.379186],[123.896482,43.361051],[123.911579,43.35821],[123.922999,43.36045],[123.946806,43.350779],[123.964226,43.340833],[123.969355,43.333072],[123.993259,43.308143],[124.001388,43.304315],[124.033615,43.281125],[124.043776,43.288017],[124.066035,43.292666],[124.098261,43.29294],[124.102713,43.287689],[124.098648,43.281125],[124.111423,43.281179],[124.11723,43.277295],[124.11181,43.269143],[124.117133,43.263781],[124.114423,43.247308],[124.127198,43.247253],[124.132907,43.255299],[124.151295,43.249005],[124.157005,43.251632],[124.168328,43.244078],[124.172489,43.249552],[124.178393,43.242217],[124.190102,43.246487],[124.200167,43.24583],[124.20578,43.252398],[124.216523,43.25612],[124.217103,43.24583],[124.223103,43.246432],[124.229781,43.234827],[124.243426,43.233404],[124.253201,43.237345],[124.268395,43.230666],[124.276331,43.233404],[124.282911,43.220591],[124.280685,43.216265],[124.287653,43.2069],[124.277589,43.196164],[124.282137,43.188987],[124.273814,43.178741],[124.283976,43.166027],[124.300525,43.158518],[124.292492,43.154297],[124.303041,43.148869],[124.308944,43.155064],[124.32859,43.143551],[124.34059,43.128636],[124.365849,43.121397],[124.396818,43.09254],[124.420431,43.081619],[124.425947,43.076295],[124.369817,43.025502],[124.34059,43.004843],[124.333429,42.997369],[124.347655,42.988355],[124.360817,42.975876],[124.38443,42.970708],[124.402334,42.970983],[124.415205,42.976701],[124.423141,42.975492],[124.428754,42.967299],[124.442303,42.958666],[124.442109,42.941395],[124.431947,42.930833],[124.414818,42.926431],[124.41356,42.921974],[124.398463,42.919773],[124.388495,42.910142],[124.381043,42.912839],[124.366333,42.902491],[124.371752,42.880966],[124.415495,42.879259],[124.426818,42.874523],[124.43456,42.880855],[124.440851,42.87634],[124.437561,42.868079],[124.446658,42.86516],[124.45469,42.852491],[124.451787,42.826649],[124.465916,42.822681],[124.472594,42.827531],[124.466303,42.846101],[124.480142,42.858551],[124.50153,42.865105],[124.514692,42.873642],[124.53124,42.872045],[124.538499,42.867088],[124.541789,42.883939],[124.553499,42.88994],[124.563177,42.889004],[124.578371,42.899794],[124.602758,42.922139],[124.602662,42.931273],[124.608178,42.937765],[124.622694,42.941945],[124.622985,42.949041],[124.632082,42.949866],[124.63934,42.956356],[124.63363,42.958391],[124.635275,42.973017],[124.644276,42.976426],[124.659373,42.972908],[124.660728,42.984123],[124.671179,42.990114],[124.67776,43.0027],[124.678244,43.01336],[124.674373,43.026546],[124.68618,43.050437],[124.695083,43.057246],[124.718213,43.069873],[124.738633,43.068171],[124.754891,43.073825],[124.758569,43.086284],[124.778215,43.098246],[124.785376,43.106531],[124.786537,43.117777],[124.801151,43.122878],[124.807925,43.117502],[124.819538,43.119861],[124.822635,43.124413],[124.841894,43.126991],[124.858346,43.119532],[124.873346,43.125949],[124.881282,43.133352],[124.891346,43.132914],[124.903056,43.143771],[124.911573,43.144812],[124.933251,43.156818],[124.950574,43.168767],[124.968671,43.176659],[124.965381,43.187398],[124.977865,43.195999],[124.997027,43.198793],[125.003995,43.196054],[125.018511,43.203997],[125.024608,43.214294],[125.043383,43.222289],[125.053351,43.220153],[125.061286,43.213801],[125.125353,43.221139],[125.136869,43.22426],[125.151385,43.223493],[125.155837,43.227436],[125.178289,43.226888],[125.200548,43.228969],[125.206935,43.223603],[125.209935,43.21276],[125.219323,43.205366],[125.249807,43.174247],[125.268485,43.160436],[125.270034,43.155064],[125.315422,43.134559],[125.338939,43.128033],[125.365939,43.110865],[125.381617,43.105214],[125.388392,43.107738],[125.39023,43.120848],[125.403682,43.135875],[125.400005,43.148266],[125.378424,43.151117],[125.369617,43.149966],[125.357423,43.160381],[125.361391,43.175069],[125.370294,43.182741],[125.374649,43.204709],[125.367875,43.210296],[125.367198,43.218784],[125.374553,43.224753],[125.391005,43.218784],[125.409683,43.219934],[125.411812,43.226505],[125.423328,43.234006],[125.435038,43.230447],[125.43949,43.222946],[125.448587,43.223931],[125.465619,43.203778],[125.480233,43.201477],[125.491652,43.181481],[125.480136,43.163177],[125.480136,43.148705],[125.484394,43.142235],[125.484394,43.129075],[125.48991,43.125071],[125.495814,43.100331],[125.523976,43.096106],[125.534621,43.098027],[125.555041,43.093637],[125.582429,43.072892],[125.610785,43.067183],[125.633624,43.070476],[125.65985,43.058399],[125.664689,43.07602],[125.67998,43.060101],[125.697109,43.060046],[125.70398,43.056038],[125.733401,43.064822],[125.73882,43.072507],[125.728465,43.084418],[125.732723,43.091113],[125.749756,43.083156],[125.787596,43.096875],[125.786725,43.102142],[125.776176,43.102855],[125.776273,43.109384],[125.769305,43.113059],[125.760595,43.12913],[125.75353,43.13061],[125.725271,43.123371],[125.713368,43.125565],[125.698755,43.150514],[125.692464,43.146786],[125.688787,43.159504],[125.680754,43.16948],[125.683464,43.178577],[125.674173,43.186302],[125.666528,43.199834],[125.655205,43.200217],[125.645721,43.217251],[125.64785,43.222782],[125.660141,43.226888],[125.65927,43.231871],[125.69798,43.262741],[125.685399,43.268596],[125.682786,43.275545],[125.673689,43.280742],[125.65356,43.286103],[125.628785,43.296987],[125.621914,43.305956],[125.599655,43.313501],[125.576913,43.329847],[125.569945,43.338647],[125.55417,43.345533],[125.541589,43.361433],[125.547686,43.367333],[125.578364,43.378749],[125.582622,43.405342],[125.576622,43.4096],[125.559686,43.407853],[125.551073,43.404141],[125.546525,43.411565],[125.529686,43.412384],[125.515169,43.409491],[125.507233,43.41817],[125.495233,43.421936],[125.499491,43.428375],[125.514492,43.435469],[125.51275,43.443545],[125.50462,43.445181],[125.502491,43.452928],[125.488846,43.456637],[125.489717,43.466128],[125.495814,43.473653],[125.479942,43.482923],[125.476555,43.491973],[125.467265,43.493881],[125.459039,43.50064],[125.463103,43.503529],[125.458748,43.522766],[125.447909,43.530339],[125.4572,43.545156],[125.456329,43.556756],[125.45991,43.560514],[125.453038,43.57614],[125.453038,43.599762],[125.446167,43.601448],[125.426328,43.587027],[125.40465,43.586754],[125.400779,43.581638],[125.386553,43.579678],[125.39536,43.56438],[125.394198,43.554578],[125.374359,43.552509],[125.379004,43.540254],[125.387327,43.543413],[125.392166,43.53753],[125.389553,43.530012],[125.370875,43.525981],[125.361681,43.51541],[125.368456,43.504456],[125.378327,43.49786],[125.377843,43.489356],[125.385101,43.485104],[125.380456,43.473599],[125.358681,43.480251],[125.334681,43.469236],[125.334197,43.46471],[125.323938,43.462092],[125.318132,43.453637],[125.306035,43.453855],[125.302938,43.445727],[125.292196,43.452055],[125.277098,43.441471],[125.27526,43.448127],[125.265292,43.443981],[125.261614,43.449437],[125.256098,43.44529],[125.247678,43.452328],[125.248646,43.460237],[125.241968,43.4676],[125.241291,43.480088],[125.248259,43.487176],[125.274389,43.496062],[125.268001,43.509742],[125.273421,43.514593],[125.263646,43.514919],[125.266163,43.521894],[125.258808,43.533554],[125.27284,43.536986],[125.275937,43.532954],[125.289292,43.536822],[125.281744,43.543086],[125.277582,43.563944],[125.28455,43.567973],[125.281937,43.577936],[125.276808,43.578045],[125.297325,43.591762],[125.289873,43.598891],[125.299938,43.601884],[125.308938,43.611134],[125.30226,43.615214],[125.296647,43.636101],[125.290067,43.638712],[125.290067,43.649805],[125.254066,43.645781],[125.235194,43.642247],[125.223387,43.637135],[125.199967,43.632947],[125.152644,43.621035],[125.130772,43.613636],[125.108223,43.611079],[125.082093,43.603081],[125.053544,43.591707],[125.034092,43.580059],[125.015511,43.558227],[125.010479,43.549241],[125.003124,43.554524],[124.995672,43.552019],[125.00593,43.541017],[124.989478,43.523747],[124.986768,43.518189],[124.953477,43.5062],[124.931702,43.502276],[124.916799,43.49737],[124.893669,43.481178],[124.897637,43.470654],[124.91496,43.460619],[124.911476,43.450146],[124.916121,43.439725],[124.910895,43.431159],[124.895508,43.421444],[124.88525,43.4239],[124.871604,43.420626],[124.860378,43.406706],[124.868507,43.404414],[124.870539,43.393548],[124.882056,43.382845],[124.880508,43.374653],[124.885927,43.369245],[124.883798,43.358974],[124.919218,43.348047],[124.917573,43.332853],[124.92667,43.332799],[124.931702,43.323889],[124.928702,43.317985],[124.892314,43.293104],[124.871314,43.289658],[124.863088,43.285446],[124.867152,43.2727],[124.86483,43.26586],[124.849152,43.245939],[124.846539,43.237017],[124.837248,43.232363],[124.835506,43.221632],[124.829409,43.212267],[124.844023,43.187946],[124.85883,43.176933],[124.854378,43.169425],[124.840539,43.161642],[124.799312,43.195671],[124.784311,43.201313],[124.779473,43.211172],[124.784021,43.219606],[124.775989,43.228859],[124.801344,43.242984],[124.783924,43.257707],[124.774827,43.272864],[124.760021,43.280742],[124.756149,43.296167],[124.767956,43.307487],[124.766311,43.314157],[124.775021,43.326021],[124.76844,43.344658],[124.761569,43.348757],[124.76273,43.356407],[124.757311,43.366841],[124.757601,43.383227],[124.743375,43.389944],[124.735246,43.40223],[124.730697,43.422809],[124.717245,43.43285],[124.703406,43.456364],[124.682406,43.497533],[124.677567,43.516336],[124.686857,43.528977],[124.689761,43.545374],[124.694503,43.552563],[124.693825,43.576412],[124.680857,43.592415],[124.67776,43.617336],[124.681535,43.627998],[124.666147,43.659863],[124.626759,43.681604],[124.598984,43.690624],[124.573725,43.723542],[124.559306,43.727507],[124.550015,43.735325],[124.550692,43.740646],[124.524272,43.755248],[124.517401,43.751123],[124.496304,43.7483],[124.470271,43.756931],[124.465819,43.760838],[124.430496,43.75628],[124.398366,43.762358],[124.362268,43.771203],[124.305751,43.763498],[124.251072,43.759265],[124.222523,43.758722],[124.212264,43.754597],[124.212071,43.743523],[124.203554,43.740918],[124.206555,43.734294],[124.199393,43.729787],[124.194167,43.716537],[124.187683,43.711268],[124.176941,43.711594],[124.172779,43.707194],[124.151101,43.708335],[124.147134,43.703555],[124.13223,43.703718],[124.126617,43.709476],[124.116649,43.704261],[124.105036,43.705021],[124.084809,43.715885],[124.076583,43.717731],[124.081035,43.724791],[124.083261,43.741026],[124.078519,43.748843],[124.070777,43.751937],[124.063228,43.771149],[124.051421,43.768219],[124.050841,43.772343],[124.040195,43.769521],[124.048905,43.781133],[124.043099,43.784225],[124.04755,43.790897],[124.03855,43.793989],[124.041647,43.803047],[124.051131,43.799901],[124.057228,43.810476],[124.072519,43.812103],[124.074358,43.820074],[124.065841,43.834169],[124.067099,43.84154],[124.060518,43.849669],[124.06439,43.852216],[124.077648,43.843599],[124.085293,43.862836],[124.076777,43.871612],[124.078422,43.880062],[124.064486,43.892031],[124.063809,43.8975],[124.040389,43.927166],[124.028872,43.949946],[124.018808,43.981694],[124.021227,43.995589],[124.016679,43.99348],[124.015711,44.004508]]]]}},{"type":"Feature","properties":{"adcode":220400,"name":"辽源市","center":[125.145349,42.902692],"centroid":[125.311392,42.814462],"childrenNum":4,"level":"city","parent":{"adcode":220000},"subFeatureIndex":3,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.891346,43.132914],[124.895024,43.131159],[124.893766,43.117941],[124.881862,43.110865],[124.879346,43.100276],[124.883411,43.094735],[124.887475,43.07377],[124.877314,43.068006],[124.869281,43.054994],[124.858249,43.050986],[124.857475,43.040058],[124.861733,43.034071],[124.84441,43.03517],[124.840829,43.02671],[124.856023,43.01391],[124.861926,43.002535],[124.860571,42.992423],[124.869572,42.98808],[124.868701,42.972908],[124.874701,42.969169],[124.867539,42.96169],[124.869572,42.954871],[124.864926,42.939415],[124.869088,42.937324],[124.866668,42.918562],[124.861926,42.917131],[124.859023,42.904033],[124.850797,42.892142],[124.856507,42.886251],[124.849249,42.881571],[124.850797,42.871549],[124.856604,42.866647],[124.854475,42.860258],[124.859604,42.83205],[124.857088,42.823839],[124.867249,42.807467],[124.873927,42.790155],[124.887766,42.790816],[124.897734,42.788004],[124.906734,42.793573],[124.91496,42.803884],[124.915928,42.817776],[124.930057,42.81954],[124.949606,42.80631],[124.955606,42.807357],[124.975058,42.802671],[124.9798,42.781717],[124.987543,42.780559],[124.992672,42.765831],[124.9828,42.760811],[124.97951,42.753252],[124.988414,42.751707],[124.996446,42.745306],[124.986091,42.726982],[124.978929,42.72908],[124.96809,42.722621],[124.977187,42.716493],[124.978736,42.709813],[124.989091,42.697056],[124.985897,42.686673],[124.96509,42.678],[124.974187,42.673028],[124.984639,42.677006],[124.996446,42.675238],[124.996156,42.670321],[125.01435,42.666122],[125.012801,42.660209],[125.019672,42.653633],[125.011059,42.63202],[125.028576,42.623008],[125.028769,42.6177],[125.038447,42.615433],[125.055093,42.624059],[125.064093,42.620741],[125.072222,42.625165],[125.086255,42.625773],[125.097384,42.622068],[125.09961,42.613221],[125.089932,42.607469],[125.095545,42.599781],[125.081609,42.588772],[125.086739,42.586006],[125.089642,42.568078],[125.0819,42.563595],[125.075803,42.548539],[125.076964,42.539681],[125.067093,42.536027],[125.090707,42.515537],[125.081126,42.513321],[125.069125,42.499638],[125.085287,42.500857],[125.105029,42.490829],[125.107642,42.479524],[125.136482,42.471266],[125.149644,42.459403],[125.149256,42.451919],[125.140063,42.445986],[125.159708,42.437945],[125.180902,42.432788],[125.186128,42.427851],[125.186612,42.415148],[125.197548,42.407825],[125.192709,42.396339],[125.185935,42.3914],[125.186322,42.38152],[125.19929,42.377468],[125.203451,42.366865],[125.19329,42.360091],[125.185935,42.36109],[125.167547,42.351984],[125.177128,42.346041],[125.176451,42.337877],[125.181967,42.328322],[125.173838,42.319655],[125.175386,42.30832],[125.18187,42.308264],[125.212742,42.300483],[125.242162,42.312654],[125.253872,42.307708],[125.262872,42.313098],[125.285615,42.315099],[125.298002,42.325155],[125.316487,42.328044],[125.335358,42.340487],[125.342713,42.358758],[125.364972,42.365088],[125.406392,42.384462],[125.411908,42.381243],[125.43949,42.38202],[125.450135,42.386072],[125.453232,42.392066],[125.479265,42.39928],[125.517589,42.420696],[125.544589,42.432122],[125.56288,42.435061],[125.573816,42.451752],[125.576913,42.470989],[125.584171,42.482905],[125.585816,42.507616],[125.600139,42.518195],[125.616494,42.518528],[125.614075,42.524509],[125.623656,42.526392],[125.634495,42.538519],[125.634495,42.547543],[125.647076,42.551584],[125.665657,42.540124],[125.676496,42.552027],[125.675528,42.557452],[125.689851,42.571454],[125.701368,42.573667],[125.708723,42.59436],[125.727594,42.605146],[125.701561,42.609571],[125.701948,42.603708],[125.682786,42.606639],[125.68027,42.610787],[125.688012,42.619027],[125.680754,42.622289],[125.676012,42.633734],[125.664979,42.640699],[125.66585,42.648051],[125.657721,42.65192],[125.662173,42.65612],[125.65927,42.675956],[125.663915,42.684961],[125.658786,42.691865],[125.66856,42.70418],[125.674754,42.705837],[125.673883,42.716107],[125.661496,42.718426],[125.644269,42.732944],[125.64756,42.73896],[125.657237,42.73918],[125.66827,42.732999],[125.686367,42.734268],[125.707271,42.742161],[125.716852,42.738739],[125.731368,42.743761],[125.756433,42.742437],[125.768627,42.748341],[125.783918,42.747127],[125.795628,42.753197],[125.81208,42.748065],[125.811499,42.7527],[125.819919,42.762521],[125.82979,42.75728],[125.84421,42.766217],[125.835984,42.7687],[125.810919,42.790486],[125.790112,42.800852],[125.787015,42.80631],[125.758853,42.820201],[125.75353,42.82924],[125.757304,42.839654],[125.741627,42.847037],[125.742401,42.855411],[125.73611,42.874247],[125.735239,42.886031],[125.741046,42.893904],[125.737659,42.897207],[125.743852,42.909372],[125.740756,42.916581],[125.745401,42.933749],[125.755466,42.936279],[125.759821,42.943761],[125.754401,42.952286],[125.758272,42.957236],[125.748982,42.967354],[125.751595,42.972303],[125.736594,42.991049],[125.736788,43.006162],[125.727013,43.010943],[125.726239,43.02292],[125.707755,43.033357],[125.693625,43.036598],[125.67456,43.044506],[125.65985,43.058399],[125.633624,43.070476],[125.610785,43.067183],[125.582429,43.072892],[125.555041,43.093637],[125.534621,43.098027],[125.523976,43.096106],[125.495814,43.100331],[125.48991,43.125071],[125.484394,43.129075],[125.484394,43.142235],[125.480136,43.148705],[125.480136,43.163177],[125.491652,43.181481],[125.480233,43.201477],[125.465619,43.203778],[125.448587,43.223931],[125.43949,43.222946],[125.435038,43.230447],[125.423328,43.234006],[125.411812,43.226505],[125.409683,43.219934],[125.391005,43.218784],[125.374553,43.224753],[125.367198,43.218784],[125.367875,43.210296],[125.374649,43.204709],[125.370294,43.182741],[125.361391,43.175069],[125.357423,43.160381],[125.369617,43.149966],[125.378424,43.151117],[125.400005,43.148266],[125.403682,43.135875],[125.39023,43.120848],[125.388392,43.107738],[125.381617,43.105214],[125.365939,43.110865],[125.338939,43.128033],[125.315422,43.134559],[125.270034,43.155064],[125.268485,43.160436],[125.249807,43.174247],[125.219323,43.205366],[125.209935,43.21276],[125.206935,43.223603],[125.200548,43.228969],[125.178289,43.226888],[125.155837,43.227436],[125.151385,43.223493],[125.136869,43.22426],[125.125353,43.221139],[125.061286,43.213801],[125.053351,43.220153],[125.043383,43.222289],[125.024608,43.214294],[125.018511,43.203997],[125.003995,43.196054],[124.997027,43.198793],[124.977865,43.195999],[124.965381,43.187398],[124.968671,43.176659],[124.950574,43.168767],[124.933251,43.156818],[124.911573,43.144812],[124.903056,43.143771],[124.891346,43.132914]]]]}},{"type":"Feature","properties":{"adcode":220500,"name":"通化市","center":[125.936501,41.721177],"centroid":[125.955377,41.964388],"childrenNum":7,"level":"city","parent":{"adcode":220000},"subFeatureIndex":4,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.262872,42.313098],[125.264905,42.306875],[125.274969,42.303429],[125.278647,42.296704],[125.29926,42.289478],[125.285034,42.273022],[125.275937,42.266738],[125.287066,42.254726],[125.289002,42.247439],[125.28397,42.235256],[125.275647,42.231362],[125.312615,42.220066],[125.296647,42.20849],[125.306712,42.209881],[125.307583,42.202311],[125.293067,42.194128],[125.28426,42.175698],[125.297131,42.17464],[125.312906,42.197357],[125.317551,42.195241],[125.312035,42.18522],[125.31039,42.170797],[125.314261,42.164392],[125.307873,42.1591],[125.305938,42.146287],[125.318712,42.142053],[125.330616,42.14183],[125.336423,42.145674],[125.345132,42.143167],[125.357713,42.14612],[125.352778,42.152861],[125.356939,42.167177],[125.353842,42.178872],[125.368843,42.18277],[125.384327,42.177257],[125.388876,42.168792],[125.397876,42.166508],[125.406586,42.158655],[125.418489,42.1547],[125.444716,42.152193],[125.462039,42.159435],[125.475007,42.14573],[125.48991,42.136258],[125.477329,42.126171],[125.47762,42.120988],[125.466297,42.117253],[125.465232,42.111958],[125.456135,42.113519],[125.45478,42.102927],[125.445296,42.098466],[125.434941,42.102536],[125.412102,42.100697],[125.416167,42.091273],[125.421876,42.089489],[125.423812,42.078224],[125.415489,42.063721],[125.408521,42.062159],[125.40165,42.050051],[125.379585,42.032305],[125.363326,42.016842],[125.369907,42.002828],[125.353068,41.998528],[125.341745,42.000203],[125.336035,41.987247],[125.322874,41.983337],[125.317551,41.977136],[125.298293,41.974119],[125.291905,41.95881],[125.309228,41.955346],[125.317261,41.94523],[125.332455,41.940647],[125.345713,41.939697],[125.351617,41.928181],[125.334487,41.929691],[125.307583,41.924492],[125.303809,41.912078],[125.303906,41.895692],[125.296357,41.887301],[125.295583,41.879916],[125.300906,41.867719],[125.299164,41.857141],[125.291712,41.852104],[125.294712,41.823272],[125.306228,41.801149],[125.317745,41.792858],[125.320261,41.772013],[125.335358,41.769772],[125.346391,41.761981],[125.334971,41.755815],[125.33381,41.746957],[125.338552,41.741687],[125.331293,41.729463],[125.334584,41.717405],[125.325584,41.702707],[125.326067,41.697209],[125.31697,41.677288],[125.325293,41.670216],[125.329939,41.674145],[125.344261,41.672517],[125.350746,41.678747],[125.363423,41.677568],[125.376101,41.686211],[125.411812,41.69143],[125.432231,41.674706],[125.446361,41.675772],[125.456329,41.66202],[125.452264,41.658315],[125.459039,41.643379],[125.470749,41.638718],[125.468136,41.632765],[125.453716,41.620464],[125.450038,41.598721],[125.45449,41.588886],[125.464071,41.580455],[125.462523,41.568369],[125.476846,41.560048],[125.477233,41.548127],[125.492523,41.536653],[125.506362,41.534572],[125.504524,41.524784],[125.495523,41.522252],[125.495136,41.507398],[125.505879,41.503346],[125.517879,41.489163],[125.516427,41.478636],[125.53346,41.478692],[125.53917,41.46974],[125.540912,41.458703],[125.535492,41.447101],[125.540234,41.436455],[125.534331,41.428849],[125.540041,41.419947],[125.547009,41.418876],[125.552718,41.409408],[125.54846,41.400841],[125.557848,41.397798],[125.577977,41.397741],[125.587461,41.381336],[125.579816,41.374795],[125.579235,41.367408],[125.58959,41.359456],[125.610397,41.365039],[125.621043,41.361148],[125.637205,41.344451],[125.639237,41.331418],[125.631301,41.322164],[125.620075,41.318326],[125.642237,41.295973],[125.638656,41.283947],[125.646592,41.264689],[125.664883,41.26853],[125.675431,41.277622],[125.684625,41.274177],[125.691593,41.258023],[125.694496,41.244521],[125.712787,41.24842],[125.719465,41.24373],[125.749562,41.245482],[125.757982,41.231864],[125.748885,41.220108],[125.735239,41.193255],[125.738239,41.178608],[125.759821,41.172782],[125.783144,41.172047],[125.79108,41.166277],[125.767272,41.150266],[125.756821,41.129554],[125.74782,41.124799],[125.735239,41.125931],[125.724787,41.118346],[125.713561,41.104984],[125.71269,41.095641],[125.731368,41.094509],[125.739207,41.089582],[125.732433,41.076214],[125.726433,41.055252],[125.715497,41.046695],[125.706303,41.033489],[125.687819,41.025326],[125.682883,41.016936],[125.679109,40.998053],[125.683948,40.986312],[125.67398,40.974399],[125.666431,40.977973],[125.650366,40.970711],[125.642818,40.95522],[125.644463,40.949999],[125.634011,40.941485],[125.614462,40.942053],[125.589397,40.931097],[125.590461,40.918436],[125.576913,40.898957],[125.587461,40.892084],[125.610881,40.902535],[125.625398,40.906908],[125.647173,40.908271],[125.655399,40.915937],[125.666141,40.907987],[125.683173,40.901172],[125.692851,40.8918],[125.705626,40.874244],[125.707755,40.867596],[125.726626,40.874585],[125.742014,40.874642],[125.757208,40.883051],[125.771627,40.895889],[125.781692,40.897025],[125.802983,40.884471],[125.812758,40.866346],[125.821758,40.868505],[125.858533,40.886801],[125.871307,40.905829],[125.878082,40.90918],[125.896663,40.899581],[125.906437,40.903444],[125.911179,40.910599],[125.920083,40.909293],[125.913115,40.896798],[125.913115,40.889982],[125.92347,40.881801],[125.939729,40.878847],[125.957632,40.88129],[125.96702,40.886801],[125.963923,40.892481],[125.97331,40.904125],[125.980955,40.903727],[125.996827,40.895776],[126.027505,40.90191],[126.019763,40.911905],[126.006795,40.916732],[125.98831,40.909066],[125.977665,40.90935],[125.977859,40.916789],[125.986568,40.92593],[126.006698,40.936206],[126.021989,40.933822],[126.031473,40.927293],[126.041151,40.928429],[126.039602,40.940918],[126.052861,40.947842],[126.052086,40.961803],[126.06099,40.967477],[126.073184,40.969463],[126.082281,40.976158],[126.067764,40.989886],[126.069119,41.001115],[126.085765,41.008601],[126.096991,41.005482],[126.10841,41.006673],[126.098539,41.033036],[126.10541,41.040744],[126.117023,41.040064],[126.126604,41.045732],[126.13454,41.058878],[126.133863,41.063808],[126.116249,41.071456],[126.11383,41.077177],[126.122056,41.089921],[126.130088,41.093489],[126.146444,41.090601],[126.16425,41.093093],[126.185638,41.106966],[126.187864,41.115968],[126.212639,41.126893],[126.228994,41.131308],[126.234317,41.144551],[126.253769,41.153208],[126.272447,41.156773],[126.286479,41.163109],[126.295189,41.173121],[126.28977,41.190936],[126.308835,41.193311],[126.315029,41.217791],[126.321029,41.228812],[126.328674,41.235254],[126.354417,41.244634],[126.360417,41.252544],[126.360514,41.264237],[126.366901,41.282592],[126.374449,41.289876],[126.393611,41.301957],[126.402515,41.312231],[126.409386,41.328033],[126.417322,41.333957],[126.432225,41.332377],[126.435999,41.335255],[126.434354,41.346087],[126.43958,41.354887],[126.461549,41.360753],[126.481097,41.371243],[126.493678,41.374682],[126.513614,41.371525],[126.514679,41.361543],[126.502195,41.355677],[126.482936,41.354097],[126.482839,41.34778],[126.517582,41.3484],[126.533163,41.354549],[126.538873,41.362727],[126.53626,41.369438],[126.506066,41.386748],[126.497356,41.406703],[126.508679,41.439778],[126.523776,41.459998],[126.530066,41.476947],[126.549228,41.490119],[126.539744,41.49406],[126.542744,41.513812],[126.548648,41.516063],[126.545164,41.523096],[126.551841,41.533953],[126.525324,41.536034],[126.504614,41.50177],[126.495614,41.504415],[126.476162,41.503627],[126.468516,41.500813],[126.468129,41.517807],[126.464645,41.520002],[126.440548,41.520058],[126.437161,41.512743],[126.428451,41.509761],[126.413354,41.515219],[126.399321,41.516795],[126.412676,41.533559],[126.399611,41.540984],[126.38045,41.567469],[126.383837,41.574047],[126.405031,41.584839],[126.408031,41.600406],[126.402128,41.607767],[126.408225,41.626531],[126.417709,41.643885],[126.417128,41.653318],[126.425451,41.658483],[126.41587,41.666623],[126.40387,41.671058],[126.391869,41.665556],[126.37745,41.6655],[126.359933,41.661458],[126.351997,41.664771],[126.335158,41.663704],[126.317642,41.654553],[126.317158,41.665949],[126.301383,41.670833],[126.305157,41.675828],[126.295867,41.684976],[126.29606,41.694291],[126.280963,41.696031],[126.289383,41.712805],[126.286286,41.716788],[126.293931,41.729407],[126.285899,41.73737],[126.288318,41.74264],[126.299157,41.740678],[126.304964,41.746565],[126.302738,41.756544],[126.312996,41.760916],[126.315029,41.771509],[126.309028,41.776216],[126.319771,41.786751],[126.317351,41.794539],[126.321222,41.800981],[126.30777,41.807422],[126.308835,41.815712],[126.299641,41.820752],[126.298673,41.828647],[126.290351,41.835366],[126.285996,41.829935],[126.277963,41.832175],[126.274382,41.842588],[126.259479,41.844212],[126.246317,41.848746],[126.230155,41.842588],[126.217671,41.854175],[126.222994,41.864809],[126.238769,41.87393],[126.24293,41.881483],[126.238962,41.888028],[126.225704,41.893958],[126.219026,41.890658],[126.2078,41.90548],[126.188348,41.900502],[126.178283,41.915545],[126.151476,41.93338],[126.141314,41.935728],[126.137347,41.943442],[126.123024,41.948751],[126.120798,41.953558],[126.133476,41.966074],[126.145185,41.964175],[126.158541,41.973784],[126.174218,41.977918],[126.197542,41.971382],[126.207026,41.978756],[126.221349,41.982666],[126.236736,41.99864],[126.249317,41.997299],[126.257059,42.001097],[126.258124,42.01299],[126.292576,42.03677],[126.305544,42.038779],[126.324706,42.038277],[126.329835,42.045476],[126.339126,42.04715],[126.368643,42.063888],[126.381127,42.062326],[126.397386,42.063888],[126.401741,42.079116],[126.393708,42.08553],[126.391385,42.097128],[126.403676,42.105993],[126.421096,42.111066],[126.428161,42.120654],[126.451968,42.126561],[126.44829,42.140493],[126.457097,42.144839],[126.455839,42.150744],[126.467549,42.158209],[126.469968,42.176756],[126.484291,42.178872],[126.490485,42.19062],[126.50655,42.196633],[126.523389,42.1914],[126.53297,42.183995],[126.547486,42.184663],[126.548164,42.192959],[126.575551,42.20554],[126.579519,42.214556],[126.580003,42.228134],[126.573229,42.235145],[126.546035,42.242711],[126.540712,42.24883],[126.531615,42.24972],[126.521744,42.262289],[126.526195,42.268629],[126.52155,42.281751],[126.522615,42.294536],[126.530454,42.30254],[126.526195,42.315377],[126.52755,42.323378],[126.534518,42.328544],[126.539938,42.346041],[126.534421,42.357814],[126.517776,42.372583],[126.515647,42.382908],[126.519421,42.397948],[126.512743,42.401666],[126.510905,42.410654],[126.526099,42.423969],[126.547099,42.435727],[126.553874,42.443768],[126.573519,42.456631],[126.578261,42.465668],[126.584649,42.463007],[126.604294,42.464171],[126.611649,42.46029],[126.629069,42.470545],[126.633134,42.480411],[126.629553,42.488779],[126.63865,42.506452],[126.635069,42.522072],[126.640489,42.532594],[126.63323,42.541176],[126.632553,42.564592],[126.622779,42.576434],[126.629746,42.584623],[126.639134,42.583793],[126.651134,42.594581],[126.67136,42.593364],[126.679199,42.599338],[126.683458,42.596462],[126.687135,42.607303],[126.705135,42.606142],[126.715394,42.613497],[126.717426,42.626547],[126.73291,42.644016],[126.741233,42.656341],[126.740265,42.665514],[126.750427,42.67231],[126.734459,42.695731],[126.720329,42.696891],[126.700877,42.706113],[126.68578,42.706886],[126.682877,42.716935],[126.673006,42.718205],[126.66178,42.727093],[126.648715,42.729411],[126.628585,42.713512],[126.619004,42.712684],[126.602843,42.703904],[126.596649,42.696559],[126.583681,42.697001],[126.567422,42.686065],[126.563261,42.670818],[126.541873,42.668498],[126.533454,42.67126],[126.527744,42.678663],[126.514098,42.681094],[126.50713,42.685734],[126.49242,42.679879],[126.484678,42.684629],[126.465807,42.682088],[126.435322,42.674962],[126.422257,42.67905],[126.405031,42.688661],[126.404257,42.693356],[126.387998,42.697554],[126.382869,42.708764],[126.389063,42.718923],[126.390127,42.73184],[126.400386,42.737801],[126.391676,42.755514],[126.39816,42.761363],[126.38916,42.769913],[126.387224,42.779621],[126.395547,42.793794],[126.394676,42.804987],[126.38403,42.815406],[126.36603,42.813807],[126.354997,42.804215],[126.344642,42.805538],[126.325964,42.815185],[126.312125,42.814965],[126.299641,42.800135],[126.287544,42.796275],[126.270124,42.794456],[126.261027,42.784144],[126.246704,42.783206],[126.243027,42.775871],[126.227639,42.773719],[126.21951,42.778684],[126.217284,42.786074],[126.195025,42.790761],[126.190961,42.787453],[126.16667,42.784971],[126.149153,42.792085],[126.138218,42.791809],[126.135605,42.787232],[126.09912,42.783096],[126.089926,42.789217],[126.078216,42.785633],[126.067667,42.788004],[126.060796,42.783151],[126.05499,42.787783],[126.029344,42.788611],[126.018021,42.797047],[126.007569,42.796386],[125.994311,42.816177],[125.980568,42.813145],[125.951342,42.822846],[125.939922,42.830672],[125.919599,42.850894],[125.911567,42.876395],[125.903631,42.876065],[125.903244,42.900455],[125.906921,42.905244],[125.892308,42.91394],[125.887663,42.913444],[125.857759,42.924065],[125.8415,42.925661],[125.857855,42.943926],[125.865501,42.947556],[125.849726,42.953276],[125.864339,42.955036],[125.861436,42.960591],[125.8505,42.958721],[125.834435,42.966749],[125.831726,42.982254],[125.821564,42.997919],[125.805306,43.004239],[125.809661,43.005832],[125.772305,43.020118],[125.742111,43.012151],[125.736788,43.006162],[125.736594,42.991049],[125.751595,42.972303],[125.748982,42.967354],[125.758272,42.957236],[125.754401,42.952286],[125.759821,42.943761],[125.755466,42.936279],[125.745401,42.933749],[125.740756,42.916581],[125.743852,42.909372],[125.737659,42.897207],[125.741046,42.893904],[125.735239,42.886031],[125.73611,42.874247],[125.742401,42.855411],[125.741627,42.847037],[125.757304,42.839654],[125.75353,42.82924],[125.758853,42.820201],[125.787015,42.80631],[125.790112,42.800852],[125.810919,42.790486],[125.835984,42.7687],[125.84421,42.766217],[125.82979,42.75728],[125.819919,42.762521],[125.811499,42.7527],[125.81208,42.748065],[125.795628,42.753197],[125.783918,42.747127],[125.768627,42.748341],[125.756433,42.742437],[125.731368,42.743761],[125.716852,42.738739],[125.707271,42.742161],[125.686367,42.734268],[125.66827,42.732999],[125.657237,42.73918],[125.64756,42.73896],[125.644269,42.732944],[125.661496,42.718426],[125.673883,42.716107],[125.674754,42.705837],[125.66856,42.70418],[125.658786,42.691865],[125.663915,42.684961],[125.65927,42.675956],[125.662173,42.65612],[125.657721,42.65192],[125.66585,42.648051],[125.664979,42.640699],[125.676012,42.633734],[125.680754,42.622289],[125.688012,42.619027],[125.68027,42.610787],[125.682786,42.606639],[125.701948,42.603708],[125.701561,42.609571],[125.727594,42.605146],[125.708723,42.59436],[125.701368,42.573667],[125.689851,42.571454],[125.675528,42.557452],[125.676496,42.552027],[125.665657,42.540124],[125.647076,42.551584],[125.634495,42.547543],[125.634495,42.538519],[125.623656,42.526392],[125.614075,42.524509],[125.616494,42.518528],[125.600139,42.518195],[125.585816,42.507616],[125.584171,42.482905],[125.576913,42.470989],[125.573816,42.451752],[125.56288,42.435061],[125.544589,42.432122],[125.517589,42.420696],[125.479265,42.39928],[125.453232,42.392066],[125.450135,42.386072],[125.43949,42.38202],[125.411908,42.381243],[125.406392,42.384462],[125.364972,42.365088],[125.342713,42.358758],[125.335358,42.340487],[125.316487,42.328044],[125.298002,42.325155],[125.285615,42.315099],[125.262872,42.313098]]]]}},{"type":"Feature","properties":{"adcode":220600,"name":"白山市","center":[126.427839,41.942505],"centroid":[127.290795,42.074968],"childrenNum":6,"level":"city","parent":{"adcode":220000},"subFeatureIndex":5,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.551841,41.533953],[126.558132,41.538397],[126.560164,41.548239],[126.577874,41.556056],[126.582132,41.561397],[126.580777,41.574272],[126.575358,41.585458],[126.568003,41.591752],[126.564035,41.608835],[126.570035,41.6217],[126.584455,41.6258],[126.592391,41.624452],[126.596165,41.634675],[126.605262,41.63928],[126.609423,41.652644],[126.606133,41.659999],[126.608262,41.669317],[126.615907,41.675997],[126.625391,41.6774],[126.641844,41.663423],[126.660328,41.661908],[126.670006,41.669542],[126.6882,41.674481],[126.688974,41.684696],[126.703394,41.690476],[126.724781,41.711347],[126.720426,41.720882],[126.698942,41.724528],[126.690813,41.728341],[126.685974,41.737033],[126.696619,41.751667],[126.719652,41.754694],[126.738717,41.744098],[126.753621,41.732043],[126.777041,41.717068],[126.777234,41.706074],[126.781492,41.698163],[126.796493,41.695862],[126.80017,41.703044],[126.794848,41.719929],[126.796396,41.731258],[126.808396,41.748079],[126.816138,41.751274],[126.821655,41.74735],[126.827268,41.732435],[126.835397,41.727332],[126.847591,41.733108],[126.856785,41.760692],[126.874592,41.78182],[126.886398,41.791345],[126.908173,41.79846],[126.931593,41.812911],[126.946884,41.810111],[126.953077,41.803277],[126.948626,41.787871],[126.938367,41.788264],[126.9344,41.77829],[126.9434,41.772518],[126.978046,41.777225],[126.98424,41.767025],[127.01066,41.761533],[127.006111,41.749088],[127.015692,41.744827],[127.050725,41.744659],[127.054983,41.737874],[127.05208,41.724864],[127.055951,41.705793],[127.063306,41.702932],[127.077048,41.705456],[127.083629,41.703381],[127.077919,41.692608],[127.06708,41.689354],[127.056145,41.695133],[127.049177,41.694235],[127.047048,41.686716],[127.038047,41.676839],[127.040757,41.671001],[127.072887,41.658371],[127.078597,41.645738],[127.089145,41.643941],[127.104146,41.647534],[127.109565,41.6381],[127.093694,41.629957],[127.093791,41.625126],[127.104243,41.6217],[127.119243,41.625688],[127.126888,41.622879],[127.129501,41.614172],[127.126695,41.603385],[127.138308,41.600294],[127.160857,41.600912],[127.180696,41.59917],[127.185245,41.59164],[127.180793,41.586863],[127.154954,41.588774],[127.145373,41.583547],[127.146631,41.573991],[127.141598,41.5691],[127.127663,41.568369],[127.122824,41.550601],[127.104243,41.553919],[127.105017,41.545765],[127.120598,41.540197],[127.139856,41.542896],[127.145082,41.540365],[127.142276,41.530072],[127.164728,41.542559],[127.174115,41.541096],[127.180116,41.528834],[127.194922,41.528722],[127.203439,41.534459],[127.214181,41.532603],[127.212342,41.522758],[127.217665,41.520395],[127.230633,41.524052],[127.241375,41.520395],[127.234311,41.509311],[127.249892,41.501432],[127.265376,41.514263],[127.278247,41.514938],[127.288989,41.504528],[127.280279,41.494341],[127.256666,41.489613],[127.255214,41.484096],[127.267505,41.479818],[127.278441,41.479931],[127.294312,41.486517],[127.324023,41.474582],[127.351797,41.465179],[127.359733,41.465461],[127.360314,41.479424],[127.389831,41.483252],[127.405605,41.478185],[127.409767,41.46349],[127.420509,41.460618],[127.429509,41.465179],[127.457574,41.461519],[127.467639,41.465686],[127.465317,41.478411],[127.47151,41.483477],[127.480123,41.482239],[127.478865,41.47537],[127.486317,41.472274],[127.499479,41.478354],[127.513511,41.471091],[127.527931,41.468726],[127.539351,41.477059],[127.54748,41.476947],[127.545738,41.466418],[127.547673,41.449805],[127.558609,41.4373],[127.568287,41.431497],[127.593449,41.426708],[127.61774,41.432737],[127.622675,41.430539],[127.636805,41.413691],[127.653741,41.406872],[127.665548,41.409634],[127.655289,41.418256],[127.654128,41.428173],[127.667193,41.424285],[127.677064,41.415608],[127.684322,41.422933],[127.692645,41.424173],[127.706581,41.420735],[127.724775,41.420454],[127.742679,41.427102],[127.755647,41.427722],[127.769873,41.421975],[127.779454,41.426595],[127.787389,41.424229],[127.790873,41.40845],[127.795906,41.409916],[127.795615,41.418876],[127.807229,41.424905],[127.8201,41.420848],[127.827165,41.408394],[127.834907,41.409127],[127.833358,41.417411],[127.838294,41.421355],[127.854069,41.421074],[127.862488,41.40597],[127.872069,41.404618],[127.872263,41.440342],[127.87894,41.44727],[127.886973,41.447552],[127.886489,41.438088],[127.891231,41.434258],[127.900812,41.436905],[127.908941,41.430089],[127.915231,41.436962],[127.931006,41.444566],[127.931683,41.454367],[127.94049,41.456169],[127.941168,41.450086],[127.951716,41.450312],[127.947168,41.440398],[127.966813,41.43899],[127.983072,41.430934],[127.981911,41.42113],[127.991782,41.422088],[127.999717,41.441412],[128.010169,41.448228],[128.017912,41.446031],[128.014718,41.437919],[128.00504,41.428905],[128.01975,41.427441],[128.018008,41.416847],[128.029428,41.414424],[128.035815,41.421919],[128.046364,41.415889],[128.041331,41.409183],[128.040751,41.393288],[128.059042,41.397685],[128.073171,41.393401],[128.077816,41.381054],[128.085946,41.382858],[128.082655,41.39233],[128.101623,41.393232],[128.101236,41.398812],[128.111011,41.39295],[128.108495,41.38579],[128.094946,41.381843],[128.090591,41.374795],[128.103946,41.371807],[128.114204,41.364475],[128.124076,41.371976],[128.131334,41.383084],[128.144108,41.382407],[128.160851,41.38844],[128.170044,41.404561],[128.189787,41.41403],[128.207981,41.411663],[128.212626,41.429131],[128.226852,41.446087],[128.240595,41.44789],[128.244369,41.455155],[128.233917,41.456619],[128.233046,41.46287],[128.243401,41.477679],[128.243692,41.490345],[128.238175,41.495973],[128.242917,41.501883],[128.258886,41.506947],[128.283564,41.526415],[128.28337,41.534122],[128.300693,41.539409],[128.292467,41.55032],[128.299822,41.559204],[128.296338,41.563084],[128.317919,41.575565],[128.313371,41.577532],[128.317435,41.592651],[128.312209,41.596698],[128.315403,41.605183],[128.302145,41.605801],[128.306596,41.612037],[128.293822,41.615015],[128.305822,41.62097],[128.303983,41.630125],[128.289564,41.626362],[128.281338,41.635686],[128.280854,41.647029],[128.273983,41.652083],[128.278725,41.658539],[128.269241,41.658202],[128.269821,41.668026],[128.259563,41.668475],[128.26024,41.674257],[128.247756,41.676109],[128.248434,41.681553],[128.238272,41.68391],[128.223175,41.682732],[128.219401,41.68969],[128.20982,41.688624],[128.200723,41.696592],[128.201981,41.701698],[128.190464,41.710842],[128.170044,41.714881],[128.152915,41.739164],[128.146915,41.754189],[128.150399,41.764447],[128.144495,41.767081],[128.147592,41.780867],[128.141205,41.785462],[128.133753,41.783221],[128.112462,41.794595],[128.109462,41.807871],[128.112753,41.813303],[128.108204,41.821256],[128.103752,41.842924],[128.107236,41.849641],[128.112269,41.887637],[128.115462,41.895748],[128.107043,41.905815],[128.104236,41.923261],[128.106753,41.950037],[128.096881,41.952943],[128.070848,41.971717],[128.047332,41.986185],[128.034073,42.000315],[128.064558,42.011538],[128.039202,42.029905],[128.036589,42.042853],[128.024299,42.071307],[128.015299,42.087426],[127.991395,42.11547],[127.987524,42.125224],[127.963717,42.140326],[127.96091,42.145619],[127.968362,42.16467],[127.960523,42.172412],[127.952684,42.172412],[127.943684,42.181433],[127.927812,42.188672],[127.915425,42.204092],[127.910296,42.221067],[127.912618,42.231083],[127.907586,42.243601],[127.900812,42.239985],[127.885327,42.2431],[127.880682,42.250554],[127.877682,42.266905],[127.868391,42.276525],[127.862004,42.274245],[127.854552,42.283363],[127.828907,42.280806],[127.810713,42.29676],[127.80839,42.307041],[127.817777,42.323489],[127.840617,42.326711],[127.845165,42.330711],[127.858617,42.327655],[127.887747,42.3301],[127.890069,42.338321],[127.903521,42.34904],[127.903521,42.366865],[127.92249,42.36903],[127.943781,42.367697],[127.9522,42.374526],[127.959942,42.392954],[127.983362,42.403663],[127.998169,42.413706],[128.007169,42.414205],[128.016266,42.427851],[128.014137,42.436836],[128.018589,42.450754],[128.035138,42.465501],[128.043557,42.480134],[128.03146,42.496813],[128.034267,42.50058],[128.03388,42.528662],[128.024105,42.529825],[128.028073,42.541564],[128.020234,42.541619],[128.027783,42.561215],[128.021395,42.565588],[128.012492,42.563983],[128.015879,42.56996],[128.008621,42.578537],[127.995846,42.581967],[127.995169,42.588551],[127.987137,42.59884],[127.994588,42.600832],[127.981427,42.610511],[127.967201,42.612004],[127.973201,42.622179],[127.959168,42.620962],[127.959749,42.630583],[127.953555,42.641473],[127.964588,42.644348],[127.965942,42.653191],[127.960329,42.657833],[127.938458,42.663027],[127.923167,42.67336],[127.904489,42.670155],[127.886005,42.674796],[127.882037,42.684795],[127.885908,42.689269],[127.895586,42.684298],[127.89936,42.689932],[127.890457,42.695952],[127.875263,42.696118],[127.862101,42.719088],[127.850391,42.72494],[127.846907,42.730736],[127.857553,42.735814],[127.86723,42.730349],[127.874005,42.734655],[127.865682,42.740671],[127.869359,42.751431],[127.855811,42.753142],[127.85223,42.757997],[127.834423,42.762576],[127.833165,42.775871],[127.837617,42.788335],[127.820293,42.793022],[127.809358,42.799749],[127.808874,42.807026],[127.800551,42.812649],[127.777905,42.814909],[127.759131,42.814634],[127.738324,42.821799],[127.725356,42.821854],[127.717613,42.81728],[127.710936,42.804215],[127.716742,42.801182],[127.727291,42.803663],[127.726517,42.799087],[127.709387,42.789107],[127.714226,42.780173],[127.705613,42.774437],[127.69671,42.77576],[127.693226,42.771182],[127.677645,42.76539],[127.67029,42.755404],[127.656934,42.760921],[127.64716,42.751045],[127.650934,42.744975],[127.641353,42.732226],[127.652579,42.726596],[127.643386,42.713954],[127.620837,42.711359],[127.598965,42.693301],[127.597707,42.680818],[127.58861,42.669713],[127.573126,42.668608],[127.567513,42.657501],[127.558222,42.656728],[127.552222,42.648327],[127.541577,42.641363],[127.534512,42.641639],[127.510124,42.633789],[127.486607,42.631025],[127.485349,42.614492],[127.498221,42.611561],[127.497543,42.602215],[127.48564,42.598343],[127.467542,42.59779],[127.463671,42.592036],[127.470252,42.584734],[127.468026,42.566805],[127.458155,42.561492],[127.432412,42.573446],[127.40425,42.569628],[127.405992,42.573501],[127.384992,42.57743],[127.370572,42.584014],[127.351991,42.587943],[127.352475,42.601993],[127.338829,42.605644],[127.319571,42.640312],[127.305538,42.632297],[127.287925,42.63202],[127.279602,42.626547],[127.280957,42.617423],[127.240214,42.599449],[127.221923,42.605644],[127.211568,42.602325],[127.204213,42.608354],[127.211665,42.622123],[127.219213,42.627708],[127.218246,42.642302],[127.225214,42.656065],[127.246988,42.678332],[127.251246,42.690816],[127.253569,42.708984],[127.243311,42.71837],[127.234988,42.720413],[127.226762,42.738242],[127.211374,42.748783],[127.210987,42.754245],[127.200729,42.764949],[127.202471,42.784805],[127.19289,42.803333],[127.193761,42.823563],[127.201697,42.835742],[127.191729,42.843456],[127.181374,42.831664],[127.180987,42.825216],[127.169373,42.813145],[127.161728,42.810941],[127.160083,42.804049],[127.149631,42.805538],[127.135792,42.801624],[127.130566,42.807578],[127.12505,42.804876],[127.104049,42.803167],[127.094759,42.799528],[127.072693,42.813145],[127.053145,42.804325],[127.041338,42.80653],[127.016853,42.788997],[126.99953,42.793739],[126.990046,42.804876],[126.979981,42.803608],[126.972142,42.808074],[126.950271,42.811492],[126.947368,42.805648],[126.913593,42.804711],[126.907883,42.809066],[126.897334,42.802616],[126.89927,42.787011],[126.879237,42.780228],[126.869075,42.783813],[126.853785,42.78464],[126.832978,42.777801],[126.822139,42.77747],[126.818655,42.768259],[126.813042,42.766162],[126.813138,42.753418],[126.801719,42.740946],[126.800461,42.733109],[126.810816,42.722014],[126.812461,42.709205],[126.807235,42.702579],[126.796977,42.701806],[126.784492,42.691313],[126.774234,42.671536],[126.760008,42.667337],[126.750427,42.67231],[126.740265,42.665514],[126.741233,42.656341],[126.73291,42.644016],[126.717426,42.626547],[126.715394,42.613497],[126.705135,42.606142],[126.687135,42.607303],[126.683458,42.596462],[126.679199,42.599338],[126.67136,42.593364],[126.651134,42.594581],[126.639134,42.583793],[126.629746,42.584623],[126.622779,42.576434],[126.632553,42.564592],[126.63323,42.541176],[126.640489,42.532594],[126.635069,42.522072],[126.63865,42.506452],[126.629553,42.488779],[126.633134,42.480411],[126.629069,42.470545],[126.611649,42.46029],[126.604294,42.464171],[126.584649,42.463007],[126.578261,42.465668],[126.573519,42.456631],[126.553874,42.443768],[126.547099,42.435727],[126.526099,42.423969],[126.510905,42.410654],[126.512743,42.401666],[126.519421,42.397948],[126.515647,42.382908],[126.517776,42.372583],[126.534421,42.357814],[126.539938,42.346041],[126.534518,42.328544],[126.52755,42.323378],[126.526195,42.315377],[126.530454,42.30254],[126.522615,42.294536],[126.52155,42.281751],[126.526195,42.268629],[126.521744,42.262289],[126.531615,42.24972],[126.540712,42.24883],[126.546035,42.242711],[126.573229,42.235145],[126.580003,42.228134],[126.579519,42.214556],[126.575551,42.20554],[126.548164,42.192959],[126.547486,42.184663],[126.53297,42.183995],[126.523389,42.1914],[126.50655,42.196633],[126.490485,42.19062],[126.484291,42.178872],[126.469968,42.176756],[126.467549,42.158209],[126.455839,42.150744],[126.457097,42.144839],[126.44829,42.140493],[126.451968,42.126561],[126.428161,42.120654],[126.421096,42.111066],[126.403676,42.105993],[126.391385,42.097128],[126.393708,42.08553],[126.401741,42.079116],[126.397386,42.063888],[126.381127,42.062326],[126.368643,42.063888],[126.339126,42.04715],[126.329835,42.045476],[126.324706,42.038277],[126.305544,42.038779],[126.292576,42.03677],[126.258124,42.01299],[126.257059,42.001097],[126.249317,41.997299],[126.236736,41.99864],[126.221349,41.982666],[126.207026,41.978756],[126.197542,41.971382],[126.174218,41.977918],[126.158541,41.973784],[126.145185,41.964175],[126.133476,41.966074],[126.120798,41.953558],[126.123024,41.948751],[126.137347,41.943442],[126.141314,41.935728],[126.151476,41.93338],[126.178283,41.915545],[126.188348,41.900502],[126.2078,41.90548],[126.219026,41.890658],[126.225704,41.893958],[126.238962,41.888028],[126.24293,41.881483],[126.238769,41.87393],[126.222994,41.864809],[126.217671,41.854175],[126.230155,41.842588],[126.246317,41.848746],[126.259479,41.844212],[126.274382,41.842588],[126.277963,41.832175],[126.285996,41.829935],[126.290351,41.835366],[126.298673,41.828647],[126.299641,41.820752],[126.308835,41.815712],[126.30777,41.807422],[126.321222,41.800981],[126.317351,41.794539],[126.319771,41.786751],[126.309028,41.776216],[126.315029,41.771509],[126.312996,41.760916],[126.302738,41.756544],[126.304964,41.746565],[126.299157,41.740678],[126.288318,41.74264],[126.285899,41.73737],[126.293931,41.729407],[126.286286,41.716788],[126.289383,41.712805],[126.280963,41.696031],[126.29606,41.694291],[126.295867,41.684976],[126.305157,41.675828],[126.301383,41.670833],[126.317158,41.665949],[126.317642,41.654553],[126.335158,41.663704],[126.351997,41.664771],[126.359933,41.661458],[126.37745,41.6655],[126.391869,41.665556],[126.40387,41.671058],[126.41587,41.666623],[126.425451,41.658483],[126.417128,41.653318],[126.417709,41.643885],[126.408225,41.626531],[126.402128,41.607767],[126.408031,41.600406],[126.405031,41.584839],[126.383837,41.574047],[126.38045,41.567469],[126.399611,41.540984],[126.412676,41.533559],[126.399321,41.516795],[126.413354,41.515219],[126.428451,41.509761],[126.437161,41.512743],[126.440548,41.520058],[126.464645,41.520002],[126.468129,41.517807],[126.468516,41.500813],[126.476162,41.503627],[126.495614,41.504415],[126.504614,41.50177],[126.525324,41.536034],[126.551841,41.533953]]]]}},{"type":"Feature","properties":{"adcode":220700,"name":"松原市","center":[124.823608,45.118243],"centroid":[124.48612,44.807335],"childrenNum":5,"level":"city","parent":{"adcode":220000},"subFeatureIndex":6,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.125462,44.509276],[123.136107,44.502416],[123.136785,44.485639],[123.125946,44.477007],[123.137075,44.461831],[123.124107,44.45797],[123.142108,44.428141],[123.136204,44.406028],[123.114526,44.402485],[123.128365,44.36688],[123.12343,44.364301],[123.148688,44.361615],[123.169495,44.35044],[123.173754,44.345227],[123.19698,44.345012],[123.24082,44.295068],[123.277111,44.252563],[123.286692,44.214874],[123.293079,44.214174],[123.299757,44.195213],[123.316693,44.189879],[123.323661,44.179802],[123.386372,44.161854],[123.382307,44.15091],[123.384533,44.141744],[123.362468,44.1336],[123.354242,44.106682],[123.348435,44.097023],[123.350661,44.092652],[123.328403,44.083854],[123.328499,44.070952],[123.358694,44.075001],[123.399243,44.066633],[123.400114,44.07187],[123.409502,44.076998],[123.424986,44.075217],[123.437083,44.077862],[123.449664,44.07689],[123.478503,44.083638],[123.503085,44.080399],[123.547989,44.077916],[123.55186,44.081425],[123.571796,44.087956],[123.589893,44.088334],[123.6107,44.081425],[123.635669,44.078132],[123.641862,44.079374],[123.652411,44.089467],[123.660444,44.092544],[123.66354,44.107815],[123.683186,44.109865],[123.687928,44.098588],[123.699445,44.090223],[123.695574,44.083422],[123.718703,44.062907],[123.721219,44.050702],[123.732639,44.039522],[123.745607,44.042601],[123.756736,44.040926],[123.773576,44.022882],[123.766221,44.016614],[123.76864,44.003643],[123.818577,43.986236],[123.857578,43.999859],[123.872675,43.9984],[123.901321,44.000454],[123.951741,43.998616],[124.015711,44.004508],[124.06226,44.009102],[124.0761,44.021045],[124.110939,44.012885],[124.125262,44.01202],[124.134069,44.00667],[124.13794,44.009858],[124.157586,44.013695],[124.165521,44.00494],[124.164747,43.997697],[124.181005,43.995048],[124.191264,43.98829],[124.198329,43.993805],[124.212555,43.998238],[124.218555,43.992183],[124.229297,43.994508],[124.231233,43.990129],[124.251072,43.992291],[124.253588,43.999211],[124.266459,44.000184],[124.270137,43.995751],[124.28717,43.991859],[124.300815,43.993859],[124.308073,43.990994],[124.317848,44.003265],[124.314073,44.008291],[124.326364,44.008615],[124.352397,44.014884],[124.3523,44.017694],[124.397592,44.028177],[124.397689,44.03936],[124.402721,44.030068],[124.41956,44.038279],[124.424496,44.036929],[124.435625,44.051296],[124.436496,44.060693],[124.44598,44.061233],[124.461948,44.073057],[124.469497,44.070628],[124.471432,44.07878],[124.486239,44.091302],[124.505788,44.100585],[124.50124,44.10911],[124.516434,44.116609],[124.551176,44.120655],[124.562015,44.116286],[124.583693,44.121626],[124.626953,44.125402],[124.655308,44.122004],[124.65376,44.12756],[124.686761,44.142337],[124.721794,44.151018],[124.731762,44.148699],[124.736117,44.159159],[124.729729,44.176245],[124.724697,44.17797],[124.735052,44.183682],[124.749182,44.199792],[124.757698,44.202863],[124.762827,44.213905],[124.761569,44.225322],[124.751794,44.220475],[124.751891,44.210134],[124.734375,44.201408],[124.727213,44.201031],[124.717148,44.192411],[124.712213,44.200977],[124.698471,44.206849],[124.687922,44.200546],[124.679502,44.203832],[124.67147,44.198984],[124.669341,44.209488],[124.658986,44.204209],[124.655986,44.207334],[124.63634,44.20394],[124.625114,44.208195],[124.622017,44.217944],[124.617275,44.211589],[124.605081,44.236683],[124.600145,44.253262],[124.604016,44.272205],[124.620372,44.283234],[124.61321,44.288882],[124.627727,44.297434],[124.628501,44.305931],[124.618339,44.322008],[124.620565,44.324104],[124.607113,44.337596],[124.607404,44.344314],[124.622114,44.34915],[124.624823,44.359251],[124.611662,44.369781],[124.605178,44.367686],[124.601113,44.376119],[124.60963,44.375367],[124.599855,44.389599],[124.590468,44.387504],[124.584855,44.397062],[124.573532,44.394216],[124.56337,44.413167],[124.555918,44.411503],[124.550789,44.424063],[124.562693,44.428248],[124.568983,44.43619],[124.577693,44.435117],[124.585629,44.428409],[124.600726,44.434366],[124.60421,44.430931],[124.612533,44.43796],[124.617856,44.434044],[124.625791,44.438336],[124.635082,44.434366],[124.643308,44.448636],[124.621146,44.45856],[124.603145,44.471216],[124.595307,44.46698],[124.581371,44.476685],[124.580887,44.483923],[124.592597,44.491268],[124.564822,44.507079],[124.559789,44.504292],[124.545467,44.514367],[124.552628,44.524332],[124.561531,44.529422],[124.574112,44.529422],[124.570822,44.540188],[124.57508,44.545062],[124.569661,44.553202],[124.552434,44.569371],[124.57508,44.583983],[124.582145,44.593616],[124.595113,44.602659],[124.601597,44.601535],[124.628404,44.620258],[124.618146,44.62951],[124.634308,44.640686],[124.667115,44.648599],[124.689277,44.652608],[124.699632,44.656831],[124.721697,44.660145],[124.746762,44.649668],[124.766795,44.659878],[124.778698,44.66907],[124.781311,44.680292],[124.80357,44.663833],[124.819151,44.672276],[124.826409,44.66597],[124.825538,44.67591],[124.8297,44.683284],[124.807248,44.704117],[124.868894,44.733057],[124.877895,44.726757],[124.886314,44.730014],[124.897153,44.726063],[124.95851,44.754886],[124.963542,44.750083],[124.985317,44.759582],[124.994994,44.759902],[125.01164,44.7782],[125.02635,44.788014],[125.031673,44.776173],[125.03835,44.777934],[125.042318,44.770785],[125.0699,44.776813],[125.074738,44.772279],[125.0879,44.772546],[125.107352,44.765344],[125.125353,44.769985],[125.136772,44.77916],[125.133385,44.783321],[125.153515,44.796653],[125.156515,44.790254],[125.171999,44.786521],[125.189612,44.793987],[125.215065,44.800545],[125.222807,44.806144],[125.229291,44.803638],[125.239936,44.808703],[125.243904,44.802838],[125.262485,44.796013],[125.288808,44.804064],[125.313099,44.814247],[125.303422,44.823522],[125.292196,44.826773],[125.285034,44.837537],[125.274776,44.832262],[125.253485,44.832155],[125.231904,44.84505],[125.232,44.853734],[125.247194,44.860073],[125.251646,44.857196],[125.266743,44.858102],[125.283099,44.850964],[125.296357,44.852668],[125.307293,44.86199],[125.329745,44.867369],[125.340294,44.879724],[125.354133,44.880363],[125.36952,44.884516],[125.391489,44.881321],[125.384037,44.873547],[125.391392,44.871736],[125.412586,44.874559],[125.421005,44.890585],[125.436877,44.897186],[125.449748,44.884675],[125.469297,44.884143],[125.48091,44.872535],[125.493104,44.874985],[125.496104,44.880948],[125.505588,44.883877],[125.531331,44.884303],[125.54488,44.890159],[125.569751,44.891064],[125.577203,44.893726],[125.590558,44.885208],[125.600623,44.885687],[125.612914,44.900752],[125.641753,44.917995],[125.641076,44.930339],[125.654044,44.93901],[125.665657,44.935712],[125.682206,44.937946],[125.696625,44.936935],[125.719949,44.93901],[125.738143,44.923742],[125.742304,44.912514],[125.749175,44.905702],[125.751982,44.893353],[125.760595,44.887604],[125.771144,44.887071],[125.787305,44.87573],[125.781789,44.863641],[125.791563,44.857516],[125.801144,44.85693],[125.810822,44.848992],[125.800757,44.840628],[125.809274,44.830237],[125.818661,44.832102],[125.826209,44.840947],[125.851468,44.837324],[125.858049,44.839509],[125.873436,44.836685],[125.87634,44.820057],[125.880888,44.814833],[125.906631,44.807956],[125.916018,44.795213],[125.911083,44.789134],[125.91505,44.775747],[125.920664,44.771426],[125.951439,44.760969],[125.977665,44.773666],[125.985214,44.772012],[125.997407,44.775747],[126.00873,44.783427],[126.02644,44.781934],[126.049667,44.786787],[126.043957,44.800652],[126.037763,44.804011],[126.049667,44.826559],[126.043473,44.829544],[126.051409,44.833487],[126.055957,44.847767],[126.038247,44.84798],[126.041151,44.862363],[126.050441,44.862097],[126.061764,44.883398],[126.056828,44.881747],[126.060893,44.902722],[126.086636,44.897931],[126.098152,44.891969],[126.10812,44.924274],[126.147411,44.926455],[126.145185,44.902668],[126.153315,44.905276],[126.164347,44.902136],[126.168218,44.912408],[126.179154,44.908523],[126.192509,44.917303],[126.186993,44.933158],[126.179832,44.938531],[126.171606,44.938158],[126.170541,44.950019],[126.156895,44.953901],[126.146831,44.962675],[126.144605,44.9816],[126.16096,44.985852],[126.188154,45.000891],[126.190187,45.032019],[126.177122,45.038497],[126.173735,45.048638],[126.18138,45.071887],[126.177606,45.07332],[126.174412,45.088919],[126.19638,45.103242],[126.185445,45.115121],[126.183896,45.123552],[126.17538,45.123817],[126.169864,45.134632],[126.166089,45.133519],[126.154282,45.142689],[126.13425,45.148254],[126.12854,45.144226],[126.116249,45.150586],[126.114023,45.142795],[126.095345,45.147141],[126.085377,45.162668],[126.067377,45.166853],[126.059538,45.165635],[126.050731,45.170191],[126.029924,45.169608],[126.022957,45.162085],[126.013569,45.165582],[125.996246,45.16378],[125.996246,45.179567],[125.987343,45.175965],[125.982214,45.186982],[125.993246,45.189895],[125.985988,45.195508],[125.970987,45.191695],[125.957535,45.201333],[125.919793,45.196038],[125.91147,45.197997],[125.903244,45.209804],[125.890372,45.214092],[125.888437,45.221502],[125.871888,45.221184],[125.869082,45.227377],[125.857178,45.22907],[125.849629,45.238966],[125.823693,45.238014],[125.812467,45.249442],[125.814887,45.267743],[125.805209,45.269753],[125.787789,45.279218],[125.788757,45.287361],[125.77424,45.29307],[125.759917,45.290744],[125.758272,45.282708],[125.751885,45.287255],[125.753143,45.297933],[125.748885,45.307341],[125.742594,45.309085],[125.731272,45.322982],[125.719562,45.32388],[125.726239,45.336506],[125.706787,45.341366],[125.695754,45.350713],[125.703206,45.35573],[125.696335,45.365445],[125.703497,45.37954],[125.7124,45.389409],[125.716755,45.403181],[125.715981,45.421749],[125.707174,45.424228],[125.703787,45.437728],[125.70669,45.446005],[125.697109,45.453966],[125.709013,45.455705],[125.7124,45.463084],[125.698948,45.464191],[125.699626,45.472517],[125.711432,45.477049],[125.709787,45.484372],[125.69169,45.487744],[125.701948,45.501808],[125.687916,45.514025],[125.660044,45.507074],[125.646882,45.511024],[125.637301,45.519923],[125.628301,45.521976],[125.616688,45.517974],[125.593171,45.496962],[125.570042,45.48885],[125.549815,45.486374],[125.497362,45.469355],[125.489136,45.471094],[125.480426,45.48648],[125.466297,45.488692],[125.442393,45.484794],[125.42507,45.485584],[125.424102,45.474994],[125.43349,45.467247],[125.433683,45.458709],[125.398553,45.416844],[125.369907,45.394844],[125.362262,45.392681],[125.347939,45.395477],[125.341358,45.400068],[125.327616,45.417055],[125.317164,45.422857],[125.306615,45.417582],[125.308454,45.409037],[125.301583,45.401967],[125.289099,45.406927],[125.276131,45.416686],[125.248936,45.417688],[125.225323,45.41178],[125.208871,45.404131],[125.189419,45.399329],[125.176547,45.40107],[125.156999,45.410831],[125.137643,45.409617],[125.113159,45.389989],[125.091674,45.382654],[125.069706,45.384606],[125.066125,45.399013],[125.088674,45.411042],[125.091094,45.417741],[125.084222,45.423173],[125.064383,45.421907],[125.049867,45.4285],[125.043673,45.445584],[125.035737,45.459395],[125.030415,45.48943],[125.025576,45.493328],[124.983091,45.49238],[124.961219,45.495224],[124.945348,45.502335],[124.94167,45.509444],[124.939445,45.52982],[124.931025,45.538453],[124.91496,45.539453],[124.90896,45.533084],[124.90867,45.519449],[124.898992,45.505705],[124.884572,45.495435],[124.883314,45.478366],[124.890088,45.456601],[124.886411,45.442684],[124.876249,45.438308],[124.866281,45.440628],[124.839861,45.455705],[124.828635,45.455178],[124.805409,45.440681],[124.792925,45.437042],[124.779086,45.441366],[124.777247,45.449907],[124.779957,45.461134],[124.775989,45.468249],[124.760601,45.468407],[124.729633,45.444055],[124.722181,45.443211],[124.690438,45.452437],[124.67447,45.448694],[124.65676,45.437781],[124.639243,45.434564],[124.625211,45.437253],[124.603049,45.449116],[124.585145,45.453807],[124.575467,45.451119],[124.574693,45.443897],[124.583306,45.432402],[124.579629,45.424175],[124.555047,45.411991],[124.544208,45.411938],[124.50724,45.42465],[124.496498,45.435144],[124.480723,45.456232],[124.473852,45.458709],[124.457013,45.457813],[124.427496,45.450434],[124.41385,45.43873],[124.398753,45.440628],[124.383849,45.448852],[124.373785,45.458551],[124.347171,45.445109],[124.334784,45.436093],[124.285621,45.420589],[124.26162,45.402706],[124.224652,45.382812],[124.202393,45.374367],[124.12623,45.336136],[124.115294,45.332756],[124.100681,45.332544],[124.087035,45.32779],[124.07368,45.314158],[124.065357,45.285722],[124.086842,45.263089],[124.079874,45.249283],[124.069422,45.236109],[124.053744,45.231611],[124.025001,45.230817],[123.988033,45.225895],[123.976323,45.225895],[123.942161,45.219544],[123.934515,45.213774],[123.919321,45.209539],[123.882449,45.178613],[123.879159,45.17231],[123.851965,45.151275],[123.83619,45.142159],[123.82748,45.130762],[123.746865,45.064351],[123.720348,45.048745],[123.689573,45.033984],[123.632282,45.009445],[123.611571,44.995046],[123.587377,44.971553],[123.57228,44.963153],[123.556796,44.960548],[123.540924,44.952997],[123.530666,44.951827],[123.519924,44.96629],[123.492536,44.959538],[123.489729,44.952838],[123.497955,44.930977],[123.451987,44.892182],[123.419663,44.855758],[123.429825,44.849312],[123.449857,44.812221],[123.467955,44.793453],[123.4786,44.77836],[123.514795,44.734338],[123.525537,44.727291],[123.523795,44.707001],[123.502117,44.707695],[123.455954,44.696105],[123.418405,44.671528],[123.383856,44.663458],[123.370307,44.662817],[123.348145,44.652822],[123.3315,44.649561],[123.317951,44.639403],[123.295015,44.638066],[123.289789,44.635874],[123.285821,44.624055],[123.27324,44.620205],[123.253594,44.605708],[123.247691,44.606404],[123.244981,44.596934],[123.2204,44.590566],[123.213238,44.574349],[123.201335,44.576972],[123.178979,44.569799],[123.148592,44.554005],[123.142301,44.545008],[123.139398,44.522939],[123.125462,44.509276]]]]}},{"type":"Feature","properties":{"adcode":220800,"name":"白城市","center":[122.841114,45.619026],"centroid":[123.019642,45.354625],"childrenNum":5,"level":"city","parent":{"adcode":220000},"subFeatureIndex":7,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.373785,45.458551],[124.364397,45.481896],[124.356268,45.486796],[124.352494,45.496646],[124.364784,45.505968],[124.368849,45.51292],[124.368946,45.525766],[124.358688,45.544821],[124.34872,45.546926],[124.295396,45.539189],[124.283686,45.541295],[124.264621,45.555082],[124.261233,45.569234],[124.272847,45.584014],[124.267621,45.592113],[124.254169,45.593795],[124.245943,45.591114],[124.234523,45.593427],[124.227555,45.598895],[124.225136,45.608989],[124.236652,45.623023],[124.226587,45.633428],[124.212458,45.63059],[124.18749,45.615928],[124.167747,45.615297],[124.14723,45.623075],[124.129714,45.637578],[124.130198,45.64362],[124.143069,45.648348],[124.149359,45.661584],[124.144714,45.665996],[124.128553,45.665103],[124.121875,45.669251],[124.137456,45.679385],[124.137843,45.687207],[124.125456,45.695186],[124.112004,45.696813],[124.099519,45.703005],[124.098068,45.722472],[124.089068,45.727508],[124.082196,45.736425],[124.054131,45.751318],[124.033034,45.750741],[124.019969,45.747857],[124.014743,45.749954],[124.001969,45.770662],[124.00942,45.781983],[124.034679,45.784917],[124.049776,45.794663],[124.062551,45.796549],[124.06439,45.80226],[124.042712,45.815355],[124.034776,45.8263],[124.036228,45.83808],[124.047163,45.840436],[124.06439,45.839284],[124.071067,45.845199],[124.068648,45.868802],[124.058196,45.889623],[124.03826,45.894016],[124.001872,45.904423],[123.992775,45.910331],[123.971581,45.93192],[123.967516,45.94117],[123.965677,45.96071],[123.970323,45.971104],[123.977097,45.975856],[124.012033,45.982018],[124.020066,45.989015],[124.01513,45.998464],[123.992775,46.007912],[123.99142,46.01741],[124.005356,46.021376],[124.027808,46.016314],[124.038357,46.018036],[124.039711,46.031132],[124.031292,46.048919],[124.009904,46.057524],[124.005356,46.069047],[124.016775,46.076658],[124.018227,46.08432],[124.012614,46.09047],[123.995678,46.098755],[124.000614,46.110009],[124.016679,46.118604],[124.015904,46.124177],[123.995291,46.137821],[123.993839,46.147297],[124.008936,46.154897],[124.010969,46.161716],[124.002065,46.166816],[123.985517,46.163745],[123.97429,46.165515],[123.971968,46.170303],[123.975258,46.183935],[123.961613,46.194443],[123.957064,46.206874],[123.965581,46.213634],[123.97971,46.218677],[123.982323,46.226424],[123.956,46.244667],[123.952225,46.259269],[123.962774,46.269451],[123.966452,46.277086],[123.958322,46.289965],[123.934806,46.285863],[123.929386,46.279683],[123.928225,46.267685],[123.917579,46.256827],[123.904224,46.258801],[123.89745,46.264568],[123.907902,46.278488],[123.902676,46.291003],[123.908289,46.295209],[123.896288,46.30362],[123.866675,46.299518],[123.849836,46.302374],[123.824964,46.285188],[123.804931,46.283785],[123.805028,46.27667],[123.792447,46.273398],[123.787221,46.267581],[123.756736,46.259944],[123.744252,46.264048],[123.725574,46.255684],[123.704187,46.25797],[123.696832,46.254385],[123.679605,46.253657],[123.668186,46.258489],[123.631217,46.253138],[123.604991,46.251787],[123.598894,46.245135],[123.596668,46.234065],[123.574216,46.230218],[123.569473,46.223616],[123.561925,46.236404],[123.544602,46.235053],[123.531827,46.241757],[123.526408,46.24924],[123.499891,46.259528],[123.477923,46.249604],[123.479374,46.244252],[123.464761,46.240146],[123.453148,46.232558],[123.450728,46.237028],[123.43147,46.243836],[123.417631,46.24051],[123.408824,46.244096],[123.40476,46.239626],[123.394308,46.244667],[123.386662,46.227827],[123.373791,46.22294],[123.356178,46.228399],[123.359371,46.230322],[123.347371,46.245863],[123.335951,46.244304],[123.320661,46.254592],[123.32008,46.251423],[123.302176,46.248305],[123.280305,46.253917],[123.27624,46.261347],[123.253594,46.265347],[123.248175,46.273294],[123.223303,46.270541],[123.211884,46.262438],[123.178592,46.248097],[123.144624,46.229491],[123.128462,46.210462],[123.127688,46.174674],[123.102913,46.17202],[123.112397,46.130062],[123.069912,46.123552],[123.045815,46.100058],[122.956974,46.090418],[122.793131,46.073217],[122.828551,45.912266],[122.826712,45.897991],[122.817712,45.881254],[122.800292,45.856714],[122.772808,45.856557],[122.76642,45.845356],[122.752388,45.834834],[122.772033,45.806398],[122.771356,45.801474],[122.789937,45.774803],[122.792453,45.766259],[122.77484,45.75352],[122.771162,45.746231],[122.75113,45.73611],[122.761001,45.722262],[122.746968,45.720688],[122.748613,45.712608],[122.742033,45.705157],[122.671482,45.700644],[122.669063,45.716596],[122.663644,45.721213],[122.665289,45.729973],[122.649611,45.732281],[122.648837,45.74513],[122.640611,45.771134],[122.611578,45.774908],[122.603448,45.778105],[122.567157,45.806817],[122.566867,45.814464],[122.556125,45.821587],[122.544415,45.815878],[122.533382,45.80556],[122.530769,45.798278],[122.518285,45.784708],[122.504349,45.787747],[122.501736,45.806136],[122.503285,45.821115],[122.495833,45.858232],[122.475413,45.877539],[122.445993,45.916919],[122.374959,45.920682],[122.362087,45.917441],[122.360345,45.903325],[122.362474,45.887008],[122.368958,45.862104],[122.37312,45.856139],[122.355216,45.855196],[122.337409,45.859907],[122.335958,45.849858],[122.321248,45.84431],[122.32086,45.830436],[122.302957,45.829913],[122.311957,45.825985],[122.299086,45.818287],[122.301602,45.812998],[122.281859,45.809331],[122.285634,45.802207],[122.274601,45.805246],[122.262698,45.794978],[122.255246,45.796759],[122.245471,45.810484],[122.243729,45.825514],[122.236471,45.831483],[122.219342,45.830122],[122.216245,45.845042],[122.204825,45.850277],[122.200954,45.856871],[122.190309,45.854621],[122.185663,45.859279],[122.155663,45.866605],[122.147146,45.864825],[122.138146,45.873145],[122.115984,45.873982],[122.101661,45.881306],[122.091596,45.881986],[122.086951,45.894644],[122.082403,45.896474],[122.085306,45.909913],[122.081338,45.920944],[122.071177,45.930614],[122.055208,45.932965],[122.043402,45.94326],[122.039724,45.959247],[122.016885,45.961546],[122.00653,45.966717],[122.004594,45.984629],[121.994433,45.982018],[121.987949,45.971679],[121.961335,45.981078],[121.962109,45.986352],[121.944399,45.989328],[121.928044,45.988336],[121.922915,45.997159],[121.923592,46.004884],[121.894753,46.008225],[121.893785,46.002275],[121.864074,46.002431],[121.858848,46.01026],[121.848009,46.014905],[121.842977,46.024454],[121.823912,46.023097],[121.812879,46.025863],[121.814621,46.02148],[121.796815,46.010626],[121.786556,46.011043],[121.785395,46.003266],[121.764588,46.000656],[121.759072,45.993609],[121.767685,45.984681],[121.783846,45.986561],[121.809299,45.961546],[121.806395,45.957001],[121.811525,45.94744],[121.803782,45.942058],[121.811041,45.937564],[121.807557,45.9326],[121.818105,45.927791],[121.821396,45.918382],[121.805718,45.900605],[121.808718,45.887792],[121.817138,45.875604],[121.804073,45.873145],[121.785976,45.860848],[121.778911,45.848392],[121.769911,45.843524],[121.764201,45.831431],[121.772911,45.826666],[121.767685,45.819283],[121.75762,45.818968],[121.751039,45.804984],[121.754233,45.794873],[121.741652,45.791886],[121.740394,45.786751],[121.72249,45.785337],[121.688231,45.763219],[121.675457,45.769457],[121.656972,45.770191],[121.644391,45.752471],[121.648843,45.747333],[121.669263,45.739152],[121.664521,45.729711],[121.670521,45.723364],[121.688909,45.712661],[121.71407,45.701798],[121.733039,45.699437],[121.756846,45.690724],[121.782105,45.693768],[121.811331,45.686945],[121.808525,45.693926],[121.812299,45.70479],[121.852558,45.717855],[121.867074,45.719744],[121.894172,45.713605],[121.899204,45.718012],[121.933947,45.710614],[121.944786,45.71413],[121.970142,45.692771],[121.994045,45.637631],[122.000046,45.633795],[122.003336,45.623286],[121.995497,45.605257],[121.996078,45.598948],[121.979819,45.595636],[121.966464,45.596161],[121.972561,45.568971],[121.993368,45.552872],[121.993852,45.539821],[122.003336,45.524345],[122.002465,45.507864],[122.023466,45.49022],[122.033434,45.487428],[122.063338,45.472939],[122.08637,45.46672],[122.12121,45.453438],[122.157211,45.446269],[122.164566,45.443264],[122.168727,45.430135],[122.179857,45.409564],[122.146856,45.374525],[122.143662,45.35441],[122.144049,45.322454],[122.147243,45.295607],[122.187696,45.28625],[122.238987,45.27631],[122.238503,45.263248],[122.241794,45.247749],[122.230084,45.206839],[122.216438,45.193919],[122.192631,45.180679],[122.143275,45.18301],[122.126823,45.159064],[122.109887,45.142053],[122.118694,45.0999],[122.119468,45.068597],[122.108242,45.049913],[122.098951,45.021556],[122.074564,45.006629],[122.086758,44.952944],[122.079112,44.914217],[122.063725,44.911929],[122.049595,44.912833],[122.04495,44.899475],[122.05395,44.896973],[122.056273,44.882812],[122.070499,44.882067],[122.074854,44.860605],[122.084435,44.851603],[122.082596,44.839562],[122.089371,44.833274],[122.098177,44.818778],[122.100113,44.809076],[122.092371,44.799532],[122.099919,44.782361],[122.115016,44.7766],[122.157405,44.777347],[122.169115,44.770252],[122.153824,44.763797],[122.142695,44.753712],[122.127404,44.757767],[122.110661,44.767798],[122.098855,44.7448],[122.102726,44.73626],[122.116274,44.739836],[122.152469,44.743839],[122.161372,44.728252],[122.148888,44.715919],[122.131081,44.710365],[122.117436,44.702141],[122.115597,44.688626],[122.103016,44.673986],[122.113468,44.615444],[122.131952,44.603675],[122.13834,44.588158],[122.131662,44.577507],[122.163405,44.567979],[122.196018,44.559841],[122.202793,44.554647],[122.208116,44.54067],[122.224084,44.526207],[122.22631,44.518439],[122.222632,44.497753],[122.214696,44.493733],[122.228148,44.48017],[122.244891,44.47572],[122.258827,44.476149],[122.272666,44.473468],[122.286118,44.477758],[122.29444,44.410913],[122.291634,44.310287],[122.274214,44.273819],[122.265891,44.267255],[122.271408,44.255684],[122.311957,44.234637],[122.319409,44.232914],[122.367023,44.235929],[122.482671,44.236898],[122.512865,44.250248],[122.559318,44.260205],[122.597351,44.272528],[122.642837,44.283611],[122.675547,44.285762],[122.690064,44.296843],[122.691709,44.303296],[122.703128,44.318943],[122.726645,44.342003],[122.760614,44.369727],[122.777066,44.375958],[122.856132,44.398297],[122.920199,44.4312],[122.940909,44.445418],[122.95078,44.449173],[123.024911,44.492983],[123.040202,44.499093],[123.067106,44.506168],[123.083558,44.506329],[123.111526,44.509705],[123.125462,44.509276],[123.139398,44.522939],[123.142301,44.545008],[123.148592,44.554005],[123.178979,44.569799],[123.201335,44.576972],[123.213238,44.574349],[123.2204,44.590566],[123.244981,44.596934],[123.247691,44.606404],[123.253594,44.605708],[123.27324,44.620205],[123.285821,44.624055],[123.289789,44.635874],[123.295015,44.638066],[123.317951,44.639403],[123.3315,44.649561],[123.348145,44.652822],[123.370307,44.662817],[123.383856,44.663458],[123.418405,44.671528],[123.455954,44.696105],[123.502117,44.707695],[123.523795,44.707001],[123.525537,44.727291],[123.514795,44.734338],[123.4786,44.77836],[123.467955,44.793453],[123.449857,44.812221],[123.429825,44.849312],[123.419663,44.855758],[123.451987,44.892182],[123.497955,44.930977],[123.489729,44.952838],[123.492536,44.959538],[123.519924,44.96629],[123.530666,44.951827],[123.540924,44.952997],[123.556796,44.960548],[123.57228,44.963153],[123.587377,44.971553],[123.611571,44.995046],[123.632282,45.009445],[123.689573,45.033984],[123.720348,45.048745],[123.746865,45.064351],[123.82748,45.130762],[123.83619,45.142159],[123.851965,45.151275],[123.879159,45.17231],[123.882449,45.178613],[123.919321,45.209539],[123.934515,45.213774],[123.942161,45.219544],[123.976323,45.225895],[123.988033,45.225895],[124.025001,45.230817],[124.053744,45.231611],[124.069422,45.236109],[124.079874,45.249283],[124.086842,45.263089],[124.065357,45.285722],[124.07368,45.314158],[124.087035,45.32779],[124.100681,45.332544],[124.115294,45.332756],[124.12623,45.336136],[124.202393,45.374367],[124.224652,45.382812],[124.26162,45.402706],[124.285621,45.420589],[124.334784,45.436093],[124.347171,45.445109],[124.373785,45.458551]]]]}},{"type":"Feature","properties":{"adcode":222400,"name":"延边朝鲜族自治州","center":[129.513228,42.904823],"centroid":[129.13087,43.15089],"childrenNum":8,"level":"city","parent":{"adcode":220000},"subFeatureIndex":8,"acroutes":[100000,220000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.064558,42.011538],[128.090784,42.02276],[128.129689,42.021141],[128.149044,42.024937],[128.290628,42.0265],[128.405793,42.01902],[128.440051,42.023095],[128.447987,42.016507],[128.466181,42.020806],[128.472278,42.015447],[128.496763,42.001879],[128.506247,42.000203],[128.522699,42.003163],[128.538086,42.000762],[128.549409,42.004782],[128.569152,41.996406],[128.598378,42.007351],[128.600798,42.023597],[128.606604,42.030072],[128.621605,42.029961],[128.637863,42.035207],[128.654412,42.030854],[128.658283,42.018685],[128.679574,42.014386],[128.702123,42.020415],[128.723994,42.035542],[128.738027,42.050219],[128.750414,42.050498],[128.766479,42.036937],[128.779254,42.033533],[128.795028,42.042406],[128.816029,42.040007],[128.830449,42.031523],[128.839933,42.029067],[128.85503,42.030463],[128.874095,42.023597],[128.891031,42.026109],[128.898096,42.016731],[128.914838,42.012264],[128.930516,42.014107],[128.955581,42.030742],[128.961775,42.055798],[128.953645,42.065562],[128.95471,42.083745],[128.971259,42.096961],[128.979195,42.092221],[128.990711,42.095177],[129.009486,42.092277],[129.015389,42.102425],[129.027776,42.101421],[129.039293,42.107721],[129.038906,42.115024],[129.046358,42.119539],[129.032131,42.121044],[129.041228,42.124053],[129.041809,42.131688],[129.057777,42.141106],[129.076745,42.142833],[129.069584,42.153697],[129.077616,42.160047],[129.084778,42.156872],[129.091165,42.142889],[129.108682,42.145173],[129.113714,42.140771],[129.133166,42.156371],[129.132876,42.166007],[129.138199,42.16907],[129.160457,42.167121],[129.167135,42.172746],[129.163651,42.18032],[129.166651,42.188226],[129.178555,42.190342],[129.192006,42.198748],[129.19549,42.206486],[129.21591,42.208211],[129.222104,42.217951],[129.203716,42.2204],[129.200523,42.228913],[129.20933,42.237649],[129.199362,42.243935],[129.190071,42.23865],[129.181651,42.242043],[129.1832,42.262067],[129.19191,42.266293],[129.215814,42.265348],[129.225201,42.269852],[129.229169,42.285086],[129.219007,42.283641],[129.206523,42.287644],[129.208652,42.293258],[129.222104,42.296704],[129.240588,42.306486],[129.241556,42.312376],[129.220556,42.310709],[129.206233,42.312765],[129.204491,42.319044],[129.217556,42.323822],[129.229459,42.320933],[129.248814,42.320655],[129.256653,42.323211],[129.260234,42.335655],[129.240105,42.347041],[129.231104,42.356148],[129.244556,42.378911],[129.261686,42.374026],[129.272234,42.380577],[129.275331,42.387515],[129.294299,42.380521],[129.302622,42.387959],[129.321107,42.385572],[129.324591,42.392232],[129.308719,42.403719],[129.318397,42.409711],[129.312203,42.421639],[129.327881,42.421972],[129.331268,42.429515],[129.341236,42.409656],[129.354785,42.409489],[129.349172,42.414205],[129.358753,42.419087],[129.355075,42.430236],[129.342107,42.441494],[129.351204,42.454303],[129.36785,42.459126],[129.37656,42.451309],[129.373463,42.444322],[129.361269,42.433453],[129.368334,42.425522],[129.382463,42.424523],[129.392721,42.428184],[129.393205,42.444045],[129.400947,42.449036],[129.426206,42.436004],[129.433368,42.434895],[129.452336,42.440995],[129.469369,42.422748],[129.478756,42.417423],[129.498885,42.412041],[129.509337,42.396838],[129.521822,42.39201],[129.530725,42.382741],[129.538177,42.368419],[129.546209,42.361535],[129.55821,42.362478],[129.55608,42.374803],[129.578049,42.380299],[129.565274,42.388625],[129.569242,42.399002],[129.584726,42.409545],[129.600404,42.411209],[129.603695,42.429903],[129.61434,42.441716],[129.610759,42.444877],[129.598565,42.443047],[129.590823,42.448537],[129.594307,42.453693],[129.606308,42.454913],[129.616082,42.463949],[129.627502,42.46284],[129.631663,42.454746],[129.646857,42.437834],[129.65218,42.42652],[129.673761,42.431623],[129.704536,42.427241],[129.721472,42.437224],[129.748569,42.471044],[129.749924,42.479746],[129.739376,42.499251],[129.744408,42.514651],[129.742182,42.527998],[129.749827,42.546823],[129.740537,42.563263],[129.739763,42.573833],[129.74615,42.584402],[129.759312,42.587832],[129.76415,42.603708],[129.786312,42.607137],[129.786603,42.61582],[129.761247,42.617589],[129.759312,42.625496],[129.77286,42.634287],[129.769086,42.63987],[129.754473,42.64595],[129.756989,42.653246],[129.770344,42.658109],[129.780215,42.645895],[129.787957,42.643961],[129.792603,42.649046],[129.783699,42.65308],[129.776344,42.669105],[129.796861,42.681867],[129.768989,42.705892],[129.764828,42.722511],[129.781377,42.746299],[129.783699,42.762742],[129.792409,42.773775],[129.806055,42.785578],[129.811184,42.795228],[129.80741,42.813917],[129.814184,42.832491],[129.812926,42.842409],[129.816313,42.851004],[129.833055,42.85833],[129.845636,42.901556],[129.846798,42.918452],[129.851443,42.922524],[129.870605,42.919058],[129.874766,42.9239],[129.859282,42.944806],[129.856282,42.953716],[129.860153,42.967409],[129.869153,42.973787],[129.88425,42.973347],[129.908832,42.969114],[129.91638,42.974447],[129.912509,42.97879],[129.88996,42.981869],[129.888508,42.994566],[129.897122,43.001711],[129.939703,43.012261],[129.954123,43.010998],[129.958188,42.985497],[129.961865,42.97967],[129.97822,42.976426],[130.002221,42.981264],[130.016254,42.969664],[130.027286,42.967519],[130.066481,42.969993],[130.083126,42.975766],[130.108482,42.989729],[130.115353,42.98841],[130.143999,42.976426],[130.144289,42.971368],[130.120869,42.954376],[130.119902,42.945906],[130.127644,42.932593],[130.104514,42.928302],[130.102191,42.922909],[130.116418,42.913279],[130.136063,42.903482],[130.146031,42.902987],[130.170613,42.912289],[130.190065,42.909262],[130.209807,42.902271],[130.229356,42.901776],[130.257808,42.906069],[130.267196,42.902877],[130.277067,42.893904],[130.272906,42.87254],[130.258002,42.860534],[130.254034,42.828799],[130.247937,42.821965],[130.245421,42.799032],[130.257324,42.791974],[130.251905,42.781882],[130.243776,42.780393],[130.25055,42.766935],[130.25026,42.755239],[130.242034,42.738739],[130.25297,42.725768],[130.254808,42.714671],[130.262163,42.708211],[130.290035,42.703076],[130.306197,42.685126],[130.318681,42.662475],[130.333488,42.649654],[130.365618,42.636443],[130.373069,42.630915],[130.382844,42.609405],[130.387876,42.603044],[130.42078,42.616981],[130.446813,42.607248],[130.444297,42.600721],[130.4262,42.585398],[130.42378,42.574663],[130.43549,42.553411],[130.441781,42.549813],[130.460556,42.552857],[130.475556,42.561603],[130.476427,42.569849],[130.459685,42.588164],[130.46433,42.604759],[130.482524,42.626657],[130.496169,42.629477],[130.513492,42.627487],[130.522783,42.6224],[130.528977,42.606639],[130.520267,42.593253],[130.520557,42.583074],[130.529267,42.572007],[130.531396,42.554463],[130.535461,42.54483],[130.556074,42.523568],[130.558881,42.496037],[130.563236,42.492269],[130.585978,42.485343],[130.588881,42.480245],[130.583559,42.472707],[130.574365,42.450255],[130.581139,42.435616],[130.611334,42.433675],[130.640173,42.422693],[130.645689,42.426409],[130.615689,42.443158],[130.601559,42.448869],[130.598172,42.467164],[130.602817,42.470656],[130.600011,42.486063],[130.565558,42.506452],[130.5703,42.520632],[130.566913,42.528773],[130.576494,42.541066],[130.5703,42.554352],[130.581817,42.561215],[130.600785,42.559721],[130.610463,42.554684],[130.611527,42.5652],[130.623528,42.573778],[130.627592,42.586725],[130.633496,42.590819],[130.634754,42.600445],[130.623721,42.614216],[130.623044,42.631523],[130.612592,42.633292],[130.603108,42.642302],[130.601559,42.654075],[130.592075,42.671702],[130.574946,42.680376],[130.569816,42.68717],[130.547848,42.693743],[130.542525,42.699486],[130.528783,42.703794],[130.493653,42.690981],[130.476717,42.692417],[130.466265,42.688109],[130.45891,42.694626],[130.455233,42.70407],[130.442168,42.706003],[130.437136,42.710254],[130.425232,42.706997],[130.414103,42.716604],[130.408877,42.72643],[130.402102,42.729411],[130.429103,42.732116],[130.425813,42.741112],[130.434716,42.751762],[130.464233,42.762411],[130.466265,42.772341],[130.493653,42.775098],[130.50817,42.783978],[130.532364,42.787177],[130.547267,42.798315],[130.55259,42.808074],[130.563332,42.815626],[130.578817,42.818106],[130.588494,42.813421],[130.592849,42.818272],[130.603398,42.819484],[130.633592,42.835632],[130.645593,42.834034],[130.65169,42.841417],[130.667077,42.848194],[130.687207,42.850453],[130.698336,42.846046],[130.708981,42.846376],[130.715465,42.842024],[130.718175,42.832381],[130.726885,42.831334],[130.73995,42.843566],[130.753692,42.84577],[130.769757,42.837671],[130.78379,42.841638],[130.781951,42.851775],[130.789403,42.863453],[130.784467,42.866262],[130.801887,42.879479],[130.826178,42.882562],[130.844759,42.881076],[130.85734,42.869511],[130.859856,42.862131],[130.876405,42.864224],[130.878728,42.859102],[130.890728,42.852932],[130.908051,42.859432],[130.912987,42.870888],[130.923535,42.869456],[130.930019,42.875129],[130.949665,42.877001],[130.964472,42.865601],[130.970956,42.866207],[130.980924,42.85778],[130.996892,42.860644],[131.00415,42.858716],[131.016538,42.864169],[131.024473,42.861525],[131.043345,42.863178],[131.045861,42.866647],[131.038119,42.877166],[131.037732,42.885315],[131.024667,42.894895],[131.024861,42.905519],[131.017602,42.912674],[131.033764,42.928687],[131.044022,42.922634],[131.049248,42.925991],[131.063281,42.918287],[131.072088,42.926321],[131.090282,42.916746],[131.102669,42.918892],[131.115056,42.91504],[131.128218,42.931218],[131.145638,42.936609],[131.146993,42.946566],[131.143509,42.957181],[131.151154,42.968399],[131.128702,42.966969],[131.115153,42.975437],[131.119605,42.980275],[131.113314,42.993522],[131.118444,43.000117],[131.114282,43.015009],[131.102475,43.021437],[131.108766,43.037202],[131.120089,43.050547],[131.125121,43.052029],[131.120476,43.068116],[131.132767,43.072343],[131.160348,43.075581],[131.171768,43.069927],[131.169929,43.091881],[131.165187,43.095558],[131.173413,43.110975],[131.1948,43.117886],[131.212123,43.143387],[131.218511,43.14706],[131.209414,43.168055],[131.22064,43.181864],[131.218898,43.191343],[131.210962,43.19956],[131.201478,43.202682],[131.200026,43.211172],[131.205736,43.221741],[131.20293,43.228367],[131.206123,43.237126],[131.228092,43.249114],[131.232543,43.25393],[131.255189,43.265149],[131.254028,43.281125],[131.257125,43.288838],[131.265835,43.292448],[131.269415,43.299175],[131.265641,43.313775],[131.264964,43.331596],[131.271835,43.345861],[131.272802,43.358428],[131.280351,43.378148],[131.289448,43.383282],[131.299513,43.380988],[131.304158,43.390436],[131.31761,43.397425],[131.312771,43.405232],[131.314029,43.417515],[131.301448,43.423245],[131.30019,43.437434],[131.296126,43.44158],[131.303577,43.455274],[131.314416,43.461219],[131.315578,43.483632],[131.320707,43.489574],[131.319546,43.498733],[131.304352,43.502221],[131.2969,43.494644],[131.306578,43.486467],[131.306094,43.479379],[131.290996,43.477743],[131.294093,43.470381],[131.269609,43.468582],[131.255286,43.475562],[131.235737,43.475835],[131.236511,43.464928],[131.227414,43.457292],[131.204962,43.454728],[131.200897,43.442181],[131.192091,43.439398],[131.177574,43.445509],[131.158703,43.430722],[131.146993,43.430285],[131.142638,43.425974],[131.125605,43.433723],[131.120766,43.447691],[131.106734,43.450691],[131.092024,43.457728],[131.074894,43.472617],[131.068507,43.482487],[131.0477,43.491537],[131.026699,43.508761],[131.001344,43.507562],[130.999699,43.50293],[130.98315,43.492791],[130.960601,43.486303],[130.955085,43.47638],[130.944633,43.476543],[130.921309,43.455383],[130.908051,43.434542],[130.892373,43.433669],[130.859759,43.439071],[130.851533,43.449437],[130.840791,43.454674],[130.836146,43.472999],[130.824242,43.491919],[130.823468,43.502875],[130.808274,43.50511],[130.795596,43.515791],[130.792596,43.52767],[130.77508,43.521349],[130.759305,43.542651],[130.735788,43.545102],[130.727659,43.560187],[130.702207,43.560133],[130.699691,43.568137],[130.68111,43.569117],[130.671142,43.56487],[130.667271,43.583597],[130.656141,43.581093],[130.648399,43.587408],[130.630786,43.583325],[130.623818,43.589421],[130.634947,43.614452],[130.623915,43.62419],[130.607366,43.620219],[130.59672,43.621905],[130.591011,43.613854],[130.585494,43.613963],[130.571075,43.62642],[130.5583,43.630119],[130.546977,43.62332],[130.533622,43.631261],[130.503234,43.639854],[130.48833,43.656112],[130.468394,43.656438],[130.455717,43.647521],[130.443039,43.652251],[130.437039,43.646379],[130.42649,43.651218],[130.412845,43.652686],[130.408296,43.664646],[130.410135,43.66981],[130.399877,43.67443],[130.394457,43.703337],[130.409167,43.717949],[130.415941,43.73652],[130.423393,43.744663],[130.413329,43.756117],[130.391844,43.767351],[130.379747,43.781784],[130.384102,43.788782],[130.37965,43.825766],[130.368037,43.833193],[130.363779,43.845984],[130.373553,43.852216],[130.386328,43.854004],[130.380618,43.86457],[130.371231,43.870962],[130.372586,43.876054],[130.366198,43.890678],[130.374327,43.901995],[130.383328,43.905784],[130.378392,43.912227],[130.368521,43.91515],[130.369489,43.920942],[130.355843,43.940478],[130.337649,43.947025],[130.340552,43.953841],[130.33852,43.964119],[130.345004,43.963686],[130.350133,43.975962],[130.363295,43.990831],[130.359908,43.999211],[130.36736,44.014668],[130.358359,44.023908],[130.365714,44.033309],[130.365521,44.044005],[130.345198,44.050972],[130.343069,44.046166],[130.327294,44.039684],[130.319358,44.039792],[130.308035,44.021531],[130.307648,44.002778],[130.272228,43.980991],[130.274551,43.967796],[130.260034,43.956221],[130.26197,43.949405],[130.23884,43.940478],[130.228388,43.949026],[130.218904,43.94432],[130.207775,43.948485],[130.204968,43.943346],[130.189678,43.940965],[130.189774,43.93485],[130.170129,43.927382],[130.164903,43.918777],[130.153773,43.915637],[130.151838,43.904756],[130.154548,43.891923],[130.145547,43.887374],[130.144096,43.879088],[130.116224,43.878058],[130.110224,43.869933],[130.110805,43.852379],[130.095417,43.842516],[130.085159,43.841865],[130.079836,43.835253],[130.066674,43.83444],[130.051771,43.842299],[130.048093,43.851512],[130.035125,43.854763],[130.027093,43.851837],[130.017125,43.867333],[130.009092,43.888782],[130.014318,43.906001],[130.024093,43.91699],[130.01906,43.938043],[130.025544,43.943833],[130.013641,43.956546],[130.017996,43.961468],[130.003189,43.964497],[130.005995,43.969527],[129.988963,43.982235],[130.003189,43.989155],[129.996027,43.993805],[129.996221,44.001697],[129.985285,43.998832],[129.98064,44.014452],[129.96051,44.020018],[129.95122,44.027204],[129.935735,44.027366],[129.924509,44.015263],[129.918122,44.023044],[129.908541,44.024341],[129.900799,44.01175],[129.892476,44.012074],[129.880379,44.000075],[129.870121,44.002075],[129.867121,44.011966],[129.852798,43.99721],[129.840507,43.996616],[129.823281,43.982613],[129.817765,43.973962],[129.803151,43.964984],[129.785151,43.964605],[129.78128,43.95541],[129.794248,43.939991],[129.790667,43.932848],[129.778086,43.929439],[129.786893,43.917261],[129.786119,43.901616],[129.780215,43.892844],[129.766376,43.89241],[129.752634,43.896634],[129.739763,43.895768],[129.739472,43.8825],[129.724956,43.878058],[129.698536,43.883637],[129.684019,43.877408],[129.668148,43.876813],[129.658761,43.872046],[129.650438,43.873238],[129.649664,43.880658],[129.642212,43.878221],[129.619856,43.879358],[129.609211,43.882229],[129.594791,43.874375],[129.56779,43.871017],[129.550951,43.874429],[129.529467,43.870637],[129.509821,43.873888],[129.498111,43.880279],[129.493079,43.875404],[129.468014,43.874592],[129.468401,43.866791],[129.451175,43.851783],[129.430658,43.844358],[129.417883,43.843599],[129.407238,43.829019],[129.406851,43.819423],[129.38856,43.817525],[129.38827,43.81091],[129.376366,43.808036],[129.370947,43.801637],[129.347914,43.798545],[129.320429,43.811127],[129.310461,43.812212],[129.311139,43.801583],[129.302138,43.79643],[129.290332,43.797027],[129.278041,43.813892],[129.254911,43.819531],[129.241459,43.807602],[129.225491,43.798111],[129.212136,43.784984],[129.213007,43.769304],[129.218717,43.75172],[129.211362,43.747975],[129.221136,43.742438],[129.216491,43.723651],[129.230911,43.714853],[129.231878,43.708552],[129.214265,43.695243],[129.219781,43.682256],[129.213781,43.666223],[129.218136,43.648445],[129.224523,43.64888],[129.232266,43.635503],[129.23033,43.594483],[129.225394,43.588061],[129.210297,43.584632],[129.205749,43.574942],[129.192877,43.576031],[129.185329,43.568736],[129.169458,43.561494],[129.166748,43.570859],[129.148457,43.570913],[129.141199,43.564489],[129.121553,43.555504],[129.110714,43.559207],[129.098327,43.556375],[129.095617,43.548587],[129.073068,43.547444],[129.038519,43.540526],[129.014324,43.523311],[128.983259,43.536604],[128.963226,43.539001],[128.949581,43.554034],[128.934871,43.55594],[128.925774,43.553598],[128.913677,43.543686],[128.877966,43.540145],[128.866643,43.558118],[128.854449,43.557247],[128.850965,43.575759],[128.8349,43.587408],[128.820965,43.637243],[128.813222,43.638929],[128.814674,43.645509],[128.80848,43.653502],[128.806642,43.666766],[128.787383,43.686929],[128.789319,43.695134],[128.783318,43.704261],[128.784286,43.715613],[128.771512,43.720501],[128.768125,43.732448],[128.753124,43.727669],[128.741801,43.734674],[128.743543,43.739343],[128.72864,43.737877],[128.729027,43.745912],[128.73764,43.753077],[128.750414,43.757256],[128.767447,43.758559],[128.759318,43.760893],[128.750318,43.784171],[128.743156,43.793121],[128.742575,43.801745],[128.731833,43.811561],[128.718768,43.817905],[128.726414,43.831783],[128.746543,43.849669],[128.760866,43.857689],[128.72351,43.894685],[128.707833,43.897446],[128.696316,43.903294],[128.692735,43.895118],[128.678993,43.89241],[128.669316,43.897338],[128.661767,43.890244],[128.648218,43.894685],[128.636411,43.891382],[128.63496,43.903348],[128.64096,43.907246],[128.633798,43.910873],[128.631379,43.925759],[128.645218,43.935879],[128.640282,43.947512],[128.624218,43.950325],[128.603991,43.967418],[128.594604,43.981856],[128.584539,43.990831],[128.585023,44.002508],[128.578829,44.012993],[128.575055,44.031581],[128.574958,44.047516],[128.566248,44.050594],[128.558603,44.069278],[128.546409,44.083638],[128.535377,44.091842],[128.537893,44.099721],[128.531796,44.10215],[128.528893,44.112293],[128.519699,44.119253],[128.50286,44.12346],[128.50015,44.132737],[128.492698,44.136567],[128.48273,44.151881],[128.471891,44.157703],[128.468601,44.174844],[128.4626,44.186861],[128.465697,44.196452],[128.460278,44.20227],[128.450116,44.203725],[128.458342,44.212127],[128.457278,44.226399],[128.471214,44.236467],[128.471794,44.247772],[128.465891,44.253908],[128.453891,44.257999],[128.456407,44.267416],[128.470149,44.288775],[128.468214,44.297488],[128.475472,44.310502],[128.472278,44.319804],[128.455342,44.330555],[128.446536,44.339853],[128.453697,44.343185],[128.469955,44.343561],[128.475665,44.347162],[128.475665,44.36269],[128.481665,44.375636],[128.470633,44.392445],[128.461342,44.399854],[128.456987,44.410913],[128.457375,44.421701],[128.462794,44.433024],[128.4536,44.438014],[128.436664,44.452821],[128.427761,44.473468],[128.388373,44.48982],[128.381695,44.505042],[128.372985,44.514259],[128.346662,44.509383],[128.338823,44.505578],[128.329339,44.495395],[128.296919,44.482422],[128.29208,44.467302],[128.271563,44.460169],[128.259756,44.45856],[128.25395,44.446652],[128.228111,44.445471],[128.211755,44.432112],[128.210207,44.424224],[128.197626,44.397438],[128.198884,44.393035],[128.1894,44.373809],[128.187948,44.363227],[128.171786,44.346517],[128.162786,44.344744],[128.154076,44.356189],[128.138979,44.357855],[128.125624,44.348989],[128.110914,44.357264],[128.097365,44.354147],[128.075107,44.369405],[128.072203,44.374884],[128.063009,44.356995],[128.050332,44.35044],[128.055848,44.343185],[128.064074,44.341734],[128.056332,44.32905],[128.062913,44.324104],[128.065139,44.307329],[128.079752,44.307491],[128.086139,44.29496],[128.097946,44.295821],[128.101527,44.290388],[128.08972,44.275864],[128.074139,44.269622],[128.06388,44.26155],[128.064461,44.251056],[128.080816,44.246265],[128.092333,44.247987],[128.094172,44.241743],[128.087978,44.238944],[128.103946,44.23006],[128.105107,44.214982],[128.09243,44.21579],[128.09243,44.181581],[128.070461,44.181149],[128.060493,44.168592],[128.075687,44.158997],[128.087881,44.158781],[128.084978,44.147621],[128.091462,44.139533],[128.100752,44.13538],[128.09001,44.132252],[128.052558,44.107006],[128.042493,44.103984],[128.024589,44.107761],[128.007266,44.094271],[127.981523,44.090223],[127.96662,44.090979],[127.962555,44.087632],[127.94949,44.088118],[127.93449,44.07797],[127.918135,44.070034],[127.912812,44.064797],[127.889586,44.069602],[127.865004,44.062259],[127.870133,44.055779],[127.860456,44.049082],[127.852423,44.048272],[127.84981,44.041574],[127.835584,44.037415],[127.835778,44.031797],[127.820971,44.02045],[127.807809,44.017911],[127.800551,44.008183],[127.788938,44.00267],[127.783422,43.995913],[127.785744,43.989318],[127.782744,43.978828],[127.792325,43.973421],[127.779841,43.97169],[127.786131,43.956113],[127.778679,43.949513],[127.775873,43.936744],[127.762518,43.937231],[127.781196,43.929709],[127.795228,43.916774],[127.836068,43.901074],[127.839552,43.896634],[127.851262,43.896147],[127.850972,43.888836],[127.861036,43.882175],[127.854456,43.857635],[127.83752,43.86717],[127.816519,43.853571],[127.811003,43.840944],[127.816713,43.836066],[127.807809,43.827935],[127.817971,43.81861],[127.813422,43.812103],[127.826874,43.809771],[127.835584,43.801528],[127.844197,43.800389],[127.84052,43.79502],[127.839358,43.779234],[127.857262,43.754868],[127.856972,43.746998],[127.877101,43.735],[127.893457,43.729733],[127.906522,43.732339],[127.915909,43.730602],[127.920554,43.721316],[127.917457,43.716374],[127.924716,43.7079],[127.910296,43.70312],[127.913489,43.694591],[127.90265,43.689864],[127.909909,43.68443],[127.905651,43.670082],[127.913296,43.666223],[127.916393,43.657851],[127.913006,43.651871],[127.899457,43.645618],[127.896554,43.625006],[127.884263,43.620382],[127.865682,43.624897],[127.854649,43.616411],[127.853585,43.610644],[127.840907,43.595136],[127.82939,43.598564],[127.816519,43.590728],[127.819326,43.583053],[127.8111,43.581148],[127.797938,43.572166],[127.798809,43.564761],[127.791744,43.563509],[127.791164,43.554578],[127.777034,43.555014],[127.770841,43.54984],[127.769873,43.531974],[127.774518,43.525763],[127.761356,43.523257],[127.745001,43.503693],[127.733775,43.504456],[127.719839,43.510396],[127.71771,43.502439],[127.698161,43.484232],[127.704258,43.480851],[127.706678,43.464655],[127.697097,43.451346],[127.696323,43.43727],[127.701742,43.430285],[127.710162,43.430231],[127.70571,43.409272],[127.698645,43.401957],[127.703484,43.395023],[127.694968,43.378039],[127.688096,43.375144],[127.686064,43.367278],[127.678999,43.364219],[127.682193,43.35433],[127.671741,43.349522],[127.647934,43.346298],[127.639902,43.340068],[127.625192,43.341216],[127.617449,43.334821],[127.633902,43.323288],[127.630514,43.312955],[127.61532,43.305464],[127.618417,43.300159],[127.643482,43.292721],[127.654128,43.283258],[127.659451,43.27352],[127.657225,43.260169],[127.644547,43.249333],[127.636224,43.236688],[127.634192,43.223822],[127.611933,43.206243],[127.595965,43.197533],[127.585997,43.195068],[127.581352,43.187508],[127.5679,43.186631],[127.562287,43.178796],[127.561513,43.168986],[127.54748,43.161039],[127.548544,43.157695],[127.532189,43.146238],[127.510608,43.140865],[127.480027,43.139768],[127.488833,43.129239],[127.503447,43.120574],[127.492898,43.091552],[127.501801,43.070586],[127.501124,43.065591],[127.484769,43.060869],[127.483414,43.053018],[127.469962,43.038026],[127.469768,43.028688],[127.479543,43.021986],[127.497253,43.023359],[127.504705,43.011822],[127.516802,43.003195],[127.531221,42.984452],[127.548351,42.978076],[127.557932,42.979175],[127.575448,42.966749],[127.5859,42.955916],[127.596643,42.957346],[127.608449,42.954596],[127.616579,42.945631],[127.636321,42.937765],[127.640966,42.921699],[127.655096,42.917902],[127.674838,42.902712],[127.696129,42.900345],[127.711613,42.891317],[127.728356,42.892803],[127.744324,42.890271],[127.754098,42.901831],[127.759421,42.902436],[127.774034,42.895445],[127.776938,42.887958],[127.794744,42.874192],[127.807325,42.878598],[127.819035,42.875789],[127.825036,42.868134],[127.819713,42.864004],[127.815455,42.840866],[127.829197,42.834254],[127.835197,42.818878],[127.841778,42.818933],[127.85252,42.811106],[127.843617,42.805593],[127.847004,42.801017],[127.837617,42.788335],[127.833165,42.775871],[127.834423,42.762576],[127.85223,42.757997],[127.855811,42.753142],[127.869359,42.751431],[127.865682,42.740671],[127.874005,42.734655],[127.86723,42.730349],[127.857553,42.735814],[127.846907,42.730736],[127.850391,42.72494],[127.862101,42.719088],[127.875263,42.696118],[127.890457,42.695952],[127.89936,42.689932],[127.895586,42.684298],[127.885908,42.689269],[127.882037,42.684795],[127.886005,42.674796],[127.904489,42.670155],[127.923167,42.67336],[127.938458,42.663027],[127.960329,42.657833],[127.965942,42.653191],[127.964588,42.644348],[127.953555,42.641473],[127.959749,42.630583],[127.959168,42.620962],[127.973201,42.622179],[127.967201,42.612004],[127.981427,42.610511],[127.994588,42.600832],[127.987137,42.59884],[127.995169,42.588551],[127.995846,42.581967],[128.008621,42.578537],[128.015879,42.56996],[128.012492,42.563983],[128.021395,42.565588],[128.027783,42.561215],[128.020234,42.541619],[128.028073,42.541564],[128.024105,42.529825],[128.03388,42.528662],[128.034267,42.50058],[128.03146,42.496813],[128.043557,42.480134],[128.035138,42.465501],[128.018589,42.450754],[128.014137,42.436836],[128.016266,42.427851],[128.007169,42.414205],[127.998169,42.413706],[127.983362,42.403663],[127.959942,42.392954],[127.9522,42.374526],[127.943781,42.367697],[127.92249,42.36903],[127.903521,42.366865],[127.903521,42.34904],[127.890069,42.338321],[127.887747,42.3301],[127.858617,42.327655],[127.845165,42.330711],[127.840617,42.326711],[127.817777,42.323489],[127.80839,42.307041],[127.810713,42.29676],[127.828907,42.280806],[127.854552,42.283363],[127.862004,42.274245],[127.868391,42.276525],[127.877682,42.266905],[127.880682,42.250554],[127.885327,42.2431],[127.900812,42.239985],[127.907586,42.243601],[127.912618,42.231083],[127.910296,42.221067],[127.915425,42.204092],[127.927812,42.188672],[127.943684,42.181433],[127.952684,42.172412],[127.960523,42.172412],[127.968362,42.16467],[127.96091,42.145619],[127.963717,42.140326],[127.987524,42.125224],[127.991395,42.11547],[128.015299,42.087426],[128.024299,42.071307],[128.036589,42.042853],[128.039202,42.029905],[128.064558,42.011538]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宽城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.517345,44.243843],[125.52197390625,44.2384712958984],[125.587345,44.213843],[125.5765246875,44.1697975898438],[125.5846496875,44.1335732246094],[125.577345,44.103843],[125.552271757813,44.1096529365235],[125.509190703125,44.0970925117188],[125.482857695313,44.1009841132813],[125.465714140625,44.0787740302734],[125.408370390625,44.0666738105469],[125.431324492188,44.0082784248048],[125.47298953125,43.9994869208985],[125.49170046875,43.9681990791016],[125.528819609375,43.9578633857422],[125.509547148438,43.9259120917969],[125.462345,43.9396742988281],[125.419898710938,43.9272988105469],[125.423160429688,43.9493550849609],[125.407086210938,43.9617604804688],[125.377345,43.9573653388673],[125.361715117188,43.9596749091797],[125.357345,43.8938430000001],[125.332105742188,43.9000423408203],[125.317345,43.8938430000001],[125.297345,43.8938430000001],[125.306988554688,43.9183730292969],[125.271519804688,43.9282503486328],[125.27744265625,43.9683309150391],[125.245953398438,43.9926375556641],[125.19654421875,43.9560060859375],[125.143482695313,43.963847272461],[125.130811796875,43.9948067451172],[125.108424101563,44.0081990791016],[125.085616484375,43.9786452460938],[125.057345,43.9738430000001],[125.048570585938,44.0117018867188],[125.041607695313,44.058843],[125.043546171875,44.071982038086],[125.017784453125,44.1146889472657],[125.067345,44.1073653388672],[125.092345,44.1110597968751],[125.112345,44.1081038642579],[125.128082304688,44.1104299140626],[125.198502226563,44.0968917060548],[125.242135039063,44.1096132636719],[125.26357546875,44.106444928711],[125.251593046875,44.1687587714844],[125.253824492188,44.183843],[125.250284453125,44.2077992988282],[125.262345,44.2095821357423],[125.272345,44.2081038642578],[125.282345,44.2095821357423],[125.30013796875,44.206952741211],[125.352662382813,44.229907453125],[125.368424101563,44.2094869208985],[125.3872278125,44.2207350898438],[125.40170046875,44.2394869208984],[125.427345,44.253843],[125.472896757813,44.2493959785156],[125.517345,44.243843]]],[[[125.517345,44.243843],[125.520767851563,44.2560353828126],[125.529537382813,44.2472664619141],[125.517345,44.243843]]]]}},{"type":"Feature","properties":{"name":"绿园区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.143482695313,43.963847272461],[125.19654421875,43.9560060859375],[125.245953398438,43.9926375556641],[125.27744265625,43.9683309150391],[125.271519804688,43.9282503486328],[125.306988554688,43.9183730292969],[125.297345,43.8938430000001],[125.292061796875,43.8891243720703],[125.267027617188,43.8611049628906],[125.156392851563,43.7791243720703],[125.137393828125,43.820526959961],[125.097345,43.843843],[125.091046171875,43.8694930244141],[125.104586210938,43.878843],[125.09142703125,43.8879274726563],[125.08326296875,43.8997585273438],[125.059595976563,43.9160964179688],[125.047345,43.9338430000001],[125.047345,43.9738430000001],[125.057345,43.9738430000001],[125.085616484375,43.9786452460938],[125.108424101563,44.0081990791016],[125.130811796875,43.9948067451172],[125.143482695313,43.963847272461]]]]}},{"type":"Feature","properties":{"name":"朝阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.307345,43.523843],[125.295152617188,43.520419538086],[125.303922148438,43.5116506171875],[125.328663359375,43.5327968574219],[125.357345,43.5138430000001],[125.379947539063,43.4796431708985],[125.34142703125,43.4697585273438],[125.275235625,43.4397585273438],[125.23326296875,43.4499013496094],[125.24142703125,43.4797585273438],[125.266158476563,43.4968325019531],[125.259132109375,43.5281728339844],[125.275557890625,43.5395131660157],[125.270338164063,43.5628035712891],[125.29142703125,43.5997585273438],[125.30408328125,43.6084950996094],[125.29142703125,43.6279274726563],[125.287345,43.643843],[125.29197390625,43.6492147041016],[125.302999296875,43.6587123847656],[125.291920195313,43.6785646796875],[125.2927746875,43.6891664863281],[125.27314578125,43.7060744453125],[125.2274621875,43.7198293281251],[125.143541289063,43.7666524482422],[125.118834257813,43.7953304267579],[125.0918371875,43.8185884833985],[125.097345,43.843843],[125.137393828125,43.820526959961],[125.156392851563,43.7791243720703],[125.267027617188,43.8611049628906],[125.292061796875,43.8891243720703],[125.297345,43.8938430000001],[125.317345,43.8938430000001],[125.313023710938,43.8256740546876],[125.271519804688,43.8096681953125],[125.263170195313,43.7880178046875],[125.243170195313,43.7736830878907],[125.2655871875,43.7545442939454],[125.333775664063,43.7680178046876],[125.354971953125,43.7266103339844],[125.320631132813,43.6725167060547],[125.325308867188,43.648843],[125.321358671875,43.6288430000001],[125.326060820313,43.6050484443359],[125.311519804688,43.5696681953126],[125.307345,43.523843]]]]}},{"type":"Feature","properties":{"name":"德惠市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.517345,44.243843],[125.529537382813,44.2472664619141],[125.520767851563,44.2560353828126],[125.472896757813,44.2493959785156],[125.427345,44.253843],[125.401573515625,44.3090468574219],[125.413448515625,44.318911359375],[125.381881132813,44.3383803535157],[125.372808867188,44.3493056464844],[125.349234648438,44.3595284248047],[125.33107546875,44.3813906074219],[125.333004179688,44.4003047919922],[125.352735625,44.3982936835938],[125.361881132813,44.4093056464844],[125.375933867188,44.4209792304688],[125.358756132813,44.4667067695313],[125.372808867188,44.4783803535156],[125.381881132813,44.4917671943359],[125.342882109375,44.5241652656251],[125.402808867188,44.5583803535157],[125.413697539063,44.5834902167969],[125.462808867188,44.6183803535157],[125.479644804688,44.6386482978516],[125.517725859375,44.649823834961],[125.532608671875,44.6483065009766],[125.59834109375,44.6730055976563],[125.611881132813,44.6893056464844],[125.633053007813,44.7068917060548],[125.6318371875,44.718843],[125.63547,44.7544887519532],[125.682896757813,44.7684072089844],[125.6818371875,44.778843],[125.683678007813,44.7968971992188],[125.72388796875,44.8086977363281],[125.7218371875,44.828843],[125.723004179688,44.8403047919922],[125.753018828125,44.837245709961],[125.751119414063,44.8558742500001],[125.757345,44.8838430000001],[125.77326296875,44.8797585273438],[125.78142703125,44.8579274726563],[125.803638945313,44.8496169257813],[125.7980090625,44.8245088935547],[125.822237578125,44.8402858710938],[125.86326296875,44.8297585273438],[125.87142703125,44.8179274726562],[125.90326296875,44.7997585273438],[125.918228789063,44.7597585273438],[125.96326296875,44.7679274726563],[126.00142703125,44.7797585273438],[126.027345,44.783843],[126.081793242188,44.7682900214844],[126.152896757813,44.7593959785157],[126.163673125,44.7217110419923],[126.21099734375,44.7017696357423],[126.228546171875,44.6798537421876],[126.273922148438,44.7065267158204],[126.270523710938,44.6791829658203],[126.315133085938,44.6478255439454],[126.331793242188,44.6082900214844],[126.344156523438,44.5983901191406],[126.34166140625,44.5783278632813],[126.380714140625,44.5671614814454],[126.402896757813,44.5493959785156],[126.407345,44.523843],[126.387198515625,44.5164443183594],[126.342345,44.5200484443359],[126.292345,44.5160305],[126.215636015625,44.5221944404297],[126.089766875,44.4947402167969],[126.050343046875,44.4667891669922],[125.9919153125,44.4491970039063],[125.993150664063,44.4338430000001],[125.991539335938,44.413843],[125.993043242188,44.3951711250001],[125.926363554688,44.4005287910156],[125.91271609375,44.3964455390625],[125.93271609375,44.3792147041016],[125.95197390625,44.3557784248047],[125.866417265625,44.3233119941407],[125.85271609375,44.3392147041016],[125.830631132813,44.3490706611329],[125.81271609375,44.3892147041016],[125.79056765625,44.3984712958985],[125.77271609375,44.3584712958985],[125.73197390625,44.3492147041016],[125.708951445313,44.3363692451172],[125.647916289063,44.317993390625],[125.612965117188,44.3208016181641],[125.580816679688,44.2694692207032],[125.5965246875,44.2559334541016],[125.587345,44.213843],[125.52197390625,44.2384712958984],[125.517345,44.243843]]]]}},{"type":"Feature","properties":{"name":"二道区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.691031523438,44.1927315498047],[125.732345,44.186626203125],[125.759854765625,44.1906917548829],[125.763116484375,44.1686324287109],[125.751534453125,44.1289168525391],[125.76310671875,44.0789852119141],[125.761607695313,44.068843],[125.765513945313,44.0423879218751],[125.749176054688,44.0152980781251],[125.753082304688,43.988843],[125.744351835938,43.929749982422],[125.810582304688,43.9157741523437],[125.813824492188,43.8938430000001],[125.81156375,43.8785512519531],[125.817345,43.863843],[125.813985625,43.8472023750001],[125.800704375,43.820483625],[125.797345,43.7838430000001],[125.788140898438,43.7719161201172],[125.759205351563,43.7676399970704],[125.708546171875,43.7981990791016],[125.604957304688,43.7737032294922],[125.59298953125,43.7581990791016],[125.557345,43.753843],[125.551978789063,43.7789656806641],[125.562886992188,43.7990431953125],[125.492667265625,43.8207277656251],[125.5126575,43.8385903144531],[125.511890898438,43.8514980292969],[125.462345,43.8485451484376],[125.451470976563,43.8491933417969],[125.452652617188,43.8690065742187],[125.450494414063,43.8785616279297],[125.406744414063,43.8295919013672],[125.364928007813,43.8191243720703],[125.342628203125,43.852821881836],[125.357345,43.8938430000001],[125.361715117188,43.9596749091797],[125.377345,43.9573653388673],[125.407086210938,43.9617604804688],[125.423160429688,43.9493550849609],[125.419898710938,43.9272988105469],[125.462345,43.9396742988281],[125.509547148438,43.9259120917969],[125.528819609375,43.9578633857422],[125.49170046875,43.9681990791016],[125.47298953125,43.9994869208985],[125.431324492188,44.0082784248048],[125.408370390625,44.0666738105469],[125.465714140625,44.0787740302734],[125.482857695313,44.1009841132813],[125.509190703125,44.0970925117188],[125.552271757813,44.1096529365235],[125.577345,44.103843],[125.584420195313,44.0946749091797],[125.6486340625,44.1125557685547],[125.66170046875,44.1294869208984],[125.694522734375,44.1491158271484],[125.691607695313,44.168843],[125.693082304688,44.178843],[125.691031523438,44.1927315498047]]]]}},{"type":"Feature","properties":{"name":"九台市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.407345,44.523843],[126.416964140625,44.5134615302735],[126.432740507813,44.498843],[126.412535429688,44.4801210761719],[126.422154570313,44.4586525703125],[126.43263796875,44.438843],[126.421510039063,44.4178188300781],[126.46134890625,44.4193978095704],[126.482154570313,44.4001210761719],[126.472535429688,44.3686525703125],[126.444732695313,44.3555306220703],[126.462535429688,44.3390334296875],[126.472154570313,44.3086525703125],[126.482672148438,44.2989083076172],[126.452745390625,44.2423574042969],[126.497345,44.2338430000001],[126.49326296875,44.2179274726563],[126.459757109375,44.2053908515625],[126.465225859375,44.1809975410157],[126.437345,44.173843],[126.331793242188,44.1782900214844],[126.291954375,44.1896651435547],[126.272423125,44.1575044990234],[126.262896757813,44.1693959785156],[126.236920195313,44.1782900214844],[126.199210234375,44.1561232734375],[126.170079375,44.1597463203126],[126.152896757813,44.1382900214844],[126.13166140625,44.129341046875],[126.133214140625,44.1168691230469],[126.095553007813,44.1215535712891],[126.052896757813,44.0682900214844],[126.041793242188,44.0593959785156],[126.032896757813,44.0482900214844],[126.00873171875,44.0381056953126],[125.992896757813,43.9954116035156],[126.012896757813,43.9793959785156],[126.017345,43.9738430000001],[126.029722929688,43.9489455390625],[126.019420195313,43.9278523994141],[126.039185820313,43.9178523994141],[126.029893828125,43.8988283515626],[126.037345,43.883843],[126.02326296875,43.8779274726563],[125.98142703125,43.8697585273437],[125.97326296875,43.8579274726563],[125.952213164063,43.8433968330079],[125.912623320313,43.8600264716797],[125.897345,43.856601178711],[125.877345,43.8610848212891],[125.851846953125,43.8553688789063],[125.817345,43.863843],[125.81156375,43.8785512519531],[125.813824492188,43.8938430000001],[125.810582304688,43.9157741523437],[125.744351835938,43.929749982422],[125.753082304688,43.988843],[125.749176054688,44.0152980781251],[125.765513945313,44.0423879218751],[125.761607695313,44.068843],[125.76310671875,44.0789852119141],[125.751534453125,44.1289168525391],[125.763116484375,44.1686324287109],[125.759854765625,44.1906917548829],[125.732345,44.186626203125],[125.691031523438,44.1927315498047],[125.693082304688,44.178843],[125.691607695313,44.168843],[125.694522734375,44.1491158271484],[125.66170046875,44.1294869208984],[125.6486340625,44.1125557685547],[125.584420195313,44.0946749091797],[125.577345,44.103843],[125.5846496875,44.1335732246094],[125.5765246875,44.1697975898438],[125.587345,44.213843],[125.5965246875,44.2559334541016],[125.580816679688,44.2694692207032],[125.612965117188,44.3208016181641],[125.647916289063,44.317993390625],[125.708951445313,44.3363692451172],[125.73197390625,44.3492147041016],[125.77271609375,44.3584712958985],[125.79056765625,44.3984712958985],[125.81271609375,44.3892147041016],[125.830631132813,44.3490706611329],[125.85271609375,44.3392147041016],[125.866417265625,44.3233119941407],[125.95197390625,44.3557784248047],[125.93271609375,44.3792147041016],[125.91271609375,44.3964455390625],[125.926363554688,44.4005287910156],[125.993043242188,44.3951711250001],[125.991539335938,44.413843],[125.993150664063,44.4338430000001],[125.9919153125,44.4491970039063],[126.050343046875,44.4667891669922],[126.089766875,44.4947402167969],[126.215636015625,44.5221944404297],[126.292345,44.5160305],[126.342345,44.5200484443359],[126.387198515625,44.5164443183594],[126.407345,44.523843]]]]}},{"type":"Feature","properties":{"name":"南关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.307345,43.523843],[125.303922148438,43.5116506171875],[125.295152617188,43.520419538086],[125.307345,43.523843]]],[[[125.307345,43.523843],[125.311519804688,43.5696681953126],[125.326060820313,43.6050484443359],[125.321358671875,43.6288430000001],[125.325308867188,43.648843],[125.320631132813,43.6725167060547],[125.354971953125,43.7266103339844],[125.333775664063,43.7680178046876],[125.2655871875,43.7545442939454],[125.243170195313,43.7736830878907],[125.263170195313,43.7880178046875],[125.271519804688,43.8096681953125],[125.313023710938,43.8256740546876],[125.317345,43.8938430000001],[125.332105742188,43.9000423408203],[125.357345,43.8938430000001],[125.342628203125,43.852821881836],[125.364928007813,43.8191243720703],[125.406744414063,43.8295919013672],[125.450494414063,43.8785616279297],[125.452652617188,43.8690065742187],[125.451470976563,43.8491933417969],[125.462345,43.8485451484376],[125.511890898438,43.8514980292969],[125.5126575,43.8385903144531],[125.492667265625,43.8207277656251],[125.562886992188,43.7990431953125],[125.551978789063,43.7789656806641],[125.557345,43.753843],[125.55107546875,43.7495131660156],[125.554815703125,43.7328115058594],[125.503590117188,43.6974428535156],[125.487345,43.7010848212891],[125.469381132813,43.6970577216797],[125.475406523438,43.6701802802735],[125.506549101563,43.6585292792969],[125.490250273438,43.6059505439453],[125.472301054688,43.6099733710938],[125.447345,43.603843],[125.42326296875,43.5879274726563],[125.39142703125,43.5797585273438],[125.38326296875,43.5579274726562],[125.36326296875,43.5441188789063],[125.371846953125,43.5376107001953],[125.39142703125,43.5420003486329],[125.38326296875,43.5279274726563],[125.36142703125,43.5197585273438],[125.357345,43.5138430000001],[125.328663359375,43.5327968574219],[125.307345,43.523843]]]]}},{"type":"Feature","properties":{"name":"农安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.747345,44.2038430000001],[124.7600403125,44.2092763496094],[124.751397734375,44.2268398261719],[124.71244265625,44.1983229804688],[124.613511992188,44.2084072089844],[124.592808867188,44.2617671943359],[124.612896757813,44.2784529853516],[124.6118371875,44.288843],[124.613873320313,44.3088430000001],[124.611324492188,44.333843],[124.613834257813,44.3584529853516],[124.601881132813,44.3683803535156],[124.588267851563,44.3847682929688],[124.551475859375,44.4153304267579],[124.55310671875,44.431313703125],[124.582345,44.4283333564453],[124.633394804688,44.4335366035157],[124.631597929688,44.4511556220703],[124.581241484375,44.4729964423829],[124.582896757813,44.4892507148438],[124.551881132813,44.5083803535156],[124.547345,44.513843],[124.551793242188,44.5193959785156],[124.571334257813,44.5350453925781],[124.551344023438,44.5690541816406],[124.607999296875,44.6121718574219],[124.627730742188,44.6368148017579],[124.69033328125,44.6546907783203],[124.742706328125,44.6481764960938],[124.779517851563,44.6698165107422],[124.797345,44.6675991035156],[124.812345,44.6694649482422],[124.830030546875,44.667265241211],[124.80732546875,44.7058852363282],[124.862037382813,44.7295027900391],[124.887735625,44.7263063789063],[124.936236601563,44.7449489570313],[124.982896757813,44.7582900214844],[125.013800078125,44.7808626533204],[125.10908328125,44.7655025458985],[125.141954375,44.7895137763672],[125.166495390625,44.7864614082032],[125.22123171875,44.8020912910156],[125.265206328125,44.7966213203125],[125.301793242188,44.8120375800781],[125.284991484375,44.8259389472656],[125.222896757813,44.8436916328125],[125.231793242188,44.8493959785157],[125.247345,44.853843],[125.29326296875,44.8463002753907],[125.355108671875,44.8836067939454],[125.400767851563,44.8768593574219],[125.425377226563,44.8917055488282],[125.476187773438,44.8768917060547],[125.54170046875,44.8894869208984],[125.60298953125,44.8981990791016],[125.61170046875,44.9094869208985],[125.62298953125,44.9181990791016],[125.637838164063,44.9374379707031],[125.668800078125,44.9420137763672],[125.69170046875,44.9281990791016],[125.737979765625,44.9184334541016],[125.757345,44.8838430000001],[125.751119414063,44.8558742500001],[125.753018828125,44.837245709961],[125.723004179688,44.8403047919922],[125.7218371875,44.828843],[125.72388796875,44.8086977363281],[125.683678007813,44.7968971992188],[125.6818371875,44.778843],[125.682896757813,44.7684072089844],[125.63547,44.7544887519532],[125.6318371875,44.718843],[125.633053007813,44.7068917060548],[125.611881132813,44.6893056464844],[125.59834109375,44.6730055976563],[125.532608671875,44.6483065009766],[125.517725859375,44.649823834961],[125.479644804688,44.6386482978516],[125.462808867188,44.6183803535157],[125.413697539063,44.5834902167969],[125.402808867188,44.5583803535157],[125.342882109375,44.5241652656251],[125.381881132813,44.4917671943359],[125.372808867188,44.4783803535156],[125.358756132813,44.4667067695313],[125.375933867188,44.4209792304688],[125.361881132813,44.4093056464844],[125.352735625,44.3982936835938],[125.333004179688,44.4003047919922],[125.33107546875,44.3813906074219],[125.349234648438,44.3595284248047],[125.372808867188,44.3493056464844],[125.381881132813,44.3383803535157],[125.413448515625,44.318911359375],[125.401573515625,44.3090468574219],[125.427345,44.253843],[125.40170046875,44.2394869208984],[125.3872278125,44.2207350898438],[125.368424101563,44.2094869208985],[125.352662382813,44.229907453125],[125.30013796875,44.206952741211],[125.282345,44.2095821357423],[125.272345,44.2081038642578],[125.262345,44.2095821357423],[125.250284453125,44.2077992988282],[125.253824492188,44.183843],[125.251593046875,44.1687587714844],[125.26357546875,44.106444928711],[125.242135039063,44.1096132636719],[125.198502226563,44.0968917060548],[125.128082304688,44.1104299140626],[125.112345,44.1081038642579],[125.092345,44.1110597968751],[125.067345,44.1073653388672],[125.017784453125,44.1146889472657],[125.043546171875,44.071982038086],[125.041607695313,44.058843],[125.048570585938,44.0117018867188],[125.057345,43.9738430000001],[125.047345,43.9738430000001],[125.047345,43.9338430000001],[125.03142703125,43.9297585273438],[125.01326296875,43.9179274726563],[124.949595976563,43.9015895820313],[124.9577746875,43.9380690742188],[124.913551054688,43.9546169257813],[124.925225859375,44.0066884589844],[124.870816679688,44.0206502509766],[124.832847929688,44.0500771308594],[124.802506132813,44.0432747626953],[124.750396757813,44.0651607490234],[124.753468046875,44.0788430000001],[124.749454375,44.0967287421876],[124.765474882813,44.1213259101563],[124.74107546875,44.1381728339844],[124.743648710938,44.1496590400391],[124.727345,44.153843],[124.721046171875,44.1794930244141],[124.739176054688,44.1920119453126],[124.747345,44.2038430000001]]]]}},{"type":"Feature","properties":{"name":"双阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.708546171875,43.7981990791016],[125.759205351563,43.7676399970704],[125.788140898438,43.7719161201172],[125.797345,43.7838430000001],[125.8090246875,43.7741396308594],[125.841881132813,43.6983803535157],[125.859644804688,43.6836244941407],[125.882882109375,43.6291268134766],[125.8818371875,43.618843],[125.883707304688,43.6004885078125],[125.855440703125,43.5341927314453],[125.851793242188,43.4984529853516],[125.862808867188,43.4893056464844],[125.881881132813,43.4583803535157],[125.932808867188,43.4293056464844],[125.950596953125,43.4078884101562],[125.977345,43.413843],[125.991793242188,43.3882900214844],[126.018360625,43.3519203925782],[125.980181914063,43.3372463203125],[125.961983671875,43.3395095039063],[125.894268828125,43.2997035957032],[125.840719023438,43.2930434394531],[125.805850859375,43.3135390449219],[125.748258085938,43.2796840644532],[125.687345,43.263843],[125.662896757813,43.2793959785157],[125.631236601563,43.2927370429688],[125.576060820313,43.3251735664063],[125.534923125,43.3552230048828],[125.572896757813,43.3782900214844],[125.581793242188,43.3974721503907],[125.524893828125,43.4097823310548],[125.512345,43.4082210517578],[125.4870715625,43.4113649726563],[125.504112578125,43.4403548408203],[125.461793242188,43.4982900214844],[125.452896757813,43.5193959785157],[125.44146609375,43.5285500312501],[125.453004179688,43.5585610175782],[125.447345,43.603843],[125.472301054688,43.6099733710938],[125.490250273438,43.6059505439453],[125.506549101563,43.6585292792969],[125.475406523438,43.6701802802735],[125.469381132813,43.6970577216797],[125.487345,43.7010848212891],[125.503590117188,43.6974428535156],[125.554815703125,43.7328115058594],[125.55107546875,43.7495131660156],[125.557345,43.753843],[125.59298953125,43.7581990791016],[125.604957304688,43.7737032294922],[125.708546171875,43.7981990791016]]]]}},{"type":"Feature","properties":{"name":"榆树市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.717345,44.523843],[126.727345,44.523843],[126.722345,44.5110353828125],[126.717345,44.523843]]],[[[126.607345,44.563843],[126.619537382813,44.560419538086],[126.610767851563,44.5516506171875],[126.607345,44.563843]]],[[[126.727345,44.523843],[126.722345,44.5366506171875],[126.717345,44.523843],[126.688995390625,44.5354927802735],[126.63802859375,44.5489394355469],[126.617345,44.5777950263672],[126.607345,44.563843],[126.561793242188,44.5593959785156],[126.51306765625,44.5406679511719],[126.441890898438,44.549521100586],[126.432896757813,44.5382900214844],[126.407345,44.523843],[126.402896757813,44.5493959785156],[126.380714140625,44.5671614814454],[126.34166140625,44.5783278632813],[126.344156523438,44.5983901191406],[126.331793242188,44.6082900214844],[126.315133085938,44.6478255439454],[126.270523710938,44.6791829658203],[126.273922148438,44.7065267158204],[126.228546171875,44.6798537421876],[126.21099734375,44.7017696357423],[126.163673125,44.7217110419923],[126.152896757813,44.7593959785157],[126.081793242188,44.7682900214844],[126.027345,44.783843],[126.03142703125,44.7897585273437],[126.043472929688,44.8388014960938],[126.039454375,44.8567287421876],[126.053565703125,44.8783962226562],[126.051221953125,44.8888430000001],[126.054132109375,44.9018056464844],[126.091573515625,44.8934120917969],[126.10142703125,44.9197585273438],[126.1276184375,44.9279274726563],[126.143013945313,44.9056307197266],[126.162345,44.9099636054688],[126.172345,44.9077223945313],[126.190230742188,44.9117317939453],[126.133673125,44.9768569160156],[126.170538359375,44.9906502509766],[126.184776640625,45.028710553711],[126.167193632813,45.0408534980469],[126.174586210938,45.0738430000001],[126.17107546875,45.0895131660157],[126.1839075,45.0983736396485],[126.167345,45.133843],[126.17947390625,45.1568715644531],[126.202345,45.1465969062501],[126.217345,45.1533357978516],[126.232408476563,45.1465688300782],[126.247345,45.1538430000001],[126.250767851563,45.1416506171875],[126.259537382813,45.1504195380859],[126.247345,45.1538430000001],[126.25170046875,45.1594869208985],[126.276324492188,45.1695638251954],[126.292345,45.1903206611328],[126.305289335938,45.1735536933594],[126.331954375,45.1896395087891],[126.35111453125,45.1868086982422],[126.4110559375,45.2312502265625],[126.438595,45.2271810126953],[126.492203398438,45.2396028876954],[126.502345,45.2381038642578],[126.517345,45.2403206611329],[126.5425403125,45.23659690625],[126.547345,45.253843],[126.597408476563,45.2387703681641],[126.675719023438,45.189892194336],[126.759097929688,45.1709505439453],[126.77271609375,45.1592147041016],[126.792022734375,45.1368080878907],[126.822345,45.1392446113282],[126.837345,45.1380397773438],[126.852345,45.1392446113282],[126.867345,45.1380397773438],[126.882345,45.1392446113282],[126.892345,45.1384413886719],[126.915811796875,45.1403267646485],[126.9527746875,45.1291970039063],[126.9519153125,45.1185195136719],[126.964273710938,45.1078719306641],[126.961812773438,45.0772243476563],[126.993619414063,45.0498232246094],[127.07197390625,44.9584712958984],[127.0827746875,44.9491664863281],[127.081944609375,44.938843],[127.083453398438,44.9200411201172],[127.06271609375,44.9084712958985],[127.004659453125,44.8909914375],[126.977418242188,44.8168123603516],[126.99197390625,44.7684712958984],[127.032901640625,44.7107491279298],[127.030338164063,44.678843],[127.035777617188,44.6111092353516],[127.021539335938,44.598843],[127.03271609375,44.5892147041016],[127.037345,44.563843],[127.015343046875,44.5577169013672],[126.971671171875,44.5313729072266],[126.876627226563,44.5152272773438],[126.8430090625,44.5355055976563],[126.745406523438,44.5167421699219],[126.727345,44.523843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昌邑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.377345,43.963843],[126.389537382813,43.9672664619141],[126.380767851563,43.9760353828125],[126.361158476563,43.9600307441406],[126.333531523438,43.9476552558594],[126.291158476563,43.9400307441407],[126.231363554688,43.9203639960938],[126.219718046875,43.9014681220704],[126.188702421875,43.8823567939453],[126.163531523438,43.9000307441407],[126.141158476563,43.9076552558594],[126.133531523438,43.9182344794922],[126.173531523438,43.9276552558594],[126.181158476563,43.9440242744141],[126.129971953125,43.9614681220703],[126.0997278125,43.982700421875],[126.067345,43.9726137519531],[126.03623171875,43.982304303711],[126.017345,43.9738430000001],[126.012896757813,43.9793959785156],[125.992896757813,43.9954116035156],[126.00873171875,44.0381056953126],[126.032896757813,44.0482900214844],[126.041793242188,44.0593959785156],[126.052896757813,44.0682900214844],[126.095553007813,44.1215535712891],[126.133214140625,44.1168691230469],[126.13166140625,44.129341046875],[126.152896757813,44.1382900214844],[126.170079375,44.1597463203126],[126.199210234375,44.1561232734375],[126.236920195313,44.1782900214844],[126.262896757813,44.1693959785156],[126.272423125,44.1575044990234],[126.291954375,44.1896651435547],[126.331793242188,44.1782900214844],[126.437345,44.173843],[126.432808867188,44.1583803535157],[126.41146609375,44.1287264228516],[126.424771757813,44.1176723457032],[126.420264921875,44.0734194160157],[126.472550078125,44.0507430244141],[126.481881132813,43.9983803535157],[126.50158328125,43.9639791083985],[126.47111453125,43.9386678291016],[126.525264921875,43.9183846259766],[126.541881132813,43.8983803535156],[126.591480742188,43.8838259101563],[126.597345,43.863843],[126.597345,43.833843],[126.557345,43.833843],[126.552281523438,43.851548078125],[126.491666289063,43.8883675361329],[126.49302859375,43.899341046875],[126.471793242188,43.9082900214844],[126.442896757813,43.9293959785157],[126.391793242188,43.9382900214844],[126.377345,43.963843]]]]}},{"type":"Feature","properties":{"name":"船营区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.377345,43.963843],[126.380767851563,43.9760353828125],[126.389537382813,43.9672664619141],[126.377345,43.963843]]],[[[126.377345,43.963843],[126.391793242188,43.9382900214844],[126.442896757813,43.9293959785157],[126.471793242188,43.9082900214844],[126.49302859375,43.899341046875],[126.491666289063,43.8883675361329],[126.552281523438,43.851548078125],[126.557345,43.833843],[126.539644804688,43.8286482978516],[126.522808867188,43.8083803535157],[126.499654570313,43.7891481757813],[126.381344023438,43.7758809638673],[126.357345,43.733843],[126.321978789063,43.7396529365234],[126.2936340625,43.7225557685548],[126.239058867188,43.700219953125],[126.22298953125,43.7394869208985],[126.19170046875,43.7481990791016],[126.17298953125,43.7627620673828],[126.193824492188,43.7788430000001],[126.17041140625,43.7969118476563],[126.151832304688,43.8209841132813],[126.128116484375,43.8174788642578],[126.11298953125,43.8427620673828],[126.134078398438,43.8590407539063],[126.111519804688,43.8682729316407],[126.1131653125,43.8793819404297],[126.098424101563,43.8881990791016],[126.080806914063,43.8653755927734],[126.047838164063,43.8702480292969],[126.037345,43.883843],[126.029893828125,43.8988283515626],[126.039185820313,43.9178523994141],[126.019420195313,43.9278523994141],[126.029722929688,43.9489455390625],[126.017345,43.9738430000001],[126.03623171875,43.982304303711],[126.067345,43.9726137519531],[126.0997278125,43.982700421875],[126.129971953125,43.9614681220703],[126.181158476563,43.9440242744141],[126.173531523438,43.9276552558594],[126.133531523438,43.9182344794922],[126.141158476563,43.9076552558594],[126.163531523438,43.9000307441407],[126.188702421875,43.8823567939453],[126.219718046875,43.9014681220704],[126.231363554688,43.9203639960938],[126.291158476563,43.9400307441407],[126.333531523438,43.9476552558594],[126.361158476563,43.9600307441406],[126.377345,43.963843]]]]}},{"type":"Feature","properties":{"name":"丰满区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.597345,43.863843],[126.612056914063,43.857798078125],[126.627447539063,43.860839459961],[126.689381132813,43.848423078125],[126.721519804688,43.8280178046875],[126.743170195313,43.8196681953125],[126.76205203125,43.8076790595704],[126.802877226563,43.8200795722656],[126.807345,43.8138430000001],[126.824644804688,43.7863918281251],[126.8218371875,43.758843],[126.823834257813,43.7392330146485],[126.806422148438,43.7247682929688],[126.792808867188,43.7083803535156],[126.772808867188,43.6917671943359],[126.785484648438,43.6590981269532],[126.921324492188,43.6438649726563],[126.924771757813,43.6100136542969],[126.909830351563,43.5976003242187],[126.923570585938,43.53587425],[126.921207304688,43.5126619697266],[126.927345,43.4738430000001],[126.916080351563,43.4575264716797],[126.863013945313,43.4456307197266],[126.85267703125,43.4606026435547],[126.8225403125,43.4802260566406],[126.792623320313,43.4676595283203],[126.762345,43.4744472480469],[126.732345,43.4677223945313],[126.713013945313,43.4720552802735],[126.69271609375,43.4426564765625],[126.647345,43.463843],[126.636422148438,43.4729177070312],[126.622808867188,43.4893056464844],[126.611881132813,43.4983803535157],[126.597515898438,43.5156771064454],[126.63158328125,43.5439791083985],[126.611881132813,43.5783803535157],[126.592999296875,43.6219252753907],[126.620928984375,43.645126569336],[126.59818484375,43.6848409248047],[126.581793242188,43.6984529853516],[126.582896757813,43.7092665839844],[126.55634890625,43.7207802558594],[126.532345,43.7183333564454],[126.522345,43.7193526435548],[126.485406523438,43.7155873847657],[126.45591921875,43.6800905585938],[126.436285429688,43.6693056464844],[126.370982695313,43.7104567695313],[126.372896757813,43.7292787910156],[126.357345,43.733843],[126.381344023438,43.7758809638673],[126.499654570313,43.7891481757813],[126.522808867188,43.8083803535157],[126.539644804688,43.8286482978516],[126.557345,43.833843],[126.597345,43.833843],[126.597345,43.863843]]]]}},{"type":"Feature","properties":{"name":"龙潭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.698267851563,44.2999721503906],[126.712345,44.2982210517579],[126.725582304688,44.2998677802735],[126.719303007813,44.2493959785156],[126.732896757813,44.2582900214844],[126.7443371875,44.2725746894532],[126.771793242188,44.2382900214844],[126.79302859375,44.229341046875],[126.791724882813,44.218843],[126.793023710938,44.2083901191407],[126.770553007813,44.1903963447266],[126.782896757813,44.1693959785156],[126.796236601563,44.1377370429687],[126.812896757813,44.1093959785157],[126.817345,44.093843],[126.774932890625,44.1036708808594],[126.760670195313,44.0851924873047],[126.764483671875,44.059355084961],[126.750865507813,44.0488430000001],[126.789288359375,44.0191866279297],[126.816324492188,44.0081221748047],[126.850426054688,43.9639400458985],[126.83170046875,43.9494869208985],[126.82298953125,43.9326430488281],[126.853824492188,43.908843],[126.83869265625,43.8971657539063],[126.808990507813,43.9015554023438],[126.848604765625,43.8525356269532],[126.8260559375,43.8351302314454],[126.81298953125,43.8181990791016],[126.807345,43.8138430000001],[126.802877226563,43.8200795722656],[126.76205203125,43.8076790595704],[126.743170195313,43.8196681953125],[126.721519804688,43.8280178046875],[126.689381132813,43.848423078125],[126.627447539063,43.860839459961],[126.612056914063,43.857798078125],[126.597345,43.863843],[126.591480742188,43.8838259101563],[126.541881132813,43.8983803535156],[126.525264921875,43.9183846259766],[126.47111453125,43.9386678291016],[126.50158328125,43.9639791083985],[126.481881132813,43.9983803535157],[126.472550078125,44.0507430244141],[126.420264921875,44.0734194160157],[126.424771757813,44.1176723457032],[126.41146609375,44.1287264228516],[126.432808867188,44.1583803535157],[126.437345,44.173843],[126.465225859375,44.1809975410157],[126.459757109375,44.2053908515625],[126.49326296875,44.2179274726563],[126.497345,44.2338430000001],[126.508546171875,44.2478322578125],[126.542345,44.2279647041016],[126.5622278125,44.2396529365235],[126.600753203125,44.2248445869141],[126.663033476563,44.2383187080078],[126.6611340625,44.2535964179688],[126.698267851563,44.2999721503906]]]]}},{"type":"Feature","properties":{"name":"磐石市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.667345,43.0538430000001],[125.657345,43.0538430000001],[125.662345,43.0770864082032],[125.667345,43.0538430000001]]],[[[125.667345,43.0538430000001],[125.719732695313,43.0585036445313],[125.731573515625,43.0901369453126],[125.752345,43.0854799628907],[125.778707304688,43.0913906074219],[125.76103640625,43.1185329414063],[125.70142703125,43.1279274726563],[125.682271757813,43.1556728339844],[125.67170046875,43.1839321113281],[125.65142703125,43.1979274726563],[125.637994414063,43.2173867011719],[125.671007109375,43.240180890625],[125.687345,43.263843],[125.748258085938,43.2796840644532],[125.805850859375,43.3135390449219],[125.840719023438,43.2930434394531],[125.894268828125,43.2997035957032],[125.961983671875,43.3395095039063],[125.980181914063,43.3372463203125],[126.018360625,43.3519203925782],[125.991793242188,43.3882900214844],[125.977345,43.413843],[125.98201296875,43.4206026435547],[126.028443632813,43.4508382392578],[126.062345,43.4432387519532],[126.121925078125,43.4565950751953],[126.132554960938,43.4021584296876],[126.159141875,43.3961983466797],[126.192066679688,43.4100264716797],[126.202345,43.4077223945313],[126.221138945313,43.4119356513672],[126.25326296875,43.3897585273438],[126.26142703125,43.3779274726563],[126.297022734375,43.3687929511719],[126.307345,43.353843],[126.302896757813,43.3482900214844],[126.283922148438,43.3330934882813],[126.311793242188,43.2982900214844],[126.351793242188,43.2868532539063],[126.326846953125,43.2491445136719],[126.262896757813,43.23530784375],[126.291793242188,43.2082900214844],[126.312896757813,43.1993959785157],[126.345972929688,43.1449404121094],[126.393702421875,43.1508779121094],[126.411793242188,43.1282900214844],[126.450714140625,43.1171620917969],[126.478453398438,43.0949489570313],[126.49537234375,43.0738210273438],[126.521983671875,43.0581764960938],[126.53834109375,43.0602101875001],[126.56797,42.9899013496094],[126.598131132813,42.9771913886719],[126.580553007813,42.9472890449219],[126.611334257813,42.9226406074219],[126.586558867188,42.8804946113282],[126.61302859375,42.869341046875],[126.608136015625,42.8299892402344],[126.632345,42.826977765625],[126.664346953125,42.8309572578125],[126.68334109375,42.7986440253906],[126.652213164063,42.7737184882813],[126.647345,42.723843],[126.6274621875,42.717856671875],[126.59271609375,42.6984706855469],[126.569722929688,42.6882106757813],[126.547730742188,42.6626845527344],[126.500787382813,42.6799233222657],[126.482345,42.6784413886719],[126.467345,42.6796462226563],[126.417100859375,42.6756093574219],[126.380894804688,42.6958095527344],[126.390191679688,42.8114821601563],[126.342345,42.8076381660156],[126.303316679688,42.8107741523437],[126.29271609375,42.7984706855469],[126.26197390625,42.7892153144532],[126.229820585938,42.777407453125],[126.1386340625,42.7897682929688],[126.067345,42.7838430000001],[126.0094934375,42.7897438789063],[125.99271609375,42.8092153144532],[125.95197390625,42.8184706855469],[125.910186796875,42.8511977363282],[125.89271609375,42.9092153144532],[125.8416028125,42.92460471875],[125.843472929688,42.9478627753907],[125.820064726563,42.9898146796875],[125.767178984375,43.0184706855469],[125.727345,43.003843],[125.720704375,43.0072023750001],[125.709771757813,43.0288137031251],[125.674918242188,43.0388722968751],[125.667345,43.0538430000001]]]]}},{"type":"Feature","properties":{"name":"舒兰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.727345,44.523843],[126.717345,44.523843],[126.722345,44.5366506171875],[126.727345,44.523843]]],[[[127.157345,44.0838430000001],[127.169537382813,44.0872664619141],[127.160767851563,44.0960353828125],[127.10170046875,44.0981990791016],[127.091832304688,44.1109841132813],[127.071954375,44.1080464912109],[127.052735625,44.1196395087891],[127.042261992188,44.1180916572266],[126.965045195313,44.1329366279298],[126.93205203125,44.1280611396485],[126.886656523438,44.1459072089844],[126.850865507813,44.0995375800782],[126.817345,44.093843],[126.812896757813,44.1093959785157],[126.796236601563,44.1377370429687],[126.782896757813,44.1693959785156],[126.770553007813,44.1903963447266],[126.793023710938,44.2083901191407],[126.791724882813,44.218843],[126.79302859375,44.229341046875],[126.771793242188,44.2382900214844],[126.7443371875,44.2725746894532],[126.732896757813,44.2582900214844],[126.719303007813,44.2493959785156],[126.725582304688,44.2998677802735],[126.712345,44.2982210517579],[126.698267851563,44.2999721503906],[126.6611340625,44.2535964179688],[126.663033476563,44.2383187080078],[126.600753203125,44.2248445869141],[126.5622278125,44.2396529365235],[126.542345,44.2279647041016],[126.508546171875,44.2478322578125],[126.497345,44.2338430000001],[126.452745390625,44.2423574042969],[126.482672148438,44.2989083076172],[126.472154570313,44.3086525703125],[126.462535429688,44.3390334296875],[126.444732695313,44.3555306220703],[126.472535429688,44.3686525703125],[126.482154570313,44.4001210761719],[126.46134890625,44.4193978095704],[126.421510039063,44.4178188300781],[126.43263796875,44.438843],[126.422154570313,44.4586525703125],[126.412535429688,44.4801210761719],[126.432740507813,44.498843],[126.416964140625,44.5134615302735],[126.407345,44.523843],[126.432896757813,44.5382900214844],[126.441890898438,44.549521100586],[126.51306765625,44.5406679511719],[126.561793242188,44.5593959785156],[126.607345,44.563843],[126.610767851563,44.5516506171875],[126.619537382813,44.560419538086],[126.607345,44.563843],[126.617345,44.5777950263672],[126.63802859375,44.5489394355469],[126.688995390625,44.5354927802735],[126.717345,44.523843],[126.722345,44.5110353828125],[126.727345,44.523843],[126.745406523438,44.5167421699219],[126.8430090625,44.5355055976563],[126.876627226563,44.5152272773438],[126.971671171875,44.5313729072266],[127.015343046875,44.5577169013672],[127.037345,44.563843],[127.060650664063,44.5705062080079],[127.093702421875,44.6117836738282],[127.135753203125,44.6065529609375],[127.162896757813,44.6282900214844],[127.178912382813,44.6482900214844],[127.224000273438,44.6391732001954],[127.202896757813,44.6222743964844],[127.2598059375,44.6144271064453],[127.278912382813,44.6382900214844],[127.392896757813,44.6293959785156],[127.411793242188,44.6182900214844],[127.478179960938,44.6039260078125],[127.521793242188,44.5782900214844],[127.560689726563,44.5671688056641],[127.56330203125,44.5461611152344],[127.532896757813,44.5282900214844],[127.460611601563,44.5177687812501],[127.462965117188,44.498843],[127.460084257813,44.4756728339844],[127.501793242188,44.4422743964844],[127.492896757813,44.4182900214844],[127.473902617188,44.4030800605469],[127.512896757813,44.3793959785157],[127.552921171875,44.3294179511719],[127.613248320313,44.2811074042969],[127.611724882813,44.268843],[127.613013945313,44.2584505439453],[127.58849734375,44.2248891425782],[127.61662234375,44.1897670722656],[127.652896757813,44.1793959785156],[127.676763945313,44.1653682685547],[127.692896757813,44.1782900214844],[127.712423125,44.2026699042969],[127.727388945313,44.0998220039062],[127.747345,44.0838430000001],[127.721803007813,44.0359737373047],[127.649425078125,43.9894869208985],[127.606148710938,43.9994814277344],[127.578761015625,44.0349636054688],[127.521256132813,44.0264650703125],[127.525260039063,44.0535854316407],[127.508892851563,44.0747914863281],[127.45170046875,44.0981990791016],[127.438761015625,44.1149636054688],[127.387345,44.1073653388672],[127.37005984375,44.1099196601562],[127.35170046875,44.0794869208985],[127.34298953125,44.0581990791016],[127.331549101563,44.0392336250001],[127.33423953125,44.0210182929688],[127.31298953125,44.0081990791016],[127.273560820313,43.9920619941407],[127.271607695313,43.978843],[127.273980742188,43.9627791572266],[127.234815703125,43.9569911933594],[127.165631132813,43.9715895820313],[127.158878203125,44.0173073554688],[127.18093875,44.0343367744141],[127.183160429688,44.049355084961],[127.17170046875,44.0581990791016],[127.157345,44.0838430000001]]]]}},{"type":"Feature","properties":{"name":"永吉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.111519804688,43.8682729316407],[126.134078398438,43.8590407539063],[126.11298953125,43.8427620673828],[126.128116484375,43.8174788642578],[126.151832304688,43.8209841132813],[126.17041140625,43.7969118476563],[126.193824492188,43.7788430000001],[126.17298953125,43.7627620673828],[126.19170046875,43.7481990791016],[126.22298953125,43.7394869208985],[126.239058867188,43.700219953125],[126.2936340625,43.7225557685548],[126.321978789063,43.7396529365234],[126.357345,43.733843],[126.372896757813,43.7292787910156],[126.370982695313,43.7104567695313],[126.436285429688,43.6693056464844],[126.45591921875,43.6800905585938],[126.485406523438,43.7155873847657],[126.522345,43.7193526435548],[126.532345,43.7183333564454],[126.55634890625,43.7207802558594],[126.582896757813,43.7092665839844],[126.581793242188,43.6984529853516],[126.59818484375,43.6848409248047],[126.620928984375,43.645126569336],[126.592999296875,43.6219252753907],[126.611881132813,43.5783803535157],[126.63158328125,43.5439791083985],[126.597515898438,43.5156771064454],[126.611881132813,43.4983803535157],[126.622808867188,43.4893056464844],[126.636422148438,43.4729177070312],[126.647345,43.463843],[126.653214140625,43.4168514228516],[126.61166140625,43.399341046875],[126.613980742188,43.380683209961],[126.583453398438,43.3627370429688],[126.55166140625,43.349341046875],[126.556632109375,43.3093959785157],[126.516510039063,43.3196388984375],[126.482706328125,43.3395095039063],[126.467203398438,43.3375814033204],[126.439879179688,43.3490956855469],[126.415328398438,43.4073543525391],[126.382706328125,43.3881764960938],[126.365440703125,43.3903237128907],[126.351793242188,43.3793959785156],[126.342896757813,43.3582900214844],[126.307345,43.353843],[126.297022734375,43.3687929511719],[126.26142703125,43.3779274726563],[126.25326296875,43.3897585273438],[126.221138945313,43.4119356513672],[126.202345,43.4077223945313],[126.192066679688,43.4100264716797],[126.159141875,43.3961983466797],[126.132554960938,43.4021584296876],[126.121925078125,43.4565950751953],[126.062345,43.4432387519532],[126.028443632813,43.4508382392578],[125.98201296875,43.4206026435547],[125.977345,43.413843],[125.950596953125,43.4078884101562],[125.932808867188,43.4293056464844],[125.881881132813,43.4583803535157],[125.862808867188,43.4893056464844],[125.851793242188,43.4984529853516],[125.855440703125,43.5341927314453],[125.883707304688,43.6004885078125],[125.8818371875,43.618843],[125.882882109375,43.6291268134766],[125.859644804688,43.6836244941407],[125.841881132813,43.6983803535157],[125.8090246875,43.7741396308594],[125.797345,43.7838430000001],[125.800704375,43.820483625],[125.813985625,43.8472023750001],[125.817345,43.863843],[125.851846953125,43.8553688789063],[125.877345,43.8610848212891],[125.897345,43.856601178711],[125.912623320313,43.8600264716797],[125.952213164063,43.8433968330079],[125.97326296875,43.8579274726563],[125.98142703125,43.8697585273437],[126.02326296875,43.8779274726563],[126.037345,43.883843],[126.047838164063,43.8702480292969],[126.080806914063,43.8653755927734],[126.098424101563,43.8881990791016],[126.1131653125,43.8793819404297],[126.111519804688,43.8682729316407]]]]}},{"type":"Feature","properties":{"name":"桦甸市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.487345,42.6038430000001],[127.490767851563,42.6160353828126],[127.499537382813,42.6072658515625],[127.487345,42.6038430000001]]],[[[127.487345,42.6038430000001],[127.48326296875,42.5979274726563],[127.461051054688,42.5896169257813],[127.467735625,42.5597878242188],[127.417345,42.5710842109375],[127.400069609375,42.567212140625],[127.35377078125,42.5845339179688],[127.34326296875,42.5997585273438],[127.33142703125,42.6079274726563],[127.310714140625,42.6379274726563],[127.28142703125,42.6297585273438],[127.270147734375,42.6134206367188],[127.230855742188,42.5969167304688],[127.20076296875,42.6081764960938],[127.207345,42.623843],[127.220152617188,42.628843],[127.207345,42.6338430000001],[127.232896757813,42.6682900214844],[127.251793242188,42.7022743964844],[127.231793242188,42.7182900214844],[127.202921171875,42.7543447089844],[127.189527617188,42.80118675],[127.19455203125,42.8416054511719],[127.141983671875,42.7995595527344],[127.062345,42.8094643378907],[127.045318632813,42.8073464179687],[127.007345,42.7850258613282],[126.982896757813,42.7993959785156],[126.890548125,42.8082900214844],[126.893023710938,42.7883901191407],[126.879249296875,42.7773622871094],[126.852345,42.780708234375],[126.826261015625,42.7774648261719],[126.79978640625,42.7444057441407],[126.804156523438,42.7092958808594],[126.786236601563,42.6949489570313],[126.765479765625,42.669028546875],[126.747345,42.663843],[126.725108671875,42.6878432441407],[126.647345,42.723843],[126.652213164063,42.7737184882813],[126.68334109375,42.7986440253906],[126.664346953125,42.8309572578125],[126.632345,42.826977765625],[126.608136015625,42.8299892402344],[126.61302859375,42.869341046875],[126.586558867188,42.8804946113282],[126.611334257813,42.9226406074219],[126.580553007813,42.9472890449219],[126.598131132813,42.9771913886719],[126.56797,42.9899013496094],[126.53834109375,43.0602101875001],[126.521983671875,43.0581764960938],[126.49537234375,43.0738210273438],[126.478453398438,43.0949489570313],[126.450714140625,43.1171620917969],[126.411793242188,43.1282900214844],[126.393702421875,43.1508779121094],[126.345972929688,43.1449404121094],[126.312896757813,43.1993959785157],[126.291793242188,43.2082900214844],[126.262896757813,43.23530784375],[126.326846953125,43.2491445136719],[126.351793242188,43.2868532539063],[126.311793242188,43.2982900214844],[126.283922148438,43.3330934882813],[126.302896757813,43.3482900214844],[126.307345,43.353843],[126.342896757813,43.3582900214844],[126.351793242188,43.3793959785156],[126.365440703125,43.3903237128907],[126.382706328125,43.3881764960938],[126.415328398438,43.4073543525391],[126.439879179688,43.3490956855469],[126.467203398438,43.3375814033204],[126.482706328125,43.3395095039063],[126.516510039063,43.3196388984375],[126.556632109375,43.3093959785157],[126.55166140625,43.349341046875],[126.583453398438,43.3627370429688],[126.613980742188,43.380683209961],[126.61166140625,43.399341046875],[126.653214140625,43.4168514228516],[126.647345,43.463843],[126.69271609375,43.4426564765625],[126.713013945313,43.4720552802735],[126.732345,43.4677223945313],[126.762345,43.4744472480469],[126.792623320313,43.4676595283203],[126.8225403125,43.4802260566406],[126.85267703125,43.4606026435547],[126.863013945313,43.4456307197266],[126.916080351563,43.4575264716797],[126.927345,43.4738430000001],[126.987896757813,43.4469112373047],[127.017511015625,43.3996334052735],[127.042345,43.3976375556641],[127.078990507813,43.4005825019531],[127.113902617188,43.3877626777344],[127.14197390625,43.3900185371094],[127.129132109375,43.3739961982422],[127.09271609375,43.3426247382813],[127.106656523438,43.3062477851563],[127.12197390625,43.2884706855469],[127.147515898438,43.2770729804688],[127.131597929688,43.2485402656251],[127.184361601563,43.2389150214844],[127.209742460938,43.2094533515625],[127.224854765625,43.2082399726563],[127.282105742188,43.2292641425782],[127.34865359375,43.2239174628906],[127.423385039063,43.2408950019531],[127.4219153125,43.2591970039063],[127.45271609375,43.2684706855469],[127.502828398438,43.2868727851562],[127.542345,43.2900478339844],[127.572022734375,43.2876638007813],[127.58197390625,43.2992153144532],[127.607345,43.303843],[127.611793242188,43.2982900214844],[127.651378203125,43.2816091132813],[127.653077421875,43.2679726386719],[127.621187773438,43.2154726386719],[127.561793242188,43.1793959785156],[127.550123320313,43.1648281074219],[127.491666289063,43.1293178535157],[127.493590117188,43.113843],[127.490479765625,43.0888430000001],[127.493023710938,43.0683901191406],[127.473448515625,43.0527150703126],[127.470479765625,43.028843],[127.492896757813,43.0193959785157],[127.51767703125,42.9884511542969],[127.562896757813,42.9693959785157],[127.581793242188,42.9582900214844],[127.62099734375,42.9417690253907],[127.63537234375,42.9238210273438],[127.665631132813,42.9060341621094],[127.712261992188,42.8881081367188],[127.752589140625,42.8996230292969],[127.781793242188,42.8782900214844],[127.814229765625,42.8690151191407],[127.810533476563,42.8392958808594],[127.822896757813,42.8293959785157],[127.831793242188,42.8182900214844],[127.847100859375,42.8060292792969],[127.832896757813,42.7882900214844],[127.827345,42.7838430000001],[127.822896757813,42.7893959785157],[127.799039335938,42.8085024238281],[127.7230871875,42.8195571113282],[127.710582304688,42.8180019355469],[127.712965117188,42.798843],[127.71041140625,42.7783119941406],[127.64166140625,42.749341046875],[127.642965117188,42.738843],[127.641724882813,42.728843],[127.64302859375,42.718344953125],[127.612769804688,42.7055947089844],[127.582896757813,42.6682900214844],[127.53937625,42.6418556953126],[127.481793242188,42.6293959785157],[127.472896757813,42.6154116035156],[127.487345,42.6038430000001]]]]}},{"type":"Feature","properties":{"name":"蛟河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.157345,44.0838430000001],[127.160767851563,44.0960353828125],[127.169537382813,44.0872664619141],[127.157345,44.0838430000001]]],[[[127.157345,44.0838430000001],[127.17170046875,44.0581990791016],[127.183160429688,44.049355084961],[127.18093875,44.0343367744141],[127.158878203125,44.0173073554688],[127.165631132813,43.9715895820313],[127.234815703125,43.9569911933594],[127.273980742188,43.9627791572266],[127.271607695313,43.978843],[127.273560820313,43.9920619941407],[127.31298953125,44.0081990791016],[127.33423953125,44.0210182929688],[127.331549101563,44.0392336250001],[127.34298953125,44.0581990791016],[127.35170046875,44.0794869208985],[127.37005984375,44.1099196601562],[127.387345,44.1073653388672],[127.438761015625,44.1149636054688],[127.45170046875,44.0981990791016],[127.508892851563,44.0747914863281],[127.525260039063,44.0535854316407],[127.521256132813,44.0264650703125],[127.578761015625,44.0349636054688],[127.606148710938,43.9994814277344],[127.649425078125,43.9894869208985],[127.721803007813,44.0359737373047],[127.747345,44.0838430000001],[127.772506132813,44.0732747626953],[127.8251965625,44.0850868964844],[127.857345,44.063843],[127.85209109375,44.0463881660157],[127.81271609375,44.0184712958985],[127.776519804688,43.9957991767578],[127.771148710938,43.9289296699219],[127.86197390625,43.8785292792969],[127.85271609375,43.8684712958985],[127.80271609375,43.8534169746094],[127.81197390625,43.8084712958985],[127.83271609375,43.7992147041016],[127.845113554688,43.7580397773438],[127.86197390625,43.7384712958984],[127.921861601563,43.7248653388672],[127.900513945313,43.6866036201172],[127.903526640625,43.6491664863281],[127.8919153125,43.6391664863282],[127.8927746875,43.6284889960938],[127.86197390625,43.6192147041016],[127.83271609375,43.5984712958985],[127.81197390625,43.5892147041016],[127.80271609375,43.5784712958985],[127.79197390625,43.5692147041016],[127.78271609375,43.5584712958985],[127.77197390625,43.5492147041016],[127.7555090625,43.5123232246094],[127.695592070313,43.4942836738281],[127.691539335938,43.4438430000001],[127.6962121875,43.3857399726563],[127.664967070313,43.3494747138672],[127.621832304688,43.3302272773438],[127.622877226563,43.3172243476563],[127.607345,43.303843],[127.58197390625,43.2992153144532],[127.572022734375,43.2876638007813],[127.542345,43.2900478339844],[127.502828398438,43.2868727851562],[127.45271609375,43.2684706855469],[127.4219153125,43.2591970039063],[127.423385039063,43.2408950019531],[127.34865359375,43.2239174628906],[127.282105742188,43.2292641425782],[127.224854765625,43.2082399726563],[127.209742460938,43.2094533515625],[127.184361601563,43.2389150214844],[127.131597929688,43.2485402656251],[127.147515898438,43.2770729804688],[127.12197390625,43.2884706855469],[127.106656523438,43.3062477851563],[127.09271609375,43.3426247382813],[127.129132109375,43.3739961982422],[127.14197390625,43.3900185371094],[127.113902617188,43.3877626777344],[127.078990507813,43.4005825019531],[127.042345,43.3976375556641],[127.017511015625,43.3996334052735],[126.987896757813,43.4469112373047],[126.927345,43.4738430000001],[126.921207304688,43.5126619697266],[126.923570585938,43.53587425],[126.909830351563,43.5976003242187],[126.924771757813,43.6100136542969],[126.921324492188,43.6438649726563],[126.785484648438,43.6590981269532],[126.772808867188,43.6917671943359],[126.792808867188,43.7083803535156],[126.806422148438,43.7247682929688],[126.823834257813,43.7392330146485],[126.8218371875,43.758843],[126.824644804688,43.7863918281251],[126.807345,43.8138430000001],[126.81298953125,43.8181990791016],[126.8260559375,43.8351302314454],[126.848604765625,43.8525356269532],[126.808990507813,43.9015554023438],[126.83869265625,43.8971657539063],[126.853824492188,43.908843],[126.82298953125,43.9326430488281],[126.83170046875,43.9494869208985],[126.850426054688,43.9639400458985],[126.816324492188,44.0081221748047],[126.789288359375,44.0191866279297],[126.750865507813,44.0488430000001],[126.764483671875,44.059355084961],[126.760670195313,44.0851924873047],[126.774932890625,44.1036708808594],[126.817345,44.093843],[126.850865507813,44.0995375800782],[126.886656523438,44.1459072089844],[126.93205203125,44.1280611396485],[126.965045195313,44.1329366279298],[127.042261992188,44.1180916572266],[127.052735625,44.1196395087891],[127.071954375,44.1080464912109],[127.091832304688,44.1109841132813],[127.10170046875,44.0981990791016],[127.157345,44.0838430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"公主岭市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.743648710938,44.1496590400391],[124.74107546875,44.1381728339844],[124.765474882813,44.1213259101563],[124.749454375,44.0967287421876],[124.753468046875,44.0788430000001],[124.750396757813,44.0651607490234],[124.802506132813,44.0432747626953],[124.832847929688,44.0500771308594],[124.870816679688,44.0206502509766],[124.925225859375,44.0066884589844],[124.913551054688,43.9546169257813],[124.9577746875,43.9380690742188],[124.949595976563,43.9015895820313],[125.01326296875,43.9179274726563],[125.03142703125,43.9297585273438],[125.047345,43.9338430000001],[125.059595976563,43.9160964179688],[125.08326296875,43.8997585273438],[125.09142703125,43.8879274726563],[125.104586210938,43.878843],[125.091046171875,43.8694930244141],[125.097345,43.843843],[125.0918371875,43.8185884833985],[125.118834257813,43.7953304267579],[125.143541289063,43.7666524482422],[125.2274621875,43.7198293281251],[125.27314578125,43.7060744453125],[125.2927746875,43.6891664863281],[125.291920195313,43.6785646796875],[125.302999296875,43.6587123847656],[125.29197390625,43.6492147041016],[125.287345,43.643843],[125.2134778125,43.6375374580078],[125.054879179688,43.5950600410157],[124.9919153125,43.5510787177735],[124.992642851563,43.538843],[124.9913684375,43.5174367500001],[124.904400664063,43.49058128125],[124.882628203125,43.4769942451172],[124.902628203125,43.4591243720704],[124.912061796875,43.4314760566406],[124.8596496875,43.4152907539063],[124.87939578125,43.360259015625],[124.912628203125,43.3391243720704],[124.9305871875,43.3190200019532],[124.862061796875,43.2791237617188],[124.852628203125,43.2585622382813],[124.822720976563,43.2157509589844],[124.846490507813,43.1720143867188],[124.837345,43.163843],[124.782960234375,43.1951992011719],[124.777345,43.2138430000001],[124.771890898438,43.2290444160156],[124.792960234375,43.238716046875],[124.748609648438,43.2927700019532],[124.76373171875,43.3205947089844],[124.7616028125,43.3562709785157],[124.732061796875,43.3985616279297],[124.722628203125,43.4191243720704],[124.702061796875,43.4485616279297],[124.679386015625,43.4842171455079],[124.6848059375,43.5751149726563],[124.671495390625,43.5996059394532],[124.672940703125,43.6238430000001],[124.671490507813,43.648139875],[124.602061796875,43.6885616279297],[124.555699492188,43.7244911933594],[124.542628203125,43.7391243720703],[124.530220976563,43.7502065253907],[124.488961210938,43.7477474189454],[124.35218875,43.7638997626954],[124.217003203125,43.7558425117188],[124.175474882813,43.7093672919922],[124.087345,43.7038430000001],[124.072628203125,43.7391243720703],[124.03818484375,43.7835689521484],[124.0626575,43.8186061835938],[124.06146609375,43.8385903144531],[124.082056914063,43.8569893623047],[124.024049101563,43.9400392890625],[124.012628203125,43.9891243720704],[124.007345,44.0038430000001],[124.0813684375,44.0109871650391],[124.127345,44.0082466865235],[124.15209109375,44.0097219062501],[124.162061796875,43.9985616279297],[124.173844023438,43.9880379462891],[124.207345,43.9900350166016],[124.232345,43.9885451484375],[124.283150664063,43.9915731025391],[124.41349734375,44.0383431220704],[124.432061796875,44.0591243720703],[124.452628203125,44.0685616279297],[124.487730742188,44.0930825019532],[124.502061796875,44.1091243720704],[124.652628203125,44.1285616279297],[124.710318632813,44.1492617011719],[124.72259890625,44.1485298896485],[124.727345,44.153843],[124.743648710938,44.1496590400391]]]]}},{"type":"Feature","properties":{"name":"梨树县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.35218875,43.7638997626954],[124.488961210938,43.7477474189454],[124.530220976563,43.7502065253907],[124.542628203125,43.7391243720703],[124.555699492188,43.7244911933594],[124.602061796875,43.6885616279297],[124.671490507813,43.648139875],[124.672940703125,43.6238430000001],[124.671495390625,43.5996059394532],[124.6848059375,43.5751149726563],[124.679386015625,43.4842171455079],[124.702061796875,43.4485616279297],[124.722628203125,43.4191243720704],[124.732061796875,43.3985616279297],[124.7616028125,43.3562709785157],[124.76373171875,43.3205947089844],[124.748609648438,43.2927700019532],[124.792960234375,43.238716046875],[124.771890898438,43.2290444160156],[124.777345,43.2138430000001],[124.72197390625,43.1992153144531],[124.69271609375,43.1784706855469],[124.65197390625,43.1692153144531],[124.609840117188,43.139341046875],[124.59271609375,43.1592153144531],[124.56197390625,43.1684706855469],[124.532584257813,43.1792641425782],[124.522105742188,43.1784218574219],[124.488668242188,43.1907021308594],[124.462183867188,43.2214418769532],[124.427345,43.2138430000001],[124.415616484375,43.2290407539062],[124.352994414063,43.2396779609375],[124.337345,43.2373647285157],[124.313922148438,43.2408266425782],[124.29298953125,43.2281996894531],[124.277345,43.223843],[124.222154570313,43.2386525703125],[124.202511015625,43.249048078125],[124.172345,43.2478517890626],[124.137345,43.2492397285157],[124.112345,43.2482485175782],[124.102535429688,43.2690334296875],[124.092139921875,43.2786659980469],[124.09259890625,43.2902407050781],[124.013961210938,43.2871230292969],[123.9439075,43.3463246894532],[123.892139921875,43.3586562324219],[123.892935820313,43.3787746406251],[123.842720976563,43.4112026191407],[123.862550078125,43.4486788154297],[123.862115507813,43.4596688056641],[123.799971953125,43.4793434882813],[123.77252078125,43.4782552314453],[123.767345,43.483843],[123.77142703125,43.4997585273438],[123.78326296875,43.5179274726562],[123.79142703125,43.5397585273438],[123.86662234375,43.5483095527344],[123.893902617188,43.5878273750001],[123.93326296875,43.5979274726562],[123.94377078125,43.6131514716797],[123.98326296875,43.6279274726563],[123.995513945313,43.6456740546875],[124.04326296875,43.6579274726563],[124.059595976563,43.6815895820313],[124.08326296875,43.6979274726563],[124.087345,43.7038430000001],[124.175474882813,43.7093672919922],[124.217003203125,43.7558425117188],[124.35218875,43.7638997626954]]]]}},{"type":"Feature","properties":{"name":"双辽市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.692061796875,44.0785616279297],[123.707906523438,44.0644057441406],[123.730260039063,44.0393904853516],[123.762974882813,44.0243758369141],[123.761485625,43.9994295478516],[123.806138945313,43.9874697089844],[123.982061796875,43.9991243720704],[124.007345,44.0038430000001],[124.012628203125,43.9891243720704],[124.024049101563,43.9400392890625],[124.082056914063,43.8569893623047],[124.06146609375,43.8385903144531],[124.0626575,43.8186061835938],[124.03818484375,43.7835689521484],[124.072628203125,43.7391243720703],[124.087345,43.7038430000001],[124.08326296875,43.6979274726563],[124.059595976563,43.6815895820313],[124.04326296875,43.6579274726563],[123.995513945313,43.6456740546875],[123.98326296875,43.6279274726563],[123.94377078125,43.6131514716797],[123.93326296875,43.5979274726562],[123.893902617188,43.5878273750001],[123.86662234375,43.5483095527344],[123.79142703125,43.5397585273438],[123.78326296875,43.5179274726562],[123.77142703125,43.4997585273438],[123.767345,43.483843],[123.75281375,43.4748891425781],[123.737564726563,43.4301387763672],[123.708780546875,43.4124056220704],[123.689561796875,43.3812142158203],[123.697345,43.3638430000001],[123.59170046875,43.3681990791016],[123.542452421875,43.4099404121094],[123.51744265625,43.3948525214844],[123.480806914063,43.4423104072266],[123.447838164063,43.4374379707032],[123.430806914063,43.4153755927734],[123.402882109375,43.4195021796876],[123.37298953125,43.4694869208985],[123.357086210938,43.4817604804688],[123.332345,43.4781038642578],[123.310494414063,43.4813326240234],[123.315513945313,43.515298078125],[123.30170046875,43.5381990791016],[123.297345,43.5538430000001],[123.368311796875,43.5627095771485],[123.438258085938,43.5468215156251],[123.461793242188,43.5542659736329],[123.424381132813,43.5842232490235],[123.412896757813,43.6022518134766],[123.47123171875,43.5855947089844],[123.504107695313,43.5896840644532],[123.501441679688,43.6111074042969],[123.522896757813,43.6282900214844],[123.531793242188,43.6442659736329],[123.511676054688,43.6784828925782],[123.515284453125,43.7074843574219],[123.501793242188,43.7182900214844],[123.492896757813,43.7293959785157],[123.479405546875,43.7402016425782],[123.485284453125,43.7874843574219],[123.464215117188,43.8043556953125],[123.452896757813,43.8693959785156],[123.441793242188,43.8782900214844],[123.42656375,43.9144295478516],[123.364859648438,43.963843],[123.388565703125,43.982827375],[123.317940703125,44.0393807197266],[123.327345,44.063843],[123.333609648438,44.0708534980469],[123.386261015625,44.0677156806641],[123.478428984375,44.079970319336],[123.522345,44.0773531318359],[123.577345,44.0806313300781],[123.631011992188,44.0774324775391],[123.669224882813,44.1041249824219],[123.692061796875,44.0785616279297]]]]}},{"type":"Feature","properties":{"name":"铁东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.462183867188,43.2214418769532],[124.488668242188,43.1907021308594],[124.522105742188,43.1784218574219],[124.532584257813,43.1792641425782],[124.56197390625,43.1684706855469],[124.59271609375,43.1592153144531],[124.609840117188,43.139341046875],[124.65197390625,43.1692153144531],[124.69271609375,43.1784706855469],[124.72197390625,43.1992153144531],[124.777345,43.2138430000001],[124.782960234375,43.1951992011719],[124.837345,43.163843],[124.844918242188,43.148872296875],[124.873985625,43.140483625],[124.877345,43.1338430000001],[124.868121367188,43.12097190625],[124.852345,43.1178554511719],[124.832345,43.1218068671875],[124.807345,43.1168666816406],[124.789244414063,43.1204433417969],[124.773170195313,43.0980178046875],[124.755694609375,43.0854933906251],[124.743170195313,43.0680178046875],[124.676529570313,43.0546584296876],[124.6618371875,42.9813600898438],[124.631519804688,42.9696681953125],[124.62166140625,42.9441030097657],[124.601519804688,42.9296681953125],[124.582862578125,42.903637921875],[124.541519804688,42.8796681953126],[124.532965117188,42.8677321601563],[124.514283476563,42.8714235664063],[124.493170195313,42.8580178046876],[124.460089140625,42.845259015625],[124.463453398438,42.8282228828125],[124.457345,42.8238430000001],[124.45142703125,42.8279274726563],[124.440953398438,42.8687416816407],[124.37142703125,42.8779274726563],[124.357345,42.883843],[124.362154570313,42.8990334296876],[124.382535429688,42.9086525703126],[124.402154570313,42.9190334296875],[124.425206328125,42.9299123359375],[124.442154570313,42.9501210761719],[124.42093875,42.9697780585938],[124.372550078125,42.9678603339844],[124.32490359375,42.9930727363282],[124.422037382813,43.0728969550782],[124.382154570313,43.0986525703126],[124.347345,43.123843],[124.351676054688,43.1407265449219],[124.391671171875,43.2001149726563],[124.402799101563,43.1976210761719],[124.427345,43.2138430000001],[124.462183867188,43.2214418769532]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.313922148438,43.2408266425782],[124.337345,43.2373647285157],[124.352994414063,43.2396779609375],[124.415616484375,43.2290407539062],[124.427345,43.2138430000001],[124.402799101563,43.1976210761719],[124.391671171875,43.2001149726563],[124.351676054688,43.1407265449219],[124.347345,43.123843],[124.331793242188,43.1282900214844],[124.322896757813,43.1393959785157],[124.270753203125,43.1710695625],[124.277345,43.223843],[124.29298953125,43.2281996894531],[124.313922148438,43.2408266425782]]]]}},{"type":"Feature","properties":{"name":"伊通满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.23326296875,43.4499013496094],[125.275235625,43.4397585273438],[125.34142703125,43.4697585273438],[125.379947539063,43.4796431708985],[125.357345,43.5138430000001],[125.36142703125,43.5197585273438],[125.38326296875,43.5279274726563],[125.39142703125,43.5420003486329],[125.371846953125,43.5376107001953],[125.36326296875,43.5441188789063],[125.38326296875,43.5579274726562],[125.39142703125,43.5797585273438],[125.42326296875,43.5879274726563],[125.447345,43.603843],[125.453004179688,43.5585610175782],[125.44146609375,43.5285500312501],[125.452896757813,43.5193959785157],[125.461793242188,43.4982900214844],[125.504112578125,43.4403548408203],[125.4870715625,43.4113649726563],[125.512345,43.4082210517578],[125.524893828125,43.4097823310548],[125.581793242188,43.3974721503907],[125.572896757813,43.3782900214844],[125.534923125,43.3552230048828],[125.576060820313,43.3251735664063],[125.631236601563,43.2927370429688],[125.662896757813,43.2793959785157],[125.687345,43.263843],[125.671007109375,43.240180890625],[125.637994414063,43.2173867011719],[125.65142703125,43.1979274726563],[125.67170046875,43.1839321113281],[125.682271757813,43.1556728339844],[125.70142703125,43.1279274726563],[125.76103640625,43.1185329414063],[125.778707304688,43.0913906074219],[125.752345,43.0854799628907],[125.731573515625,43.0901369453126],[125.719732695313,43.0585036445313],[125.667345,43.0538430000001],[125.662345,43.0770864082032],[125.657345,43.0538430000001],[125.64326296875,43.0597585273438],[125.58142703125,43.0679274726563],[125.55326296875,43.0897585273438],[125.49142703125,43.0979274726563],[125.475103789063,43.1415517402344],[125.483468046875,43.178843],[125.47978640625,43.1952529121094],[125.436236601563,43.2253200507813],[125.392345,43.2154799628906],[125.372345,43.2199636054688],[125.359381132813,43.2170583320313],[125.364991484375,43.1920449042969],[125.349849882813,43.156001203125],[125.39326296875,43.1397585273438],[125.397345,43.1338430000001],[125.377667265625,43.0997145820313],[125.329210234375,43.1267507148437],[125.27197390625,43.1484706855469],[125.185260039063,43.2258705878907],[125.02197390625,43.2092153144532],[125.00271609375,43.198470685547],[124.970103789063,43.1886525703125],[124.95271609375,43.1684706855469],[124.887345,43.1338430000001],[124.877345,43.1338430000001],[124.873985625,43.140483625],[124.844918242188,43.148872296875],[124.837345,43.163843],[124.846490507813,43.1720143867188],[124.822720976563,43.2157509589844],[124.852628203125,43.2585622382813],[124.862061796875,43.2791237617188],[124.9305871875,43.3190200019532],[124.912628203125,43.3391243720704],[124.87939578125,43.360259015625],[124.8596496875,43.4152907539063],[124.912061796875,43.4314760566406],[124.902628203125,43.4591243720704],[124.882628203125,43.4769942451172],[124.904400664063,43.49058128125],[124.9913684375,43.5174367500001],[124.992642851563,43.538843],[124.9919153125,43.5510787177735],[125.054879179688,43.5950600410157],[125.2134778125,43.6375374580078],[125.287345,43.643843],[125.29142703125,43.6279274726563],[125.30408328125,43.6084950996094],[125.29142703125,43.5997585273438],[125.270338164063,43.5628035712891],[125.275557890625,43.5395131660157],[125.259132109375,43.5281728339844],[125.266158476563,43.4968325019531],[125.24142703125,43.4797585273438],[125.23326296875,43.4499013496094]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.436236601563,43.2253200507813],[125.47978640625,43.1952529121094],[125.483468046875,43.178843],[125.475103789063,43.1415517402344],[125.49142703125,43.0979274726563],[125.55326296875,43.0897585273438],[125.58142703125,43.0679274726563],[125.64326296875,43.0597585273438],[125.657345,43.0538430000001],[125.667345,43.0538430000001],[125.674918242188,43.0388722968751],[125.709771757813,43.0288137031251],[125.720704375,43.0072023750001],[125.727345,43.003843],[125.755357695313,42.9407448554687],[125.735548125,42.923676984375],[125.730889921875,42.8657216621094],[125.75197390625,42.8184706855469],[125.786793242188,42.8029335761719],[125.83197390625,42.764009015625],[125.805523710938,42.7481850410156],[125.792252226563,42.7492519355469],[125.712437773438,42.7384340644532],[125.698604765625,42.7395449042969],[125.641261015625,42.7290846992188],[125.662877226563,42.7104616523438],[125.657008085938,42.637446515625],[125.68197390625,42.6084706855469],[125.713355742188,42.5990224433594],[125.70197390625,42.5892153144531],[125.6880871875,42.5730995917969],[125.67197390625,42.5592153144531],[125.662022734375,42.5476638007813],[125.63877078125,42.5495314765625],[125.58275515625,42.5012721992188],[125.558131132813,42.4363881660156],[125.430968046875,42.3799379707031],[125.412345,42.3784413886719],[125.389224882813,42.3802992988281],[125.34197390625,42.3592153144531],[125.316832304688,42.3300319648438],[125.26197390625,42.3092153144532],[125.257345,42.303843],[125.165650664063,42.3075978828125],[125.174405546875,42.3288430000001],[125.16654421875,42.3479213691407],[125.2005871875,42.3665834785157],[125.17654421875,42.3797646308594],[125.18646609375,42.4038430000001],[125.175816679688,42.4296804023437],[125.145445585938,42.4390639472656],[125.12892703125,42.4692006660157],[125.107345,42.473843],[125.098389921875,42.48837425],[125.07048953125,42.4978835273438],[125.075460234375,42.513843],[125.066329375,42.5431545234375],[125.08404421875,42.5683852363282],[125.079229765625,42.583843],[125.090279570313,42.6193190742188],[125.047345,42.623843],[125.06271609375,42.6484706855469],[125.077022734375,42.6959938789063],[125.17654421875,42.65944846875],[125.228468046875,42.6884194160157],[125.27271609375,42.6984706855469],[125.322935820313,42.7264894843751],[125.321944609375,42.738843],[125.322906523438,42.7508071113281],[125.360445585938,42.7477907539063],[125.43213015625,42.7692617011719],[125.443961210938,42.7683107734376],[125.46197390625,42.7892153144532],[125.4780871875,42.8030995917969],[125.500103789063,42.8286525703125],[125.533355742188,42.8386635566407],[125.5219153125,42.8485195136719],[125.523936796875,42.8736305976562],[125.5118371875,42.9290969062501],[125.535831328125,42.9497682929688],[125.561363554688,42.9477162910156],[125.583453398438,42.9600405097657],[125.580870390625,42.9921901679688],[125.56197390625,43.008470685547],[125.544439726563,43.02882346875],[125.486656523438,43.0419509101563],[125.45271609375,43.0892153144531],[125.42505984375,43.1015566230469],[125.41271609375,43.1292153144531],[125.397345,43.1338430000001],[125.39326296875,43.1397585273438],[125.349849882813,43.156001203125],[125.364991484375,43.1920449042969],[125.359381132813,43.2170583320313],[125.372345,43.2199636054688],[125.392345,43.2154799628906],[125.436236601563,43.2253200507813]]]]}},{"type":"Feature","properties":{"name":"东辽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.329210234375,43.1267507148437],[125.377667265625,43.0997145820313],[125.397345,43.1338430000001],[125.41271609375,43.1292153144531],[125.42505984375,43.1015566230469],[125.45271609375,43.0892153144531],[125.486656523438,43.0419509101563],[125.544439726563,43.02882346875],[125.56197390625,43.008470685547],[125.580870390625,42.9921901679688],[125.583453398438,42.9600405097657],[125.561363554688,42.9477162910156],[125.535831328125,42.9497682929688],[125.5118371875,42.9290969062501],[125.523936796875,42.8736305976562],[125.5219153125,42.8485195136719],[125.533355742188,42.8386635566407],[125.500103789063,42.8286525703125],[125.4780871875,42.8030995917969],[125.46197390625,42.7892153144532],[125.443961210938,42.7683107734376],[125.43213015625,42.7692617011719],[125.360445585938,42.7477907539063],[125.322906523438,42.7508071113281],[125.321944609375,42.738843],[125.322935820313,42.7264894843751],[125.27271609375,42.6984706855469],[125.228468046875,42.6884194160157],[125.17654421875,42.65944846875],[125.077022734375,42.6959938789063],[125.06271609375,42.6484706855469],[125.047345,42.623843],[125.034742460938,42.6092153144532],[125.01197390625,42.628470685547],[125.00271609375,42.6592153144531],[124.9719153125,42.6785073066406],[124.973150664063,42.693843],[124.971163359375,42.7185195136719],[124.99197390625,42.7364455390625],[124.97986453125,42.7793105292969],[124.955689726563,42.8073683906251],[124.913316679688,42.8107741523437],[124.886124296875,42.7792153144531],[124.8668371875,42.7918300605469],[124.851217070313,42.8198232246094],[124.852745390625,42.838843],[124.849146757813,42.8836330390625],[124.8663684375,42.9786183906251],[124.85271609375,43.0092153144531],[124.836949492188,43.0227992988282],[124.87271609375,43.0684706855469],[124.887345,43.1338430000001],[124.95271609375,43.1684706855469],[124.970103789063,43.1886525703125],[125.00271609375,43.198470685547],[125.02197390625,43.2092153144532],[125.185260039063,43.2258705878907],[125.27197390625,43.1484706855469],[125.329210234375,43.1267507148437]],[[125.317345,42.9038430000001],[125.329537382813,42.9072658515625],[125.320767851563,42.9160353828125],[125.304810820313,42.9146425605469],[125.271959257813,43.0012087226563],[125.242823515625,43.0284706855469],[125.187345,42.993843],[125.161246367188,42.9899404121094],[125.15158328125,42.9748415351562],[125.132345,42.9802480292969],[125.122345,42.9774379707032],[125.102345,42.9830580878906],[125.077345,42.9760329414063],[125.054288359375,42.9825124335938],[125.0651575,42.9438430000001],[125.058345976563,42.9196059394532],[125.067345,42.913843],[125.07170046875,42.9081996894532],[125.081422148438,42.8424050117188],[125.11298953125,42.8294863105469],[125.125811796875,42.812876203125],[125.16170046875,42.8394863105469],[125.19021609375,42.8511574531251],[125.217926054688,42.8344448066407],[125.266485625,42.8704482246094],[125.297345,42.8658876777344],[125.325186796875,42.8700014472656],[125.317345,42.9038430000001]]]]}},{"type":"Feature","properties":{"name":"龙山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.317345,42.9038430000001],[125.320767851563,42.9160353828125],[125.329537382813,42.9072658515625],[125.317345,42.9038430000001]]],[[[125.317345,42.9038430000001],[125.325186796875,42.8700014472656],[125.297345,42.8658876777344],[125.266485625,42.8704482246094],[125.217926054688,42.8344448066407],[125.19021609375,42.8511574531251],[125.16170046875,42.8394863105469],[125.125811796875,42.812876203125],[125.11298953125,42.8294863105469],[125.081422148438,42.8424050117188],[125.07170046875,42.9081996894532],[125.067345,42.913843],[125.132340117188,42.9084401679688],[125.16338015625,42.9109352851563],[125.161920195313,42.9291213203125],[125.182916289063,42.9667494941407],[125.181925078125,42.9790810371094],[125.187345,42.993843],[125.242823515625,43.0284706855469],[125.271959257813,43.0012087226563],[125.304810820313,42.9146425605469],[125.317345,42.9038430000001]]]]}},{"type":"Feature","properties":{"name":"西安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.181925078125,42.9790810371094],[125.182916289063,42.9667494941407],[125.161920195313,42.9291213203125],[125.16338015625,42.9109352851563],[125.132340117188,42.9084401679688],[125.067345,42.913843],[125.058345976563,42.9196059394532],[125.0651575,42.9438430000001],[125.054288359375,42.9825124335938],[125.077345,42.9760329414063],[125.102345,42.9830580878906],[125.122345,42.9774379707032],[125.132345,42.9802480292969],[125.15158328125,42.9748415351562],[125.161246367188,42.9899404121094],[125.187345,42.993843],[125.181925078125,42.9790810371094]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东昌区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.931793242188,41.7882900214844],[125.955777617188,41.7793959785156],[125.967345,41.7938430000001],[125.972896757813,41.7893959785157],[125.981793242188,41.7782900214844],[125.992896757813,41.7693959785156],[126.001793242188,41.7582900214844],[126.022896757813,41.7493959785157],[126.03490359375,41.7074147773438],[126.117345,41.6838430000001],[126.110455351563,41.6758437324219],[126.034771757813,41.6284389472656],[126.05197390625,41.6084706855469],[126.121695585938,41.5519338203125],[126.077345,41.543843],[126.042838164063,41.5574086738281],[125.99170046875,41.5681996894532],[125.97298953125,41.5794863105469],[125.88380984375,41.5946364570313],[125.872808867188,41.5677626777344],[125.857345,41.5738430000001],[125.8451575,41.6274990058594],[125.882896757813,41.6382900214844],[125.9209778125,41.6529262519531],[125.899249296875,41.6703237128906],[125.881846953125,41.66815940625],[125.871085234375,41.6937026191407],[125.872965117188,41.708843],[125.871241484375,41.7227150703125],[125.851793242188,41.7382900214844],[125.842896757813,41.7668532539063],[125.8960559375,41.7820522285157],[125.915240507813,41.8275746894532],[125.931793242188,41.7882900214844]]]]}},{"type":"Feature","properties":{"name":"二道江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.10142703125,41.7879274726563],[126.130069609375,41.777212140625],[126.1605871875,41.7840529609375],[126.17142703125,41.7997585273438],[126.197432890625,41.8094887519532],[126.21142703125,41.8297585273438],[126.22326296875,41.8379274726563],[126.227345,41.843843],[126.271358671875,41.8384633613282],[126.315787382813,41.8041689277345],[126.301217070313,41.7518434882813],[126.281549101563,41.7192336250001],[126.283082304688,41.708843],[126.281549101563,41.698452375],[126.29298953125,41.6794863105469],[126.297345,41.663843],[126.26298953125,41.6694863105469],[126.191514921875,41.6782216621094],[126.193082304688,41.6888430000001],[126.190421171875,41.7068495917969],[126.158424101563,41.7181996894532],[126.135894804688,41.689009015625],[126.117345,41.6838430000001],[126.03490359375,41.7074147773438],[126.022896757813,41.7493959785157],[126.001793242188,41.7582900214844],[125.992896757813,41.7693959785156],[125.981793242188,41.7782900214844],[125.972896757813,41.7893959785157],[125.967345,41.7938430000001],[125.960831328125,41.7983388496094],[125.976636992188,41.835962140625],[126.02326296875,41.8479274726563],[126.055250273438,41.86136253125],[126.07142703125,41.8379274726563],[126.092296171875,41.8235207343751],[126.10142703125,41.7879274726563]]]]}},{"type":"Feature","properties":{"name":"辉南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.390191679688,42.8114821601563],[126.380894804688,42.6958095527344],[126.417100859375,42.6756093574219],[126.467345,42.6796462226563],[126.482345,42.6784413886719],[126.500787382813,42.6799233222657],[126.547730742188,42.6626845527344],[126.569722929688,42.6882106757813],[126.59271609375,42.6984706855469],[126.6274621875,42.717856671875],[126.647345,42.723843],[126.725108671875,42.6878432441407],[126.747345,42.663843],[126.74170046875,42.6594863105469],[126.701417265625,42.6061147285157],[126.620455351563,42.5835707832032],[126.63310671875,42.5289858222656],[126.631607695313,42.5188430000001],[126.633082304688,42.508843],[126.627183867188,42.4689113593751],[126.57170046875,42.4594863105469],[126.509464140625,42.4133437324219],[126.513082304688,42.388843],[126.511549101563,42.3784523750001],[126.534410429688,42.3405544257813],[126.521549101563,42.319233625],[126.52420046875,42.3012831855469],[126.517345,42.283843],[126.472237578125,42.2784133125],[126.422515898438,42.2892580390626],[126.407345,42.2880397773438],[126.3766809375,42.2905031562501],[126.33271609375,42.2784706855469],[126.209097929688,42.2671132636719],[126.192701445313,42.3392739082031],[126.14392703125,42.3353542304688],[126.09271609375,42.3426247382812],[126.12271609375,42.3684706855469],[126.149049101563,42.4274867988281],[126.09197390625,42.4684706855469],[126.08271609375,42.4792153144531],[126.07197390625,42.4884706855469],[126.050264921875,42.5371254707032],[126.027345,42.573843],[126.02000125,42.5938430000001],[126.03271609375,42.628470685547],[126.04197390625,42.6608217597657],[126.012066679688,42.6584194160157],[125.980269804688,42.6761598945313],[126.021099882813,42.7493447089844],[126.036553984375,42.7481032539063],[126.067345,42.7838430000001],[126.1386340625,42.7897682929688],[126.229820585938,42.777407453125],[126.26197390625,42.7892153144532],[126.29271609375,42.7984706855469],[126.303316679688,42.8107741523437],[126.342345,42.8076381660156],[126.390191679688,42.8114821601563]]]]}},{"type":"Feature","properties":{"name":"集安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.017345,40.893843],[125.987345,40.893843],[125.987345,40.913843],[126.017345,40.913843],[126.017345,40.893843]]],[[[126.507345,41.373843],[126.540797148438,41.3694960761719],[126.5243371875,41.3403932929688],[126.474014921875,41.3483669257812],[126.503892851563,41.3572927070313],[126.507345,41.373843]]],[[[126.467345,41.503843],[126.455152617188,41.5004201484375],[126.463922148438,41.4916506171875],[126.503985625,41.507202375],[126.515426054688,41.5298183417969],[126.547345,41.5338430000001],[126.542061796875,41.5191237617188],[126.531485625,41.4848610664063],[126.49295046875,41.4139553046876],[126.507345,41.373843],[126.48170046875,41.3694863105469],[126.432081328125,41.3499806953125],[126.42298953125,41.3381996894532],[126.4060559375,41.3251308417969],[126.3886340625,41.3025551582031],[126.362511015625,41.2823928046876],[126.35298953125,41.2481996894531],[126.313878203125,41.2248085761719],[126.30298953125,41.1981996894532],[126.29170046875,41.1894863105469],[126.279654570313,41.1600563789063],[126.238795195313,41.148676984375],[126.22298953125,41.1281996894531],[126.19170046875,41.1194863105469],[126.1786340625,41.1025551582031],[126.155479765625,41.0846852851562],[126.121905546875,41.0896462226563],[126.10298953125,41.0749245429688],[126.130299101563,41.053843],[126.09990359375,41.0303786445313],[126.103170195313,41.0082497382813],[126.07009890625,40.9990407539063],[126.073463164063,40.9762831855469],[126.05170046875,40.9594863105469],[126.0320715625,40.9266664863282],[126.002345,40.931059796875],[125.979127226563,40.9276284003906],[125.96298953125,40.8881996894532],[125.947086210938,40.8759255195313],[125.913746367188,40.8808522773438],[125.907345,40.903843],[125.919537382813,40.9072658515626],[125.910767851563,40.9160353828125],[125.907345,40.903843],[125.892491484375,40.8969033027344],[125.864996367188,40.9072658515626],[125.8537121875,40.8874745917969],[125.804400664063,40.8614711738282],[125.789244414063,40.8880519843751],[125.7651184375,40.8974745917969],[125.7537121875,40.8774745917969],[125.7109778125,40.8702114082031],[125.697345,40.863843],[125.691339140625,40.8859938789062],[125.657701445313,40.9110170722657],[125.5676575,40.8897377753906],[125.577345,40.913843],[125.58298953125,40.9181996894532],[125.593746367188,40.9321388984375],[125.63298953125,40.9481996894531],[125.648365507813,40.9681215644532],[125.67298953125,40.9781996894531],[125.682276640625,41.022212140625],[125.710865507813,41.0442800117188],[125.73170046875,41.0827614570313],[125.711529570313,41.0983315253907],[125.713560820313,41.1120619941406],[125.75298953125,41.1281996894531],[125.76170046875,41.1494863105469],[125.781085234375,41.1644472480469],[125.727701445313,41.1793129707032],[125.750831328125,41.2381545234375],[125.69170046875,41.2481996894531],[125.673883085938,41.2712868476563],[125.642345,41.266626203125],[125.63298953125,41.2894863105469],[125.620362578125,41.3104201484375],[125.625811796875,41.3473073554688],[125.61170046875,41.3581996894531],[125.607345,41.363843],[125.633814726563,41.3808425117188],[125.664947539063,41.3762416816407],[125.646241484375,41.4072524238282],[125.67298953125,41.4181996894532],[125.69170046875,41.4494863105469],[125.754371367188,41.4601332832032],[125.749742460938,41.4914443183594],[125.781832304688,41.4867018867188],[125.795811796875,41.504809796875],[125.781011992188,41.529341046875],[125.82298953125,41.5381996894532],[125.83170046875,41.5594863105469],[125.85298953125,41.5681996894532],[125.857345,41.5738430000001],[125.872808867188,41.5677626777344],[125.88380984375,41.5946364570313],[125.97298953125,41.5794863105469],[125.99170046875,41.5681996894532],[126.042838164063,41.5574086738281],[126.077345,41.543843],[126.0860559375,41.5325551582031],[126.109127226563,41.5147499824219],[126.12420046875,41.4764028144531],[126.121607695313,41.4588430000001],[126.123824492188,41.443843],[126.118878203125,41.4103786445313],[126.142178984375,41.3923928046876],[126.157891875,41.3359682441407],[126.182345,41.3395815253907],[126.20369265625,41.3364272285157],[126.27298953125,41.3481996894532],[126.29170046875,41.3594863105469],[126.313170195313,41.3682729316406],[126.309429960938,41.3935854316407],[126.32170046875,41.4094863105469],[126.3386340625,41.4225551582031],[126.36041140625,41.4507741523438],[126.38298953125,41.4681996894532],[126.39170046875,41.5094863105469],[126.397345,41.513843],[126.422301054688,41.5077126289063],[126.458995390625,41.5159377265625],[126.467345,41.503843]]]]}},{"type":"Feature","properties":{"name":"柳河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.807345,41.943843],[125.803922148438,41.9560353828125],[125.795152617188,41.9472658515625],[125.791378203125,41.9153249335938],[125.760767851563,41.8968593574219],[125.727345,41.9017983222657],[125.702345,41.8981044746094],[125.678863554688,41.9015749335938],[125.6173059375,41.8836269355469],[125.578365507813,41.8995644355469],[125.56298953125,41.9194863105469],[125.541226835938,41.9362831855469],[125.544195585938,41.9563515449219],[125.511519804688,41.9805751777344],[125.469928007813,41.9689931464844],[125.419390898438,41.9299831367188],[125.44170046875,41.9127614570313],[125.388238554688,41.8997267890626],[125.37298953125,41.9194863105469],[125.347345,41.923843],[125.343985625,41.9304836250001],[125.304298125,41.9504201484375],[125.287345,41.9538430000001],[125.291793242188,41.9693959785156],[125.3491028125,41.9935451484375],[125.401793242188,42.0593959785157],[125.414156523438,42.0692958808594],[125.41037234375,42.0997109199219],[125.440987578125,42.0959023261719],[125.451793242188,42.1093959785156],[125.470831328125,42.1246450019531],[125.481793242188,42.1439943671876],[125.447345,42.153843],[125.454068632813,42.1761696601563],[125.497345,42.1796462226563],[125.512691679688,42.1784133125],[125.52197390625,42.1992153144532],[125.5627746875,42.2285121894532],[125.561124296875,42.2490224433595],[125.62197390625,42.2628456855469],[125.61271609375,42.2792153144531],[125.59271609375,42.2964455390625],[125.603116484375,42.3107900214844],[125.644610625,42.3074550605469],[125.674556914063,42.342212140625],[125.728238554688,42.3224977851563],[125.81197390625,42.3692153144532],[125.8430871875,42.3830995917969],[125.883853789063,42.4481850410157],[125.90197390625,42.4692153144531],[125.93271609375,42.4884706855469],[125.96197390625,42.5092153144531],[125.98271609375,42.5184706855469],[126.01197390625,42.5692153144532],[126.027345,42.573843],[126.050264921875,42.5371254707032],[126.07197390625,42.4884706855469],[126.08271609375,42.4792153144531],[126.09197390625,42.4684706855469],[126.149049101563,42.4274867988281],[126.12271609375,42.3684706855469],[126.09271609375,42.3426247382812],[126.14392703125,42.3353542304688],[126.192701445313,42.3392739082031],[126.209097929688,42.2671132636719],[126.33271609375,42.2784706855469],[126.3766809375,42.2905031562501],[126.407345,42.2880397773438],[126.422515898438,42.2892580390626],[126.472237578125,42.2784133125],[126.517345,42.283843],[126.521378203125,42.2518740058594],[126.577345,42.2238430000001],[126.546954375,42.1844680000001],[126.486812773438,42.19335471875],[126.46170046875,42.1594863105469],[126.44298953125,42.1281996894531],[126.391119414063,42.0921291328125],[126.39312625,42.0785512519532],[126.387345,42.0638430000001],[126.360704375,42.060483625],[126.313985625,42.037202375],[126.287345,42.033843],[126.298306914063,42.0784645820313],[126.261041289063,42.0880275703125],[126.265557890625,42.1081728339844],[126.246500273438,42.1213307929688],[126.1912121875,42.1041933417969],[126.13326296875,42.0779274726563],[126.04142703125,42.0697585273438],[126.01326296875,42.0479274726563],[125.98142703125,42.0397585273437],[125.95326296875,42.0279274726563],[125.92142703125,42.0197585273438],[125.89326296875,41.9979274726562],[125.868980742188,41.9888430000001],[125.87361453125,41.9681728339844],[125.86142703125,41.9597585273438],[125.85326296875,41.9479274726563],[125.807345,41.943843]]]]}},{"type":"Feature","properties":{"name":"梅河口市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.067345,42.7838430000001],[126.036553984375,42.7481032539063],[126.021099882813,42.7493447089844],[125.980269804688,42.6761598945313],[126.012066679688,42.6584194160157],[126.04197390625,42.6608217597657],[126.03271609375,42.628470685547],[126.02000125,42.5938430000001],[126.027345,42.573843],[126.01197390625,42.5692153144532],[125.98271609375,42.5184706855469],[125.96197390625,42.5092153144531],[125.93271609375,42.4884706855469],[125.90197390625,42.4692153144531],[125.883853789063,42.4481850410157],[125.8430871875,42.3830995917969],[125.81197390625,42.3692153144532],[125.728238554688,42.3224977851563],[125.674556914063,42.342212140625],[125.644610625,42.3074550605469],[125.603116484375,42.3107900214844],[125.59271609375,42.2964455390625],[125.61271609375,42.2792153144531],[125.62197390625,42.2628456855469],[125.561124296875,42.2490224433595],[125.5627746875,42.2285121894532],[125.52197390625,42.1992153144532],[125.512691679688,42.1784133125],[125.497345,42.1796462226563],[125.454068632813,42.1761696601563],[125.447345,42.153843],[125.39763796875,42.1585866523438],[125.362735625,42.1796401191406],[125.348834257813,42.1775856757813],[125.353175078125,42.1482302070313],[125.300225859375,42.1394863105469],[125.30623171875,42.1801564765625],[125.279742460938,42.1762416816407],[125.305421171875,42.2188100410156],[125.271519804688,42.2282497382813],[125.274561796875,42.248843],[125.271529570313,42.2693544746094],[125.29146609375,42.2847414375],[125.257345,42.303843],[125.26197390625,42.3092153144532],[125.316832304688,42.3300319648438],[125.34197390625,42.3592153144531],[125.389224882813,42.3802992988281],[125.412345,42.3784413886719],[125.430968046875,42.3799379707031],[125.558131132813,42.4363881660156],[125.58275515625,42.5012721992188],[125.63877078125,42.5495314765625],[125.662022734375,42.5476638007813],[125.67197390625,42.5592153144531],[125.6880871875,42.5730995917969],[125.70197390625,42.5892153144531],[125.713355742188,42.5990224433594],[125.68197390625,42.6084706855469],[125.657008085938,42.637446515625],[125.662877226563,42.7104616523438],[125.641261015625,42.7290846992188],[125.698604765625,42.7395449042969],[125.712437773438,42.7384340644532],[125.792252226563,42.7492519355469],[125.805523710938,42.7481850410156],[125.83197390625,42.764009015625],[125.786793242188,42.8029335761719],[125.75197390625,42.8184706855469],[125.730889921875,42.8657216621094],[125.735548125,42.923676984375],[125.755357695313,42.9407448554687],[125.727345,43.003843],[125.767178984375,43.0184706855469],[125.820064726563,42.9898146796875],[125.843472929688,42.9478627753907],[125.8416028125,42.92460471875],[125.89271609375,42.9092153144532],[125.910186796875,42.8511977363282],[125.95197390625,42.8184706855469],[125.99271609375,42.8092153144532],[126.0094934375,42.7897438789063],[126.067345,42.7838430000001]]]]}},{"type":"Feature","properties":{"name":"通化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.297345,41.663843],[126.314215117188,41.657505109375],[126.416138945313,41.6678932929688],[126.392808867188,41.5883803535157],[126.3783996875,41.5632216621094],[126.403033476563,41.5289882636719],[126.397345,41.513843],[126.39170046875,41.5094863105469],[126.38298953125,41.4681996894532],[126.36041140625,41.4507741523438],[126.3386340625,41.4225551582031],[126.32170046875,41.4094863105469],[126.309429960938,41.3935854316407],[126.313170195313,41.3682729316406],[126.29170046875,41.3594863105469],[126.27298953125,41.3481996894532],[126.20369265625,41.3364272285157],[126.182345,41.3395815253907],[126.157891875,41.3359682441407],[126.142178984375,41.3923928046876],[126.118878203125,41.4103786445313],[126.123824492188,41.443843],[126.121607695313,41.4588430000001],[126.12420046875,41.4764028144531],[126.109127226563,41.5147499824219],[126.0860559375,41.5325551582031],[126.077345,41.543843],[126.121695585938,41.5519338203125],[126.05197390625,41.6084706855469],[126.034771757813,41.6284389472656],[126.110455351563,41.6758437324219],[126.117345,41.6838430000001],[126.135894804688,41.689009015625],[126.158424101563,41.7181996894532],[126.190421171875,41.7068495917969],[126.193082304688,41.6888430000001],[126.191514921875,41.6782216621094],[126.26298953125,41.6694863105469],[126.297345,41.663843]]],[[[125.807345,41.943843],[125.795152617188,41.9472658515625],[125.803922148438,41.9560353828125],[125.807345,41.943843]]],[[[125.807345,41.943843],[125.85326296875,41.9479274726563],[125.86142703125,41.9597585273438],[125.87361453125,41.9681728339844],[125.868980742188,41.9888430000001],[125.89326296875,41.9979274726562],[125.92142703125,42.0197585273438],[125.95326296875,42.0279274726563],[125.98142703125,42.0397585273437],[126.01326296875,42.0479274726563],[126.04142703125,42.0697585273438],[126.13326296875,42.0779274726563],[126.1912121875,42.1041933417969],[126.246500273438,42.1213307929688],[126.265557890625,42.1081728339844],[126.261041289063,42.0880275703125],[126.298306914063,42.0784645820313],[126.287345,42.033843],[126.25142703125,42.0097585273438],[126.240147734375,41.9934206367188],[126.20326296875,41.9779274726563],[126.144283476563,41.9686318183594],[126.117818632813,41.9503603339844],[126.16904421875,41.9158632636719],[126.181676054688,41.8975722480469],[126.201676054688,41.902055890625],[126.211676054688,41.8875722480469],[126.230557890625,41.8918056464844],[126.233565703125,41.8783962226563],[126.21611453125,41.85159690625],[126.227345,41.843843],[126.22326296875,41.8379274726563],[126.21142703125,41.8297585273438],[126.197432890625,41.8094887519532],[126.17142703125,41.7997585273438],[126.1605871875,41.7840529609375],[126.130069609375,41.777212140625],[126.10142703125,41.7879274726563],[126.092296171875,41.8235207343751],[126.07142703125,41.8379274726563],[126.055250273438,41.86136253125],[126.02326296875,41.8479274726563],[125.976636992188,41.835962140625],[125.960831328125,41.7983388496094],[125.967345,41.7938430000001],[125.955777617188,41.7793959785156],[125.931793242188,41.7882900214844],[125.915240507813,41.8275746894532],[125.8960559375,41.7820522285157],[125.842896757813,41.7668532539063],[125.851793242188,41.7382900214844],[125.871241484375,41.7227150703125],[125.872965117188,41.708843],[125.871085234375,41.6937026191407],[125.881846953125,41.66815940625],[125.899249296875,41.6703237128906],[125.9209778125,41.6529262519531],[125.882896757813,41.6382900214844],[125.8451575,41.6274990058594],[125.857345,41.5738430000001],[125.85298953125,41.5681996894532],[125.83170046875,41.5594863105469],[125.82298953125,41.5381996894532],[125.781011992188,41.529341046875],[125.795811796875,41.504809796875],[125.781832304688,41.4867018867188],[125.749742460938,41.4914443183594],[125.754371367188,41.4601332832032],[125.69170046875,41.4494863105469],[125.67298953125,41.4181996894532],[125.646241484375,41.4072524238282],[125.664947539063,41.3762416816407],[125.633814726563,41.3808425117188],[125.607345,41.363843],[125.58142703125,41.3679274726563],[125.57326296875,41.3897585273438],[125.55142703125,41.3979274726563],[125.530943632813,41.4275966621094],[125.533468046875,41.438843],[125.531221953125,41.448843],[125.535709257813,41.468843],[125.51142703125,41.4779274726563],[125.489254179688,41.5100478339844],[125.49361453125,41.5295131660156],[125.48142703125,41.5379274726562],[125.469176054688,41.5556740546875],[125.457345,41.5638430000001],[125.4484778125,41.601372296875],[125.454068632813,41.633843],[125.448267851563,41.667514875],[125.403917265625,41.6851393867188],[125.316534453125,41.6700954414062],[125.325787382813,41.7238430000001],[125.317393828125,41.7726076484376],[125.2855090625,41.8241274238281],[125.293204375,41.8688430000001],[125.290621367188,41.883843],[125.296695585938,41.9191188789063],[125.347345,41.923843],[125.37298953125,41.9194863105469],[125.388238554688,41.8997267890626],[125.44170046875,41.9127614570313],[125.419390898438,41.9299831367188],[125.469928007813,41.9689931464844],[125.511519804688,41.9805751777344],[125.544195585938,41.9563515449219],[125.541226835938,41.9362831855469],[125.56298953125,41.9194863105469],[125.578365507813,41.8995644355469],[125.6173059375,41.8836269355469],[125.678863554688,41.9015749335938],[125.702345,41.8981044746094],[125.727345,41.9017983222657],[125.760767851563,41.8968593574219],[125.791378203125,41.9153249335938],[125.807345,41.943843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"浑江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.467345,41.503843],[126.463922148438,41.4916506171875],[126.455152617188,41.5004201484375],[126.467345,41.503843]]],[[[126.467345,41.503843],[126.458995390625,41.5159377265625],[126.422301054688,41.5077126289063],[126.397345,41.513843],[126.403033476563,41.5289882636719],[126.3783996875,41.5632216621094],[126.392808867188,41.5883803535157],[126.416138945313,41.6678932929688],[126.314215117188,41.657505109375],[126.297345,41.663843],[126.29298953125,41.6794863105469],[126.281549101563,41.698452375],[126.283082304688,41.708843],[126.281549101563,41.7192336250001],[126.301217070313,41.7518434882813],[126.315787382813,41.8041689277345],[126.271358671875,41.8384633613282],[126.227345,41.843843],[126.21611453125,41.85159690625],[126.233565703125,41.8783962226563],[126.230557890625,41.8918056464844],[126.211676054688,41.8875722480469],[126.201676054688,41.902055890625],[126.181676054688,41.8975722480469],[126.16904421875,41.9158632636719],[126.117818632813,41.9503603339844],[126.144283476563,41.9686318183594],[126.20326296875,41.9779274726563],[126.240147734375,41.9934206367188],[126.25142703125,42.0097585273438],[126.287345,42.033843],[126.313985625,42.037202375],[126.360704375,42.060483625],[126.387345,42.0638430000001],[126.478546171875,42.0714235664063],[126.524586210938,42.0317568183594],[126.521138945313,41.9888430000001],[126.523511992188,41.9593386054688],[126.512345,41.9584413886719],[126.493638945313,41.9599440742188],[126.488912382813,41.90112815625],[126.527345,41.8980397773438],[126.555377226563,41.9002919746094],[126.57271609375,41.8692153144531],[126.577345,41.823843],[126.557608671875,41.8086098457032],[126.57298953125,41.7694863105469],[126.582511015625,41.7352931953125],[126.60298953125,41.7194863105469],[126.61170046875,41.7081996894531],[126.633150664063,41.6916432929688],[126.677345,41.673843],[126.664874296875,41.659887921875],[126.642120390625,41.6585317207031],[126.605260039063,41.6785622382813],[126.602037382813,41.6589748359375],[126.60318484375,41.6397341132813],[126.582628203125,41.6285622382813],[126.553121367188,41.6150197578126],[126.580147734375,41.5652822089844],[126.562061796875,41.5491237617188],[126.552628203125,41.5385622382813],[126.547345,41.5338430000001],[126.515426054688,41.5298183417969],[126.503985625,41.507202375],[126.467345,41.503843]]]]}},{"type":"Feature","properties":{"name":"长白朝鲜族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.997345,41.433843],[128.009537382813,41.4372658515626],[128.000767851563,41.4460353828125],[127.991881132813,41.4293056464845],[127.982345,41.4178237128907],[127.972808867188,41.4293056464845],[127.941881132813,41.4383803535157],[127.9324621875,41.44972190625],[127.902491484375,41.4281520820312],[127.87197390625,41.4396181464844],[127.862672148438,41.4079274726563],[127.835406523438,41.4235451484375],[127.822345,41.4078237128907],[127.811173125,41.4212721992188],[127.782345,41.4183339667969],[127.747345,41.4219008613281],[127.707345,41.4178237128907],[127.687345,41.4198622871094],[127.672345,41.4183339667969],[127.651671171875,41.4204409003906],[127.653775664063,41.3998220039063],[127.612691679688,41.4293886542969],[127.578482695313,41.4259011054688],[127.539952421875,41.4403774238282],[127.543018828125,41.4704409003906],[127.514801054688,41.4675649238281],[127.463062773438,41.4820302558594],[127.452345,41.4573146796875],[127.427345,41.4598622871094],[127.410391875,41.4581349921875],[127.390206328125,41.4824343085938],[127.343878203125,41.4650258613281],[127.289888945313,41.4801210761719],[127.264224882813,41.4775063300781],[127.252808867188,41.4817678046875],[127.272808867188,41.4983803535156],[127.277725859375,41.5183803535157],[127.242667265625,41.4983010078126],[127.230885039063,41.4995021796875],[127.232896757813,41.519233625],[127.227345,41.523843],[127.2321496875,41.5410890937501],[127.25490359375,41.5377260566406],[127.295689726563,41.5905654121094],[127.323516875,41.5864528632813],[127.376939726563,41.6186769843751],[127.43298953125,41.6281996894531],[127.46170046875,41.6394863105469],[127.5397278125,41.6599684882813],[127.581710234375,41.6537648750001],[127.62170046875,41.6694863105469],[127.75298953125,41.6781996894532],[127.78170046875,41.6894863105469],[127.815894804688,41.699009015625],[127.827345,41.713843],[127.85298953125,41.7281996894532],[127.864327421875,41.7428908515625],[127.902686796875,41.7278115058594],[127.91170046875,41.7394863105469],[127.93298953125,41.7481996894531],[127.95423953125,41.7610182929688],[127.951529570313,41.7793544746094],[127.989928007813,41.8089931464844],[128.02298953125,41.8181996894531],[128.058253203125,41.8320619941407],[128.077764921875,41.8573403144532],[128.057877226563,41.9079225898438],[128.08318484375,41.9182802558594],[128.077345,41.9538430000001],[128.098204375,41.9371401191407],[128.105455351563,41.8788430000001],[128.097633085938,41.8159694648438],[128.116236601563,41.7927370429688],[128.132896757813,41.7793959785156],[128.14797,41.7266860175781],[128.192896757813,41.6993959785156],[128.201793242188,41.6882900214844],[128.248472929688,41.6749428535156],[128.293018828125,41.6192470527344],[128.291666289063,41.6083901191407],[128.311334257813,41.5926406074219],[128.290650664063,41.55745628125],[128.293023710938,41.5383852363282],[128.236241484375,41.4951723457032],[128.231724882813,41.4588430000001],[128.233023710938,41.4483901191407],[128.216236601563,41.4349489570313],[128.202896757813,41.4182900214844],[128.16369265625,41.4017690253906],[128.152896757813,41.3882900214844],[128.121793242188,41.3793959785157],[128.105777617188,41.3593959785156],[128.091275664063,41.3789846015625],[128.111793242188,41.3954116035156],[128.081793242188,41.3893959785156],[128.072345,41.3775991035157],[128.062896757813,41.3893959785156],[128.041793242188,41.3982900214844],[128.032843046875,41.41952659375],[128.010987578125,41.4168080878907],[127.997345,41.433843]]]]}},{"type":"Feature","properties":{"name":"抚松县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.027345,42.3738430000001],[127.023922148438,42.3616506171875],[127.015152617188,42.3704201484375],[127.027345,42.3738430000001]]],[[[127.207345,42.623843],[127.207345,42.6338430000001],[127.220152617188,42.628843],[127.207345,42.623843]]],[[[127.857345,42.723843],[127.857345,42.733843],[127.867345,42.733843],[127.867345,42.723843],[127.857345,42.723843]]],[[[127.857345,42.733843],[127.8341028125,42.728843],[127.857345,42.723843],[127.862530546875,42.7057057929688],[127.883023710938,42.6892958808594],[127.88166140625,42.6783278632813],[127.954058867188,42.6576271796875],[127.951402617188,42.63628440625],[128.01545046875,42.5562038398438],[128.034820585938,42.4709242988281],[128.011793242188,42.4393959785157],[128.002896757813,42.4182900214844],[127.964034453125,42.3946840644532],[127.942896757813,42.3682900214844],[127.901793242188,42.3593959785157],[127.882896757813,42.3282900214844],[127.802896757813,42.3182839179688],[127.8141028125,42.2804897285157],[127.832345,42.2782216621095],[127.849249296875,42.2803237128906],[127.868453398438,42.2649489570312],[127.890079375,42.2379396796875],[127.902857695313,42.2395290351563],[127.916612578125,42.1914369941407],[127.952896757813,42.1693959785157],[127.962530546875,42.1357057929688],[127.984781523438,42.1178896308594],[128.012896757813,42.0793959785156],[128.031793242188,42.0282900214844],[128.057345,42.013843],[128.053170195313,42.0080178046875],[128.033394804688,41.9938430000001],[128.064820585938,41.9713185859375],[128.077345,41.9538430000001],[128.08318484375,41.9182802558594],[128.057877226563,41.9079225898438],[128.077764921875,41.8573403144532],[128.058253203125,41.8320619941407],[128.02298953125,41.8181996894531],[127.989928007813,41.8089931464844],[127.951529570313,41.7793544746094],[127.95423953125,41.7610182929688],[127.93298953125,41.7481996894531],[127.91170046875,41.7394863105469],[127.902686796875,41.7278115058594],[127.864327421875,41.7428908515625],[127.85298953125,41.7281996894532],[127.827345,41.713843],[127.821793242188,41.7182900214844],[127.812896757813,41.7293959785156],[127.781793242188,41.7382900214844],[127.752896757813,41.7493959785157],[127.694991484375,41.7659523750001],[127.658370390625,41.7927028632813],[127.621983671875,41.7881764960938],[127.59138796875,41.8061611152344],[127.595284453125,41.8374843574219],[127.568853789063,41.8586513496094],[127.487994414063,41.868764875],[127.447706328125,41.8924477363281],[127.464039335938,41.92022971875],[127.459234648438,41.958843],[127.463004179688,41.989126203125],[127.448389921875,42.0271413398438],[127.32084109375,42.0457057929688],[127.272896757813,42.0593959785157],[127.217345,42.0638430000001],[127.206143828125,42.0778322578126],[127.171832304688,42.0576650214844],[127.167345,42.123843],[127.179537382813,42.1272658515626],[127.170767851563,42.1360353828125],[127.167345,42.123843],[127.115675078125,42.128774640625],[127.077345,42.1438430000001],[127.081793242188,42.1493959785156],[127.092896757813,42.1582900214844],[127.105577421875,42.1741249824219],[127.202896757813,42.1882900214844],[127.225142851563,42.2013649726562],[127.22166140625,42.2293410468751],[127.245904570313,42.2395571113281],[127.26490359375,42.2632802558594],[127.260479765625,42.2988430000001],[127.262965117188,42.318843],[127.261241484375,42.3327150703125],[127.232530546875,42.3557070136719],[127.185172148438,42.3278700996094],[127.167345,42.3300868964844],[127.152345,42.3282216621094],[127.131475859375,42.3308168769532],[127.13302859375,42.3183278632813],[127.0810559375,42.3034670234375],[127.08302859375,42.3193581367188],[127.04080203125,42.3314321113282],[127.042965117188,42.348843],[127.041241484375,42.3627150703126],[127.027345,42.3738430000001],[127.052769804688,42.4185634589844],[127.051944609375,42.428843],[127.053526640625,42.4485195136719],[127.029932890625,42.468843],[127.05271609375,42.4884706855469],[127.089288359375,42.5769008613282],[127.1027746875,42.5885195136719],[127.1019153125,42.5991896796875],[127.12271609375,42.6084706855469],[127.142667265625,42.6316286445313],[127.207345,42.623843],[127.20076296875,42.6081764960938],[127.230855742188,42.5969167304688],[127.270147734375,42.6134206367188],[127.28142703125,42.6297585273438],[127.310714140625,42.6379274726563],[127.33142703125,42.6079274726563],[127.34326296875,42.5997585273438],[127.35377078125,42.5845339179688],[127.400069609375,42.567212140625],[127.417345,42.5710842109375],[127.467735625,42.5597878242188],[127.461051054688,42.5896169257813],[127.48326296875,42.5979274726563],[127.487345,42.6038430000001],[127.499537382813,42.6072658515625],[127.490767851563,42.6160353828126],[127.487345,42.6038430000001],[127.472896757813,42.6154116035156],[127.481793242188,42.6293959785157],[127.53937625,42.6418556953126],[127.582896757813,42.6682900214844],[127.612769804688,42.7055947089844],[127.64302859375,42.718344953125],[127.641724882813,42.728843],[127.642965117188,42.738843],[127.64166140625,42.749341046875],[127.71041140625,42.7783119941406],[127.712965117188,42.798843],[127.710582304688,42.8180019355469],[127.7230871875,42.8195571113282],[127.799039335938,42.8085024238281],[127.822896757813,42.7893959785157],[127.827345,42.7838430000001],[127.830704375,42.757202375],[127.86547,42.7501845527344],[127.857345,42.733843]]]]}},{"type":"Feature","properties":{"name":"江源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,42.123843],[127.170767851563,42.1360353828125],[127.179537382813,42.1272658515626],[127.167345,42.123843]]],[[[127.167345,42.123843],[127.171832304688,42.0576650214844],[127.206143828125,42.0778322578126],[127.217345,42.0638430000001],[127.208453398438,42.0527370429688],[127.191666289063,42.0392958808594],[127.19302859375,42.0283278632813],[127.161793242188,42.0193959785157],[127.14666140625,42.0005019355469],[127.086710234375,41.9868849921876],[126.99615359375,42.0127443671876],[126.970611601563,41.9777797675782],[126.974107695313,41.9496840644532],[126.952345,41.946977765625],[126.932345,41.9494643378906],[126.922061796875,41.9481862617188],[126.892896757813,41.9593959785156],[126.85662234375,41.9697670722657],[126.831890898438,42.0006520820312],[126.812345,41.9982216621094],[126.787808867188,42.0012734199219],[126.748111601563,41.9771620917969],[126.731676054688,41.9492031074219],[126.734366484375,41.9275868964844],[126.686846953125,41.8682460761719],[126.652896757813,41.8482900214844],[126.631793242188,41.8393959785157],[126.612896757813,41.8282900214844],[126.577345,41.823843],[126.57271609375,41.8692153144531],[126.555377226563,41.9002919746094],[126.527345,41.8980397773438],[126.488912382813,41.90112815625],[126.493638945313,41.9599440742188],[126.512345,41.9584413886719],[126.523511992188,41.9593386054688],[126.521138945313,41.9888430000001],[126.524586210938,42.0317568183594],[126.478546171875,42.0714235664063],[126.387345,42.0638430000001],[126.39312625,42.0785512519532],[126.391119414063,42.0921291328125],[126.44298953125,42.1281996894531],[126.46170046875,42.1594863105469],[126.486812773438,42.19335471875],[126.546954375,42.1844680000001],[126.577345,42.2238430000001],[126.59271609375,42.2192153144532],[126.603541289063,42.2066518378906],[126.672066679688,42.1684194160157],[126.700987578125,42.1707424140626],[126.702745390625,42.148843],[126.701178007813,42.1293386054688],[126.732345,42.1268337226563],[126.772345,42.1300478339844],[126.792345,42.1284413886719],[126.802584257813,42.1292641425782],[126.8325403125,42.1182631660156],[126.849000273438,42.137368390625],[126.899586210938,42.1414333320313],[126.959132109375,42.0992153144531],[126.98271609375,42.1084706855469],[127.017310820313,42.1684706855469],[127.03271609375,42.1592153144532],[127.04197390625,42.1484706855469],[127.077345,42.1438430000001],[127.115675078125,42.128774640625],[127.167345,42.123843]]]]}},{"type":"Feature","properties":{"name":"靖宇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.027345,42.3738430000001],[127.015152617188,42.3704201484375],[127.023922148438,42.3616506171875],[127.041241484375,42.3627150703126],[127.042965117188,42.348843],[127.04080203125,42.3314321113282],[127.08302859375,42.3193581367188],[127.0810559375,42.3034670234375],[127.13302859375,42.3183278632813],[127.131475859375,42.3308168769532],[127.152345,42.3282216621094],[127.167345,42.3300868964844],[127.185172148438,42.3278700996094],[127.232530546875,42.3557070136719],[127.261241484375,42.3327150703125],[127.262965117188,42.318843],[127.260479765625,42.2988430000001],[127.26490359375,42.2632802558594],[127.245904570313,42.2395571113281],[127.22166140625,42.2293410468751],[127.225142851563,42.2013649726562],[127.202896757813,42.1882900214844],[127.105577421875,42.1741249824219],[127.092896757813,42.1582900214844],[127.081793242188,42.1493959785156],[127.077345,42.1438430000001],[127.04197390625,42.1484706855469],[127.03271609375,42.1592153144532],[127.017310820313,42.1684706855469],[126.98271609375,42.1084706855469],[126.959132109375,42.0992153144531],[126.899586210938,42.1414333320313],[126.849000273438,42.137368390625],[126.8325403125,42.1182631660156],[126.802584257813,42.1292641425782],[126.792345,42.1284413886719],[126.772345,42.1300478339844],[126.732345,42.1268337226563],[126.701178007813,42.1293386054688],[126.702745390625,42.148843],[126.700987578125,42.1707424140626],[126.672066679688,42.1684194160157],[126.603541289063,42.2066518378906],[126.59271609375,42.2192153144532],[126.577345,42.2238430000001],[126.521378203125,42.2518740058594],[126.517345,42.283843],[126.52420046875,42.3012831855469],[126.521549101563,42.319233625],[126.534410429688,42.3405544257813],[126.511549101563,42.3784523750001],[126.513082304688,42.388843],[126.509464140625,42.4133437324219],[126.57170046875,42.4594863105469],[126.627183867188,42.4689113593751],[126.633082304688,42.508843],[126.631607695313,42.5188430000001],[126.63310671875,42.5289858222656],[126.620455351563,42.5835707832032],[126.701417265625,42.6061147285157],[126.74170046875,42.6594863105469],[126.747345,42.663843],[126.765479765625,42.669028546875],[126.786236601563,42.6949489570313],[126.804156523438,42.7092958808594],[126.79978640625,42.7444057441407],[126.826261015625,42.7774648261719],[126.852345,42.780708234375],[126.879249296875,42.7773622871094],[126.893023710938,42.7883901191407],[126.890548125,42.8082900214844],[126.982896757813,42.7993959785156],[127.007345,42.7850258613282],[127.045318632813,42.8073464179687],[127.062345,42.8094643378907],[127.141983671875,42.7995595527344],[127.19455203125,42.8416054511719],[127.189527617188,42.80118675],[127.202921171875,42.7543447089844],[127.231793242188,42.7182900214844],[127.251793242188,42.7022743964844],[127.232896757813,42.6682900214844],[127.207345,42.6338430000001],[127.207345,42.623843],[127.142667265625,42.6316286445313],[127.12271609375,42.6084706855469],[127.1019153125,42.5991896796875],[127.1027746875,42.5885195136719],[127.089288359375,42.5769008613282],[127.05271609375,42.4884706855469],[127.029932890625,42.468843],[127.053526640625,42.4485195136719],[127.051944609375,42.428843],[127.052769804688,42.4185634589844],[127.027345,42.3738430000001]]]]}},{"type":"Feature","properties":{"name":"临江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.107345,41.543843],[127.095152617188,41.5472658515625],[127.103922148438,41.5560353828126],[127.107345,41.543843]]],[[[127.107345,41.543843],[127.112808867188,41.5483803535156],[127.121881132813,41.5593056464844],[127.132808867188,41.5683803535157],[127.141881132813,41.5793056464844],[127.174600859375,41.5889076972657],[127.1298059375,41.5988405585938],[127.112808867188,41.6193056464844],[127.101793242188,41.628452375],[127.102896757813,41.6392787910156],[127.065367460938,41.6502919746094],[127.032808867188,41.6753700996094],[127.080401640625,41.6960109687501],[127.051881132813,41.7083803535157],[127.042808867188,41.7393056464844],[127.001788359375,41.7484011054688],[127.003233671875,41.7625588203126],[126.931002226563,41.7785756660156],[126.945191679688,41.7903591132813],[126.937725859375,41.8183803535157],[126.902808867188,41.7983803535157],[126.881881132813,41.7893056464844],[126.85927859375,41.7763588691407],[126.837159453125,41.7253578925782],[126.811158476563,41.7402504707031],[126.788863554688,41.7379787421875],[126.792882109375,41.698579328125],[126.789420195313,41.6893056464844],[126.768267851563,41.7147682929688],[126.731016875,41.7457131171875],[126.7020715625,41.7583803535157],[126.672808867188,41.7323159003907],[126.720694609375,41.7115468574219],[126.681881132813,41.6793056464844],[126.677345,41.673843],[126.633150664063,41.6916432929688],[126.61170046875,41.7081996894531],[126.60298953125,41.7194863105469],[126.582511015625,41.7352931953125],[126.57298953125,41.7694863105469],[126.557608671875,41.8086098457032],[126.577345,41.823843],[126.612896757813,41.8282900214844],[126.631793242188,41.8393959785157],[126.652896757813,41.8482900214844],[126.686846953125,41.8682460761719],[126.734366484375,41.9275868964844],[126.731676054688,41.9492031074219],[126.748111601563,41.9771620917969],[126.787808867188,42.0012734199219],[126.812345,41.9982216621094],[126.831890898438,42.0006520820312],[126.85662234375,41.9697670722657],[126.892896757813,41.9593959785156],[126.922061796875,41.9481862617188],[126.932345,41.9494643378906],[126.952345,41.946977765625],[126.974107695313,41.9496840644532],[126.970611601563,41.9777797675782],[126.99615359375,42.0127443671876],[127.086710234375,41.9868849921876],[127.14666140625,42.0005019355469],[127.161793242188,42.0193959785157],[127.19302859375,42.0283278632813],[127.191666289063,42.0392958808594],[127.208453398438,42.0527370429688],[127.217345,42.0638430000001],[127.272896757813,42.0593959785157],[127.32084109375,42.0457057929688],[127.448389921875,42.0271413398438],[127.463004179688,41.989126203125],[127.459234648438,41.958843],[127.464039335938,41.92022971875],[127.447706328125,41.8924477363281],[127.487994414063,41.868764875],[127.568853789063,41.8586513496094],[127.595284453125,41.8374843574219],[127.59138796875,41.8061611152344],[127.621983671875,41.7881764960938],[127.658370390625,41.7927028632813],[127.694991484375,41.7659523750001],[127.752896757813,41.7493959785157],[127.781793242188,41.7382900214844],[127.812896757813,41.7293959785156],[127.821793242188,41.7182900214844],[127.827345,41.713843],[127.815894804688,41.699009015625],[127.78170046875,41.6894863105469],[127.75298953125,41.6781996894532],[127.62170046875,41.6694863105469],[127.581710234375,41.6537648750001],[127.5397278125,41.6599684882813],[127.46170046875,41.6394863105469],[127.43298953125,41.6281996894531],[127.376939726563,41.6186769843751],[127.323516875,41.5864528632813],[127.295689726563,41.5905654121094],[127.25490359375,41.5377260566406],[127.2321496875,41.5410890937501],[127.227345,41.523843],[127.211553984375,41.5164638496094],[127.203228789063,41.5310610175781],[127.174996367188,41.5204201484375],[127.163228789063,41.5410610175782],[127.147345,41.5350734687501],[127.132345,41.540727765625],[127.113228789063,41.5335219550781],[127.107345,41.543843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长岭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.747345,44.2038430000001],[124.751397734375,44.2268398261719],[124.7600403125,44.2092763496094],[124.747345,44.2038430000001]]],[[[124.747345,44.2038430000001],[124.739176054688,44.1920119453126],[124.721046171875,44.1794930244141],[124.727345,44.153843],[124.72259890625,44.1485298896485],[124.710318632813,44.1492617011719],[124.652628203125,44.1285616279297],[124.502061796875,44.1091243720704],[124.487730742188,44.0930825019532],[124.452628203125,44.0685616279297],[124.432061796875,44.0591243720703],[124.41349734375,44.0383431220704],[124.283150664063,43.9915731025391],[124.232345,43.9885451484375],[124.207345,43.9900350166016],[124.173844023438,43.9880379462891],[124.162061796875,43.9985616279297],[124.15209109375,44.0097219062501],[124.127345,44.0082466865235],[124.0813684375,44.0109871650391],[124.007345,44.0038430000001],[123.982061796875,43.9991243720704],[123.806138945313,43.9874697089844],[123.761485625,43.9994295478516],[123.762974882813,44.0243758369141],[123.730260039063,44.0393904853516],[123.707906523438,44.0644057441406],[123.692061796875,44.0785616279297],[123.669224882813,44.1041249824219],[123.631011992188,44.0774324775391],[123.577345,44.0806313300781],[123.522345,44.0773531318359],[123.478428984375,44.079970319336],[123.386261015625,44.0677156806641],[123.333609648438,44.0708534980469],[123.327345,44.063843],[123.313756132813,44.0755489326172],[123.34271609375,44.0884712958985],[123.360225859375,44.1277095771485],[123.37271609375,44.1384712958985],[123.38896609375,44.1573329902344],[123.325738554688,44.1763692451172],[123.292476835938,44.1949269843751],[123.2649621875,44.2565920234375],[123.1947278125,44.3386092353516],[123.16197390625,44.3484712958984],[123.14271609375,44.3592147041016],[123.12197390625,44.3684712958985],[123.109288359375,44.3969008613281],[123.13728640625,44.4210237861328],[123.121920195313,44.4485646796875],[123.125777617188,44.4965767646484],[123.117345,44.5038430000001],[123.13271609375,44.5284712958985],[123.143170195313,44.5519008613282],[123.210030546875,44.5817342353516],[123.25271609375,44.6084712958985],[123.28197390625,44.6292147041016],[123.31271609375,44.6384712958985],[123.3416028125,44.6545870185547],[123.40271609375,44.6684712958985],[123.454654570313,44.6974483466798],[123.517345,44.703843],[123.5455871875,44.6965950751954],[123.61142703125,44.6379274726563],[123.627345,44.633843],[123.648453398438,44.6102193427734],[123.672628203125,44.5991243720704],[123.682061796875,44.5785616279297],[123.710968046875,44.5527352119141],[123.730440703125,44.5103127265626],[123.752061796875,44.4985616279297],[123.785382109375,44.4882729316407],[123.852628203125,44.4491243720704],[123.914928007813,44.4056063056641],[124.013336210938,44.3604409003906],[124.0120325,44.3385768867188],[124.042906523438,44.3244057441407],[124.0916809375,44.2979012275391],[124.128345976563,44.3235115791016],[124.262628203125,44.3985616279297],[124.356768828125,44.4567617011719],[124.523546171875,44.5080202460938],[124.542061796875,44.5091243720703],[124.547345,44.513843],[124.551881132813,44.5083803535156],[124.582896757813,44.4892507148438],[124.581241484375,44.4729964423829],[124.631597929688,44.4511556220703],[124.633394804688,44.4335366035157],[124.582345,44.4283333564453],[124.55310671875,44.431313703125],[124.551475859375,44.4153304267579],[124.588267851563,44.3847682929688],[124.601881132813,44.3683803535156],[124.613834257813,44.3584529853516],[124.611324492188,44.333843],[124.613873320313,44.3088430000001],[124.6118371875,44.288843],[124.612896757813,44.2784529853516],[124.592808867188,44.2617671943359],[124.613511992188,44.2084072089844],[124.71244265625,44.1983229804688],[124.747345,44.2038430000001]]]]}},{"type":"Feature","properties":{"name":"扶余县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.63095828125,45.5205361152344],[125.66013796875,45.5033846259766],[125.687345,45.513843],[125.693375273438,45.4984987617188],[125.68047,45.4885353828125],[125.69170046875,45.4481990791016],[125.709136992188,45.403843],[125.684342070313,45.3407643867188],[125.702345,45.3381038642579],[125.712857695313,45.339657819336],[125.75170046875,45.2881990791016],[125.77298953125,45.2794869208985],[125.791954375,45.268046491211],[125.802935820313,45.2696694160157],[125.81170046875,45.2381990791016],[125.855699492188,45.2259468818359],[125.90170046875,45.1981990791016],[125.95298953125,45.1894869208984],[125.9875403125,45.1686452460938],[126.07298953125,45.1594869208985],[126.094190703125,45.1466982246095],[126.15170046875,45.1381990791016],[126.167345,45.133843],[126.1839075,45.0983736396485],[126.17107546875,45.0895131660157],[126.174586210938,45.0738430000001],[126.167193632813,45.0408534980469],[126.184776640625,45.028710553711],[126.170538359375,44.9906502509766],[126.133673125,44.9768569160156],[126.190230742188,44.9117317939453],[126.172345,44.9077223945313],[126.162345,44.9099636054688],[126.143013945313,44.9056307197266],[126.1276184375,44.9279274726563],[126.10142703125,44.9197585273438],[126.091573515625,44.8934120917969],[126.054132109375,44.9018056464844],[126.051221953125,44.8888430000001],[126.053565703125,44.8783962226562],[126.039454375,44.8567287421876],[126.043472929688,44.8388014960938],[126.03142703125,44.7897585273437],[126.027345,44.783843],[126.00142703125,44.7797585273438],[125.96326296875,44.7679274726563],[125.918228789063,44.7597585273438],[125.90326296875,44.7997585273438],[125.87142703125,44.8179274726562],[125.86326296875,44.8297585273438],[125.822237578125,44.8402858710938],[125.7980090625,44.8245088935547],[125.803638945313,44.8496169257813],[125.78142703125,44.8579274726563],[125.77326296875,44.8797585273438],[125.757345,44.8838430000001],[125.737979765625,44.9184334541016],[125.69170046875,44.9281990791016],[125.668800078125,44.9420137763672],[125.637838164063,44.9374379707031],[125.62298953125,44.9181990791016],[125.61170046875,44.9094869208985],[125.60298953125,44.8981990791016],[125.54170046875,44.8894869208984],[125.476187773438,44.8768917060547],[125.425377226563,44.8917055488282],[125.400767851563,44.8768593574219],[125.355108671875,44.8836067939454],[125.29326296875,44.8463002753907],[125.247345,44.853843],[125.242896757813,44.8593959785156],[125.22656375,44.8724770332032],[125.192345,44.8682210517579],[125.173472929688,44.8705684638672],[125.14966921875,44.9270626044922],[125.081793242188,44.9682900214844],[125.052896757813,45.0093959785156],[124.957345,45.0738430000001],[124.96142703125,45.0897585273437],[125.00326296875,45.0979274726563],[125.037198515625,45.11218284375],[125.031221953125,45.138843],[125.033468046875,45.1488430000001],[125.024713164063,45.1878835273438],[125.001109648438,45.2183382392578],[125.003468046875,45.2288430000001],[125.000474882813,45.2421938300782],[125.027496367188,45.2608534980469],[125.021221953125,45.288843],[125.026265898438,45.3113271308594],[125.042652617188,45.3076528144531],[125.097496367188,45.3325087714844],[125.087345,45.3738430000001],[125.092711210938,45.3805458808594],[125.147345,45.4126601386719],[125.175421171875,45.3961556220703],[125.252935820313,45.4182900214844],[125.282896757813,45.4093959785157],[125.30267703125,45.3977687812501],[125.312857695313,45.4219313789063],[125.338472929688,45.3899465156251],[125.359249296875,45.3873622871094],[125.420142851563,45.4361208320313],[125.423590117188,45.463843],[125.420548125,45.4882900214844],[125.472896757813,45.4793959785156],[125.488546171875,45.4598537421875],[125.521793242188,45.4793959785156],[125.586832304688,45.4907149482422],[125.608472929688,45.517739484375],[125.63095828125,45.5205361152344]]]]}},{"type":"Feature","properties":{"name":"宁江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.827345,45.1138430000001],[124.823922148438,45.1260353828125],[124.815152617188,45.1172664619141],[124.832799101563,45.1070333076172],[124.86150515625,45.1106044746094],[124.86625125,45.0724385810548],[124.828624296875,45.0677584052734],[124.791793242188,45.0782900214844],[124.743570585938,45.0968245673829],[124.71373171875,45.1005361152344],[124.68822390625,45.08554221875],[124.671685820313,45.1285604072266],[124.673023710938,45.1393074775391],[124.631793242188,45.1682900214844],[124.622896757813,45.1793959785157],[124.611793242188,45.1882900214844],[124.602843046875,45.2095265937501],[124.56400515625,45.2046956611328],[124.59181765625,45.2394271064454],[124.643287382813,45.2805916572266],[124.666065703125,45.2777584052735],[124.727857695313,45.2954256416016],[124.711666289063,45.3083901191407],[124.715709257813,45.3409078193359],[124.692896757813,45.3693959785157],[124.663863554688,45.381630475586],[124.661666289063,45.3992958808594],[124.673365507813,45.4086629462891],[124.657345,45.433843],[124.669107695313,45.4480031562501],[124.687345,45.4498622871094],[124.730391875,45.4454744697266],[124.749420195313,45.4683803535156],[124.772896757813,45.4592702460938],[124.769888945313,45.4297695136719],[124.834517851563,45.4540535712891],[124.877725859375,45.4293056464845],[124.884610625,45.4416036201172],[124.880015898438,45.4867098212891],[124.902808867188,45.5183803535157],[124.914234648438,45.5447322822266],[124.932808867188,45.5293056464844],[124.965406523438,45.4900600410157],[124.982345,45.4883333564453],[125.046529570313,45.4948751044923],[125.027471953125,45.4616060615235],[125.045494414063,45.4200508857422],[125.062345,45.4183333564453],[125.091881132813,45.4213442207032],[125.082808867188,45.4083803535157],[125.052808867188,45.3953694892579],[125.071881132813,45.3783803535157],[125.087345,45.3738430000001],[125.097496367188,45.3325087714844],[125.042652617188,45.3076528144531],[125.026265898438,45.3113271308594],[125.021221953125,45.288843],[125.027496367188,45.2608534980469],[125.000474882813,45.2421938300782],[125.003468046875,45.2288430000001],[125.001109648438,45.2183382392578],[125.024713164063,45.1878835273438],[125.033468046875,45.1488430000001],[125.031221953125,45.138843],[125.037198515625,45.11218284375],[125.00326296875,45.0979274726563],[124.96142703125,45.0897585273437],[124.957345,45.0738430000001],[124.924879179688,45.0828829169922],[124.90298953125,45.1194869208984],[124.865191679688,45.1420925117188],[124.827345,45.1138430000001]]]]}},{"type":"Feature","properties":{"name":"乾安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.337301054688,45.0077376533203],[124.352476835938,44.9187508369141],[124.307984648438,44.9079042792969],[124.337218046875,44.7078481269532],[124.05244265625,44.6787429023438],[123.632476835938,44.6391835761719],[123.627345,44.633843],[123.61142703125,44.6379274726563],[123.5455871875,44.6965950751954],[123.517345,44.703843],[123.51298953125,44.7294869208985],[123.468956328125,44.7814388251954],[123.415904570313,44.8529903388672],[123.48298953125,44.9281990791016],[123.49170046875,44.9594869208984],[123.497345,44.9638430000001],[123.52755984375,44.9572530341797],[123.56064578125,44.959911725586],[123.627135039063,45.0070565009766],[123.73263796875,45.0541347480469],[123.920513945313,45.2150984931641],[124.02271609375,45.2284712958984],[124.076846953125,45.2402779365235],[124.067345,45.283843],[124.067345,45.293843],[124.12880984375,45.3064327216797],[124.14224734375,45.2787429023437],[124.18244265625,45.2689430976563],[124.19224734375,45.2487429023438],[124.24654421875,45.2131417060547],[124.26224734375,45.1487429023438],[124.306256132813,45.1380141425782],[124.32224734375,45.0887429023438],[124.381314726563,45.0743428779297],[124.382447539063,45.0187441230469],[124.337301054688,45.0077376533203]]]]}},{"type":"Feature","properties":{"name":"前郭尔罗斯蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.827345,45.1138430000001],[124.815152617188,45.1172664619141],[124.823922148438,45.1260353828125],[124.827345,45.1138430000001]]],[[[124.067345,45.293843],[124.067345,45.283843],[124.054537382813,45.288843],[124.067345,45.293843]]],[[[124.827345,45.1138430000001],[124.865191679688,45.1420925117188],[124.90298953125,45.1194869208984],[124.924879179688,45.0828829169922],[124.957345,45.0738430000001],[125.052896757813,45.0093959785156],[125.081793242188,44.9682900214844],[125.14966921875,44.9270626044922],[125.173472929688,44.8705684638672],[125.192345,44.8682210517579],[125.22656375,44.8724770332032],[125.242896757813,44.8593959785156],[125.247345,44.853843],[125.231793242188,44.8493959785157],[125.222896757813,44.8436916328125],[125.284991484375,44.8259389472656],[125.301793242188,44.8120375800781],[125.265206328125,44.7966213203125],[125.22123171875,44.8020912910156],[125.166495390625,44.7864614082032],[125.141954375,44.7895137763672],[125.10908328125,44.7655025458985],[125.013800078125,44.7808626533204],[124.982896757813,44.7582900214844],[124.936236601563,44.7449489570313],[124.887735625,44.7263063789063],[124.862037382813,44.7295027900391],[124.80732546875,44.7058852363282],[124.830030546875,44.667265241211],[124.812345,44.6694649482422],[124.797345,44.6675991035156],[124.779517851563,44.6698165107422],[124.742706328125,44.6481764960938],[124.69033328125,44.6546907783203],[124.627730742188,44.6368148017579],[124.607999296875,44.6121718574219],[124.551344023438,44.5690541816406],[124.571334257813,44.5350453925781],[124.551793242188,44.5193959785156],[124.547345,44.513843],[124.542061796875,44.5091243720703],[124.523546171875,44.5080202460938],[124.356768828125,44.4567617011719],[124.262628203125,44.3985616279297],[124.128345976563,44.3235115791016],[124.0916809375,44.2979012275391],[124.042906523438,44.3244057441407],[124.0120325,44.3385768867188],[124.013336210938,44.3604409003906],[123.914928007813,44.4056063056641],[123.852628203125,44.4491243720704],[123.785382109375,44.4882729316407],[123.752061796875,44.4985616279297],[123.730440703125,44.5103127265626],[123.710968046875,44.5527352119141],[123.682061796875,44.5785616279297],[123.672628203125,44.5991243720704],[123.648453398438,44.6102193427734],[123.627345,44.633843],[123.632476835938,44.6391835761719],[124.05244265625,44.6787429023438],[124.337218046875,44.7078481269532],[124.307984648438,44.9079042792969],[124.352476835938,44.9187508369141],[124.337301054688,45.0077376533203],[124.382447539063,45.0187441230469],[124.381314726563,45.0743428779297],[124.32224734375,45.0887429023438],[124.306256132813,45.1380141425782],[124.26224734375,45.1487429023438],[124.24654421875,45.2131417060547],[124.19224734375,45.2487429023438],[124.18244265625,45.2689430976563],[124.14224734375,45.2787429023437],[124.12880984375,45.3064327216797],[124.067345,45.293843],[124.0766028125,45.3245870185547],[124.123814726563,45.3388021064453],[124.226671171875,45.3846981025391],[124.28197390625,45.4192147041016],[124.31271609375,45.4284712958985],[124.367345,45.4538430000001],[124.395924101563,45.4365114570313],[124.459947539063,45.4584255195313],[124.525162382813,45.4089430976563],[124.572803984375,45.4214650703125],[124.57216921875,45.4524599433594],[124.61224734375,45.4387429023438],[124.657345,45.433843],[124.673365507813,45.4086629462891],[124.661666289063,45.3992958808594],[124.663863554688,45.381630475586],[124.692896757813,45.3693959785157],[124.715709257813,45.3409078193359],[124.711666289063,45.3083901191407],[124.727857695313,45.2954256416016],[124.666065703125,45.2777584052735],[124.643287382813,45.2805916572266],[124.59181765625,45.2394271064454],[124.56400515625,45.2046956611328],[124.602843046875,45.2095265937501],[124.611793242188,45.1882900214844],[124.622896757813,45.1793959785157],[124.631793242188,45.1682900214844],[124.673023710938,45.1393074775391],[124.671685820313,45.1285604072266],[124.68822390625,45.08554221875],[124.71373171875,45.1005361152344],[124.743570585938,45.0968245673829],[124.791793242188,45.0782900214844],[124.828624296875,45.0677584052734],[124.86625125,45.0724385810548],[124.86150515625,45.1106044746094],[124.832799101563,45.1070333076172],[124.827345,45.1138430000001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.527345,45.7598622871094],[123.542345,45.7583333564453],[123.552667265625,45.7593856025391],[123.571881132813,45.7483803535157],[123.612808867188,45.7393056464844],[123.664547148438,45.7198635078126],[123.752662382813,45.7394789863282],[123.761954375,45.7282936835938],[123.813331328125,45.7335305],[123.810885039063,45.709501569336],[123.861939726563,45.7042971015625],[123.925553007813,45.7281990791016],[124.027847929688,45.7177724433594],[124.077345,45.7238430000001],[124.08298953125,45.7194869208985],[124.098365507813,45.6995638251953],[124.139078398438,45.6829012275391],[124.120611601563,45.6686452460938],[124.143424101563,45.6593080878906],[124.128604765625,45.6216121650391],[124.18486453125,45.6132985664063],[124.225924101563,45.6380666328126],[124.219049101563,45.5915462470704],[124.242345,45.5881038642578],[124.264947539063,45.5914437080078],[124.259093046875,45.5518367744141],[124.283922148438,45.5368593574219],[124.358785429688,45.5479225898438],[124.36312625,45.5185512519531],[124.351392851563,45.4887075019532],[124.36298953125,45.4694869208985],[124.367345,45.4538430000001],[124.31271609375,45.4284712958985],[124.28197390625,45.4192147041016],[124.226671171875,45.3846981025391],[124.123814726563,45.3388021064453],[124.0766028125,45.3245870185547],[124.067345,45.293843],[124.054537382813,45.288843],[124.067345,45.283843],[124.076846953125,45.2402779365235],[124.02271609375,45.2284712958984],[123.920513945313,45.2150984931641],[123.73263796875,45.0541347480469],[123.627135039063,45.0070565009766],[123.56064578125,44.959911725586],[123.52755984375,44.9572530341797],[123.497345,44.9638430000001],[123.491617460938,44.9790853095704],[123.503096953125,44.988622663086],[123.47318484375,45.0587844062501],[123.444908476563,45.0980721259766],[123.424390898438,45.1679915595703],[123.406422148438,45.1829177070313],[123.391954375,45.2003322578125],[123.35634890625,45.1967024970704],[123.337345,45.203843],[123.330474882813,45.2433303046875],[123.311793242188,45.2582900214844],[123.285831328125,45.3010323310547],[123.241441679688,45.3365785957032],[123.243023710938,45.3492958808594],[123.231793242188,45.3582900214844],[123.191768828125,45.4082680488282],[123.147345,45.443843],[123.161793242188,45.4793959785156],[123.189766875,45.5269893623047],[123.232896757813,45.5782900214844],[123.257345,45.6138430000001],[123.293350859375,45.6244087958984],[123.312808867188,45.6583803535156],[123.326500273438,45.6899483466798],[123.342735625,45.6882936835938],[123.351881132813,45.6993056464844],[123.428204375,45.7106740546875],[123.491470976563,45.7562056708985],[123.527345,45.7598622871094]]]]}},{"type":"Feature","properties":{"name":"通榆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.321822539063,45.1850704169922],[122.446783476563,45.1168538642579],[122.486920195313,45.0719368720704],[122.5751965625,45.0402620673829],[122.738189726563,45.0656618476563],[122.763189726563,45.0879994941407],[122.795162382813,45.12378440625],[122.952628203125,45.1385616279297],[122.997633085938,45.1547109199219],[123.013013945313,45.1374983955078],[123.157999296875,45.1498738837891],[123.232628203125,45.1785616279297],[123.282061796875,45.1991243720703],[123.337345,45.203843],[123.35634890625,45.1967024970704],[123.391954375,45.2003322578125],[123.406422148438,45.1829177070313],[123.424390898438,45.1679915595703],[123.444908476563,45.0980721259766],[123.47318484375,45.0587844062501],[123.503096953125,44.988622663086],[123.491617460938,44.9790853095704],[123.497345,44.9638430000001],[123.49170046875,44.9594869208984],[123.48298953125,44.9281990791016],[123.415904570313,44.8529903388672],[123.468956328125,44.7814388251954],[123.51298953125,44.7294869208985],[123.517345,44.703843],[123.454654570313,44.6974483466798],[123.40271609375,44.6684712958985],[123.3416028125,44.6545870185547],[123.31271609375,44.6384712958985],[123.28197390625,44.6292147041016],[123.25271609375,44.6084712958985],[123.210030546875,44.5817342353516],[123.143170195313,44.5519008613282],[123.13271609375,44.5284712958985],[123.117345,44.5038430000001],[123.032379179688,44.4985170722657],[122.868292265625,44.4026625800781],[122.765201445313,44.370829694336],[122.730206328125,44.35181175],[122.673970976563,44.2888747382813],[122.611783476563,44.2744057441407],[122.552628203125,44.2585616279298],[122.512061796875,44.2491243720703],[122.482628203125,44.2385616279297],[122.307330351563,44.2291243720704],[122.267345,44.253843],[122.271881132813,44.2793056464844],[122.282808867188,44.3083803535157],[122.291881132813,44.4659059882812],[122.210968046875,44.4803255439453],[122.215714140625,44.5268917060547],[122.201881132813,44.5383803535157],[122.185045195313,44.5586482978516],[122.133936796875,44.5736470771485],[122.122808867188,44.5993056464844],[122.111881132813,44.6183803535157],[122.099581328125,44.6467415595703],[122.10447390625,44.694735944336],[122.15326296875,44.7248299384766],[122.151480742188,44.7423226142578],[122.1023059375,44.7373097968751],[122.092808867188,44.7613442207032],[122.139190703125,44.7566164375],[122.161881132813,44.7676882148438],[122.089967070313,44.7805037666016],[122.092882109375,44.8091268134766],[122.063043242188,44.8791091132813],[122.03533328125,44.9021279121094],[122.078756132813,44.9209596992188],[122.070909453125,44.9979500556641],[122.092808867188,45.0283803535157],[122.116173125,45.066264875],[122.108985625,45.1367897773438],[122.135513945313,45.1831069160156],[122.18482546875,45.1780806708985],[122.228277617188,45.2029677558594],[122.237345,45.273843],[122.252628203125,45.2691243720703],[122.272061796875,45.2585616279297],[122.292628203125,45.2491243720704],[122.306783476563,45.2332802558594],[122.3237903125,45.2180843330078],[122.321822539063,45.1850704169922]]]]}},{"type":"Feature","properties":{"name":"镇赉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.837345,46.303843],[123.853570585938,46.2980220771485],[123.902769804688,46.3009542060547],[123.899678984375,46.2491243720703],[123.915679960938,46.2607881904297],[123.940494414063,46.2885616279297],[123.953228789063,46.2786562324219],[123.9508996875,46.2396016669922],[123.973829375,46.2191139960938],[123.943468046875,46.2051784492188],[123.9726575,46.1790956855469],[123.9720325,46.1685720039063],[124.002886992188,46.1590431953125],[123.99185671875,46.1387453437501],[124.012061796875,46.1206917548828],[124.002628203125,46.1085616279297],[123.991749296875,46.098843],[124.01353640625,46.0793758369141],[123.994254179688,46.0621462226563],[124.031070585938,46.04524925],[124.032769804688,46.0167317939453],[123.982628203125,46.0197200751953],[123.995753203125,46.0042024970704],[124.022061796875,45.9806917548829],[123.9989075,45.978153913086],[123.973233671875,45.9796840644532],[123.952628203125,45.9417568183594],[123.99923953125,45.9025215888672],[124.044097929688,45.8886702705078],[124.057345,45.8738430000001],[124.06896609375,45.8406880927735],[124.023214140625,45.8262026191406],[124.055792265625,45.7960158515625],[123.992535429688,45.7759883857423],[124.01244265625,45.7482521796875],[124.05093875,45.7497780585938],[124.067725859375,45.7342244697266],[124.077345,45.7238430000001],[124.027847929688,45.7177724433594],[123.925553007813,45.7281990791016],[123.861939726563,45.7042971015625],[123.810885039063,45.709501569336],[123.813331328125,45.7335305],[123.761954375,45.7282936835938],[123.752662382813,45.7394789863282],[123.664547148438,45.7198635078126],[123.612808867188,45.7393056464844],[123.571881132813,45.7483803535157],[123.552667265625,45.7593856025391],[123.542345,45.7583333564453],[123.527345,45.7598622871094],[123.491470976563,45.7562056708985],[123.428204375,45.7106740546875],[123.351881132813,45.6993056464844],[123.342735625,45.6882936835938],[123.326500273438,45.6899483466798],[123.312808867188,45.6583803535156],[123.293350859375,45.6244087958984],[123.257345,45.6138430000001],[123.252896757813,45.6193959785156],[123.221793242188,45.6282900214844],[123.209141875,45.6583095527344],[123.098077421875,45.6776381660157],[123.00994265625,45.6576192451172],[122.972291289063,45.6797542548828],[122.952896757813,45.7139943671875],[122.997530546875,45.7411025214844],[122.913096953125,45.8466701484375],[122.840787382813,45.8771401191406],[122.817345,45.883843],[122.812281523438,45.9553646064454],[122.79197390625,46.0484712958985],[122.787345,46.073843],[122.859136992188,46.0789260078126],[123.029683867188,46.096322248047],[123.06197390625,46.1192147041016],[123.103565703125,46.1286635566406],[123.100416289063,46.1678719306641],[123.11271609375,46.1784712958984],[123.12505984375,46.2194625068359],[123.167345,46.243843],[123.234039335938,46.2746578193359],[123.284097929688,46.2474575019531],[123.312345,46.2491408515625],[123.334874296875,46.247798078125],[123.352061796875,46.2285616279297],[123.38322390625,46.2191243720703],[123.381886015625,46.2415523505859],[123.449698515625,46.2375106025391],[123.50047,46.2557289863282],[123.532061796875,46.2385616279298],[123.55947390625,46.2259810615234],[123.602061796875,46.2491243720703],[123.7353528125,46.2595577216797],[123.75255984375,46.2585323310547],[123.825572539063,46.2906697822266],[123.837345,46.303843]]]]}},{"type":"Feature","properties":{"name":"洮北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.49123171875,45.8489772773438],[122.503150664063,45.7804927802735],[122.552467070313,45.8199355292969],[122.571607695313,45.7960335517578],[122.601793242188,45.7782900214844],[122.632896757813,45.7693959785156],[122.646261015625,45.7376845527344],[122.676920195313,45.6993959785156],[122.735206328125,45.7086562324219],[122.785299101563,45.7712905097657],[122.745816679688,45.8384517646485],[122.795904570313,45.8595571113281],[122.811793242188,45.8793959785157],[122.817345,45.883843],[122.840787382813,45.8771401191406],[122.913096953125,45.8466701484375],[122.997530546875,45.7411025214844],[122.952896757813,45.7139943671875],[122.972291289063,45.6797542548828],[123.00994265625,45.6576192451172],[123.098077421875,45.6776381660157],[123.209141875,45.6583095527344],[123.221793242188,45.6282900214844],[123.252896757813,45.6193959785156],[123.257345,45.6138430000001],[123.232896757813,45.5782900214844],[123.189766875,45.5269893623047],[123.161793242188,45.4793959785156],[123.147345,45.443843],[123.131793242188,45.4393959785156],[123.122896757813,45.4282900214844],[123.091793242188,45.4093959785157],[123.082896757813,45.3982900214844],[123.031793242188,45.3893959785156],[123.015904570313,45.3695571113281],[122.987486601563,45.3575814033204],[122.972345,45.3594649482422],[122.952345,45.3569771552735],[122.932345,45.3594649482422],[122.922061796875,45.3581856513673],[122.892628203125,45.3695003486329],[122.882345,45.3682210517578],[122.867345,45.3700868964844],[122.842345,45.3669771552735],[122.822345,45.3694649482422],[122.812345,45.3682210517578],[122.802345,45.3694649482422],[122.791890898438,45.3681648994141],[122.782896757813,45.3793959785157],[122.763502226563,45.3949275947266],[122.731793242188,45.4082900214844],[122.701607695313,45.4260335517578],[122.675904570313,45.4581288886719],[122.63068484375,45.4771834541016],[122.591920195313,45.5255953193359],[122.561793242188,45.5382900214844],[122.532896757813,45.5593959785157],[122.511793242188,45.5682900214844],[122.482628203125,45.6163021064454],[122.472896757813,45.6393959785157],[122.452193632813,45.6559749580079],[122.442496367188,45.7117110419922],[122.421793242188,45.7282900214844],[122.412896757813,45.7493959785157],[122.396578398438,45.7771614814453],[122.361666289063,45.7983675361329],[122.362965117188,45.808843],[122.361676054688,45.8192031074219],[122.373155546875,45.8387270332032],[122.367345,45.853843],[122.352896757813,45.8914278388673],[122.36619265625,45.9182900214845],[122.44291140625,45.9093947578125],[122.49123171875,45.8489772773438]]]]}},{"type":"Feature","properties":{"name":"洮南市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.922271757813,45.9867055488282],[121.972345,45.9754805732423],[121.993013945313,45.9801143623047],[122.00142703125,45.9679274726563],[122.067345,45.923843],[122.07271609375,45.9192147041016],[122.0891809375,45.8823232246094],[122.205836210938,45.8471999335938],[122.22197390625,45.8284712958985],[122.23271609375,45.8192147041016],[122.255577421875,45.7926815009766],[122.31271609375,45.8284712958985],[122.33041140625,45.8490108466797],[122.367345,45.853843],[122.373155546875,45.8387270332032],[122.361676054688,45.8192031074219],[122.362965117188,45.808843],[122.361666289063,45.7983675361329],[122.396578398438,45.7771614814453],[122.412896757813,45.7493959785157],[122.421793242188,45.7282900214844],[122.442496367188,45.7117110419922],[122.452193632813,45.6559749580079],[122.472896757813,45.6393959785157],[122.482628203125,45.6163021064454],[122.511793242188,45.5682900214844],[122.532896757813,45.5593959785157],[122.561793242188,45.5382900214844],[122.591920195313,45.5255953193359],[122.63068484375,45.4771834541016],[122.675904570313,45.4581288886719],[122.701607695313,45.4260335517578],[122.731793242188,45.4082900214844],[122.763502226563,45.3949275947266],[122.782896757813,45.3793959785157],[122.791890898438,45.3681648994141],[122.802345,45.3694649482422],[122.812345,45.3682210517578],[122.822345,45.3694649482422],[122.842345,45.3669771552735],[122.867345,45.3700868964844],[122.882345,45.3682210517578],[122.892628203125,45.3695003486329],[122.922061796875,45.3581856513673],[122.932345,45.3594649482422],[122.952345,45.3569771552735],[122.972345,45.3594649482422],[122.987486601563,45.3575814033204],[123.015904570313,45.3695571113281],[123.031793242188,45.3893959785156],[123.082896757813,45.3982900214844],[123.091793242188,45.4093959785157],[123.122896757813,45.4282900214844],[123.131793242188,45.4393959785156],[123.147345,45.443843],[123.191768828125,45.4082680488282],[123.231793242188,45.3582900214844],[123.243023710938,45.3492958808594],[123.241441679688,45.3365785957032],[123.285831328125,45.3010323310547],[123.311793242188,45.2582900214844],[123.330474882813,45.2433303046875],[123.337345,45.203843],[123.282061796875,45.1991243720703],[123.232628203125,45.1785616279297],[123.157999296875,45.1498738837891],[123.013013945313,45.1374983955078],[122.997633085938,45.1547109199219],[122.952628203125,45.1385616279297],[122.795162382813,45.12378440625],[122.763189726563,45.0879994941407],[122.738189726563,45.0656618476563],[122.5751965625,45.0402620673829],[122.486920195313,45.0719368720704],[122.446783476563,45.1168538642579],[122.321822539063,45.1850704169922],[122.3237903125,45.2180843330078],[122.306783476563,45.2332802558594],[122.292628203125,45.2491243720704],[122.272061796875,45.2585616279297],[122.252628203125,45.2691243720703],[122.237345,45.273843],[122.21142703125,45.2779274726563],[122.16326296875,45.2897585273438],[122.137345,45.293843],[122.142154570313,45.3690334296876],[122.172550078125,45.4086708808594],[122.171617460938,45.4321846748047],[122.011041289063,45.4898189521485],[121.987725859375,45.5392244697266],[121.9615246875,45.5887374091798],[121.982535429688,45.5986525703125],[122.000245390625,45.6177669501953],[121.9494934375,45.7136843085938],[121.821011992188,45.7085921455078],[121.80216921875,45.6882552314453],[121.754644804688,45.6901393867187],[121.679625273438,45.7097963691406],[121.652535429688,45.7390334296875],[121.642139921875,45.7486659980469],[121.642960234375,45.7694130683594],[121.69088015625,45.7675136542969],[121.722174101563,45.7890480781251],[121.73927859375,45.7883699775391],[121.747345,45.813843],[121.76298953125,45.8181990791016],[121.779049101563,45.8574391914063],[121.80478640625,45.8773073554688],[121.801549101563,45.899233625],[121.814014921875,45.9198970771485],[121.801646757813,45.9643093085938],[121.7540246875,45.9927913642578],[121.793018828125,46.0163130927734],[121.837345,46.0238430000001],[121.848023710938,46.0083773017578],[121.91326296875,45.9997585273438],[121.922271757813,45.9867055488282]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安图县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.857345,42.723843],[127.8341028125,42.728843],[127.857345,42.733843],[127.857345,42.723843]]],[[[127.857345,42.723843],[127.867345,42.723843],[127.882535429688,42.7190334296875],[127.912994414063,42.7083571601563],[127.932154570313,42.7290334296875],[127.952579375,42.7479579902344],[127.95099734375,42.7878810859375],[128.025709257813,42.757192609375],[128.133629179688,42.761469953125],[128.132139921875,42.7990102363281],[128.167857695313,42.8573476386719],[128.121480742188,42.8720314765626],[128.122550078125,42.8990200019532],[128.082974882813,42.9356911445313],[128.112535429688,42.9786525703125],[128.125553007813,43.0062367988281],[128.11093875,43.0197780585938],[128.075767851563,43.018384015625],[128.062535429688,43.0559877753907],[128.105831328125,43.0696962714844],[128.132476835938,43.0686391425782],[128.182213164063,43.0790468574219],[128.192345,43.0786452460938],[128.218297148438,43.079673078125],[128.232154570313,43.1090334296875],[128.242535429688,43.1186525703125],[128.25216921875,43.129048078125],[128.291461210938,43.1274904609375],[128.308858671875,43.1462697578125],[128.344273710938,43.1275319648438],[128.384556914063,43.1291286445313],[128.502222929688,43.1086403632812],[128.512345,43.1090407539063],[128.522345,43.1086452460938],[128.542799101563,43.1094557929688],[128.603209257813,43.0882826972656],[128.623678007813,43.0890944648438],[128.650850859375,43.1184181953125],[128.672652617188,43.1287062812501],[128.662154570313,43.1586525703125],[128.652535429688,43.1890334296875],[128.642154570313,43.2086525703125],[128.632535429688,43.2414699531251],[128.699039335938,43.2937648750001],[128.750621367188,43.2756850410156],[128.774332304688,43.3124062324219],[128.871016875,43.3354366279297],[128.882496367188,43.359755475586],[128.922535429688,43.3786525703125],[128.9456653125,43.3908913398438],[129.03482546875,43.3873574042969],[129.047345,43.373843],[129.02298953125,43.3550429511719],[129.03662234375,43.3286855292969],[129.093385039063,43.2892104316406],[129.0794153125,43.2536708808594],[129.08423953125,43.2210182929688],[129.06298953125,43.2081996894532],[129.035777617188,43.1970619941407],[129.030670195313,43.1624941230469],[129.066715117188,43.1157936835938],[129.092994414063,43.1196779609376],[129.16271609375,43.1078346992188],[129.187345,43.063843],[129.113170195313,43.0442482734376],[129.13271609375,43.0092153144531],[129.14197390625,42.9817287421875],[128.991168242188,42.9692153144531],[128.992764921875,42.98905784375],[128.989947539063,42.9984706855469],[128.97271609375,42.9784706855469],[128.94197390625,42.9692153144531],[128.937345,42.9438430000001],[128.90013796875,42.9575075507813],[128.881202421875,42.9150807929688],[128.838990507813,42.9305825019532],[128.811178007813,42.9283473945313],[128.812877226563,42.9072243476562],[128.7919153125,42.8891664863281],[128.79310671875,42.8743630195313],[128.816295195313,42.8328041816406],[128.788565703125,42.7992153144532],[128.736221953125,42.8284194160156],[128.69197390625,42.8384706855469],[128.604683867188,42.8623610664063],[128.59271609375,42.8484706855469],[128.57197390625,42.8392153144532],[128.5580871875,42.8230995917969],[128.518980742188,42.7894057441407],[128.532764921875,42.7390456367188],[128.531812773438,42.7272243476563],[128.570709257813,42.6937136054688],[128.58197390625,42.6684706855469],[128.59271609375,42.6592153144531],[128.605401640625,42.6307851386719],[128.590738554688,42.6181508613281],[128.61271609375,42.5992153144532],[128.625592070313,42.5842690253906],[128.620460234375,42.5204018378907],[128.652901640625,42.4789772773438],[128.638765898438,42.4404799628907],[128.67353640625,42.4187001777344],[128.6719153125,42.3985195136719],[128.68271609375,42.3892153144532],[128.69197390625,42.3750612617188],[128.654932890625,42.3431508613281],[128.694342070313,42.3091970039063],[128.665982695313,42.2965419746094],[128.612022734375,42.3008779121094],[128.59271609375,42.2784706855469],[128.5766028125,42.2645864082031],[128.56271609375,42.2484706855469],[128.540416289063,42.2292568183594],[128.390728789063,42.2139870429688],[128.3927746875,42.1885195136719],[128.375738554688,42.1738430000001],[128.444796171875,42.1143459296875],[128.441925078125,42.0786049628906],[128.4565246875,42.038843],[128.447345,42.013843],[128.431119414063,42.0196645332031],[128.392345,42.0173525214844],[128.247345,42.0259950996094],[128.122345,42.0185451484376],[128.08873171875,42.0205483222656],[128.057345,42.013843],[128.031793242188,42.0282900214844],[128.012896757813,42.0793959785156],[127.984781523438,42.1178896308594],[127.962530546875,42.1357057929688],[127.952896757813,42.1693959785157],[127.916612578125,42.1914369941407],[127.902857695313,42.2395290351563],[127.890079375,42.2379396796875],[127.868453398438,42.2649489570312],[127.849249296875,42.2803237128906],[127.832345,42.2782216621095],[127.8141028125,42.2804897285157],[127.802896757813,42.3182839179688],[127.882896757813,42.3282900214844],[127.901793242188,42.3593959785157],[127.942896757813,42.3682900214844],[127.964034453125,42.3946840644532],[128.002896757813,42.4182900214844],[128.011793242188,42.4393959785157],[128.034820585938,42.4709242988281],[128.01545046875,42.5562038398438],[127.951402617188,42.63628440625],[127.954058867188,42.6576271796875],[127.88166140625,42.6783278632813],[127.883023710938,42.6892958808594],[127.862530546875,42.7057057929688],[127.857345,42.723843]]]]}},{"type":"Feature","properties":{"name":"敦化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.462808867188,44.3483803535157],[128.445308867188,44.333843],[128.47166140625,44.3119490791016],[128.451617460938,44.2586006904297],[128.465933867188,44.2467067695313],[128.451710234375,44.208843],[128.457345,44.193843],[128.463472929688,44.1602577949219],[128.52271609375,44.1092147041016],[128.53197390625,44.0884712958985],[128.557901640625,44.0519008613281],[128.585094023438,43.9802431464844],[128.6327746875,43.9391664863282],[128.62884890625,43.8903292060547],[128.652550078125,43.8884249091797],[128.6989075,43.901112897461],[128.751363554688,43.8559200263672],[128.71740359375,43.8266622138672],[128.75490359375,43.7594472480469],[128.71271609375,43.7406221748047],[128.743717070313,43.7277480292969],[128.76373171875,43.7293563056641],[128.78197390625,43.6884712958985],[128.80345828125,43.6499587226563],[128.836021757813,43.5769844794922],[128.85197390625,43.5584712958985],[128.86271609375,43.5492147041016],[128.8740246875,43.5360915351563],[128.935889921875,43.5530239082032],[128.977862578125,43.5296047187501],[129.008990507813,43.5271034980469],[129.04197390625,43.5392147041016],[129.087345,43.543843],[129.092213164063,43.5231655097656],[129.113531523438,43.5100307441406],[129.121158476563,43.4976552558594],[129.1560559375,43.4857619453126],[129.149039335938,43.4632222724609],[129.16431765625,43.4183760810547],[129.207345,43.413843],[129.20326296875,43.3979274726563],[129.178980742188,43.388843],[129.184830351563,43.3627626777344],[129.151007109375,43.3551796699219],[129.100714140625,43.3879274726563],[129.06142703125,43.3797585273438],[129.047345,43.373843],[129.03482546875,43.3873574042969],[128.9456653125,43.3908913398438],[128.922535429688,43.3786525703125],[128.882496367188,43.359755475586],[128.871016875,43.3354366279297],[128.774332304688,43.3124062324219],[128.750621367188,43.2756850410156],[128.699039335938,43.2937648750001],[128.632535429688,43.2414699531251],[128.642154570313,43.2086525703125],[128.652535429688,43.1890334296875],[128.662154570313,43.1586525703125],[128.672652617188,43.1287062812501],[128.650850859375,43.1184181953125],[128.623678007813,43.0890944648438],[128.603209257813,43.0882826972656],[128.542799101563,43.1094557929688],[128.522345,43.1086452460938],[128.512345,43.1090407539063],[128.502222929688,43.1086403632812],[128.384556914063,43.1291286445313],[128.344273710938,43.1275319648438],[128.308858671875,43.1462697578125],[128.291461210938,43.1274904609375],[128.25216921875,43.129048078125],[128.242535429688,43.1186525703125],[128.232154570313,43.1090334296875],[128.218297148438,43.079673078125],[128.192345,43.0786452460938],[128.182213164063,43.0790468574219],[128.132476835938,43.0686391425782],[128.105831328125,43.0696962714844],[128.062535429688,43.0559877753907],[128.075767851563,43.018384015625],[128.11093875,43.0197780585938],[128.125553007813,43.0062367988281],[128.112535429688,42.9786525703125],[128.082974882813,42.9356911445313],[128.122550078125,42.8990200019532],[128.121480742188,42.8720314765626],[128.167857695313,42.8573476386719],[128.132139921875,42.7990102363281],[128.133629179688,42.761469953125],[128.025709257813,42.757192609375],[127.95099734375,42.7878810859375],[127.952579375,42.7479579902344],[127.932154570313,42.7290334296875],[127.912994414063,42.7083571601563],[127.882535429688,42.7190334296875],[127.867345,42.723843],[127.867345,42.733843],[127.857345,42.733843],[127.86547,42.7501845527344],[127.830704375,42.757202375],[127.827345,42.7838430000001],[127.832896757813,42.7882900214844],[127.847100859375,42.8060292792969],[127.831793242188,42.8182900214844],[127.822896757813,42.8293959785157],[127.810533476563,42.8392958808594],[127.814229765625,42.8690151191407],[127.781793242188,42.8782900214844],[127.752589140625,42.8996230292969],[127.712261992188,42.8881081367188],[127.665631132813,42.9060341621094],[127.63537234375,42.9238210273438],[127.62099734375,42.9417690253907],[127.581793242188,42.9582900214844],[127.562896757813,42.9693959785157],[127.51767703125,42.9884511542969],[127.492896757813,43.0193959785157],[127.470479765625,43.028843],[127.473448515625,43.0527150703126],[127.493023710938,43.0683901191406],[127.490479765625,43.0888430000001],[127.493590117188,43.113843],[127.491666289063,43.1293178535157],[127.550123320313,43.1648281074219],[127.561793242188,43.1793959785156],[127.621187773438,43.2154726386719],[127.653077421875,43.2679726386719],[127.651378203125,43.2816091132813],[127.611793242188,43.2982900214844],[127.607345,43.303843],[127.622877226563,43.3172243476563],[127.621832304688,43.3302272773438],[127.664967070313,43.3494747138672],[127.6962121875,43.3857399726563],[127.691539335938,43.4438430000001],[127.695592070313,43.4942836738281],[127.7555090625,43.5123232246094],[127.77197390625,43.5492147041016],[127.78271609375,43.5584712958985],[127.79197390625,43.5692147041016],[127.80271609375,43.5784712958985],[127.81197390625,43.5892147041016],[127.83271609375,43.5984712958985],[127.86197390625,43.6192147041016],[127.8927746875,43.6284889960938],[127.8919153125,43.6391664863282],[127.903526640625,43.6491664863281],[127.900513945313,43.6866036201172],[127.921861601563,43.7248653388672],[127.86197390625,43.7384712958984],[127.845113554688,43.7580397773438],[127.83271609375,43.7992147041016],[127.81197390625,43.8084712958985],[127.80271609375,43.8534169746094],[127.85271609375,43.8684712958985],[127.86197390625,43.8785292792969],[127.771148710938,43.9289296699219],[127.776519804688,43.9957991767578],[127.81271609375,44.0184712958985],[127.85209109375,44.0463881660157],[127.857345,44.063843],[127.912808867188,44.0683803535157],[127.941881132813,44.0793056464844],[128.004327421875,44.0976302314454],[128.052808867188,44.1083803535157],[128.087232695313,44.1331563544922],[128.061798125,44.1684950996094],[128.063004179688,44.1803047919922],[128.082779570313,44.1782888007812],[128.098668242188,44.2324269843751],[128.0532434375,44.2521279121094],[128.095787382813,44.2874678779297],[128.061881132813,44.3083803535157],[128.05107546875,44.3213906074219],[128.0528528125,44.338843],[128.0518371875,44.3488430000001],[128.054410429688,44.3741146064453],[128.081881132813,44.3583803535156],[128.154620390625,44.3475460029297],[128.174659453125,44.3495882392578],[128.211641875,44.4348635078125],[128.242808867188,44.4483803535157],[128.247345,44.453843],[128.278267851563,44.4629177070312],[128.297564726563,44.4861446357422],[128.361202421875,44.5132784248047],[128.381881132813,44.4883803535157],[128.422100859375,44.4709389472657],[128.431881132813,44.4483803535157],[128.453053007813,44.4307942939453],[128.45093875,44.4100307441407],[128.471881132813,44.3734603095704],[128.462808867188,44.3483803535157]]]]}},{"type":"Feature","properties":{"name":"和龙市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.227345,42.303843],[129.208961210938,42.3276601386719],[129.19298953125,42.3096791816407],[129.222535429688,42.2986525703126],[129.201749296875,42.288843],[129.231685820313,42.2747158027344],[129.172535429688,42.2559877753907],[129.182164335938,42.238637921875],[129.202564726563,42.2394460273438],[129.2017590625,42.2190200019532],[129.212808867188,42.2087807441407],[129.192154570313,42.1990334296875],[129.182535429688,42.1886525703126],[129.162139921875,42.1790261054688],[129.162550078125,42.1686574531251],[129.132154570313,42.1590334296875],[129.113053007813,42.1384169746094],[129.0722278125,42.1491139960938],[129.062535429688,42.1386525703125],[129.035362578125,42.1258278632813],[129.022530546875,42.098637921875],[129.00533328125,42.0993190742188],[128.9514465625,42.0864833808594],[128.95287234375,42.0505532050782],[128.93810671875,42.0192690253907],[128.896143828125,42.0176064277344],[128.852486601563,42.0290468574219],[128.832877226563,42.0282692695312],[128.810416289063,42.0401540351563],[128.762877226563,42.0382692695313],[128.736666289063,42.0521388984376],[128.6740246875,42.0090334296875],[128.652154570313,42.0186525703125],[128.633624296875,42.0386525703125],[128.601129179688,42.0287209296875],[128.573678007813,41.9990944648437],[128.562345,41.9986452460938],[128.532345,41.9998342109375],[128.493209257813,41.9982826972657],[128.462535429688,42.0090334296875],[128.447345,42.013843],[128.4565246875,42.038843],[128.441925078125,42.0786049628906],[128.444796171875,42.1143459296875],[128.375738554688,42.1738430000001],[128.3927746875,42.1885195136719],[128.390728789063,42.2139870429688],[128.540416289063,42.2292568183594],[128.56271609375,42.2484706855469],[128.5766028125,42.2645864082031],[128.59271609375,42.2784706855469],[128.612022734375,42.3008779121094],[128.665982695313,42.2965419746094],[128.694342070313,42.3091970039063],[128.654932890625,42.3431508613281],[128.69197390625,42.3750612617188],[128.68271609375,42.3892153144532],[128.6719153125,42.3985195136719],[128.67353640625,42.4187001777344],[128.638765898438,42.4404799628907],[128.652901640625,42.4789772773438],[128.620460234375,42.5204018378907],[128.625592070313,42.5842690253906],[128.61271609375,42.5992153144532],[128.590738554688,42.6181508613281],[128.605401640625,42.6307851386719],[128.59271609375,42.6592153144531],[128.58197390625,42.6684706855469],[128.570709257813,42.6937136054688],[128.531812773438,42.7272243476563],[128.532764921875,42.7390456367188],[128.518980742188,42.7894057441407],[128.5580871875,42.8230995917969],[128.57197390625,42.8392153144532],[128.59271609375,42.8484706855469],[128.604683867188,42.8623610664063],[128.69197390625,42.8384706855469],[128.736221953125,42.8284194160156],[128.788565703125,42.7992153144532],[128.816295195313,42.8328041816406],[128.79310671875,42.8743630195313],[128.7919153125,42.8891664863281],[128.812877226563,42.9072243476562],[128.811178007813,42.9283473945313],[128.838990507813,42.9305825019532],[128.881202421875,42.9150807929688],[128.90013796875,42.9575075507813],[128.937345,42.9438430000001],[128.951793242188,42.9182900214844],[128.989561796875,42.8710634589844],[129.005689726563,42.8146633125001],[129.071168242188,42.76683128125],[129.092345,42.7694643378907],[129.147960234375,42.7625478339844],[129.191793242188,42.7793959785157],[129.222896757813,42.7882900214844],[129.256983671875,42.8013930488281],[129.352896757813,42.7893959785157],[129.361793242188,42.7682900214844],[129.37736453125,42.7558180976562],[129.400850859375,42.7158705878906],[129.404039335938,42.69022971875],[129.391793242188,42.6693959785157],[129.37906375,42.6391872382813],[129.266207304688,42.6227614570313],[129.30107546875,42.59483909375],[129.281666289063,42.5792958808594],[129.284381132813,42.5574843574219],[129.261099882813,42.538843],[129.303697539063,42.5047304511719],[129.301695585938,42.4886257148438],[129.312896757813,42.4493959785157],[129.317345,42.423843],[129.3077746875,42.4169826484376],[129.313482695313,42.38808128125],[129.257447539063,42.3768471503906],[129.241724882813,42.3799538398438],[129.223170195313,42.3540029121094],[129.260250273438,42.3274269843751],[129.227345,42.303843]]]]}},{"type":"Feature","properties":{"name":"龙井市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.357345,42.423843],[129.342345,42.4004128242188],[129.327345,42.423843],[129.337345,42.423843],[129.337345,42.433843],[129.357345,42.423843]]],[[[129.801910429688,42.6865395332032],[129.807345,42.6738430000001],[129.784346953125,42.677895734375],[129.801910429688,42.6865395332032]]],[[[129.357345,42.423843],[129.369713164063,42.4487282539063],[129.342061796875,42.457202375],[129.337345,42.433843],[129.327345,42.433843],[129.327345,42.423843],[129.317345,42.423843],[129.312896757813,42.4493959785157],[129.301695585938,42.4886257148438],[129.303697539063,42.5047304511719],[129.261099882813,42.538843],[129.284381132813,42.5574843574219],[129.281666289063,42.5792958808594],[129.30107546875,42.59483909375],[129.266207304688,42.6227614570313],[129.37906375,42.6391872382813],[129.391793242188,42.6693959785157],[129.404039335938,42.69022971875],[129.400850859375,42.7158705878906],[129.37736453125,42.7558180976562],[129.361793242188,42.7682900214844],[129.352896757813,42.7893959785157],[129.256983671875,42.8013930488281],[129.222896757813,42.7882900214844],[129.191793242188,42.7793959785157],[129.147960234375,42.7625478339844],[129.092345,42.7694643378907],[129.071168242188,42.76683128125],[129.005689726563,42.8146633125001],[128.989561796875,42.8710634589844],[128.951793242188,42.9182900214844],[128.937345,42.9438430000001],[128.94197390625,42.9692153144531],[128.97271609375,42.9784706855469],[128.989947539063,42.9984706855469],[128.992764921875,42.98905784375],[128.991168242188,42.9692153144531],[129.14197390625,42.9817287421875],[129.13271609375,43.0092153144531],[129.113170195313,43.0442482734376],[129.187345,43.063843],[129.19197390625,43.0584706855469],[129.22271609375,43.0492153144531],[129.277178984375,43.0292153144532],[129.301529570313,43.0437221503907],[129.302857695313,43.0602272773437],[129.2541028125,43.0819838691407],[129.251944609375,43.108843],[129.253951445313,43.1338430000001],[129.251168242188,43.1684706855469],[129.27271609375,43.1592153144531],[129.28197390625,43.1484706855469],[129.333345976563,43.116294171875],[129.330386992188,43.0794716621094],[129.34236453125,43.0267494941407],[129.398253203125,42.9785976386719],[129.41271609375,42.9392153144531],[129.42197390625,42.8784706855469],[129.44271609375,42.8692153144532],[129.462301054688,42.8379494453126],[129.5780871875,42.8530995917969],[129.605084257813,42.8844313789063],[129.697345,42.893843],[129.70283328125,42.8778066230469],[129.702242460938,42.8487465644532],[129.712550078125,42.838843],[129.70224734375,42.8289430976563],[129.69244265625,42.8187429023438],[129.672886992188,42.7999538398438],[129.797345,42.7838430000001],[129.792896757813,42.7782900214844],[129.781666289063,42.7692958808594],[129.783316679688,42.7560170722656],[129.758526640625,42.7138430000001],[129.779273710938,42.6785536933594],[129.783214140625,42.6468691230469],[129.747896757813,42.6512624335938],[129.761793242188,42.6182900214844],[129.773590117188,42.608843],[129.761793242188,42.5993959785157],[129.752896757813,42.5882900214844],[129.738272734375,42.5765785957032],[129.743941679688,42.5310048652344],[129.731578398438,42.498843],[129.745577421875,42.4624245429688],[129.701402617188,42.427094953125],[129.672345,42.4307082343751],[129.651939726563,42.4281703925782],[129.608585234375,42.4628444648438],[129.591099882813,42.4488430000001],[129.607100859375,42.4360292792969],[129.592896757813,42.4182900214844],[129.561217070313,42.3929189277344],[129.564141875,42.3693959785157],[129.531793242188,42.3782900214844],[129.522896757813,42.3893959785156],[129.501793242188,42.3982900214844],[129.491978789063,42.4105458808594],[129.442706328125,42.4395095039063],[129.42373171875,42.4371498847657],[129.393995390625,42.4546291328125],[129.382896757813,42.4282900214844],[129.357345,42.423843]],[[129.317345,43.033843],[129.313922148438,43.0460353828125],[129.305152617188,43.0372658515626],[129.317345,43.033843]]]]}},{"type":"Feature","properties":{"name":"图们市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.857345,42.923843],[129.869537382813,42.9204201484376],[129.860767851563,42.9116506171875],[129.857345,42.923843]]],[[[129.90334109375,42.9865688300782],[129.907345,42.963843],[129.894346953125,42.9694045234375],[129.90334109375,42.9865688300782]]],[[[130.187345,43.2038430000001],[130.14197390625,43.1492153144532],[130.1287903125,43.0911806464844],[130.087896757813,43.0729335761719],[130.06271609375,43.0512404609375],[130.07197390625,43.0384706855469],[130.084185820313,43.0279482246094],[130.077345,42.9838430000001],[130.064869414063,42.9676784492188],[129.992379179688,42.9795864082032],[129.953814726563,42.9738881660156],[129.951607695313,42.988843],[129.955943632813,43.0181996894532],[129.8911340625,43.0017104316407],[129.87298953125,42.9781996894532],[129.849034453125,42.9597096992188],[129.857345,42.923843],[129.837281523438,42.9094631171875],[129.84443484375,42.8732607246094],[129.811236601563,42.8494631171876],[129.813331328125,42.838843],[129.803311796875,42.7881179023437],[129.797345,42.7838430000001],[129.672886992188,42.7999538398438],[129.69244265625,42.8187429023438],[129.70224734375,42.8289430976563],[129.712550078125,42.838843],[129.702242460938,42.8487465644532],[129.70283328125,42.8778066230469],[129.697345,42.893843],[129.691900664063,42.9128908515625],[129.646920195313,42.9282900214844],[129.612535429688,42.9080776191406],[129.539254179688,42.9290029121094],[129.543590117188,42.963843],[129.53861453125,43.003843],[129.596129179688,43.0280788398438],[129.58156375,43.0790883613282],[129.607345,43.113843],[129.659327421875,43.118579328125],[129.663331328125,43.1388430000001],[129.658155546875,43.1650502753907],[129.685303984375,43.1704152656251],[129.717086210938,43.1581581855469],[129.744674101563,43.1196681953125],[129.773170195313,43.1280178046875],[129.796314726563,43.1427114082031],[129.852891875,43.153891828125],[129.897345,43.1356240058594],[129.941344023438,43.1537050605469],[129.972345,43.1598305488281],[129.982428007813,43.1578383613282],[130.032261992188,43.1698476386719],[130.05248171875,43.1658510566407],[130.113170195313,43.1780178046875],[130.12404421875,43.2062148261719],[130.147345,43.2108193183594],[130.162345,43.2078554511719],[130.172633085938,43.209887921875],[130.187345,43.2038430000001]]],[[[130.187345,43.2038430000001],[130.187345,43.2138430000001],[130.207345,43.2138430000001],[130.207345,43.2038430000001],[130.187345,43.2038430000001]]]]}},{"type":"Feature","properties":{"name":"汪清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.307345,43.803843],[129.295152617188,43.8072664619141],[129.303922148438,43.8160353828125],[129.307345,43.803843]]],[[[129.307345,43.803843],[129.363546171875,43.7947835517578],[129.392896757813,43.8182900214844],[129.409210234375,43.838657453125],[129.442896757813,43.8482900214844],[129.464610625,43.8754024482422],[129.522379179688,43.8682167792969],[129.602310820313,43.8794692207031],[129.647345,43.8738674140625],[129.697345,43.8800868964844],[129.733370390625,43.8756056953125],[129.731656523438,43.8893672919922],[129.775455351563,43.8988430000001],[129.771666289063,43.9292958808594],[129.783023710938,43.9383901191407],[129.780479765625,43.958843],[129.802896757813,43.9682900214844],[129.8615246875,44.0111135078125],[129.872198515625,43.9977797675782],[129.901954375,44.0195137763672],[129.912418242188,44.018212506836],[129.947345,44.023843],[129.97380984375,44.0088808417969],[130.01537234375,43.9381764960938],[130.006275664063,43.8650460029297],[130.06322390625,43.8315712714844],[130.102896757813,43.8482900214844],[130.111793242188,43.8693959785156],[130.139932890625,43.8812544990235],[130.159146757813,43.9268471503907],[130.19939578125,43.9423195625001],[130.239249296875,43.9373622871094],[130.252896757813,43.9482900214844],[130.274146757813,43.9832747626954],[130.292896757813,43.9982900214844],[130.309576445313,44.0378682685547],[130.357345,44.0438430000001],[130.35271609375,43.9884712958985],[130.327242460938,43.9525453925781],[130.3480871875,43.9345870185547],[130.36197390625,43.9184712958985],[130.372999296875,43.9089736152344],[130.361807890625,43.8889199042969],[130.372882109375,43.8587660957032],[130.361807890625,43.8389199042969],[130.37271609375,43.8092147041016],[130.38197390625,43.7684712958985],[130.414039335938,43.7408437324219],[130.38271609375,43.6847017646485],[130.411729765625,43.6451778388672],[130.480103789063,43.6506716132813],[130.515894804688,43.6307021308594],[130.57486453125,43.6178401923829],[130.592345,43.6192446113282],[130.602345,43.6184413886719],[130.624464140625,43.6202187324219],[130.6218371875,43.5874977851563],[130.729210234375,43.5467507148437],[130.76197390625,43.5284712958985],[130.78271609375,43.5192147041016],[130.79197390625,43.5084712958984],[130.81271609375,43.4992147041016],[130.847471953125,43.4389302802735],[130.897345,43.4338430000001],[130.89298953125,43.4281990791016],[130.86170046875,43.4194869208985],[130.83459109375,43.4031325507813],[130.79263796875,43.4196248603516],[130.777345,43.4173653388672],[130.72490359375,43.4251149726563],[130.68375125,43.393349225586],[130.680206328125,43.369355084961],[130.710557890625,43.3459242988281],[130.713082304688,43.328843],[130.711549101563,43.318452375],[130.724459257813,43.2970522285157],[130.697315703125,43.2761037421875],[130.679932890625,43.1937111640626],[130.609307890625,43.1773464179688],[130.55298953125,43.1994863105469],[130.49170046875,43.2081996894532],[130.47298953125,43.2194863105469],[130.45170046875,43.2281996894531],[130.40220828125,43.2681996894531],[130.318897734375,43.2538283515626],[130.29298953125,43.2381996894531],[130.25170046875,43.2294863105469],[130.22298953125,43.2181996894532],[130.207345,43.2138430000001],[130.187345,43.2138430000001],[130.187345,43.2038430000001],[130.172633085938,43.209887921875],[130.162345,43.2078554511719],[130.147345,43.2108193183594],[130.12404421875,43.2062148261719],[130.113170195313,43.1780178046875],[130.05248171875,43.1658510566407],[130.032261992188,43.1698476386719],[129.982428007813,43.1578383613282],[129.972345,43.1598305488281],[129.941344023438,43.1537050605469],[129.897345,43.1356240058594],[129.852891875,43.153891828125],[129.796314726563,43.1427114082031],[129.773170195313,43.1280178046875],[129.744674101563,43.1196681953125],[129.717086210938,43.1581581855469],[129.685303984375,43.1704152656251],[129.658155546875,43.1650502753907],[129.663331328125,43.1388430000001],[129.659327421875,43.118579328125],[129.607345,43.113843],[129.60197390625,43.1184706855469],[129.56750125,43.1664760566406],[129.53838015625,43.191567609375],[129.502398710938,43.17835471875],[129.46271609375,43.1892153144532],[129.38505984375,43.1993764472656],[129.2917590625,43.2765505195312],[129.292745390625,43.2888430000001],[129.291925078125,43.2990810371094],[129.302882109375,43.3289199042969],[129.291217070313,43.349823834961],[129.2927746875,43.369189069336],[129.27197390625,43.3784712958985],[129.26271609375,43.3992147041016],[129.22197390625,43.4084712958985],[129.207345,43.413843],[129.16431765625,43.4183760810547],[129.149039335938,43.4632222724609],[129.1560559375,43.4857619453126],[129.121158476563,43.4976552558594],[129.113531523438,43.5100307441406],[129.092213164063,43.5231655097656],[129.087345,43.543843],[129.091793242188,43.5493959785157],[129.13468875,43.5616609931641],[129.162706328125,43.5581764960938],[129.218985625,43.5912587714844],[129.231793242188,43.6142659736328],[129.211793242188,43.6482900214844],[129.202896757813,43.6742659736329],[129.22322390625,43.7088430000001],[129.211676054688,43.7284828925782],[129.212965117188,43.7388430000001],[129.207139921875,43.7856728339844],[129.232432890625,43.8059261298828],[129.265777617188,43.8182900214844],[129.281793242188,43.7982900214844],[129.295777617188,43.7893959785156],[129.307345,43.803843]]]]}},{"type":"Feature","properties":{"name":"延吉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.313922148438,43.0460353828125],[129.317345,43.033843],[129.305152617188,43.0372658515626],[129.313922148438,43.0460353828125]]],[[[129.2927746875,43.369189069336],[129.291217070313,43.349823834961],[129.302882109375,43.3289199042969],[129.291925078125,43.2990810371094],[129.292745390625,43.2888430000001],[129.2917590625,43.2765505195312],[129.38505984375,43.1993764472656],[129.46271609375,43.1892153144532],[129.502398710938,43.17835471875],[129.53838015625,43.191567609375],[129.56750125,43.1664760566406],[129.60197390625,43.1184706855469],[129.607345,43.113843],[129.58156375,43.0790883613282],[129.596129179688,43.0280788398438],[129.53861453125,43.003843],[129.543590117188,42.963843],[129.539254179688,42.9290029121094],[129.612535429688,42.9080776191406],[129.646920195313,42.9282900214844],[129.691900664063,42.9128908515625],[129.697345,42.893843],[129.605084257813,42.8844313789063],[129.5780871875,42.8530995917969],[129.462301054688,42.8379494453126],[129.44271609375,42.8692153144532],[129.42197390625,42.8784706855469],[129.41271609375,42.9392153144531],[129.398253203125,42.9785976386719],[129.34236453125,43.0267494941407],[129.330386992188,43.0794716621094],[129.333345976563,43.116294171875],[129.28197390625,43.1484706855469],[129.27271609375,43.1592153144531],[129.251168242188,43.1684706855469],[129.253951445313,43.1338430000001],[129.251944609375,43.108843],[129.2541028125,43.0819838691407],[129.302857695313,43.0602272773437],[129.301529570313,43.0437221503907],[129.277178984375,43.0292153144532],[129.22271609375,43.0492153144531],[129.19197390625,43.0584706855469],[129.187345,43.063843],[129.16271609375,43.1078346992188],[129.092994414063,43.1196779609376],[129.066715117188,43.1157936835938],[129.030670195313,43.1624941230469],[129.035777617188,43.1970619941407],[129.06298953125,43.2081996894532],[129.08423953125,43.2210182929688],[129.0794153125,43.2536708808594],[129.093385039063,43.2892104316406],[129.03662234375,43.3286855292969],[129.02298953125,43.3550429511719],[129.047345,43.373843],[129.06142703125,43.3797585273438],[129.100714140625,43.3879274726563],[129.151007109375,43.3551796699219],[129.184830351563,43.3627626777344],[129.178980742188,43.388843],[129.20326296875,43.3979274726563],[129.207345,43.413843],[129.22197390625,43.4084712958985],[129.26271609375,43.3992147041016],[129.27197390625,43.3784712958985],[129.2927746875,43.369189069336]]]]}},{"type":"Feature","properties":{"name":"珲春市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.587345,42.4838430000001],[130.595557890625,42.4781728339844],[130.591124296875,42.4583962226563],[130.609771757813,42.4297585273438],[130.56326296875,42.4396681953125],[130.57142703125,42.4597585273438],[130.587345,42.4838430000001]]],[[[130.587345,42.4838430000001],[130.554664335938,42.4882155585938],[130.546763945313,42.5073830390625],[130.582603789063,42.4924892402344],[130.587345,42.4838430000001]]],[[[131.112808867188,43.4393056464844],[131.126861601563,43.422387921875],[131.172081328125,43.4393794990235],[131.182667265625,43.438300397461],[131.201881132813,43.4493056464844],[131.222808867188,43.4583803535157],[131.233516875,43.4712715888672],[131.289058867188,43.465610578125],[131.297345,43.493843],[131.31599734375,43.488227765625],[131.30271609375,43.4584712958985],[131.288975859375,43.4338430000001],[131.31197390625,43.3926247382813],[131.292642851563,43.3784169746094],[131.273131132813,43.3799849677734],[131.26197390625,43.3392147041016],[131.249654570313,43.2716786933594],[131.19271609375,43.2226247382813],[131.20197390625,43.198470685547],[131.214190703125,43.1765761542969],[131.201593046875,43.134731671875],[131.161812773438,43.1004616523438],[131.164400664063,43.06827659375],[131.135211210938,43.0706215644532],[131.115689726563,43.0538027167969],[131.099273710938,43.0243752265625],[131.11197390625,42.9684706855469],[131.14197390625,42.9550844550782],[131.130079375,42.9337380195313],[131.100103789063,42.9170143867188],[131.067345,42.9196462226563],[131.052345,42.9184413886719],[131.01297,42.9216054511719],[131.011773710938,42.9067494941406],[131.03673953125,42.8620082832032],[130.975699492188,42.8571034980469],[130.932345,42.8730239082032],[130.881636992188,42.8544020820312],[130.818428984375,42.881020734375],[130.78505984375,42.8661293769532],[130.771998320313,42.8368617988281],[130.737345,42.8396462226562],[130.717345,42.8380397773437],[130.65880984375,42.8427431464844],[130.59271609375,42.8184706855469],[130.5574621875,42.8078566718751],[130.518951445313,42.7863686347657],[130.46197390625,42.7692153144532],[130.45271609375,42.7584706855469],[130.41373171875,42.7410744453125],[130.411485625,42.7131508613282],[130.44271609375,42.6992153144531],[130.462066679688,42.6884194160157],[130.472345,42.6892446113281],[130.482550078125,42.6884255195313],[130.527139921875,42.7006288886719],[130.566793242188,42.6829335761719],[130.58271609375,42.6692153144531],[130.60197390625,42.6384706855469],[130.620870390625,42.6221901679688],[130.62400515625,42.5831801582032],[130.60271609375,42.5584706855469],[130.563370390625,42.5466249824219],[130.561944609375,42.5288430000001],[130.563521757813,42.5092153144531],[130.55197390625,42.5184706855469],[130.54271609375,42.5292153144532],[130.524683867188,42.5447524238282],[130.521539335938,42.583843],[130.523453398438,42.6076454902344],[130.486124296875,42.628470685547],[130.463116484375,42.6134218574219],[130.461217070313,42.5898232246094],[130.48197390625,42.5526247382813],[130.444874296875,42.5473574042969],[130.41740359375,42.5710243964844],[130.439967070313,42.6114638496094],[130.383316679688,42.6069118476563],[130.36572390625,42.6273317695313],[130.32295046875,42.6541225410157],[130.284967070313,42.6982106757812],[130.242896757813,42.7169838691407],[130.241138945313,42.738843],[130.243150664063,42.763843],[130.2419153125,42.7791664863281],[130.252999296875,42.7887123847657],[130.236187773438,42.818843],[130.262916289063,42.8667494941406],[130.261539335938,42.883843],[130.26312625,42.9035573554687],[130.177345,42.9104494453126],[130.126065703125,42.9063295722657],[130.10271609375,42.9264455390625],[130.11213015625,42.9292617011719],[130.131851835938,42.9276772285157],[130.1327746875,42.9391664863282],[130.120738554688,42.9495351386719],[130.15197390625,42.9764455390626],[130.14255984375,42.9792617011719],[130.1323059375,42.9784377265625],[130.077345,42.9838430000001],[130.084185820313,43.0279482246094],[130.07197390625,43.0384706855469],[130.06271609375,43.0512404609375],[130.087896757813,43.0729335761719],[130.1287903125,43.0911806464844],[130.14197390625,43.1492153144532],[130.187345,43.2038430000001],[130.207345,43.2038430000001],[130.207345,43.2138430000001],[130.22298953125,43.2181996894532],[130.25170046875,43.2294863105469],[130.29298953125,43.2381996894531],[130.318897734375,43.2538283515626],[130.40220828125,43.2681996894531],[130.45170046875,43.2281996894531],[130.47298953125,43.2194863105469],[130.49170046875,43.2081996894532],[130.55298953125,43.1994863105469],[130.609307890625,43.1773464179688],[130.679932890625,43.1937111640626],[130.697315703125,43.2761037421875],[130.724459257813,43.2970522285157],[130.711549101563,43.318452375],[130.713082304688,43.328843],[130.710557890625,43.3459242988281],[130.680206328125,43.369355084961],[130.68375125,43.393349225586],[130.72490359375,43.4251149726563],[130.777345,43.4173653388672],[130.79263796875,43.4196248603516],[130.83459109375,43.4031325507813],[130.86170046875,43.4194869208985],[130.89298953125,43.4281990791016],[130.897345,43.4338430000001],[130.902808867188,43.4383803535156],[130.931090117188,43.472426984375],[131.012408476563,43.5083803535157],[131.081881132813,43.4583803535157],[131.112808867188,43.4393056464844]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":230100,"name":"哈尔滨市","center":[126.642464,45.756967],"centroid":[127.966759,45.648633],"childrenNum":18,"level":"city","parent":{"adcode":230000},"subFeatureIndex":0,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.761286,45.531346],[125.743615,45.51907],[125.687959,45.514009],[125.702012,45.501837],[125.691716,45.487724],[125.709804,45.484383],[125.697142,45.453987],[125.706604,45.446008],[125.707161,45.424222],[125.715926,45.421741],[125.712309,45.389369],[125.696308,45.365401],[125.695751,45.350713],[125.726223,45.336454],[125.716205,45.326513],[125.731232,45.322947],[125.753216,45.297978],[125.751825,45.287274],[125.774226,45.293113],[125.787723,45.279163],[125.814855,45.267807],[125.813464,45.246817],[125.82376,45.238052],[125.84964,45.239026],[125.871903,45.221166],[125.888461,45.22149],[125.919767,45.196044],[125.957474,45.201351],[125.966658,45.193011],[125.992677,45.192686],[125.982241,45.17882],[125.99699,45.162675],[126.02941,45.164517],[126.044855,45.171019],[126.085345,45.162675],[126.095363,45.147176],[126.114008,45.14284],[126.145036,45.147068],[126.166185,45.133516],[126.170916,45.146309],[126.192065,45.155089],[126.217111,45.146634],[126.225459,45.153896],[126.235616,45.140238],[126.262471,45.152162],[126.264697,45.168202],[126.28515,45.162458],[126.280698,45.172319],[126.297117,45.192144],[126.304213,45.178062],[126.34192,45.192686],[126.35973,45.188028],[126.389088,45.213587],[126.432083,45.234696],[126.439875,45.22398],[126.460468,45.234588],[126.512924,45.239891],[126.519463,45.2479],[126.540056,45.238809],[126.569554,45.252661],[126.62354,45.235454],[126.646499,45.224305],[126.649838,45.211205],[126.685736,45.187703],[126.732209,45.18727],[126.731792,45.17817],[126.765185,45.17492],[126.78703,45.15899],[126.792596,45.135359],[126.812771,45.136552],[126.825572,45.147826],[126.83893,45.132757],[126.856462,45.14555],[126.874132,45.137527],[126.922136,45.142623],[126.931737,45.130154],[126.94412,45.138828],[126.964296,45.132215],[126.956643,45.121913],[126.969583,45.116924],[126.970974,45.071028],[126.987393,45.066252],[127.009099,45.043776],[127.018421,45.024334],[127.050284,45.003907],[127.039292,44.99793],[127.057241,44.991735],[127.075469,44.958464],[127.087574,44.956724],[127.088966,44.929962],[127.072547,44.906889],[127.045415,44.907107],[127.0219,44.898942],[126.999081,44.872698],[127.003116,44.854505],[126.984193,44.824534],[126.99755,44.764874],[127.041101,44.712251],[127.030526,44.673901],[127.043188,44.65488],[127.041519,44.611787],[127.028718,44.597342],[127.041519,44.591104],[127.053485,44.566909],[127.089244,44.593621],[127.09467,44.615835],[127.138917,44.607629],[127.181911,44.644273],[127.210435,44.64821],[127.229497,44.642524],[127.214053,44.625462],[127.262196,44.612881],[127.275692,44.640227],[127.321887,44.635525],[127.392709,44.632243],[127.436678,44.613428],[127.451427,44.615069],[127.506805,44.594497],[127.513205,44.582566],[127.557034,44.575559],[127.570253,44.550701],[127.549521,44.53909],[127.536998,44.522655],[127.508196,44.529777],[127.485516,44.528682],[127.465619,44.516518],[127.475498,44.498761],[127.464645,44.486701],[127.480785,44.456869],[127.500961,44.449847],[127.508196,44.437228],[127.485516,44.408688],[127.487882,44.397488],[127.506526,44.393205],[127.52058,44.380574],[127.522528,44.361017],[127.556756,44.340245],[127.579714,44.310118],[127.609212,44.294719],[127.623544,44.277885],[127.623265,44.258294],[127.590567,44.227905],[127.626605,44.187912],[127.641214,44.193533],[127.681704,44.166969],[127.699236,44.176119],[127.719829,44.202348],[127.720525,44.162779],[127.734856,44.129913],[127.728873,44.099458],[127.783834,44.071857],[127.808322,44.086432],[127.84589,44.081905],[127.864952,44.06225],[127.888885,44.069538],[127.908086,44.064458],[127.94955,44.088088],[128.007293,44.09427],[128.027608,44.108397],[128.052514,44.106963],[128.101491,44.13576],[128.084934,44.147562],[128.087856,44.158479],[128.060445,44.168622],[128.07088,44.18174],[128.092726,44.182291],[128.09203,44.215789],[128.103579,44.213255],[128.104413,44.229336],[128.087995,44.238917],[128.092308,44.248056],[128.06448,44.251029],[128.063923,44.261596],[128.088273,44.274804],[128.101352,44.289878],[128.080759,44.307258],[128.065037,44.307368],[128.056271,44.329252],[128.063784,44.341784],[128.050288,44.350467],[128.066985,44.371016],[128.094534,44.354973],[128.126258,44.349258],[128.154087,44.356182],[128.1648,44.343543],[128.188733,44.364314],[128.211969,44.43229],[128.227692,44.445349],[128.253016,44.446665],[128.254546,44.453468],[128.232144,44.467619],[128.235206,44.480451],[128.27166,44.530654],[128.296427,44.538214],[128.293645,44.54632],[128.348327,44.586178],[128.371842,44.608066],[128.368641,44.631478],[128.393826,44.643836],[128.408436,44.675868],[128.438072,44.680021],[128.472858,44.66614],[128.535471,44.682862],[128.562186,44.669856],[128.579161,44.674775],[128.600171,44.670403],[128.630086,44.655208],[128.691587,44.663188],[128.728737,44.694991],[128.747799,44.699689],[128.75587,44.725138],[128.727207,44.734747],[128.748495,44.739878],[128.782445,44.767165],[128.788846,44.783422],[128.836432,44.789858],[128.85772,44.799456],[128.847981,44.806108],[128.867182,44.830094],[128.851737,44.831729],[128.876504,44.844589],[128.881792,44.86333],[128.904611,44.883371],[128.925899,44.874876],[128.951223,44.885331],[128.967224,44.884787],[128.993939,44.907869],[129.022185,44.913093],[129.041386,44.900684],[129.061561,44.903732],[129.043334,44.929962],[129.054604,44.935294],[129.046256,44.951612],[129.033594,44.949001],[129.023298,44.973471],[129.04236,44.977167],[129.051822,44.999234],[129.04069,45.01347],[129.035681,45.041496],[129.009801,45.048229],[128.997418,45.064515],[129.017176,45.080253],[129.056135,45.077106],[129.074641,45.069074],[129.080345,45.085028],[129.104834,45.100761],[129.133358,45.101412],[129.150333,45.11226],[129.125427,45.11931],[129.122087,45.134817],[129.102051,45.139262],[129.105808,45.163325],[129.133219,45.181962],[129.141289,45.195719],[129.162299,45.194419],[129.187344,45.204924],[129.209885,45.223439],[129.20098,45.235562],[129.210859,45.259152],[129.187066,45.26283],[129.18971,45.276892],[129.174543,45.292032],[129.127653,45.275486],[129.09412,45.291599],[129.097181,45.309329],[129.084241,45.327378],[129.062396,45.33883],[129.087581,45.358382],[129.137393,45.371772],[129.156594,45.369828],[129.194162,45.389585],[129.198197,45.426919],[129.146715,45.444607],[129.142402,45.458731],[129.117774,45.474037],[129.13461,45.498174],[129.13141,45.524993],[129.140315,45.535975],[129.123896,45.566435],[129.102051,45.567188],[129.09259,45.604942],[129.109287,45.625369],[129.138924,45.619242],[129.150472,45.623756],[129.17997,45.604405],[129.220738,45.593974],[129.254967,45.617199],[129.298935,45.619779],[129.310901,45.625154],[129.31118,45.645036],[129.300744,45.656961],[129.308258,45.673073],[129.34179,45.678657],[129.354452,45.688536],[129.34193,45.69691],[129.338729,45.721166],[129.344295,45.735757],[129.405378,45.738439],[129.415535,45.746591],[129.402038,45.768574],[129.431675,45.779937],[129.454773,45.763856],[129.473278,45.786261],[129.468548,45.791834],[129.50862,45.789262],[129.511403,45.802122],[129.528795,45.802979],[129.556623,45.81712],[129.564555,45.828474],[129.549249,45.847641],[129.574294,45.859416],[129.564137,45.875577],[129.585982,45.887132],[129.607827,45.876005],[129.626055,45.893337],[129.666962,45.873116],[129.723036,45.896653],[129.771317,45.885955],[129.793997,45.897081],[129.783005,45.925633],[129.797476,45.933437],[129.785092,45.970945],[129.80819,45.987073],[129.846314,45.9875],[129.857445,45.970197],[129.875116,45.961757],[129.902388,45.935468],[129.900718,45.925526],[129.920615,45.921143],[129.93272,45.927023],[129.949278,45.908418],[129.975019,45.920395],[130.027614,45.923709],[130.044589,45.909915],[130.061843,45.91847],[130.088558,45.91569],[130.10275,45.927665],[130.116247,45.926489],[130.105116,45.981413],[130.118473,46.003303],[130.114577,46.02273],[130.125013,46.027959],[130.12543,46.049831],[130.111655,46.055271],[130.115829,46.069561],[130.139762,46.069561],[130.182339,46.083422],[130.213089,46.111772],[130.240082,46.122319],[130.221994,46.139681],[130.207801,46.144047],[130.188183,46.172685],[130.158963,46.188116],[130.155206,46.209605],[130.139622,46.230129],[130.111238,46.245013],[130.09635,46.243312],[130.061425,46.274342],[130.059895,46.294204],[130.030536,46.303443],[130.014953,46.335075],[130.009526,46.330406],[129.968897,46.345262],[129.952061,46.346429],[129.948582,46.358416],[129.923815,46.376022],[129.97321,46.389699],[129.988516,46.381854],[130.014953,46.381217],[130.030954,46.387155],[130.066017,46.364144],[130.077427,46.37178],[130.083131,46.390441],[130.115412,46.386731],[130.139205,46.407718],[130.14491,46.431452],[130.161746,46.433147],[130.170929,46.463328],[130.146579,46.491059],[130.154093,46.502591],[130.153119,46.538655],[130.177608,46.589061],[130.197783,46.61715],[130.191104,46.624962],[130.163276,46.614089],[130.155902,46.603108],[130.126543,46.598144],[130.114577,46.574166],[130.129465,46.549332],[130.129187,46.529033],[130.138927,46.504178],[130.092036,46.523852],[130.074644,46.51666],[130.072418,46.525967],[130.041807,46.526284],[130.035824,46.541087],[130.05753,46.548063],[130.066574,46.558633],[130.069913,46.583569],[130.086749,46.604058],[130.071444,46.601629],[130.054468,46.586315],[130.02998,46.598356],[130.030675,46.584202],[129.988794,46.565079],[129.958461,46.60184],[129.940791,46.608915],[129.921172,46.629395],[129.904336,46.609971],[129.862872,46.594342],[129.821965,46.559584],[129.76116,46.531783],[129.712878,46.538549],[129.683381,46.536646],[129.642612,46.558104],[129.640386,46.580716],[129.5928,46.608915],[129.55078,46.618839],[129.540066,46.613878],[129.502359,46.619367],[129.501385,46.619367],[129.4794,46.623695],[129.439328,46.604375],[129.419987,46.613878],[129.425553,46.620634],[129.40663,46.643009],[129.355705,46.652821],[129.281543,46.641954],[129.258584,46.620528],[129.242305,46.620317],[129.220738,46.585153],[129.19945,46.576808],[129.207102,46.558633],[129.197363,46.536012],[129.156594,46.545209],[129.128766,46.530514],[129.108034,46.535166],[129.096486,46.555779],[129.082154,46.557893],[129.066988,46.534955],[129.043334,46.520996],[129.020654,46.487778],[128.956788,46.512958],[128.916159,46.518352],[128.913655,46.526178],[128.879844,46.524275],[128.848815,46.509996],[128.839215,46.487461],[128.786759,46.50111],[128.764914,46.486614],[128.704248,46.483757],[128.699378,46.5119],[128.708979,46.537809],[128.7023,46.557787],[128.679899,46.565396],[128.679481,46.575751],[128.622155,46.573427],[128.598502,46.586738],[128.565804,46.57892],[128.545767,46.599412],[128.507643,46.60712],[128.467292,46.62549],[128.428472,46.62074],[128.39146,46.597933],[128.401339,46.581139],[128.380051,46.565079],[128.36892,46.570997],[128.32022,46.574695],[128.291418,46.570785],[128.24912,46.582512],[128.238962,46.57723],[128.194298,46.565079],[128.191376,46.538972],[128.20056,46.534743],[128.172036,46.522054],[128.152834,46.539289],[128.137111,46.52639],[128.117353,46.5229],[128.12111,46.508516],[128.08549,46.50841],[128.080759,46.519198],[128.059888,46.518564],[128.048061,46.530619],[128.014946,46.531148],[127.965551,46.548698],[127.928261,46.575117],[127.903077,46.578181],[127.869822,46.575117],[127.860222,46.584097],[127.844221,46.576279],[127.814723,46.605853],[127.790512,46.598989],[127.776876,46.58304],[127.696453,46.554194],[127.681565,46.564023],[127.626326,46.538444],[127.589454,46.514651],[127.569696,46.512535],[127.549938,46.526284],[127.517936,46.529879],[127.509727,46.539924],[127.505831,46.5992],[127.481759,46.628445],[127.463114,46.632983],[127.446974,46.647124],[127.422485,46.648073],[127.408432,46.666851],[127.356115,46.673706],[127.321469,46.670648],[127.290163,46.657674],[127.275692,46.644697],[127.241185,46.651977],[127.187338,46.642587],[127.168832,46.620423],[127.151022,46.61071],[127.12222,46.606381],[127.125142,46.595398],[127.089244,46.592124],[127.05098,46.578075],[127.052093,46.566347],[127.037205,46.563071],[127.031779,46.547746],[126.998802,46.537175],[126.989897,46.526495],[126.972644,46.527553],[126.91824,46.506611],[126.906831,46.509044],[126.873854,46.495185],[126.878446,46.487038],[126.85187,46.477089],[126.853122,46.468515],[126.836008,46.452105],[126.837539,46.438443],[126.80331,46.422235],[126.778125,46.427215],[126.768246,46.408778],[126.742784,46.417149],[126.71259,46.388851],[126.682118,46.375916],[126.688102,46.363295],[126.661804,46.354598],[126.656795,46.340381],[126.635228,46.324781],[126.641907,46.293142],[126.617279,46.257341],[126.615609,46.235764],[126.587503,46.208223],[126.526838,46.188861],[126.457546,46.139788],[126.454763,46.11614],[126.423178,46.084808],[126.393263,46.084808],[126.382688,46.092376],[126.350547,46.095787],[126.328841,46.065509],[126.277498,46.065403],[126.258435,46.078091],[126.228659,46.07404],[126.242991,46.064336],[126.224068,46.06007],[126.223929,46.048871],[126.189978,46.069668],[126.170777,46.061457],[126.199996,46.028066],[126.221007,46.011736],[126.235477,45.990063],[126.231025,45.963574],[126.247722,45.962185],[126.262053,45.973295],[126.310752,45.970411],[126.319379,45.94124],[126.311726,45.934506],[126.328145,45.901894],[126.357086,45.889379],[126.365435,45.877075],[126.354442,45.866908],[126.342755,45.831258],[126.360982,45.822155],[126.364321,45.807157],[126.348738,45.796657],[126.360008,45.774899],[126.355556,45.747878],[126.35806,45.725029],[126.340807,45.733504],[126.329119,45.725994],[126.320214,45.745948],[126.298647,45.74155],[126.306717,45.702599],[126.283481,45.694763],[126.265114,45.703029],[126.223372,45.704102],[126.20751,45.690683],[126.184413,45.686174],[126.16549,45.703136],[126.152967,45.681235],[126.124026,45.673825],[126.075326,45.692723],[126.060995,45.70979],[126.026627,45.711508],[126.011739,45.703673],[126.009652,45.683919],[125.981824,45.669636],[125.98085,45.658036],[125.996016,45.633967],[125.969162,45.626229],[125.952744,45.633215],[125.927698,45.630313],[125.935073,45.608061],[125.934099,45.585799],[125.902792,45.564821],[125.894305,45.545018],[125.863555,45.525424],[125.848249,45.5097],[125.8335,45.520147],[125.792871,45.509377],[125.777009,45.511208],[125.761286,45.531346]]]]}},{"type":"Feature","properties":{"adcode":230200,"name":"齐齐哈尔市","center":[123.95792,47.342081],"centroid":[124.557904,47.710767],"childrenNum":16,"level":"city","parent":{"adcode":230000},"subFeatureIndex":1,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.750152,48.924028],[124.709244,48.920393],[124.71314,48.901806],[124.698391,48.894632],[124.71481,48.88675],[124.708966,48.866533],[124.69533,48.854096],[124.694356,48.840037],[124.680581,48.842464],[124.654145,48.834372],[124.644127,48.808061],[124.653588,48.777077],[124.613933,48.751141],[124.624925,48.700244],[124.615185,48.668585],[124.605306,48.660972],[124.601828,48.632437],[124.58207,48.617503],[124.579148,48.596466],[124.566625,48.59118],[124.568017,48.575318],[124.54812,48.577759],[124.518622,48.554264],[124.548954,48.531267],[124.53351,48.515387],[124.540467,48.480046],[124.555355,48.469245],[124.508047,48.446923],[124.524605,48.426733],[124.518761,48.377958],[124.547006,48.357639],[124.541163,48.33537],[124.559112,48.324232],[124.579565,48.297449],[124.563842,48.290905],[124.556468,48.276689],[124.5804,48.253873],[124.563703,48.243843],[124.56913,48.230637],[124.557164,48.224801],[124.547146,48.20104],[124.521683,48.186901],[124.52697,48.172963],[124.51236,48.164558],[124.529892,48.159944],[124.529614,48.146922],[124.497751,48.123022],[124.48175,48.125587],[124.464079,48.097674],[124.437642,48.095519],[124.431102,48.08556],[124.416214,48.087922],[124.424145,48.106501],[124.438616,48.114301],[124.436668,48.127331],[124.468949,48.132358],[124.464774,48.159432],[124.475766,48.172963],[124.420806,48.18106],[124.419554,48.214048],[124.42818,48.223163],[124.399239,48.259296],[124.405083,48.264208],[124.36515,48.284667],[124.356245,48.312785],[124.338574,48.323108],[124.318816,48.347118],[124.325216,48.358047],[124.314503,48.371628],[124.332313,48.379285],[124.320625,48.393575],[124.314085,48.419185],[124.32633,48.417349],[124.329947,48.435707],[124.302815,48.456709],[124.302397,48.474034],[124.314224,48.503881],[124.298501,48.521495],[124.259125,48.536559],[124.242428,48.522208],[124.178562,48.488094],[124.137098,48.463334],[124.08186,48.437849],[123.97987,48.363766],[123.907377,48.306651],[123.89722,48.302868],[123.866053,48.274745],[123.775194,48.213331],[123.746531,48.197762],[123.705206,48.152049],[123.656785,48.114095],[123.618939,48.077859],[123.571214,48.040775],[123.537542,48.021864],[123.42122,47.988854],[123.349702,47.964881],[123.31603,47.958809],[123.289037,47.943162],[123.255225,47.875784],[123.214179,47.824523],[123.181481,47.793659],[123.164923,47.783126],[123.082274,47.759987],[123.030653,47.741489],[122.980979,47.717195],[122.937011,47.701164],[122.848796,47.674574],[122.763224,47.613479],[122.688645,47.582697],[122.652886,47.571084],[122.593195,47.547125],[122.574689,47.535401],[122.544078,47.49637],[122.53726,47.469572],[122.519868,47.443903],[122.50651,47.401059],[122.469081,47.381602],[122.418156,47.350476],[122.419825,47.33027],[122.436522,47.313183],[122.456976,47.303074],[122.46282,47.278472],[122.49844,47.254796],[122.535173,47.201775],[122.531277,47.198642],[122.557435,47.171692],[122.600291,47.151627],[122.62144,47.121725],[122.65066,47.11294],[122.679879,47.094213],[122.699359,47.098398],[122.711603,47.090655],[122.738736,47.088562],[122.763224,47.076317],[122.805384,47.07527],[122.821942,47.06564],[122.851996,47.07234],[122.85617,47.059148],[122.846013,47.046896],[122.812341,47.030137],[122.778252,47.002892],[122.782426,46.989474],[122.774773,46.97406],[122.798705,46.957488],[122.791052,46.941645],[122.802462,46.937342],[122.848657,46.939651],[122.878572,46.957068],[122.895269,46.96032],[122.899443,46.918134],[122.893738,46.895243],[122.879824,46.892617],[122.9,46.86257],[122.899026,46.826827],[122.906957,46.807369],[122.918644,46.803897],[122.926436,46.783273],[122.938959,46.788851],[122.96957,46.770958],[122.996563,46.761588],[122.992945,46.747478],[123.004494,46.72936],[123.026617,46.718824],[123.030096,46.727359],[123.066551,46.737156],[123.076291,46.744634],[123.104954,46.734733],[123.142382,46.743265],[123.163671,46.740105],[123.178142,46.753901],[123.186351,46.786851],[123.210561,46.816205],[123.223223,46.821464],[123.217518,46.85269],[123.237276,46.862149],[123.253556,46.855528],[123.263435,46.862149],[123.308795,46.862044],[123.332866,46.842178],[123.341771,46.826932],[123.374608,46.837658],[123.40675,46.906375],[123.404662,46.935453],[123.390192,46.938496],[123.386992,46.952137],[123.360277,46.970914],[123.304064,46.96483],[123.301698,46.999852],[123.343997,46.984966],[123.387826,46.954865],[123.392696,46.940805],[123.427481,46.934509],[123.45364,46.942169],[123.487868,46.959061],[123.516253,46.951298],[123.527106,46.959166],[123.520845,46.920024],[123.510966,46.90774],[123.483416,46.845963],[123.514166,46.826091],[123.562726,46.825986],[123.575527,46.845227],[123.568848,46.861098],[123.577197,46.891147],[123.605581,46.891252],[123.600851,46.861624],[123.625618,46.847645],[123.617269,46.838288],[123.580119,46.827984],[123.594868,46.814522],[123.629096,46.813575],[123.625478,46.806106],[123.631183,46.76422],[123.624504,46.763588],[123.631322,46.731889],[123.619635,46.722091],[123.604329,46.689734],[123.474094,46.686993],[123.366399,46.677819],[123.317978,46.66221],[123.277349,46.661577],[123.271366,46.6505],[123.279158,46.616939],[123.24312,46.603952],[123.228371,46.588216],[123.205691,46.591596],[123.180646,46.613983],[123.098553,46.603108],[123.101893,46.592864],[123.08603,46.591491],[123.077682,46.622217],[123.045819,46.617784],[123.052915,46.580083],[123.002546,46.574483],[123.010338,46.524803],[123.010616,46.435795],[123.094796,46.342291],[123.140434,46.300257],[123.178559,46.248095],[123.219466,46.269455],[123.248129,46.273279],[123.253277,46.265523],[123.279297,46.262017],[123.287367,46.250114],[123.320065,46.25139],[123.347336,46.245863],[123.373634,46.223005],[123.396036,46.244268],[123.431517,46.243843],[123.453362,46.232468],[123.477155,46.242249],[123.499974,46.259573],[123.52641,46.249264],[123.544638,46.23502],[123.562448,46.236296],[123.566483,46.22577],[123.596676,46.234063],[123.605025,46.251815],[123.668195,46.25851],[123.678769,46.254047],[123.724964,46.255641],[123.744583,46.264142],[123.757105,46.259998],[123.78716,46.267542],[123.849912,46.302381],[123.845599,46.313423],[123.859513,46.345156],[123.843929,46.363826],[123.844068,46.375491],[123.870088,46.390653],[123.860069,46.408142],[123.866331,46.418633],[123.848938,46.438125],[123.82431,46.45094],[123.838503,46.471268],[123.810118,46.484815],[123.823754,46.498254],[123.823058,46.512112],[123.802048,46.515814],[123.797735,46.525438],[123.824589,46.556942],[123.824171,46.573849],[123.812344,46.582301],[123.80664,46.600573],[123.791751,46.604692],[123.784655,46.623906],[123.754462,46.642376],[123.767124,46.664425],[123.758219,46.695005],[123.785212,46.713134],[123.766428,46.74179],[123.814014,46.743581],[123.818884,46.737366],[123.855478,46.744318],[123.859235,46.696164],[123.887341,46.684778],[123.914334,46.704492],[123.940075,46.712185],[123.958164,46.707759],[123.980426,46.730835],[124.003663,46.73705],[124.003384,46.767063],[123.985853,46.800741],[123.995314,46.80537],[123.952737,46.821253],[123.94898,46.842599],[123.929361,46.846068],[123.92797,46.862465],[123.940214,46.86961],[123.943971,46.893563],[123.970408,46.925167],[123.9846,46.928421],[124.007698,46.949514],[124.013959,46.971962],[124.000601,47.002473],[124.072955,47.004988],[124.089234,47.039146],[124.070728,47.048153],[124.112192,47.064697],[124.153795,47.107814],[124.195955,47.131346],[124.305458,47.141801],[124.347061,47.138665],[124.418858,47.183915],[124.423032,47.224221],[124.397569,47.259073],[124.409953,47.27138],[124.400631,47.285562],[124.425676,47.318706],[124.43472,47.323499],[124.428737,47.345373],[124.446408,47.352766],[124.464774,47.348081],[124.481332,47.360263],[124.479802,47.340061],[124.5221,47.34152],[124.587914,47.339749],[124.586383,47.328603],[124.61769,47.311203],[124.633691,47.307764],[124.685869,47.333708],[124.757387,47.360055],[124.810956,47.386181],[124.824592,47.41115],[124.878718,47.418846],[124.891797,47.4307],[124.964706,47.456895],[125.00784,47.466143],[125.047356,47.478818],[125.079776,47.393256],[125.169521,47.392632],[125.169521,47.38129],[125.314923,47.38129],[125.324107,47.335687],[125.337047,47.294215],[125.332872,47.2865],[125.407452,47.285457],[125.475352,47.292442],[125.521547,47.294527],[125.681698,47.312454],[125.716483,47.311308],[125.828909,47.320477],[125.971806,47.33652],[126.189978,47.355265],[126.446275,47.379937],[126.45198,47.400643],[126.466451,47.403868],[126.508471,47.457518],[126.501514,47.46739],[126.533377,47.482557],[126.518907,47.49502],[126.540613,47.530835],[126.542978,47.571395],[126.557031,47.585703],[126.540056,47.588606],[126.526281,47.603116],[126.524055,47.693406],[126.518628,47.72557],[126.566354,47.726707],[126.567328,47.756577],[126.560092,47.777549],[126.564545,47.79593],[126.590842,47.821117],[126.59766,47.835047],[126.587503,47.842578],[126.566632,47.880423],[126.576233,47.884443],[126.580407,47.912059],[126.605869,47.935336],[126.631193,47.949339],[126.623123,47.958603],[126.63008,47.98906],[126.616862,48.053722],[126.601,48.053311],[126.590147,48.063892],[126.605591,48.068719],[126.600304,48.086895],[126.621453,48.09675],[126.615748,48.113172],[126.654708,48.11861],[126.666535,48.131229],[126.61547,48.152459],[126.599191,48.174193],[126.594877,48.196225],[126.573032,48.215585],[126.556475,48.212],[126.520437,48.219271],[126.429996,48.193356],[126.392289,48.197249],[126.362234,48.189975],[126.347346,48.174808],[126.318683,48.178293],[126.318266,48.201655],[126.329258,48.205547],[126.322579,48.24067],[126.303795,48.24937],[126.289742,48.271472],[126.244661,48.283849],[126.21238,48.281292],[126.199022,48.274541],[126.155332,48.291212],[126.051116,48.282826],[126.001443,48.307264],[125.980015,48.30706],[125.947178,48.318611],[125.948709,48.341602],[125.912254,48.339763],[125.879695,48.353043],[125.843379,48.357945],[125.820282,48.393473],[125.801359,48.477091],[125.788836,48.490233],[125.805672,48.492576],[125.800385,48.508667],[125.799689,48.556299],[125.755721,48.560876],[125.737493,48.556909],[125.723579,48.565962],[125.707021,48.562402],[125.71537,48.609577],[125.72984,48.610796],[125.726501,48.598295],[125.76713,48.588842],[125.781879,48.606325],[125.816108,48.600227],[125.841709,48.612524],[125.840179,48.622786],[125.86105,48.625427],[125.866894,48.637414],[125.892496,48.636906],[125.873712,48.668483],[125.955805,48.710489],[125.973336,48.706026],[125.989894,48.711503],[126.007843,48.738168],[125.959701,48.780723],[125.921715,48.795102],[125.911697,48.806542],[125.857154,48.837912],[125.838788,48.867342],[125.816525,48.868555],[125.799967,48.849646],[125.789671,48.826378],[125.758782,48.821926],[125.722327,48.803708],[125.697838,48.803202],[125.640373,48.853084],[125.631746,48.856118],[125.622563,48.890994],[125.603779,48.882808],[125.541166,48.868858],[125.513894,48.859152],[125.493997,48.834877],[125.468117,48.82648],[125.462551,48.798848],[125.452255,48.783559],[125.413713,48.792672],[125.309079,48.726814],[125.250223,48.726307],[125.250362,48.712416],[125.22963,48.715965],[125.212238,48.734519],[125.128753,48.725801],[125.096055,48.749824],[125.067531,48.738878],[125.045965,48.74648],[125.040955,48.78923],[124.992813,48.813425],[125.015493,48.825063],[125.012432,48.84732],[125.022589,48.86168],[125.013127,48.8915],[124.991421,48.885335],[124.941609,48.897562],[124.924912,48.893015],[124.868282,48.90322],[124.834332,48.920696],[124.83294,48.92938],[124.798851,48.932612],[124.750152,48.924028]]]]}},{"type":"Feature","properties":{"adcode":230300,"name":"鸡西市","center":[130.975966,45.300046],"centroid":[132.297639,45.635227],"childrenNum":9,"level":"city","parent":{"adcode":230000},"subFeatureIndex":2,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.788856,45.904033],[131.746,45.901787],[131.729999,45.891839],[131.718172,45.896653],[131.71845,45.916759],[131.685892,45.906279],[131.679074,45.918149],[131.643593,45.910664],[131.623835,45.912696],[131.607973,45.926382],[131.599485,45.916011],[131.574023,45.915476],[131.567483,45.889379],[131.556908,45.879643],[131.522541,45.881355],[131.505148,45.866159],[131.500278,45.841217],[131.452135,45.812728],[131.454223,45.79387],[131.466467,45.782617],[131.47885,45.724599],[131.463406,45.728033],[131.418463,45.718054],[131.396897,45.72299],[131.35752,45.705819],[131.338179,45.684241],[131.372686,45.672106],[131.339153,45.645788],[131.337484,45.633752],[131.315778,45.615909],[131.304786,45.59806],[131.283497,45.608813],[131.282941,45.628163],[131.21824,45.619887],[131.194865,45.638373],[131.181646,45.621069],[131.164532,45.627948],[131.15354,45.646755],[131.103588,45.634505],[131.099832,45.645358],[131.04014,45.65159],[131.034435,45.670388],[131.020104,45.686281],[131.012869,45.680483],[130.946638,45.667381],[130.949421,45.647399],[130.938428,45.624294],[130.890703,45.609996],[130.865241,45.633215],[130.850074,45.618812],[130.842421,45.624831],[130.809167,45.626766],[130.800958,45.619457],[130.777025,45.618919],[130.761581,45.581497],[130.745301,45.559655],[130.757685,45.53253],[130.744049,45.509162],[130.713299,45.511101],[130.685749,45.483198],[130.660843,45.479211],[130.667939,45.459486],[130.652216,45.439862],[130.629119,45.431234],[130.610335,45.410952],[130.557183,45.391311],[130.540765,45.359462],[130.526294,45.358706],[130.509736,45.33883],[130.49304,45.33721],[130.474673,45.300573],[130.493318,45.276784],[130.477595,45.249414],[130.458533,45.241948],[130.433766,45.205249],[130.444479,45.188678],[130.465351,45.181854],[130.467716,45.169394],[130.426669,45.150211],[130.427504,45.135901],[130.403433,45.134275],[130.398841,45.124082],[130.412895,45.118117],[130.420408,45.089369],[130.432513,45.090888],[130.439888,45.072547],[130.468412,45.066143],[130.485387,45.054852],[130.500553,45.075369],[130.556627,45.100978],[130.592108,45.081773],[130.593221,45.073199],[130.629815,45.054961],[130.63051,45.042582],[130.653608,45.018359],[130.658756,44.999451],[130.676566,44.987821],[130.691871,44.995213],[130.720534,44.965424],[130.767842,44.974667],[130.767703,44.990104],[130.797757,45.003147],[130.821133,45.000104],[130.836438,44.988147],[130.866493,44.991191],[130.871224,44.968578],[130.92368,44.93377],[130.919227,44.922453],[130.927576,44.888271],[130.948447,44.881302],[130.968065,44.854614],[130.987128,44.867687],[131.061429,44.873896],[131.102058,44.898071],[131.090927,44.924848],[131.107763,44.938122],[131.127521,44.932356],[131.136704,44.942583],[131.159523,44.94824],[131.171906,44.936055],[131.203352,44.932791],[131.206413,44.915923],[131.249547,44.922345],[131.263043,44.930071],[131.275149,44.919841],[131.293515,44.928003],[131.311603,44.946499],[131.313969,44.966077],[131.338875,44.973145],[131.355294,44.989887],[131.380061,44.978037],[131.410254,44.985865],[131.434047,44.969448],[131.464519,44.963467],[131.49346,44.968143],[131.500974,44.980647],[131.485668,44.9963],[131.529637,45.012166],[131.5647,45.035631],[131.5679,45.045948],[131.604773,45.059195],[131.632879,45.075261],[131.634827,45.086114],[131.657785,45.094035],[131.685335,45.115839],[131.695492,45.131998],[131.687422,45.15097],[131.669195,45.149669],[131.65055,45.159857],[131.681717,45.215103],[131.698971,45.215861],[131.721651,45.234372],[131.759219,45.213803],[131.793586,45.211746],[131.784681,45.231125],[131.788438,45.245952],[131.824754,45.291275],[131.834355,45.295059],[131.830041,45.311599],[131.853834,45.319705],[131.887645,45.342288],[131.915195,45.340019],[131.921735,45.331916],[131.932031,45.287274],[131.950537,45.278406],[131.978504,45.276135],[131.99534,45.258719],[132.025673,45.250605],[132.174275,45.217052],[132.394395,45.163759],[132.561642,45.12766],[132.764648,45.081447],[132.862047,45.060824],[132.915199,45.031721],[132.94414,45.031504],[132.943444,45.023139],[132.978507,45.032698],[132.987969,45.043559],[133.007727,45.042799],[133.045434,45.065057],[133.06881,45.09653],[133.103177,45.107053],[133.107352,45.124407],[133.138797,45.12701],[133.138102,45.15433],[133.129058,45.174595],[133.137823,45.179362],[133.124188,45.221707],[133.106795,45.235238],[133.107769,45.255041],[133.096499,45.250821],[133.098029,45.267049],[133.111108,45.26759],[133.097751,45.284895],[133.111943,45.301546],[133.107491,45.32165],[133.129058,45.33667],[133.119039,45.352657],[133.14478,45.367345],[133.147424,45.403831],[133.144085,45.430694],[133.171913,45.443312],[133.170521,45.46563],[133.18694,45.492788],[133.210037,45.51207],[133.246771,45.517563],[133.27919,45.539528],[133.291156,45.536729],[133.334846,45.56127],[133.373528,45.569663],[133.389111,45.57956],[133.413322,45.572568],[133.423479,45.584078],[133.413878,45.594942],[133.413183,45.615802],[133.430436,45.615372],[133.446159,45.630098],[133.464247,45.618382],[133.471343,45.631065],[133.448942,45.645251],[133.455342,45.65578],[133.488179,45.659969],[133.491797,45.672106],[133.479274,45.694226],[133.447689,45.705712],[133.430297,45.700023],[133.454507,45.731895],[133.484562,45.738761],[133.485397,45.748414],[133.468143,45.754956],[133.469813,45.777901],[133.495136,45.774685],[133.505155,45.785725],[133.469813,45.799443],[133.471065,45.838005],[133.494441,45.842395],[133.491658,45.866801],[133.508494,45.864875],[133.512251,45.886811],[133.532426,45.897081],[133.558863,45.889058],[133.576395,45.870761],[133.592117,45.869798],[133.596848,45.890235],[133.616884,45.901039],[133.617441,45.913123],[133.603388,45.92852],[133.616189,45.943271],[133.653061,45.947866],[133.67268,45.940278],[133.685063,45.959941],[133.68075,45.979811],[133.699116,46.01291],[133.731954,46.037136],[133.746146,46.065189],[133.745311,46.075426],[133.705517,46.11028],[133.69049,46.133717],[133.694107,46.156505],[133.715257,46.164915],[133.764373,46.173111],[133.796793,46.197372],[133.800689,46.219284],[133.814742,46.230767],[133.831161,46.221942],[133.833526,46.207478],[133.849527,46.203862],[133.866503,46.227684],[133.879304,46.233638],[133.867477,46.250646],[133.910054,46.254472],[133.918402,46.28114],[133.906019,46.302699],[133.922994,46.330724],[133.897948,46.328071],[133.869425,46.338153],[133.87346,46.359583],[133.918819,46.370932],[133.940943,46.381429],[133.949987,46.394787],[133.931481,46.42446],[133.90254,46.446069],[133.85231,46.450093],[133.849527,46.475184],[133.869703,46.49836],[133.870677,46.508304],[133.863859,46.527447],[133.839231,46.520045],[133.82476,46.530302],[133.799576,46.535589],[133.744755,46.532311],[133.732789,46.519304],[133.710109,46.53358],[133.68395,46.536646],[133.663079,46.547112],[133.627181,46.534426],[133.575699,46.542038],[133.537435,46.537175],[133.507659,46.516977],[133.490684,46.531042],[133.492771,46.545315],[133.482753,46.563177],[133.456455,46.558633],[133.427932,46.540558],[133.403721,46.556519],[133.385633,46.553454],[133.349456,46.56677],[133.359892,46.582512],[133.34723,46.598884],[133.320932,46.610288],[133.287678,46.597511],[133.278355,46.584308],[133.2323,46.576808],[133.222977,46.560007],[133.234248,46.549015],[133.227291,46.521842],[133.215325,46.520362],[133.210594,46.50439],[133.223534,46.492011],[133.207394,46.471162],[133.14965,46.462799],[133.119318,46.483122],[133.090516,46.467986],[133.098447,46.44395],[133.078132,46.432723],[133.066583,46.416831],[133.083698,46.400935],[133.061435,46.386306],[133.053643,46.371886],[133.034025,46.373052],[132.995204,46.344943],[133.029989,46.338365],[133.021084,46.322976],[133.028459,46.308539],[132.983934,46.268073],[132.972246,46.242674],[132.968489,46.211733],[132.97322,46.203117],[132.947479,46.181199],[132.953184,46.169599],[132.897806,46.156292],[132.901563,46.140107],[132.878883,46.136806],[132.865943,46.126474],[132.851611,46.137764],[132.823227,46.141705],[132.818078,46.130628],[132.793311,46.13393],[132.789415,46.150011],[132.746143,46.183541],[132.72875,46.185243],[132.712332,46.173537],[132.679077,46.165022],[132.664885,46.143302],[132.672398,46.132972],[132.647909,46.120721],[132.626204,46.120402],[132.607976,46.072121],[132.571382,46.074573],[132.559416,46.051538],[132.544945,46.046951],[132.509743,46.00736],[132.485254,45.992412],[132.451026,45.988141],[132.39036,46.027319],[132.346531,46.031587],[132.309102,46.029346],[132.307154,46.005758],[132.267917,45.988888],[132.282944,45.960689],[132.265551,45.946904],[132.287675,45.922319],[132.279465,45.914941],[132.277656,45.892053],[132.257481,45.868193],[132.222418,45.873865],[132.212539,45.846356],[132.197511,45.843572],[132.168153,45.857918],[132.13462,45.842716],[132.08606,45.841217],[132.083138,45.833079],[132.027064,45.81637],[131.97113,45.820119],[131.971965,45.829438],[131.940241,45.849033],[131.943163,45.865196],[131.92744,45.884351],[131.894185,45.870333],[131.890289,45.842181],[131.872757,45.833935],[131.867609,45.799121],[131.845347,45.794406],[131.827954,45.8108],[131.815292,45.791513],[131.788716,45.789262],[131.801239,45.804372],[131.799848,45.821619],[131.785099,45.837576],[131.797204,45.856526],[131.785934,45.876112],[131.788856,45.904033]]]]}},{"type":"Feature","properties":{"adcode":230400,"name":"鹤岗市","center":[130.277487,47.332085],"centroid":[130.807059,47.644529],"childrenNum":8,"level":"city","parent":{"adcode":230000},"subFeatureIndex":3,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.785096,48.357332],[130.763111,48.34528],[130.763668,48.334859],[130.72777,48.336698],[130.725265,48.326582],[130.684775,48.320246],[130.675035,48.30614],[130.656808,48.3135],[130.642894,48.305629],[130.610613,48.300721],[130.586681,48.306651],[130.56748,48.297245],[130.521842,48.289576],[130.489283,48.301437],[130.476621,48.320655],[130.455332,48.329648],[130.435574,48.314931],[130.41359,48.325867],[130.406077,48.309002],[130.378109,48.308082],[130.3731,48.293768],[130.331358,48.297756],[130.290173,48.293666],[130.263458,48.283337],[130.277232,48.272495],[130.267632,48.259501],[130.2469,48.249472],[130.261231,48.244969],[130.259144,48.222958],[130.246761,48.194791],[130.266101,48.18106],[130.251352,48.16548],[130.239525,48.169888],[130.191522,48.169888],[130.180947,48.174603],[130.129883,48.145896],[130.100385,48.14323],[130.08828,48.165685],[130.071026,48.173476],[130.049042,48.194995],[130.036241,48.197557],[129.986429,48.225927],[129.981976,48.250393],[129.955122,48.272495],[129.913936,48.297552],[129.900718,48.310229],[129.879708,48.316771],[129.863428,48.309411],[129.86482,48.286405],[129.841583,48.260115],[129.804015,48.257659],[129.783423,48.240977],[129.809998,48.219169],[129.803737,48.190897],[129.809303,48.173681],[129.793997,48.164045],[129.799285,48.151229],[129.761856,48.122817],[129.741402,48.119226],[129.733471,48.104038],[129.748498,48.093055],[129.740846,48.081659],[129.745437,48.035123],[129.737506,48.026489],[129.779666,48.007161],[129.780918,47.99914],[129.741959,47.976303],[129.675032,47.978978],[129.678371,47.954897],[129.68839,47.947795],[129.68672,47.928643],[129.711904,47.924523],[129.715522,47.910102],[129.699799,47.887226],[129.712878,47.871351],[129.750446,47.875372],[129.737506,47.859596],[129.751281,47.851655],[129.754481,47.820085],[129.772987,47.816679],[129.773126,47.782506],[129.797615,47.781164],[129.813338,47.7604],[129.875255,47.744487],[129.908927,47.72588],[129.912962,47.717091],[129.898631,47.699095],[129.898492,47.678817],[129.929659,47.654286],[129.917137,47.641136],[129.913936,47.617312],[129.89557,47.609438],[129.901275,47.571914],[129.934808,47.56507],[129.928407,47.555631],[129.909484,47.562788],[129.895152,47.559054],[129.869272,47.538202],[129.879569,47.528552],[129.872612,47.496889],[129.901553,47.482661],[129.884856,47.467909],[129.903223,47.440992],[129.886387,47.443279],[129.858002,47.429764],[129.837966,47.426333],[129.839079,47.40418],[129.873586,47.385036],[129.896544,47.364219],[129.914632,47.360263],[129.899327,47.352871],[129.901275,47.332979],[129.858002,47.332354],[129.851323,47.320373],[129.899883,47.304846],[129.931886,47.294319],[129.937312,47.259177],[129.962775,47.262098],[129.991994,47.252292],[130.001178,47.233093],[130.018014,47.225892],[130.059478,47.225057],[130.126404,47.207414],[130.143936,47.185273],[130.145049,47.136574],[130.171486,47.122876],[130.189017,47.103211],[130.209332,47.091806],[130.23076,47.09212],[130.239665,47.082178],[130.270832,47.077992],[130.309096,47.066477],[130.356125,47.061661],[130.383675,47.065116],[130.369204,47.09233],[130.378527,47.112417],[130.416234,47.106663],[130.412477,47.128732],[130.444619,47.130196],[130.456585,47.135947],[130.482743,47.128104],[130.506258,47.130823],[130.538678,47.122457],[130.570541,47.139188],[130.587794,47.13971],[130.607274,47.157376],[130.626336,47.153195],[130.657365,47.183497],[130.649573,47.197284],[130.692845,47.204908],[130.673783,47.22443],[130.662791,47.223595],[130.64846,47.246346],[130.619936,47.261681],[130.624388,47.269816],[130.593916,47.281704],[130.579168,47.303283],[130.560662,47.314746],[130.562053,47.327666],[130.624945,47.338499],[130.682271,47.330895],[130.708986,47.315372],[130.792331,47.29067],[130.852022,47.296195],[130.98351,47.318289],[130.974605,47.307869],[130.984901,47.291921],[130.97057,47.281078],[130.984901,47.272006],[130.988519,47.250936],[130.959578,47.241024],[130.968065,47.220672],[131.050158,47.215453],[131.094962,47.192898],[131.120424,47.199269],[131.128355,47.21587],[131.158271,47.223804],[131.195978,47.22443],[131.237442,47.201775],[131.272505,47.190391],[131.339153,47.181826],[131.364338,47.190391],[131.390357,47.217749],[131.464936,47.237581],[131.481772,47.253649],[131.524767,47.24645],[131.525741,47.254692],[131.55496,47.242381],[131.593363,47.236537],[131.635523,47.237267],[131.6781,47.248015],[131.720816,47.240815],[131.735008,47.242381],[131.777168,47.27138],[131.816405,47.268565],[131.888202,47.277742],[131.929805,47.245093],[131.967651,47.254692],[132.004245,47.252605],[132.019412,47.256987],[132.037082,47.278159],[132.045153,47.311516],[132.058649,47.32204],[132.044039,47.329437],[132.047935,47.366093],[132.104009,47.387534],[132.127245,47.393465],[132.140603,47.404076],[132.17678,47.409381],[132.20906,47.406989],[132.269308,47.45014],[132.291988,47.45305],[132.297693,47.47165],[132.344444,47.494813],[132.359054,47.505611],[132.375055,47.531873],[132.411788,47.540381],[132.439199,47.592545],[132.43739,47.608298],[132.461044,47.620109],[132.473706,47.641343],[132.456035,47.669089],[132.456313,47.681093],[132.506821,47.690923],[132.523935,47.71616],[132.469114,47.72619],[132.417075,47.745313],[132.372133,47.765256],[132.344583,47.767219],[132.325382,47.762157],[132.288788,47.742006],[132.272091,47.718642],[132.242593,47.710059],[132.207251,47.71554],[132.157161,47.705612],[132.08606,47.703129],[132.058927,47.705405],[132.024421,47.71523],[132.000488,47.712231],[131.989496,47.685129],[131.970573,47.671573],[131.947058,47.673849],[131.900725,47.685646],[131.846182,47.676437],[131.825728,47.677265],[131.741687,47.706543],[131.713859,47.711197],[131.689927,47.706853],[131.664047,47.679748],[131.641506,47.663913],[131.622444,47.659151],[131.590441,47.660808],[131.56804,47.682542],[131.559413,47.724639],[131.543829,47.736011],[131.456031,47.747174],[131.436691,47.746554],[131.397175,47.73353],[131.359885,47.730946],[131.322178,47.736321],[131.273618,47.738905],[131.237163,47.733117],[131.183316,47.702716],[131.115554,47.689888],[131.079656,47.689785],[131.030122,47.694751],[130.983788,47.713162],[130.966674,47.73322],[130.961665,47.827928],[130.929523,47.868877],[130.891399,47.927201],[130.871224,47.943162],[130.797201,47.986488],[130.770486,47.998214],[130.73737,48.034095],[130.693958,48.048276],[130.686306,48.079297],[130.668774,48.099214],[130.673783,48.128254],[130.710099,48.156663],[130.765894,48.189258],[130.765616,48.221627],[130.787739,48.25684],[130.817654,48.26564],[130.8459,48.300721],[130.831012,48.330261],[130.819602,48.341602],[130.785096,48.357332]]]]}},{"type":"Feature","properties":{"adcode":230500,"name":"双鸭山市","center":[131.157304,46.643442],"centroid":[132.623042,46.721849],"childrenNum":8,"level":"city","parent":{"adcode":230000},"subFeatureIndex":4,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.498201,47.449308],[134.50474,47.551793],[134.505436,47.652733],[134.510584,47.666294],[134.511837,47.739525],[134.55177,47.738492],[134.55177,47.784572],[134.513367,47.784572],[134.517402,47.883825],[134.465224,47.887123],[134.466755,47.867639],[134.454371,47.86568],[134.452702,47.84918],[134.437953,47.838039],[134.416804,47.839174],[134.396489,47.824213],[134.384384,47.828031],[134.359478,47.778995],[134.377009,47.772487],[134.379931,47.758644],[134.369078,47.743866],[134.374783,47.731152],[134.345703,47.709852],[134.345564,47.692061],[134.318292,47.680369],[134.327754,47.673021],[134.294916,47.647038],[134.250948,47.645796],[134.2522,47.639582],[134.217972,47.629432],[134.223676,47.621042],[134.201553,47.613686],[134.191813,47.588502],[134.171638,47.589435],[134.152297,47.605189],[134.108746,47.617312],[134.094693,47.600111],[134.101789,47.570981],[134.052116,47.572225],[134.052673,47.527929],[134.034028,47.538099],[133.974476,47.520664],[133.935934,47.541938],[133.885982,47.535712],[133.847997,47.547748],[133.808064,47.533326],[133.768826,47.537476],[133.721379,47.538202],[133.721379,47.545361],[133.693273,47.544013],[133.634416,47.522947],[133.613267,47.482038],[133.608536,47.462299],[133.59337,47.441616],[133.562202,47.434131],[133.517538,47.448477],[133.489988,47.451491],[133.455064,47.46552],[133.400938,47.407821],[133.353213,47.331833],[133.292826,47.302449],[133.296305,47.201357],[133.277799,47.199269],[133.274181,47.181617],[133.258458,47.174304],[133.255954,47.144415],[133.242318,47.134378],[133.240231,47.115764],[133.228126,47.113776],[133.227987,47.08626],[133.210872,47.074538],[133.239396,47.060509],[133.236892,47.040089],[133.217829,47.045221],[133.204333,47.038517],[133.222003,47.023746],[133.18374,47.014735],[133.189445,46.999328],[133.210177,47.003102],[133.213238,46.979828],[133.182488,46.982344],[133.201272,46.973326],[133.178592,46.97427],[133.169408,46.961998],[133.151737,46.959586],[133.163843,46.951088],[133.139493,46.939231],[133.150624,46.926532],[133.138519,46.921913],[133.148955,46.899129],[133.129336,46.894718],[133.113056,46.899864],[133.106656,46.88663],[133.062131,46.878016],[133.026789,46.863516],[133.03152,46.855423],[133.008005,46.852375],[133.002301,46.833872],[132.97002,46.839235],[132.956523,46.807684],[132.905737,46.802635],[132.880274,46.793376],[132.891127,46.786956],[132.877909,46.767694],[132.84368,46.774432],[132.812235,46.753901],[132.811539,46.779063],[132.779954,46.776853],[132.740577,46.794954],[132.719706,46.817151],[132.67212,46.811471],[132.649718,46.800846],[132.628291,46.810104],[132.595593,46.797479],[132.549537,46.789166],[132.513917,46.791797],[132.493046,46.824093],[132.452417,46.821148],[132.43252,46.828194],[132.390221,46.814312],[132.400657,46.762851],[132.364202,46.767589],[132.328721,46.777379],[132.333452,46.783063],[132.306319,46.797269],[132.257342,46.809894],[132.237862,46.802424],[132.207808,46.815679],[132.222418,46.820727],[132.216574,46.846489],[132.200016,46.856684],[132.195285,46.877911],[132.220609,46.886525],[132.253307,46.909105],[132.246211,46.93052],[132.267221,46.943743],[132.241897,46.954445],[132.205582,46.952347],[132.11848,46.96997],[132.060041,46.976577],[132.059067,46.989474],[131.929805,46.987272],[131.915195,46.975528],[131.839642,46.958222],[131.837555,46.903749],[131.863296,46.900914],[131.864687,46.88663],[131.801657,46.88579],[131.78816,46.882848],[131.789412,46.903224],[131.763949,46.903434],[131.763115,46.889676],[131.726521,46.864777],[131.728886,46.886735],[131.52908,46.891042],[131.53395,47.012534],[131.554125,47.073805],[131.539237,47.076317],[131.461875,47.068362],[131.408306,47.068885],[131.404967,47.026261],[131.212675,46.965355],[131.182342,46.96525],[131.085639,46.955599],[131.073812,46.978779],[131.059759,46.990522],[131.03054,46.970494],[131.013286,46.989055],[130.942881,46.94899],[130.910183,46.941225],[130.836438,46.939651],[130.844787,46.91005],[130.861623,46.911205],[130.849796,46.898919],[130.864823,46.890307],[130.837552,46.888311],[130.8395,46.877806],[130.823498,46.87623],[130.828507,46.854793],[130.798453,46.850903],[130.791496,46.864461],[130.76492,46.849642],[130.751702,46.832821],[130.713577,46.822305],[130.682271,46.835239],[130.66613,46.830928],[130.668357,46.789061],[130.657225,46.780958],[130.668496,46.743265],[130.709542,46.742738],[130.713021,46.727464],[130.730552,46.714925],[130.723039,46.700276],[130.728604,46.684989],[130.745162,46.678452],[130.727352,46.650289],[130.719839,46.624962],[130.744049,46.597933],[130.757267,46.606592],[130.797479,46.607859],[130.82155,46.587477],[130.836299,46.584942],[130.864267,46.59487],[130.912409,46.595293],[130.945107,46.579554],[130.97224,46.531254],[130.965839,46.525015],[130.975301,46.507564],[131.023026,46.491694],[131.030818,46.483122],[131.018713,46.447233],[131.064212,46.426261],[131.062681,46.400829],[131.089535,46.389699],[131.095796,46.396377],[131.13239,46.388215],[131.152288,46.391607],[131.167593,46.372416],[131.205439,46.364144],[131.229371,46.373477],[131.247738,46.366053],[131.295602,46.331785],[131.28308,46.311193],[131.340823,46.297602],[131.358911,46.277847],[131.410393,46.249158],[131.435578,46.241611],[131.454501,46.248733],[131.505983,46.249264],[131.515444,46.238741],[131.538959,46.234914],[131.550925,46.221729],[131.571379,46.230448],[131.586824,46.221198],[131.628148,46.224069],[131.630375,46.217901],[131.63107,46.203862],[131.657229,46.214179],[131.70565,46.200883],[131.721233,46.201628],[131.727355,46.176198],[131.698414,46.159699],[131.699249,46.118591],[131.70718,46.092056],[131.772159,46.070308],[131.778003,46.059217],[131.801796,46.067429],[131.838946,46.064016],[131.893211,46.088219],[131.910047,46.088326],[131.929109,46.075319],[131.912969,46.059964],[131.902951,46.024544],[131.925909,46.003623],[131.905734,46.00341],[131.874984,45.987073],[131.868305,45.971906],[131.836859,45.940599],[131.808057,45.934934],[131.8075,45.921678],[131.788856,45.904033],[131.785934,45.876112],[131.797204,45.856526],[131.785099,45.837576],[131.799848,45.821619],[131.801239,45.804372],[131.788716,45.789262],[131.815292,45.791513],[131.827954,45.8108],[131.845347,45.794406],[131.867609,45.799121],[131.872757,45.833935],[131.890289,45.842181],[131.894185,45.870333],[131.92744,45.884351],[131.943163,45.865196],[131.940241,45.849033],[131.971965,45.829438],[131.97113,45.820119],[132.027064,45.81637],[132.083138,45.833079],[132.08606,45.841217],[132.13462,45.842716],[132.168153,45.857918],[132.197511,45.843572],[132.212539,45.846356],[132.222418,45.873865],[132.257481,45.868193],[132.277656,45.892053],[132.279465,45.914941],[132.287675,45.922319],[132.265551,45.946904],[132.282944,45.960689],[132.267917,45.988888],[132.307154,46.005758],[132.309102,46.029346],[132.346531,46.031587],[132.39036,46.027319],[132.451026,45.988141],[132.485254,45.992412],[132.509743,46.00736],[132.544945,46.046951],[132.559416,46.051538],[132.571382,46.074573],[132.607976,46.072121],[132.626204,46.120402],[132.647909,46.120721],[132.672398,46.132972],[132.664885,46.143302],[132.679077,46.165022],[132.712332,46.173537],[132.72875,46.185243],[132.746143,46.183541],[132.789415,46.150011],[132.793311,46.13393],[132.818078,46.130628],[132.823227,46.141705],[132.851611,46.137764],[132.865943,46.126474],[132.878883,46.136806],[132.901563,46.140107],[132.897806,46.156292],[132.953184,46.169599],[132.947479,46.181199],[132.97322,46.203117],[132.968489,46.211733],[132.972246,46.242674],[132.983934,46.268073],[133.028459,46.308539],[133.021084,46.322976],[133.029989,46.338365],[132.995204,46.344943],[133.034025,46.373052],[133.053643,46.371886],[133.061435,46.386306],[133.083698,46.400935],[133.066583,46.416831],[133.078132,46.432723],[133.098447,46.44395],[133.090516,46.467986],[133.119318,46.483122],[133.14965,46.462799],[133.207394,46.471162],[133.223534,46.492011],[133.210594,46.50439],[133.215325,46.520362],[133.227291,46.521842],[133.234248,46.549015],[133.222977,46.560007],[133.2323,46.576808],[133.278355,46.584308],[133.287678,46.597511],[133.320932,46.610288],[133.34723,46.598884],[133.359892,46.582512],[133.349456,46.56677],[133.385633,46.553454],[133.403721,46.556519],[133.427932,46.540558],[133.456455,46.558633],[133.482753,46.563177],[133.492771,46.545315],[133.490684,46.531042],[133.507659,46.516977],[133.537435,46.537175],[133.575699,46.542038],[133.627181,46.534426],[133.663079,46.547112],[133.68395,46.536646],[133.710109,46.53358],[133.732789,46.519304],[133.744755,46.532311],[133.799576,46.535589],[133.82476,46.530302],[133.839231,46.520045],[133.863859,46.527447],[133.870677,46.508304],[133.890852,46.525226],[133.911167,46.58135],[133.932038,46.604269],[133.976145,46.620212],[134.011209,46.638155],[134.028184,46.693529],[134.024427,46.724198],[134.033193,46.759061],[134.052812,46.780116],[134.021505,46.826406],[134.041402,46.848486],[134.042655,46.886735],[134.055873,46.896608],[134.058377,46.914039],[134.076327,46.938496],[134.064082,46.980037],[134.101928,47.005827],[134.10332,47.022698],[134.120573,47.046687],[134.118208,47.061766],[134.141444,47.091492],[134.156332,47.097666],[134.200857,47.096096],[134.222285,47.105303],[134.23286,47.134796],[134.228546,47.148073],[134.230216,47.182244],[134.210736,47.210337],[134.157306,47.248432],[134.177621,47.326416],[134.203084,47.347456],[134.235364,47.352246],[134.263331,47.371194],[134.266532,47.392008],[134.314953,47.433299],[134.334015,47.439329],[134.415551,47.440265],[134.454511,47.448892],[134.498201,47.449308]]]]}},{"type":"Feature","properties":{"adcode":230600,"name":"大庆市","center":[125.11272,46.590734],"centroid":[124.705742,46.357625],"childrenNum":9,"level":"city","parent":{"adcode":230000},"subFeatureIndex":5,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.332872,47.2865],[125.337047,47.294215],[125.324107,47.335687],[125.314923,47.38129],[125.169521,47.38129],[125.169521,47.392632],[125.079776,47.393256],[125.047356,47.478818],[125.00784,47.466143],[124.964706,47.456895],[124.891797,47.4307],[124.878718,47.418846],[124.824592,47.41115],[124.810956,47.386181],[124.757387,47.360055],[124.685869,47.333708],[124.633691,47.307764],[124.61769,47.311203],[124.586383,47.328603],[124.587914,47.339749],[124.5221,47.34152],[124.479802,47.340061],[124.481332,47.360263],[124.464774,47.348081],[124.446408,47.352766],[124.428737,47.345373],[124.43472,47.323499],[124.425676,47.318706],[124.400631,47.285562],[124.409953,47.27138],[124.397569,47.259073],[124.423032,47.224221],[124.418858,47.183915],[124.347061,47.138665],[124.305458,47.141801],[124.195955,47.131346],[124.153795,47.107814],[124.112192,47.064697],[124.070728,47.048153],[124.089234,47.039146],[124.072955,47.004988],[124.000601,47.002473],[124.013959,46.971962],[124.007698,46.949514],[123.9846,46.928421],[123.970408,46.925167],[123.943971,46.893563],[123.940214,46.86961],[123.92797,46.862465],[123.929361,46.846068],[123.94898,46.842599],[123.952737,46.821253],[123.995314,46.80537],[123.985853,46.800741],[124.003384,46.767063],[124.003663,46.73705],[123.980426,46.730835],[123.958164,46.707759],[123.940075,46.712185],[123.914334,46.704492],[123.887341,46.684778],[123.859235,46.696164],[123.855478,46.744318],[123.818884,46.737366],[123.814014,46.743581],[123.766428,46.74179],[123.785212,46.713134],[123.758219,46.695005],[123.767124,46.664425],[123.754462,46.642376],[123.784655,46.623906],[123.791751,46.604692],[123.80664,46.600573],[123.812344,46.582301],[123.824171,46.573849],[123.824589,46.556942],[123.797735,46.525438],[123.802048,46.515814],[123.823058,46.512112],[123.823754,46.498254],[123.810118,46.484815],[123.838503,46.471268],[123.82431,46.45094],[123.848938,46.438125],[123.866331,46.418633],[123.860069,46.408142],[123.870088,46.390653],[123.844068,46.375491],[123.843929,46.363826],[123.859513,46.345156],[123.845599,46.313423],[123.849912,46.302381],[123.896385,46.303655],[123.907934,46.278485],[123.897498,46.264567],[123.917535,46.25681],[123.934788,46.285814],[123.958303,46.289956],[123.966512,46.274979],[123.953015,46.26106],[123.956076,46.244694],[123.98307,46.224707],[123.956494,46.205776],[123.975278,46.183966],[123.974304,46.165448],[124.002132,46.166831],[124.00895,46.154908],[123.995314,46.137764],[124.015907,46.124237],[123.995592,46.098771],[124.012568,46.090458],[124.016742,46.076705],[124.009924,46.057511],[124.033856,46.044924],[124.040952,46.025184],[124.027734,46.016326],[124.005332,46.021342],[123.99281,46.007893],[124.015211,45.998498],[124.012011,45.982053],[123.977087,45.975859],[123.965677,45.960689],[123.971521,45.931941],[124.001854,45.904461],[124.058206,45.889593],[124.068641,45.868835],[124.071146,45.845178],[124.03316,45.833828],[124.037891,45.820869],[124.064328,45.802229],[124.034691,45.784868],[124.009367,45.781974],[124.001993,45.770611],[124.014794,45.749916],[124.054171,45.75131],[124.098139,45.722453],[124.09953,45.703029],[124.135011,45.690469],[124.137516,45.679409],[124.121793,45.669207],[124.144751,45.665984],[124.145586,45.649656],[124.129724,45.637621],[124.147256,45.623004],[124.187467,45.615909],[124.226566,45.63343],[124.236723,45.623004],[124.22754,45.598921],[124.245906,45.59107],[124.267612,45.592145],[124.27276,45.583971],[124.261351,45.569232],[124.26469,45.555028],[124.29544,45.539205],[124.348731,45.546956],[124.358749,45.544803],[124.368907,45.512932],[124.352488,45.496666],[124.375864,45.455712],[124.398822,45.440617],[124.413849,45.438675],[124.427485,45.450429],[124.457122,45.457761],[124.480636,45.456251],[124.507212,45.424654],[124.544224,45.411923],[124.579705,45.424114],[124.574695,45.443852],[124.585131,45.453772],[124.625203,45.437273],[124.656788,45.437813],[124.69046,45.452478],[124.729698,45.444067],[124.760587,45.468433],[124.776032,45.468217],[124.779093,45.441371],[124.793007,45.437058],[124.828627,45.455173],[124.839897,45.455712],[124.866334,45.440617],[124.88637,45.442665],[124.890127,45.456575],[124.884561,45.495481],[124.908633,45.519393],[124.914894,45.539528],[124.939522,45.529839],[124.945366,45.502268],[124.983073,45.492357],[125.02565,45.493326],[125.04986,45.428537],[125.084228,45.423144],[125.088681,45.41106],[125.06614,45.398974],[125.069758,45.384619],[125.091742,45.382676],[125.113169,45.390016],[125.137658,45.409658],[125.156999,45.410844],[125.189418,45.399298],[125.248971,45.417642],[125.276103,45.416671],[125.301566,45.401996],[125.31715,45.42282],[125.3479,45.395413],[125.369884,45.394873],[125.398547,45.416779],[125.433749,45.458731],[125.425123,45.485568],[125.480361,45.486538],[125.497337,45.469295],[125.549793,45.486323],[125.593204,45.496989],[125.616719,45.517993],[125.637312,45.519932],[125.660131,45.507008],[125.687959,45.514009],[125.743615,45.51907],[125.761286,45.531346],[125.74612,45.56213],[125.754607,45.56977],[125.743059,45.596555],[125.764486,45.613006],[125.731928,45.620854],[125.721631,45.646003],[125.72984,45.654061],[125.715648,45.663299],[125.732902,45.664266],[125.73151,45.687355],[125.752659,45.678013],[125.759477,45.687355],[125.783966,45.679194],[125.806646,45.699594],[125.748903,45.749165],[125.722049,45.745519],[125.719961,45.769324],[125.773391,45.762784],[125.771304,45.774149],[125.785775,45.776078],[125.781183,45.799228],[125.72344,45.797085],[125.711056,45.815513],[125.717457,45.836291],[125.7073,45.835006],[125.695751,45.907456],[125.420114,45.885527],[125.381711,46.045991],[125.366405,46.119017],[125.357083,46.147881],[125.290295,46.136699],[125.25551,46.148626],[125.219334,46.143622],[125.211959,46.171515],[125.187192,46.175559],[125.163956,46.196947],[125.116926,46.186626],[125.112474,46.215668],[125.1147,46.253622],[125.090629,46.266161],[125.064192,46.25936],[125.084646,46.238741],[125.07908,46.171408],[125.107465,46.160125],[125.135432,46.164596],[125.152825,46.129244],[125.223508,46.137551],[125.19568,46.094082],[125.161729,46.082356],[125.147259,46.043964],[125.09689,46.016113],[125.085341,46.03052],[125.105517,46.044924],[125.097307,46.056444],[125.061548,46.048871],[125.07421,46.067216],[125.062661,46.083848],[125.014797,46.080011],[125.001996,46.07404],[124.959558,46.070948],[124.904598,46.050044],[124.875935,46.068602],[124.907798,46.077772],[124.922269,46.088752],[124.931174,46.111346],[124.907381,46.170025],[124.917677,46.208755],[124.968881,46.218007],[124.963593,46.238316],[124.985299,46.251602],[125.052504,46.258191],[125.057235,46.279016],[125.059044,46.337622],[125.017023,46.3355],[125.012153,46.343988],[125.036781,46.347171],[125.027181,46.371674],[125.038868,46.386094],[125.036086,46.406446],[125.016328,46.42107],[124.987108,46.430075],[125.036642,46.444374],[125.062244,46.487143],[125.07588,46.489683],[125.092159,46.48037],[125.172304,46.482805],[125.179122,46.477301],[125.125831,46.448292],[125.156303,46.447339],[125.16159,46.42838],[125.191784,46.420646],[125.218499,46.427426],[125.239648,46.411003],[125.270816,46.436113],[125.240483,46.456764],[125.26525,46.467351],[125.27012,46.478783],[125.250223,46.494445],[125.221977,46.49508],[125.207228,46.488308],[125.161312,46.520045],[125.202637,46.537069],[125.233665,46.496773],[125.26525,46.508833],[125.239787,46.527553],[125.257319,46.543624],[125.235474,46.57797],[125.248971,46.588322],[125.199019,46.632456],[125.18107,46.652821],[125.207924,46.661155],[125.215438,46.652083],[125.27179,46.655248],[125.27652,46.674866],[125.231578,46.704597],[125.21502,46.707443],[125.211959,46.7262],[125.190949,46.726516],[125.180653,46.748004],[125.164791,46.747267],[125.142389,46.760009],[125.190949,46.810209],[125.190532,46.826512],[125.156164,46.835555],[125.158668,46.845542],[125.235752,46.963572],[125.303653,47.012849],[125.343447,46.998175],[125.34456,47.013058],[125.318541,47.029089],[125.285286,47.083225],[125.300453,47.117228],[125.318819,47.141488],[125.331203,47.146819],[125.332872,47.2865]]]]}},{"type":"Feature","properties":{"adcode":230700,"name":"伊春市","center":[128.899396,47.724775],"centroid":[129.224747,47.830729],"childrenNum":10,"level":"city","parent":{"adcode":230000},"subFeatureIndex":6,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.238962,46.57723],[128.24912,46.582512],[128.291418,46.570785],[128.32022,46.574695],[128.36892,46.570997],[128.380051,46.565079],[128.401339,46.581139],[128.39146,46.597933],[128.428472,46.62074],[128.467292,46.62549],[128.507643,46.60712],[128.545767,46.599412],[128.565804,46.57892],[128.598502,46.586738],[128.622155,46.573427],[128.679481,46.575751],[128.679899,46.565396],[128.7023,46.557787],[128.708979,46.537809],[128.699378,46.5119],[128.704248,46.483757],[128.764914,46.486614],[128.786759,46.50111],[128.839215,46.487461],[128.848815,46.509996],[128.879844,46.524275],[128.913655,46.526178],[128.916159,46.518352],[128.956788,46.512958],[129.020654,46.487778],[129.043334,46.520996],[129.066988,46.534955],[129.082154,46.557893],[129.096486,46.555779],[129.108034,46.535166],[129.128766,46.530514],[129.156594,46.545209],[129.197363,46.536012],[129.207102,46.558633],[129.19945,46.576808],[129.220738,46.585153],[129.242305,46.620317],[129.258584,46.620528],[129.281543,46.641954],[129.355705,46.652821],[129.40663,46.643009],[129.425553,46.620634],[129.419987,46.613878],[129.439328,46.604375],[129.4794,46.623695],[129.501385,46.619367],[129.502359,46.619367],[129.510011,46.622745],[129.525873,46.663792],[129.574016,46.687414],[129.572903,46.702173],[129.589322,46.713871],[129.607271,46.71208],[129.634403,46.721248],[129.672806,46.717244],[129.691033,46.723144],[129.707591,46.73842],[129.70133,46.765378],[129.701191,46.796638],[129.694651,46.806106],[129.654022,46.804318],[129.630507,46.815363],[129.600453,46.856684],[129.593078,46.881693],[129.574433,46.898079],[129.558432,46.899864],[129.555928,46.924852],[129.572346,46.936922],[129.55551,46.950249],[129.539787,46.952137],[129.534918,46.981086],[129.582921,46.97018],[129.595444,46.992934],[129.581251,47.019031],[129.565807,47.032547],[129.584869,47.030137],[129.605879,47.03946],[129.63329,47.042602],[129.64303,47.036841],[129.677119,47.045954],[129.689642,47.059253],[129.708287,47.062708],[129.718305,47.078934],[129.709261,47.102583],[129.691033,47.120366],[129.726792,47.123294],[129.758516,47.148178],[129.750725,47.170752],[129.780918,47.179841],[129.781753,47.21065],[129.788988,47.217436],[129.787319,47.239876],[129.795806,47.26408],[129.812086,47.270546],[129.842557,47.256152],[129.861759,47.261264],[129.886247,47.297759],[129.899883,47.304846],[129.851323,47.320373],[129.858002,47.332354],[129.901275,47.332979],[129.899327,47.352871],[129.914632,47.360263],[129.896544,47.364219],[129.873586,47.385036],[129.839079,47.40418],[129.837966,47.426333],[129.858002,47.429764],[129.886387,47.443279],[129.903223,47.440992],[129.884856,47.467909],[129.901553,47.482661],[129.872612,47.496889],[129.879569,47.528552],[129.869272,47.538202],[129.895152,47.559054],[129.909484,47.562788],[129.928407,47.555631],[129.934808,47.56507],[129.901275,47.571914],[129.89557,47.609438],[129.913936,47.617312],[129.917137,47.641136],[129.929659,47.654286],[129.898492,47.678817],[129.898631,47.699095],[129.912962,47.717091],[129.908927,47.72588],[129.875255,47.744487],[129.813338,47.7604],[129.797615,47.781164],[129.773126,47.782506],[129.772987,47.816679],[129.754481,47.820085],[129.751281,47.851655],[129.737506,47.859596],[129.750446,47.875372],[129.712878,47.871351],[129.699799,47.887226],[129.715522,47.910102],[129.711904,47.924523],[129.68672,47.928643],[129.68839,47.947795],[129.678371,47.954897],[129.675032,47.978978],[129.741959,47.976303],[129.780918,47.99914],[129.779666,48.007161],[129.737506,48.026489],[129.745437,48.035123],[129.740846,48.081659],[129.748498,48.093055],[129.733471,48.104038],[129.741402,48.119226],[129.761856,48.122817],[129.799285,48.151229],[129.793997,48.164045],[129.809303,48.173681],[129.803737,48.190897],[129.809998,48.219169],[129.783423,48.240977],[129.804015,48.257659],[129.841583,48.260115],[129.86482,48.286405],[129.863428,48.309411],[129.879708,48.316771],[129.900718,48.310229],[129.913936,48.297552],[129.955122,48.272495],[129.981976,48.250393],[129.986429,48.225927],[130.036241,48.197557],[130.049042,48.194995],[130.071026,48.173476],[130.08828,48.165685],[130.100385,48.14323],[130.129883,48.145896],[130.180947,48.174603],[130.191522,48.169888],[130.239525,48.169888],[130.251352,48.16548],[130.266101,48.18106],[130.246761,48.194791],[130.259144,48.222958],[130.261231,48.244969],[130.2469,48.249472],[130.267632,48.259501],[130.277232,48.272495],[130.263458,48.283337],[130.290173,48.293666],[130.331358,48.297756],[130.3731,48.293768],[130.378109,48.308082],[130.406077,48.309002],[130.41359,48.325867],[130.435574,48.314931],[130.455332,48.329648],[130.476621,48.320655],[130.489283,48.301437],[130.521842,48.289576],[130.56748,48.297245],[130.586681,48.306651],[130.610613,48.300721],[130.642894,48.305629],[130.656808,48.3135],[130.675035,48.30614],[130.684775,48.320246],[130.725265,48.326582],[130.72777,48.336698],[130.763668,48.334859],[130.763111,48.34528],[130.785096,48.357332],[130.767007,48.375406],[130.747667,48.404392],[130.74071,48.425305],[130.746275,48.449064],[130.77633,48.480249],[130.778695,48.494307],[130.767425,48.507852],[130.744188,48.515081],[130.711768,48.511619],[130.677818,48.493696],[130.647346,48.485038],[130.621188,48.496039],[130.616179,48.510092],[130.615761,48.57542],[130.605743,48.594026],[130.553705,48.604495],[130.538538,48.611914],[130.538678,48.635585],[130.576802,48.68878],[130.599065,48.741108],[130.622023,48.783964],[130.646929,48.813121],[130.689784,48.849747],[130.69368,48.863601],[130.680462,48.880989],[130.643033,48.886244],[130.609222,48.880989],[130.559131,48.860871],[130.519894,48.858646],[130.501805,48.865926],[130.486917,48.893319],[130.471194,48.905443],[130.444619,48.909989],[130.41206,48.905039],[130.279737,48.86714],[130.245369,48.866533],[130.230203,48.876744],[130.211419,48.901099],[130.194583,48.907565],[130.113047,48.956637],[130.059199,48.978936],[130.031371,49.014835],[130.020936,49.021084],[129.937312,49.040433],[129.919224,49.055644],[129.934668,49.078805],[129.929659,49.097325],[129.912823,49.108394],[129.867046,49.114028],[129.85508,49.133642],[129.864402,49.158576],[129.86162,49.172846],[129.847566,49.181286],[129.784675,49.183999],[129.753925,49.208706],[129.752673,49.227279],[129.761856,49.257382],[129.73041,49.288268],[129.697295,49.298392],[129.674754,49.295987],[129.604627,49.279044],[129.584452,49.282253],[129.562467,49.299595],[129.556067,49.324946],[129.54591,49.395118],[129.518499,49.423719],[129.44865,49.441312],[129.422353,49.442111],[129.390351,49.432716],[129.375045,49.414121],[129.380611,49.371705],[129.35807,49.35609],[129.320363,49.358593],[129.30144,49.370604],[129.289891,49.362097],[129.261645,49.375708],[129.241888,49.37871],[129.219208,49.358393],[129.202928,49.351585],[129.185536,49.33326],[129.171204,49.284158],[129.193606,49.243135],[129.203763,49.237415],[129.207659,49.216437],[129.241192,49.177669],[129.232287,49.158073],[129.234096,49.10125],[129.222686,49.086657],[129.245505,49.089475],[129.266655,49.064607],[129.294761,49.052219],[129.341373,49.04547],[129.396334,49.047082],[129.410108,49.052119],[129.444476,49.037108],[129.449903,49.018363],[129.441137,49.013525],[129.437658,48.992552],[129.459643,48.965315],[129.460199,48.950278],[129.480792,48.950076],[129.497767,48.940285],[129.526569,48.935035],[129.507089,48.925038],[129.526708,48.909383],[129.50222,48.903423],[129.522117,48.89251],[129.511542,48.877249],[129.526291,48.869768],[129.496932,48.858242],[129.484131,48.841857],[129.463538,48.839531],[129.435571,48.80472],[129.394107,48.815854],[129.386872,48.808972],[129.365723,48.813121],[129.36127,48.802291],[129.324537,48.801379],[129.322172,48.790647],[129.290865,48.79652],[129.259976,48.77414],[129.266794,48.754181],[129.238826,48.747088],[129.182753,48.766643],[129.185257,48.753472],[129.16856,48.749925],[129.165499,48.737966],[129.230061,48.682185],[129.192493,48.650616],[129.200841,48.641781],[129.199728,48.623396],[129.142124,48.614353],[129.134888,48.607138],[129.107478,48.614454],[129.086885,48.60541],[129.065736,48.578471],[129.033177,48.570437],[129.032481,48.556909],[128.998948,48.528112],[129.004235,48.511721],[128.987678,48.496752],[128.99547,48.483306],[128.988513,48.452734],[128.95498,48.421327],[128.979468,48.413064],[128.966389,48.408269],[128.923534,48.375814],[128.921308,48.342624],[128.933552,48.332815],[128.904472,48.323516],[128.904472,48.30706],[128.914629,48.302459],[128.912681,48.280064],[128.863286,48.273108],[128.850346,48.251007],[128.815283,48.258785],[128.796638,48.289882],[128.787733,48.293462],[128.774236,48.340376],[128.772984,48.366217],[128.756009,48.382042],[128.755591,48.397453],[128.741677,48.409698],[128.722476,48.40429],[128.675864,48.413472],[128.649288,48.403168],[128.622851,48.401535],[128.615338,48.392759],[128.55996,48.380612],[128.537419,48.385002],[128.526566,48.373977],[128.497903,48.377652],[128.456856,48.363051],[128.437377,48.332713],[128.411218,48.314113],[128.396887,48.296631],[128.391321,48.266254],[128.371981,48.260422],[128.341648,48.201757],[128.344013,48.181675],[128.356119,48.171733],[128.334413,48.147947],[128.302271,48.147435],[128.276809,48.157586],[128.23117,48.135845],[128.211552,48.134922],[128.174123,48.119123],[128.170923,48.095519],[128.132102,48.07827],[128.157426,48.070362],[128.163687,48.055776],[128.17454,48.057831],[128.155617,48.035329],[128.163687,48.016004],[128.156313,48.008909],[128.166331,47.993997],[128.163966,47.944397],[128.184558,47.953353],[128.227553,47.946765],[128.250789,47.92545],[128.287244,47.928437],[128.316046,47.913399],[128.339004,47.892482],[128.350831,47.854749],[128.340257,47.824626],[128.320081,47.839483],[128.292253,47.836801],[128.275974,47.817299],[128.282931,47.798821],[128.266234,47.783952],[128.262755,47.754511],[128.273191,47.757404],[128.316742,47.738388],[128.322168,47.716678],[128.294758,47.698992],[128.28947,47.675919],[128.273469,47.65853],[128.275695,47.645692],[128.291001,47.632125],[128.283348,47.622078],[128.295314,47.603531],[128.268182,47.599386],[128.249676,47.583319],[128.256494,47.563307],[128.228248,47.541626],[128.238267,47.524919],[128.258164,47.527306],[128.298654,47.500835],[128.311872,47.473312],[128.347492,47.463649],[128.350831,47.437042],[128.340117,47.429244],[128.378799,47.40366],[128.387147,47.412294],[128.400922,47.404388],[128.449899,47.400123],[128.459361,47.379],[128.45463,47.347039],[128.471605,47.344436],[128.494146,47.363282],[128.512234,47.39669],[128.523922,47.399395],[128.522253,47.41687],[128.537836,47.428413],[128.552585,47.407821],[128.541036,47.396898],[128.546741,47.376294],[128.536723,47.356411],[128.49679,47.326728],[128.492616,47.29901],[128.504025,47.284832],[128.500268,47.271589],[128.484963,47.261889],[128.485519,47.244363],[128.458387,47.225161],[128.40774,47.211172],[128.403287,47.204908],[128.352223,47.182139],[128.358762,47.162706],[128.343318,47.157062],[128.308115,47.163228],[128.284879,47.1533],[128.24898,47.130823],[128.24258,47.10614],[128.198612,47.09798],[128.184141,47.104885],[128.173288,47.094318],[128.109979,47.078097],[128.069211,47.076736],[128.063367,47.086783],[128.012441,47.074747],[128.002145,47.085318],[127.963325,47.093376],[127.943706,47.085632],[127.927148,47.068571],[127.871631,47.080713],[127.8573,47.06899],[127.821819,47.062289],[127.748909,47.015678],[127.729986,47.017774],[127.702715,47.004988],[127.696175,47.013477],[127.684209,47.000481],[127.65652,47.007294],[127.632866,47.000376],[127.63384,46.988321],[127.647893,46.988216],[127.67113,46.96976],[127.686992,46.966089],[127.678365,46.948255],[127.701741,46.933774],[127.723168,46.934928],[127.728038,46.926217],[127.747935,46.926217],[127.770754,46.896923],[127.830724,46.86877],[127.847699,46.844491],[127.874275,46.819255],[127.893337,46.810104],[127.900294,46.794533],[127.92687,46.778537],[127.960959,46.741369],[128.006458,46.697008],[128.028443,46.69121],[128.056827,46.654826],[128.05474,46.638049],[128.07742,46.628762],[128.08229,46.61715],[128.116379,46.5992],[128.147686,46.591596],[128.179688,46.589695],[128.209047,46.574589],[128.238962,46.57723]]]]}},{"type":"Feature","properties":{"adcode":230800,"name":"佳木斯市","center":[130.361634,46.809606],"centroid":[132.204856,47.248466],"childrenNum":10,"level":"city","parent":{"adcode":230000},"subFeatureIndex":7,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.498201,47.449308],[134.522968,47.467909],[134.568049,47.477883],[134.577372,47.496786],[134.576398,47.519107],[134.627602,47.546399],[134.658073,47.579587],[134.67797,47.588606],[134.685206,47.603324],[134.684093,47.631918],[134.716791,47.657495],[134.779682,47.715954],[134.78483,47.739319],[134.772864,47.7635],[134.739888,47.779305],[134.717904,47.799337],[134.678527,47.81926],[134.670179,47.864752],[134.677275,47.884855],[134.659186,47.901138],[134.607983,47.909278],[134.61007,47.93132],[134.599634,47.947795],[134.554274,47.981962],[134.557753,48.008292],[134.551492,48.032759],[134.574032,48.042214],[134.579041,48.058447],[134.632471,48.099419],[134.635811,48.115942],[134.655569,48.140563],[134.679362,48.155535],[134.672544,48.170401],[134.682701,48.191307],[134.676162,48.203396],[134.679362,48.256431],[134.694389,48.26697],[134.715121,48.26564],[134.771055,48.288962],[134.795962,48.29203],[134.814328,48.311762],[134.864001,48.332407],[134.915483,48.34579],[135.009264,48.365706],[135.031387,48.37755],[135.082869,48.396433],[135.0908,48.403372],[135.094557,48.440704],[135.068538,48.459563],[135.024987,48.438664],[134.996463,48.439684],[134.951799,48.450491],[134.927728,48.451612],[134.886681,48.437645],[134.870541,48.425407],[134.848418,48.394086],[134.820729,48.375916],[134.764377,48.370097],[134.704546,48.40531],[134.666004,48.405412],[134.640263,48.4098],[134.578067,48.405515],[134.533542,48.417757],[134.501679,48.418981],[134.43837,48.405412],[134.369774,48.38296],[134.316901,48.381123],[134.278915,48.383675],[134.255261,48.377856],[134.203501,48.38245],[134.176229,48.369178],[134.150906,48.346199],[134.131426,48.335472],[134.105685,48.332918],[134.068674,48.338435],[134.029575,48.327604],[133.995625,48.303584],[133.940804,48.30205],[133.875964,48.282723],[133.824065,48.277302],[133.791367,48.260933],[133.74072,48.254794],[133.724857,48.243638],[133.722492,48.219988],[133.710248,48.199913],[133.693273,48.186901],[133.667392,48.183314],[133.620502,48.194483],[133.597126,48.194893],[133.572916,48.181982],[133.560393,48.137179],[133.545923,48.121381],[133.521712,48.115019],[133.475239,48.117995],[133.451864,48.112967],[133.408034,48.124561],[133.356831,48.117687],[133.302009,48.103012],[133.284338,48.113274],[133.239535,48.126716],[133.182766,48.13564],[133.154103,48.136974],[133.102899,48.129485],[133.066583,48.116969],[133.041399,48.102293],[133.027068,48.085252],[133.015936,48.054441],[132.992004,48.035226],[132.883057,48.002431],[132.84535,47.957059],[132.818913,47.937087],[132.769518,47.938631],[132.722906,47.962926],[132.691182,47.963131],[132.661406,47.944809],[132.662241,47.922463],[132.687286,47.885062],[132.662241,47.854234],[132.621612,47.82865],[132.599071,47.792317],[132.600323,47.740766],[132.592114,47.730946],[132.558303,47.718435],[132.523935,47.71616],[132.506821,47.690923],[132.456313,47.681093],[132.456035,47.669089],[132.473706,47.641343],[132.461044,47.620109],[132.43739,47.608298],[132.439199,47.592545],[132.411788,47.540381],[132.375055,47.531873],[132.359054,47.505611],[132.344444,47.494813],[132.297693,47.47165],[132.291988,47.45305],[132.269308,47.45014],[132.20906,47.406989],[132.17678,47.409381],[132.140603,47.404076],[132.127245,47.393465],[132.104009,47.387534],[132.047935,47.366093],[132.044039,47.329437],[132.058649,47.32204],[132.045153,47.311516],[132.037082,47.278159],[132.019412,47.256987],[132.004245,47.252605],[131.967651,47.254692],[131.929805,47.245093],[131.888202,47.277742],[131.816405,47.268565],[131.777168,47.27138],[131.735008,47.242381],[131.720816,47.240815],[131.6781,47.248015],[131.635523,47.237267],[131.593363,47.236537],[131.55496,47.242381],[131.525741,47.254692],[131.524767,47.24645],[131.481772,47.253649],[131.464936,47.237581],[131.390357,47.217749],[131.364338,47.190391],[131.339153,47.181826],[131.272505,47.190391],[131.237442,47.201775],[131.195978,47.22443],[131.158271,47.223804],[131.128355,47.21587],[131.120424,47.199269],[131.094962,47.192898],[131.050158,47.215453],[130.968065,47.220672],[130.959578,47.241024],[130.988519,47.250936],[130.984901,47.272006],[130.97057,47.281078],[130.984901,47.291921],[130.974605,47.307869],[130.98351,47.318289],[130.852022,47.296195],[130.792331,47.29067],[130.708986,47.315372],[130.682271,47.330895],[130.624945,47.338499],[130.562053,47.327666],[130.560662,47.314746],[130.579168,47.303283],[130.593916,47.281704],[130.624388,47.269816],[130.619936,47.261681],[130.64846,47.246346],[130.662791,47.223595],[130.673783,47.22443],[130.692845,47.204908],[130.649573,47.197284],[130.657365,47.183497],[130.626336,47.153195],[130.607274,47.157376],[130.587794,47.13971],[130.570541,47.139188],[130.538678,47.122457],[130.506258,47.130823],[130.482743,47.128104],[130.456585,47.135947],[130.444619,47.130196],[130.412477,47.128732],[130.416234,47.106663],[130.378527,47.112417],[130.369204,47.09233],[130.383675,47.065116],[130.356125,47.061661],[130.309096,47.066477],[130.270832,47.077992],[130.239665,47.082178],[130.23076,47.09212],[130.209332,47.091806],[130.189017,47.103211],[130.171486,47.122876],[130.145049,47.136574],[130.143936,47.185273],[130.126404,47.207414],[130.059478,47.225057],[130.018014,47.225892],[130.001178,47.233093],[129.991994,47.252292],[129.962775,47.262098],[129.937312,47.259177],[129.931886,47.294319],[129.899883,47.304846],[129.886247,47.297759],[129.861759,47.261264],[129.842557,47.256152],[129.812086,47.270546],[129.795806,47.26408],[129.787319,47.239876],[129.788988,47.217436],[129.781753,47.21065],[129.780918,47.179841],[129.750725,47.170752],[129.758516,47.148178],[129.726792,47.123294],[129.691033,47.120366],[129.709261,47.102583],[129.718305,47.078934],[129.708287,47.062708],[129.689642,47.059253],[129.677119,47.045954],[129.64303,47.036841],[129.63329,47.042602],[129.605879,47.03946],[129.584869,47.030137],[129.565807,47.032547],[129.581251,47.019031],[129.595444,46.992934],[129.582921,46.97018],[129.534918,46.981086],[129.539787,46.952137],[129.55551,46.950249],[129.572346,46.936922],[129.555928,46.924852],[129.558432,46.899864],[129.574433,46.898079],[129.593078,46.881693],[129.600453,46.856684],[129.630507,46.815363],[129.654022,46.804318],[129.694651,46.806106],[129.701191,46.796638],[129.70133,46.765378],[129.707591,46.73842],[129.691033,46.723144],[129.672806,46.717244],[129.634403,46.721248],[129.607271,46.71208],[129.589322,46.713871],[129.572903,46.702173],[129.574016,46.687414],[129.525873,46.663792],[129.510011,46.622745],[129.502359,46.619367],[129.501385,46.619367],[129.502359,46.619367],[129.540066,46.613878],[129.55078,46.618839],[129.5928,46.608915],[129.640386,46.580716],[129.642612,46.558104],[129.683381,46.536646],[129.712878,46.538549],[129.76116,46.531783],[129.821965,46.559584],[129.862872,46.594342],[129.904336,46.609971],[129.921172,46.629395],[129.940791,46.608915],[129.958461,46.60184],[129.988794,46.565079],[130.030675,46.584202],[130.02998,46.598356],[130.054468,46.586315],[130.071444,46.601629],[130.086749,46.604058],[130.069913,46.583569],[130.066574,46.558633],[130.05753,46.548063],[130.035824,46.541087],[130.041807,46.526284],[130.072418,46.525967],[130.074644,46.51666],[130.092036,46.523852],[130.138927,46.504178],[130.129187,46.529033],[130.129465,46.549332],[130.114577,46.574166],[130.126543,46.598144],[130.155902,46.603108],[130.163276,46.614089],[130.191104,46.624962],[130.197783,46.61715],[130.177608,46.589061],[130.153119,46.538655],[130.154093,46.502591],[130.146579,46.491059],[130.170929,46.463328],[130.161746,46.433147],[130.14491,46.431452],[130.139205,46.407718],[130.115412,46.386731],[130.083131,46.390441],[130.077427,46.37178],[130.066017,46.364144],[130.030954,46.387155],[130.014953,46.381217],[129.988516,46.381854],[129.97321,46.389699],[129.923815,46.376022],[129.948582,46.358416],[129.952061,46.346429],[129.968897,46.345262],[130.009526,46.330406],[130.014953,46.335075],[130.030536,46.303443],[130.059895,46.294204],[130.061425,46.274342],[130.09635,46.243312],[130.111238,46.245013],[130.139622,46.230129],[130.155206,46.209605],[130.158963,46.188116],[130.188183,46.172685],[130.207801,46.144047],[130.221994,46.139681],[130.240082,46.122319],[130.288503,46.099943],[130.334698,46.10005],[130.349307,46.088859],[130.385762,46.089392],[130.408442,46.074893],[130.42333,46.080544],[130.432374,46.057937],[130.447123,46.057084],[130.47189,46.043537],[130.487335,46.048978],[130.534086,46.019101],[130.548278,46.021449],[130.552731,46.005652],[130.580837,45.989422],[130.575272,45.986112],[130.614231,45.979063],[130.637607,45.962398],[130.649712,45.964215],[130.655834,45.947653],[130.676844,45.952355],[130.694098,45.947546],[130.700776,45.966031],[130.690341,45.994548],[130.700776,46.000954],[130.738205,46.002022],[130.756293,45.9938],[130.769373,46.011736],[130.82002,46.012377],[130.836299,46.024864],[130.887364,46.027319],[130.931471,46.012697],[130.951369,46.025184],[131.006886,46.019955],[131.033044,46.021876],[131.04988,46.053458],[131.062959,46.067855],[131.143383,46.007573],[131.154514,46.030307],[131.182759,46.033188],[131.209613,46.025291],[131.223806,46.049404],[131.247321,46.058577],[131.274175,46.048871],[131.284888,46.02305],[131.279879,45.981733],[131.283219,45.968274],[131.299359,45.988141],[131.320787,45.999139],[131.316056,46.007573],[131.355154,46.019848],[131.353346,46.041723],[131.338458,46.069135],[131.343328,46.075533],[131.369486,46.074573],[131.365451,46.113583],[131.34138,46.105911],[131.34611,46.126794],[131.365451,46.118591],[131.391609,46.133504],[131.406497,46.196734],[131.424864,46.218645],[131.398705,46.232043],[131.410393,46.249158],[131.358911,46.277847],[131.340823,46.297602],[131.28308,46.311193],[131.295602,46.331785],[131.247738,46.366053],[131.229371,46.373477],[131.205439,46.364144],[131.167593,46.372416],[131.152288,46.391607],[131.13239,46.388215],[131.095796,46.396377],[131.089535,46.389699],[131.062681,46.400829],[131.064212,46.426261],[131.018713,46.447233],[131.030818,46.483122],[131.023026,46.491694],[130.975301,46.507564],[130.965839,46.525015],[130.97224,46.531254],[130.945107,46.579554],[130.912409,46.595293],[130.864267,46.59487],[130.836299,46.584942],[130.82155,46.587477],[130.797479,46.607859],[130.757267,46.606592],[130.744049,46.597933],[130.719839,46.624962],[130.727352,46.650289],[130.745162,46.678452],[130.728604,46.684989],[130.723039,46.700276],[130.730552,46.714925],[130.713021,46.727464],[130.709542,46.742738],[130.668496,46.743265],[130.657225,46.780958],[130.668357,46.789061],[130.66613,46.830928],[130.682271,46.835239],[130.713577,46.822305],[130.751702,46.832821],[130.76492,46.849642],[130.791496,46.864461],[130.798453,46.850903],[130.828507,46.854793],[130.823498,46.87623],[130.8395,46.877806],[130.837552,46.888311],[130.864823,46.890307],[130.849796,46.898919],[130.861623,46.911205],[130.844787,46.91005],[130.836438,46.939651],[130.910183,46.941225],[130.942881,46.94899],[131.013286,46.989055],[131.03054,46.970494],[131.059759,46.990522],[131.073812,46.978779],[131.085639,46.955599],[131.182342,46.96525],[131.212675,46.965355],[131.404967,47.026261],[131.408306,47.068885],[131.461875,47.068362],[131.539237,47.076317],[131.554125,47.073805],[131.53395,47.012534],[131.52908,46.891042],[131.728886,46.886735],[131.726521,46.864777],[131.763115,46.889676],[131.763949,46.903434],[131.789412,46.903224],[131.78816,46.882848],[131.801657,46.88579],[131.864687,46.88663],[131.863296,46.900914],[131.837555,46.903749],[131.839642,46.958222],[131.915195,46.975528],[131.929805,46.987272],[132.059067,46.989474],[132.060041,46.976577],[132.11848,46.96997],[132.205582,46.952347],[132.241897,46.954445],[132.267221,46.943743],[132.246211,46.93052],[132.253307,46.909105],[132.220609,46.886525],[132.195285,46.877911],[132.200016,46.856684],[132.216574,46.846489],[132.222418,46.820727],[132.207808,46.815679],[132.237862,46.802424],[132.257342,46.809894],[132.306319,46.797269],[132.333452,46.783063],[132.328721,46.777379],[132.364202,46.767589],[132.400657,46.762851],[132.390221,46.814312],[132.43252,46.828194],[132.452417,46.821148],[132.493046,46.824093],[132.513917,46.791797],[132.549537,46.789166],[132.595593,46.797479],[132.628291,46.810104],[132.649718,46.800846],[132.67212,46.811471],[132.719706,46.817151],[132.740577,46.794954],[132.779954,46.776853],[132.811539,46.779063],[132.812235,46.753901],[132.84368,46.774432],[132.877909,46.767694],[132.891127,46.786956],[132.880274,46.793376],[132.905737,46.802635],[132.956523,46.807684],[132.97002,46.839235],[133.002301,46.833872],[133.008005,46.852375],[133.03152,46.855423],[133.026789,46.863516],[133.062131,46.878016],[133.106656,46.88663],[133.113056,46.899864],[133.129336,46.894718],[133.148955,46.899129],[133.138519,46.921913],[133.150624,46.926532],[133.139493,46.939231],[133.163843,46.951088],[133.151737,46.959586],[133.169408,46.961998],[133.178592,46.97427],[133.201272,46.973326],[133.182488,46.982344],[133.213238,46.979828],[133.210177,47.003102],[133.189445,46.999328],[133.18374,47.014735],[133.222003,47.023746],[133.204333,47.038517],[133.217829,47.045221],[133.236892,47.040089],[133.239396,47.060509],[133.210872,47.074538],[133.227987,47.08626],[133.228126,47.113776],[133.240231,47.115764],[133.242318,47.134378],[133.255954,47.144415],[133.258458,47.174304],[133.274181,47.181617],[133.277799,47.199269],[133.296305,47.201357],[133.292826,47.302449],[133.353213,47.331833],[133.400938,47.407821],[133.455064,47.46552],[133.489988,47.451491],[133.517538,47.448477],[133.562202,47.434131],[133.59337,47.441616],[133.608536,47.462299],[133.613267,47.482038],[133.634416,47.522947],[133.693273,47.544013],[133.721379,47.545361],[133.721379,47.538202],[133.768826,47.537476],[133.808064,47.533326],[133.847997,47.547748],[133.885982,47.535712],[133.935934,47.541938],[133.974476,47.520664],[134.034028,47.538099],[134.052673,47.527929],[134.052116,47.572225],[134.101789,47.570981],[134.094693,47.600111],[134.108746,47.617312],[134.152297,47.605189],[134.171638,47.589435],[134.191813,47.588502],[134.201553,47.613686],[134.223676,47.621042],[134.217972,47.629432],[134.2522,47.639582],[134.250948,47.645796],[134.294916,47.647038],[134.327754,47.673021],[134.318292,47.680369],[134.345564,47.692061],[134.345703,47.709852],[134.374783,47.731152],[134.369078,47.743866],[134.379931,47.758644],[134.377009,47.772487],[134.359478,47.778995],[134.384384,47.828031],[134.396489,47.824213],[134.416804,47.839174],[134.437953,47.838039],[134.452702,47.84918],[134.454371,47.86568],[134.466755,47.867639],[134.465224,47.887123],[134.517402,47.883825],[134.513367,47.784572],[134.55177,47.784572],[134.55177,47.738492],[134.511837,47.739525],[134.510584,47.666294],[134.505436,47.652733],[134.50474,47.551793],[134.498201,47.449308]]],[[[131.505983,46.249264],[131.493321,46.202798],[131.502783,46.198117],[131.516558,46.224281],[131.547168,46.198436],[131.547029,46.183541],[131.520453,46.167257],[131.518923,46.145964],[131.529637,46.128391],[131.554125,46.133291],[131.555378,46.144154],[131.579032,46.158528],[131.574997,46.193117],[131.630375,46.217901],[131.628148,46.224069],[131.586824,46.221198],[131.571379,46.230448],[131.550925,46.221729],[131.538959,46.234914],[131.515444,46.238741],[131.505983,46.249264]]]]}},{"type":"Feature","properties":{"adcode":230900,"name":"七台河市","center":[131.015584,45.771266],"centroid":[130.943937,45.881675],"childrenNum":4,"level":"city","parent":{"adcode":230000},"subFeatureIndex":8,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.630375,46.217901],[131.574997,46.193117],[131.579032,46.158528],[131.555378,46.144154],[131.554125,46.133291],[131.529637,46.128391],[131.518923,46.145964],[131.520453,46.167257],[131.547029,46.183541],[131.547168,46.198436],[131.516558,46.224281],[131.502783,46.198117],[131.493321,46.202798],[131.505983,46.249264],[131.454501,46.248733],[131.435578,46.241611],[131.410393,46.249158],[131.398705,46.232043],[131.424864,46.218645],[131.406497,46.196734],[131.391609,46.133504],[131.365451,46.118591],[131.34611,46.126794],[131.34138,46.105911],[131.365451,46.113583],[131.369486,46.074573],[131.343328,46.075533],[131.338458,46.069135],[131.353346,46.041723],[131.355154,46.019848],[131.316056,46.007573],[131.320787,45.999139],[131.299359,45.988141],[131.283219,45.968274],[131.279879,45.981733],[131.284888,46.02305],[131.274175,46.048871],[131.247321,46.058577],[131.223806,46.049404],[131.209613,46.025291],[131.182759,46.033188],[131.154514,46.030307],[131.143383,46.007573],[131.062959,46.067855],[131.04988,46.053458],[131.033044,46.021876],[131.006886,46.019955],[130.951369,46.025184],[130.931471,46.012697],[130.887364,46.027319],[130.836299,46.024864],[130.82002,46.012377],[130.769373,46.011736],[130.756293,45.9938],[130.738205,46.002022],[130.700776,46.000954],[130.690341,45.994548],[130.700776,45.966031],[130.694098,45.947546],[130.676844,45.952355],[130.655834,45.947653],[130.649712,45.964215],[130.637607,45.962398],[130.614231,45.979063],[130.575272,45.986112],[130.580837,45.989422],[130.552731,46.005652],[130.548278,46.021449],[130.534086,46.019101],[130.487335,46.048978],[130.47189,46.043537],[130.447123,46.057084],[130.432374,46.057937],[130.42333,46.080544],[130.408442,46.074893],[130.385762,46.089392],[130.349307,46.088859],[130.334698,46.10005],[130.288503,46.099943],[130.240082,46.122319],[130.213089,46.111772],[130.182339,46.083422],[130.139762,46.069561],[130.115829,46.069561],[130.111655,46.055271],[130.12543,46.049831],[130.125013,46.027959],[130.114577,46.02273],[130.118473,46.003303],[130.105116,45.981413],[130.116247,45.926489],[130.15938,45.904782],[130.173155,45.906279],[130.195557,45.872901],[130.183452,45.870868],[130.176912,45.852244],[130.199453,45.832115],[130.180252,45.81787],[130.19667,45.803729],[130.188183,45.77715],[130.199175,45.757316],[130.186791,45.749701],[130.185817,45.72932],[130.168981,45.709683],[130.169259,45.696266],[130.183452,45.678013],[130.211558,45.690898],[130.206688,45.668347],[130.21295,45.652127],[130.250378,45.653309],[130.265545,45.668455],[130.284329,45.636869],[130.309235,45.625369],[130.340402,45.619134],[130.36016,45.650086],[130.388267,45.674147],[130.41039,45.672858],[130.432096,45.656102],[130.482465,45.60677],[130.539791,45.626229],[130.553844,45.627734],[130.572071,45.601932],[130.627449,45.588811],[130.654303,45.59064],[130.665991,45.613974],[130.687558,45.614512],[130.686167,45.623756],[130.719421,45.656961],[130.73417,45.653309],[130.756293,45.627519],[130.777025,45.618919],[130.800958,45.619457],[130.809167,45.626766],[130.842421,45.624831],[130.850074,45.618812],[130.865241,45.633215],[130.890703,45.609996],[130.938428,45.624294],[130.949421,45.647399],[130.946638,45.667381],[131.012869,45.680483],[131.020104,45.686281],[131.034435,45.670388],[131.04014,45.65159],[131.099832,45.645358],[131.103588,45.634505],[131.15354,45.646755],[131.164532,45.627948],[131.181646,45.621069],[131.194865,45.638373],[131.21824,45.619887],[131.282941,45.628163],[131.283497,45.608813],[131.304786,45.59806],[131.315778,45.615909],[131.337484,45.633752],[131.339153,45.645788],[131.372686,45.672106],[131.338179,45.684241],[131.35752,45.705819],[131.396897,45.72299],[131.418463,45.718054],[131.463406,45.728033],[131.47885,45.724599],[131.466467,45.782617],[131.454223,45.79387],[131.452135,45.812728],[131.500278,45.841217],[131.505148,45.866159],[131.522541,45.881355],[131.556908,45.879643],[131.567483,45.889379],[131.574023,45.915476],[131.599485,45.916011],[131.607973,45.926382],[131.623835,45.912696],[131.643593,45.910664],[131.679074,45.918149],[131.685892,45.906279],[131.71845,45.916759],[131.718172,45.896653],[131.729999,45.891839],[131.746,45.901787],[131.788856,45.904033],[131.8075,45.921678],[131.808057,45.934934],[131.836859,45.940599],[131.868305,45.971906],[131.874984,45.987073],[131.905734,46.00341],[131.925909,46.003623],[131.902951,46.024544],[131.912969,46.059964],[131.929109,46.075319],[131.910047,46.088326],[131.893211,46.088219],[131.838946,46.064016],[131.801796,46.067429],[131.778003,46.059217],[131.772159,46.070308],[131.70718,46.092056],[131.699249,46.118591],[131.698414,46.159699],[131.727355,46.176198],[131.721233,46.201628],[131.70565,46.200883],[131.657229,46.214179],[131.63107,46.203862],[131.630375,46.217901]]]]}},{"type":"Feature","properties":{"adcode":231000,"name":"牡丹江市","center":[129.618602,44.582962],"centroid":[129.895544,44.607512],"childrenNum":10,"level":"city","parent":{"adcode":230000},"subFeatureIndex":9,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.253016,44.446665],[128.260668,44.459173],[128.293088,44.468167],[128.296984,44.482425],[128.331908,44.497227],[128.346657,44.509394],[128.372676,44.514326],[128.388399,44.489881],[128.427219,44.473761],[128.436681,44.45281],[128.462005,44.434375],[128.456578,44.417361],[128.461448,44.399904],[128.481623,44.37563],[128.475362,44.346071],[128.44656,44.339915],[128.472301,44.319796],[128.470075,44.288778],[128.453795,44.258845],[128.471744,44.247836],[128.450456,44.204772],[128.462561,44.18681],[128.472997,44.156715],[128.482041,44.152414],[128.502495,44.123515],[128.528792,44.11237],[128.535053,44.092283],[128.574987,44.047448],[128.576239,44.021371],[128.584587,43.99097],[128.624103,43.950374],[128.640105,43.947829],[128.645253,43.935656],[128.630226,43.924476],[128.636487,43.891256],[128.661393,43.890038],[128.669046,43.897237],[128.6927,43.895133],[128.696039,43.903217],[128.728598,43.890813],[128.760879,43.857686],[128.737086,43.842057],[128.718719,43.817886],[128.739451,43.806462],[128.759209,43.760968],[128.735555,43.751976],[128.727624,43.740872],[128.753226,43.727657],[128.768392,43.732321],[128.783976,43.715883],[128.787315,43.686881],[128.806795,43.66665],[128.820987,43.637291],[128.834901,43.587438],[128.850346,43.576416],[128.855355,43.556927],[128.865791,43.558263],[128.878035,43.540106],[128.91282,43.543448],[128.92576,43.553585],[128.949831,43.553808],[128.963189,43.538991],[128.984338,43.536206],[129.014393,43.52328],[129.041247,43.541554],[129.095651,43.548572],[129.106225,43.559154],[129.121114,43.555367],[129.144628,43.569957],[129.16703,43.570848],[129.169117,43.561382],[129.229643,43.593004],[129.232287,43.635512],[129.21726,43.648636],[129.219903,43.682324],[129.215033,43.697217],[129.231869,43.70855],[129.216564,43.723547],[129.221295,43.742094],[129.211277,43.782499],[129.255245,43.81966],[129.27876,43.813561],[129.290448,43.796922],[129.31104,43.801249],[129.308814,43.812008],[129.347495,43.798586],[129.368505,43.800916],[129.388542,43.817553],[129.407047,43.819439],[129.4179,43.843609],[129.449764,43.850482],[129.467991,43.87464],[129.498045,43.88029],[129.528935,43.87054],[129.594191,43.874196],[129.608523,43.882173],[129.657361,43.87187],[129.698547,43.883613],[129.742794,43.875969],[129.739732,43.895797],[129.780362,43.893028],[129.786762,43.916948],[129.777857,43.928904],[129.794276,43.939972],[129.78217,43.962545],[129.80332,43.964979],[129.84047,43.996609],[129.852854,43.997273],[129.869133,44.012639],[129.881378,44.00059],[129.907397,44.023802],[129.924372,44.015182],[129.936338,44.02756],[129.979889,44.015071],[129.985316,43.998821],[130.003265,43.98909],[129.989072,43.98334],[130.025527,43.943292],[130.024136,43.916948],[130.009248,43.889484],[130.027058,43.851812],[130.048485,43.851257],[130.066435,43.834408],[130.100802,43.844607],[130.11082,43.85292],[130.116247,43.878074],[130.142405,43.878406],[130.154511,43.891921],[130.153676,43.915619],[130.184704,43.930786],[130.189991,43.941079],[130.228394,43.949046],[130.238551,43.940525],[130.262344,43.949821],[130.275145,43.968076],[130.27278,43.981902],[130.307704,44.002801],[130.307983,44.020487],[130.318975,44.039494],[130.353203,44.05032],[130.365448,44.044023],[130.358212,44.024355],[130.367535,44.014518],[130.3635,43.991081],[130.338593,43.94628],[130.354177,43.942075],[130.383258,43.905764],[130.366143,43.890702],[130.371292,43.870651],[130.386319,43.853917],[130.362665,43.842833],[130.37964,43.825648],[130.384092,43.788823],[130.392441,43.76674],[130.423469,43.744648],[130.409277,43.718215],[130.394111,43.702439],[130.400094,43.674099],[130.413034,43.652306],[130.449071,43.646523],[130.468412,43.656421],[130.488309,43.656087],[130.501945,43.636624],[130.54146,43.62817],[130.559549,43.630061],[130.585429,43.61415],[130.596699,43.621939],[130.630093,43.622384],[130.623553,43.589776],[130.667383,43.58343],[130.671279,43.564834],[130.700359,43.567841],[130.702307,43.560157],[130.727352,43.560268],[130.736396,43.544785],[130.759355,43.542668],[130.775356,43.521497],[130.792331,43.527737],[130.797062,43.512914],[130.823359,43.502882],[130.840474,43.454925],[130.861762,43.438076],[130.908096,43.434504],[130.921732,43.455818],[130.94469,43.476566],[130.983232,43.492848],[131.001459,43.507564],[131.026783,43.50879],[131.068107,43.482923],[131.091483,43.458049],[131.120285,43.447896],[131.12599,43.433277],[131.142548,43.425798],[131.18109,43.445664],[131.199874,43.44187],[131.204326,43.454479],[131.230206,43.458272],[131.235772,43.475785],[131.269583,43.468535],[131.291289,43.469093],[131.306038,43.479354],[131.302559,43.503551],[131.275983,43.495524],[131.200291,43.532752],[131.21017,43.561382],[131.209057,43.584766],[131.232989,43.584209],[131.244816,43.604246],[131.21671,43.613149],[131.220606,43.632953],[131.233685,43.636513],[131.232154,43.662536],[131.23925,43.669541],[131.221301,43.68188],[131.216849,43.714327],[131.228119,43.719437],[131.217266,43.734654],[131.231876,43.743981],[131.230624,43.762633],[131.215875,43.773177],[131.213509,43.801249],[131.224223,43.805575],[131.218101,43.837734],[131.232711,43.848819],[131.233824,43.87198],[131.253721,43.893471],[131.262348,43.916394],[131.263183,43.948714],[131.245512,43.955575],[131.243425,43.986989],[131.257617,43.99285],[131.254973,44.009434],[131.266105,44.034411],[131.310629,44.046564],[131.268748,44.188022],[131.111519,44.710067],[131.090787,44.719132],[131.093431,44.745664],[131.074369,44.753742],[131.064212,44.787022],[131.047097,44.779931],[131.016486,44.789531],[131.023722,44.799347],[131.01593,44.814613],[130.99325,44.825842],[130.972796,44.819956],[130.968065,44.854614],[130.948447,44.881302],[130.927576,44.888271],[130.919227,44.922453],[130.92368,44.93377],[130.871224,44.968578],[130.866493,44.991191],[130.836438,44.988147],[130.821133,45.000104],[130.797757,45.003147],[130.767703,44.990104],[130.767842,44.974667],[130.720534,44.965424],[130.691871,44.995213],[130.676566,44.987821],[130.658756,44.999451],[130.653608,45.018359],[130.63051,45.042582],[130.629815,45.054961],[130.593221,45.073199],[130.592108,45.081773],[130.556627,45.100978],[130.500553,45.075369],[130.485387,45.054852],[130.468412,45.066143],[130.439888,45.072547],[130.432513,45.090888],[130.420408,45.089369],[130.412895,45.118117],[130.398841,45.124082],[130.403433,45.134275],[130.427504,45.135901],[130.426669,45.150211],[130.467716,45.169394],[130.465351,45.181854],[130.444479,45.188678],[130.433766,45.205249],[130.458533,45.241948],[130.477595,45.249414],[130.493318,45.276784],[130.474673,45.300573],[130.49304,45.33721],[130.509736,45.33883],[130.526294,45.358706],[130.540765,45.359462],[130.557183,45.391311],[130.610335,45.410952],[130.629119,45.431234],[130.652216,45.439862],[130.667939,45.459486],[130.660843,45.479211],[130.685749,45.483198],[130.713299,45.511101],[130.744049,45.509162],[130.757685,45.53253],[130.745301,45.559655],[130.761581,45.581497],[130.777025,45.618919],[130.756293,45.627519],[130.73417,45.653309],[130.719421,45.656961],[130.686167,45.623756],[130.687558,45.614512],[130.665991,45.613974],[130.654303,45.59064],[130.627449,45.588811],[130.572071,45.601932],[130.553844,45.627734],[130.539791,45.626229],[130.482465,45.60677],[130.432096,45.656102],[130.41039,45.672858],[130.388267,45.674147],[130.36016,45.650086],[130.340402,45.619134],[130.309235,45.625369],[130.284329,45.636869],[130.265545,45.668455],[130.250378,45.653309],[130.21295,45.652127],[130.206688,45.668347],[130.211558,45.690898],[130.183452,45.678013],[130.169259,45.696266],[130.168981,45.709683],[130.185817,45.72932],[130.186791,45.749701],[130.199175,45.757316],[130.188183,45.77715],[130.19667,45.803729],[130.180252,45.81787],[130.199453,45.832115],[130.176912,45.852244],[130.183452,45.870868],[130.195557,45.872901],[130.173155,45.906279],[130.15938,45.904782],[130.116247,45.926489],[130.10275,45.927665],[130.088558,45.91569],[130.061843,45.91847],[130.044589,45.909915],[130.027614,45.923709],[129.975019,45.920395],[129.949278,45.908418],[129.93272,45.927023],[129.920615,45.921143],[129.900718,45.925526],[129.902388,45.935468],[129.875116,45.961757],[129.857445,45.970197],[129.846314,45.9875],[129.80819,45.987073],[129.785092,45.970945],[129.797476,45.933437],[129.783005,45.925633],[129.793997,45.897081],[129.771317,45.885955],[129.723036,45.896653],[129.666962,45.873116],[129.626055,45.893337],[129.607827,45.876005],[129.585982,45.887132],[129.564137,45.875577],[129.574294,45.859416],[129.549249,45.847641],[129.564555,45.828474],[129.556623,45.81712],[129.528795,45.802979],[129.511403,45.802122],[129.50862,45.789262],[129.468548,45.791834],[129.473278,45.786261],[129.454773,45.763856],[129.431675,45.779937],[129.402038,45.768574],[129.415535,45.746591],[129.405378,45.738439],[129.344295,45.735757],[129.338729,45.721166],[129.34193,45.69691],[129.354452,45.688536],[129.34179,45.678657],[129.308258,45.673073],[129.300744,45.656961],[129.31118,45.645036],[129.310901,45.625154],[129.298935,45.619779],[129.254967,45.617199],[129.220738,45.593974],[129.17997,45.604405],[129.150472,45.623756],[129.138924,45.619242],[129.109287,45.625369],[129.09259,45.604942],[129.102051,45.567188],[129.123896,45.566435],[129.140315,45.535975],[129.13141,45.524993],[129.13461,45.498174],[129.117774,45.474037],[129.142402,45.458731],[129.146715,45.444607],[129.198197,45.426919],[129.194162,45.389585],[129.156594,45.369828],[129.137393,45.371772],[129.087581,45.358382],[129.062396,45.33883],[129.084241,45.327378],[129.097181,45.309329],[129.09412,45.291599],[129.127653,45.275486],[129.174543,45.292032],[129.18971,45.276892],[129.187066,45.26283],[129.210859,45.259152],[129.20098,45.235562],[129.209885,45.223439],[129.187344,45.204924],[129.162299,45.194419],[129.141289,45.195719],[129.133219,45.181962],[129.105808,45.163325],[129.102051,45.139262],[129.122087,45.134817],[129.125427,45.11931],[129.150333,45.11226],[129.133358,45.101412],[129.104834,45.100761],[129.080345,45.085028],[129.074641,45.069074],[129.056135,45.077106],[129.017176,45.080253],[128.997418,45.064515],[129.009801,45.048229],[129.035681,45.041496],[129.04069,45.01347],[129.051822,44.999234],[129.04236,44.977167],[129.023298,44.973471],[129.033594,44.949001],[129.046256,44.951612],[129.054604,44.935294],[129.043334,44.929962],[129.061561,44.903732],[129.041386,44.900684],[129.022185,44.913093],[128.993939,44.907869],[128.967224,44.884787],[128.951223,44.885331],[128.925899,44.874876],[128.904611,44.883371],[128.881792,44.86333],[128.876504,44.844589],[128.851737,44.831729],[128.867182,44.830094],[128.847981,44.806108],[128.85772,44.799456],[128.836432,44.789858],[128.788846,44.783422],[128.782445,44.767165],[128.748495,44.739878],[128.727207,44.734747],[128.75587,44.725138],[128.747799,44.699689],[128.728737,44.694991],[128.691587,44.663188],[128.630086,44.655208],[128.600171,44.670403],[128.579161,44.674775],[128.562186,44.669856],[128.535471,44.682862],[128.472858,44.66614],[128.438072,44.680021],[128.408436,44.675868],[128.393826,44.643836],[128.368641,44.631478],[128.371842,44.608066],[128.348327,44.586178],[128.293645,44.54632],[128.296427,44.538214],[128.27166,44.530654],[128.235206,44.480451],[128.232144,44.467619],[128.254546,44.453468],[128.253016,44.446665]]]]}},{"type":"Feature","properties":{"adcode":231100,"name":"黑河市","center":[127.499023,50.249585],"centroid":[126.988643,49.282601],"childrenNum":6,"level":"city","parent":{"adcode":230000},"subFeatureIndex":10,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.019949,50.92083],[126.029828,50.907845],[125.996573,50.906682],[125.996295,50.871584],[125.973893,50.878858],[125.975284,50.895535],[125.958866,50.900188],[125.942586,50.870129],[125.956222,50.865376],[125.939664,50.854122],[125.90474,50.855577],[125.924776,50.844903],[125.920463,50.831315],[125.878443,50.816654],[125.889435,50.804902],[125.856876,50.790622],[125.841014,50.794508],[125.832109,50.785764],[125.84644,50.769631],[125.839901,50.756312],[125.796071,50.773519],[125.777983,50.7672],[125.758921,50.746782],[125.778122,50.747852],[125.795654,50.738709],[125.782296,50.72402],[125.803307,50.71857],[125.825152,50.704945],[125.819169,50.689855],[125.787584,50.677195],[125.804142,50.662876],[125.792871,50.645628],[125.814299,50.624669],[125.808037,50.603701],[125.816803,50.595506],[125.829326,50.561639],[125.786192,50.529994],[125.769356,50.531362],[125.772974,50.519539],[125.752103,50.507029],[125.740554,50.52335],[125.722883,50.516119],[125.704517,50.498426],[125.681976,50.488551],[125.69923,50.486888],[125.654565,50.471239],[125.646495,50.451475],[125.632164,50.443841],[125.5907,50.452258],[125.562037,50.438164],[125.583604,50.408003],[125.574838,50.401244],[125.536574,50.42005],[125.513199,50.409375],[125.524191,50.403791],[125.537131,50.381254],[125.520573,50.371453],[125.546731,50.360374],[125.522521,50.351058],[125.517651,50.340171],[125.530452,50.331047],[125.506102,50.32467],[125.519599,50.315936],[125.488571,50.307887],[125.479527,50.297186],[125.463386,50.295812],[125.46603,50.267035],[125.442237,50.260255],[125.449194,50.23942],[125.464639,50.229884],[125.436254,50.23126],[125.448637,50.216412],[125.443489,50.206674],[125.409956,50.195262],[125.38352,50.193294],[125.382824,50.172331],[125.370719,50.174792],[125.337881,50.15904],[125.376006,50.13747],[125.329533,50.135993],[125.327724,50.119341],[125.314367,50.136485],[125.302401,50.139539],[125.277494,50.124662],[125.282921,50.112146],[125.257458,50.102979],[125.288904,50.090457],[125.271929,50.081483],[125.283756,50.070238],[125.328142,50.065996],[125.337325,50.055932],[125.315897,50.045668],[125.287095,50.058695],[125.262885,50.046161],[125.259406,50.037574],[125.294052,50.029281],[125.296557,50.00953],[125.27819,49.996391],[125.242014,49.987794],[125.242153,49.968916],[125.231578,49.957645],[125.209455,49.961798],[125.183575,49.952701],[125.199437,49.934996],[125.226152,49.922628],[125.212933,49.907288],[125.229352,49.8962],[125.24424,49.875602],[125.223925,49.859653],[125.23937,49.844689],[125.224204,49.835768],[125.17787,49.829423],[125.188027,49.815441],[125.208898,49.807904],[125.227265,49.792229],[125.221282,49.754809],[125.204167,49.73425],[125.225038,49.723619],[125.216968,49.70593],[125.220864,49.672222],[125.185523,49.634709],[125.189836,49.649936],[125.164651,49.669437],[125.132093,49.672023],[125.127362,49.655011],[125.139606,49.626247],[125.154216,49.616788],[125.16813,49.62993],[125.20542,49.594078],[125.234639,49.591986],[125.232969,49.574547],[125.216829,49.56777],[125.2313,49.562088],[125.235613,49.540948],[125.211264,49.539951],[125.22476,49.506128],[125.24104,49.503733],[125.228378,49.486962],[125.27012,49.455101],[125.256067,49.435715],[125.257041,49.394018],[125.272764,49.387816],[125.273738,49.360795],[125.256902,49.359594],[125.264137,49.339069],[125.251893,49.331557],[125.261772,49.322441],[125.226708,49.285561],[125.214881,49.280147],[125.237144,49.257683],[125.227404,49.248854],[125.226291,49.21704],[125.217107,49.207802],[125.221003,49.191031],[125.185383,49.185305],[125.159921,49.15948],[125.160199,49.146412],[125.130701,49.139173],[125.120544,49.127206],[125.062244,49.141787],[125.039564,49.151841],[125.039842,49.176263],[125.004222,49.172846],[124.982934,49.162495],[124.955801,49.164606],[124.906546,49.183898],[124.860908,49.166515],[124.84755,49.12972],[124.833775,49.120567],[124.809426,49.11594],[124.807617,49.108696],[124.829044,49.071958],[124.816522,49.060277],[124.82334,49.046578],[124.808034,49.020581],[124.765596,48.981256],[124.749456,48.950581],[124.750152,48.924028],[124.798851,48.932612],[124.83294,48.92938],[124.834332,48.920696],[124.868282,48.90322],[124.924912,48.893015],[124.941609,48.897562],[124.991421,48.885335],[125.013127,48.8915],[125.022589,48.86168],[125.012432,48.84732],[125.015493,48.825063],[124.992813,48.813425],[125.040955,48.78923],[125.045965,48.74648],[125.067531,48.738878],[125.096055,48.749824],[125.128753,48.725801],[125.212238,48.734519],[125.22963,48.715965],[125.250362,48.712416],[125.250223,48.726307],[125.309079,48.726814],[125.413713,48.792672],[125.452255,48.783559],[125.462551,48.798848],[125.468117,48.82648],[125.493997,48.834877],[125.513894,48.859152],[125.541166,48.868858],[125.603779,48.882808],[125.622563,48.890994],[125.631746,48.856118],[125.640373,48.853084],[125.697838,48.803202],[125.722327,48.803708],[125.758782,48.821926],[125.789671,48.826378],[125.799967,48.849646],[125.816525,48.868555],[125.838788,48.867342],[125.857154,48.837912],[125.911697,48.806542],[125.921715,48.795102],[125.959701,48.780723],[126.007843,48.738168],[125.989894,48.711503],[125.973336,48.706026],[125.955805,48.710489],[125.873712,48.668483],[125.892496,48.636906],[125.866894,48.637414],[125.86105,48.625427],[125.840179,48.622786],[125.841709,48.612524],[125.816108,48.600227],[125.781879,48.606325],[125.76713,48.588842],[125.726501,48.598295],[125.72984,48.610796],[125.71537,48.609577],[125.707021,48.562402],[125.723579,48.565962],[125.737493,48.556909],[125.755721,48.560876],[125.799689,48.556299],[125.800385,48.508667],[125.805672,48.492576],[125.788836,48.490233],[125.801359,48.477091],[125.820282,48.393473],[125.843379,48.357945],[125.879695,48.353043],[125.912254,48.339763],[125.948709,48.341602],[125.947178,48.318611],[125.980015,48.30706],[126.001443,48.307264],[126.051116,48.282826],[126.155332,48.291212],[126.199022,48.274541],[126.21238,48.281292],[126.244661,48.283849],[126.289742,48.271472],[126.303795,48.24937],[126.322579,48.24067],[126.329258,48.205547],[126.318266,48.201655],[126.318683,48.178293],[126.347346,48.174808],[126.362234,48.189975],[126.392289,48.197249],[126.429996,48.193356],[126.520437,48.219271],[126.556475,48.212],[126.573032,48.215585],[126.594877,48.196225],[126.599191,48.174193],[126.61547,48.152459],[126.666535,48.131229],[126.654708,48.11861],[126.615748,48.113172],[126.621453,48.09675],[126.600304,48.086895],[126.605591,48.068719],[126.590147,48.063892],[126.601,48.053311],[126.616862,48.053722],[126.63008,47.98906],[126.623123,47.958603],[126.631193,47.949339],[126.605869,47.935336],[126.580407,47.912059],[126.576233,47.884443],[126.566632,47.880423],[126.587503,47.842578],[126.59766,47.835047],[126.590842,47.821117],[126.564545,47.79593],[126.560092,47.777549],[126.567328,47.756577],[126.566354,47.726707],[126.518628,47.72557],[126.524055,47.693406],[126.526281,47.603116],[126.540056,47.588606],[126.557031,47.585703],[126.574841,47.595758],[126.58472,47.6141],[126.587364,47.638547],[126.617836,47.650766],[126.624375,47.660187],[126.652342,47.673125],[126.685736,47.682439],[126.715791,47.699716],[126.711338,47.713472],[126.756559,47.733737],[126.79677,47.729498],[126.803449,47.74273],[126.843939,47.743246],[126.844496,47.73229],[126.888881,47.729395],[126.903909,47.716678],[126.931458,47.713162],[126.981827,47.723709],[126.997133,47.740869],[127.033448,47.749344],[127.052093,47.762053],[127.085348,47.763603],[127.116933,47.780441],[127.136412,47.776103],[127.148657,47.788393],[127.190816,47.781164],[127.23075,47.78106],[127.246194,47.772487],[127.280562,47.781783],[127.284597,47.789528],[127.325783,47.786534],[127.405789,47.784675],[127.424294,47.795311],[127.462697,47.804603],[127.513205,47.828857],[127.54159,47.832674],[127.581941,47.826174],[127.629109,47.837523],[127.660694,47.83938],[127.663755,47.814718],[127.677391,47.803054],[127.692975,47.777136],[127.70828,47.795621],[127.722055,47.797479],[127.765467,47.822459],[127.763241,47.840721],[127.784807,47.844745],[127.804844,47.86434],[127.802896,47.894543],[127.815975,47.912678],[127.851038,47.923184],[127.849369,47.940485],[127.865509,47.940691],[127.871214,47.951192],[127.891946,47.955],[127.89292,47.982785],[127.87664,47.997083],[127.889441,48.01004],[127.876362,48.028956],[127.861335,48.030704],[127.87998,48.060707],[127.980717,48.097674],[128.005067,48.076319],[128.049731,48.071389],[128.05961,48.077654],[128.087995,48.061735],[128.112762,48.085355],[128.132102,48.07827],[128.170923,48.095519],[128.174123,48.119123],[128.211552,48.134922],[128.23117,48.135845],[128.276809,48.157586],[128.302271,48.147435],[128.334413,48.147947],[128.356119,48.171733],[128.344013,48.181675],[128.341648,48.201757],[128.371981,48.260422],[128.391321,48.266254],[128.396887,48.296631],[128.411218,48.314113],[128.437377,48.332713],[128.456856,48.363051],[128.497903,48.377652],[128.526566,48.373977],[128.537419,48.385002],[128.55996,48.380612],[128.615338,48.392759],[128.622851,48.401535],[128.649288,48.403168],[128.675864,48.413472],[128.722476,48.40429],[128.741677,48.409698],[128.755591,48.397453],[128.756009,48.382042],[128.772984,48.366217],[128.774236,48.340376],[128.787733,48.293462],[128.796638,48.289882],[128.815283,48.258785],[128.850346,48.251007],[128.863286,48.273108],[128.912681,48.280064],[128.914629,48.302459],[128.904472,48.30706],[128.904472,48.323516],[128.933552,48.332815],[128.921308,48.342624],[128.923534,48.375814],[128.966389,48.408269],[128.979468,48.413064],[128.95498,48.421327],[128.988513,48.452734],[128.99547,48.483306],[128.987678,48.496752],[129.004235,48.511721],[128.998948,48.528112],[129.032481,48.556909],[129.033177,48.570437],[129.065736,48.578471],[129.086885,48.60541],[129.107478,48.614454],[129.134888,48.607138],[129.142124,48.614353],[129.199728,48.623396],[129.200841,48.641781],[129.192493,48.650616],[129.230061,48.682185],[129.165499,48.737966],[129.16856,48.749925],[129.185257,48.753472],[129.182753,48.766643],[129.238826,48.747088],[129.266794,48.754181],[129.259976,48.77414],[129.290865,48.79652],[129.322172,48.790647],[129.324537,48.801379],[129.36127,48.802291],[129.365723,48.813121],[129.386872,48.808972],[129.394107,48.815854],[129.435571,48.80472],[129.463538,48.839531],[129.484131,48.841857],[129.496932,48.858242],[129.526291,48.869768],[129.511542,48.877249],[129.522117,48.89251],[129.50222,48.903423],[129.526708,48.909383],[129.507089,48.925038],[129.526569,48.935035],[129.497767,48.940285],[129.480792,48.950076],[129.460199,48.950278],[129.459643,48.965315],[129.437658,48.992552],[129.441137,49.013525],[129.449903,49.018363],[129.444476,49.037108],[129.410108,49.052119],[129.396334,49.047082],[129.341373,49.04547],[129.294761,49.052219],[129.266655,49.064607],[129.245505,49.089475],[129.222686,49.086657],[129.234096,49.10125],[129.232287,49.158073],[129.241192,49.177669],[129.207659,49.216437],[129.203763,49.237415],[129.193606,49.243135],[129.171204,49.284158],[129.185536,49.33326],[129.202928,49.351585],[129.219208,49.358393],[129.241888,49.37871],[129.261645,49.375708],[129.289891,49.362097],[129.30144,49.370604],[129.266515,49.396019],[129.215173,49.39912],[129.181083,49.386515],[129.144072,49.357392],[129.122644,49.354489],[129.084937,49.359895],[129.055857,49.382313],[129.047369,49.408921],[129.013558,49.457299],[128.998531,49.460896],[128.948579,49.461894],[128.896401,49.488559],[128.871356,49.492353],[128.827805,49.484066],[128.792046,49.473281],[128.761435,49.482069],[128.752808,49.495149],[128.763105,49.515709],[128.812778,49.558199],[128.80276,49.582121],[128.784115,49.589794],[128.744321,49.594975],[128.727207,49.567969],[128.714962,49.564879],[128.645809,49.581424],[128.619651,49.59348],[128.585979,49.596668],[128.553698,49.604538],[128.531297,49.603243],[128.49999,49.593978],[128.468962,49.591189],[128.414697,49.591986],[128.377407,49.586705],[128.360015,49.555507],[128.343179,49.545037],[128.326064,49.546533],[128.291836,49.564779],[128.243276,49.563084],[128.219204,49.546234],[128.185811,49.539353],[128.140312,49.550921],[128.08549,49.55122],[128.037348,49.572155],[128.001449,49.592285],[127.981691,49.587801],[127.949689,49.59627],[127.921304,49.581922],[127.897511,49.578932],[127.81514,49.593879],[127.776042,49.635903],[127.705219,49.665159],[127.677948,49.697778],[127.674886,49.764142],[127.654154,49.779924],[127.582915,49.786375],[127.563991,49.79342],[127.532267,49.825953],[127.529345,49.864309],[127.547434,49.928763],[127.543538,49.944294],[127.500543,49.983743],[127.495813,49.994514],[127.496508,50.041127],[127.501796,50.056721],[127.542703,50.099134],[127.587089,50.137766],[127.606847,50.178828],[127.608516,50.229785],[127.603229,50.23942],[127.446278,50.270768],[127.393683,50.284814],[127.371838,50.296499],[127.332322,50.340563],[127.338862,50.363413],[127.36989,50.403889],[127.364603,50.438359],[127.349715,50.446581],[127.305051,50.454411],[127.29378,50.465761],[127.323,50.525695],[127.361124,50.547577],[127.370725,50.58126],[127.336218,50.625937],[127.325504,50.630812],[127.294615,50.663558],[127.288493,50.699396],[127.304216,50.728301],[127.302825,50.748241],[127.26637,50.763117],[127.236176,50.781391],[127.144204,50.910268],[127.114011,50.937686],[127.051815,50.962958],[127.030944,50.98125],[127.01856,50.977766],[127.001446,50.950662],[127.006038,50.932358],[126.994767,50.92674],[126.975983,50.932068],[126.958869,50.924608],[126.916431,50.923349],[126.867732,50.91521],[126.785222,50.915597],[126.743201,50.913078],[126.687823,50.904162],[126.670848,50.914338],[126.639541,50.902805],[126.610183,50.908426],[126.569136,50.904646],[126.47633,50.902126],[126.443214,50.931099],[126.420534,50.929452],[126.371,50.964119],[126.310057,50.995278],[126.276106,50.994891],[126.243687,51.00321],[126.225042,51.001856],[126.208206,50.985991],[126.181491,50.970314],[126.12987,50.974863],[126.135992,50.957052],[126.131261,50.945821],[126.103711,50.923058],[126.056542,50.918892],[126.02941,50.924802],[126.019949,50.92083]]]]}},{"type":"Feature","properties":{"adcode":231200,"name":"绥化市","center":[126.99293,46.637393],"centroid":[126.658429,46.904079],"childrenNum":10,"level":"city","parent":{"adcode":230000},"subFeatureIndex":11,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.761286,45.531346],[125.777009,45.511208],[125.792871,45.509377],[125.8335,45.520147],[125.848249,45.5097],[125.863555,45.525424],[125.894305,45.545018],[125.902792,45.564821],[125.934099,45.585799],[125.935073,45.608061],[125.927698,45.630313],[125.952744,45.633215],[125.969162,45.626229],[125.996016,45.633967],[125.98085,45.658036],[125.981824,45.669636],[126.009652,45.683919],[126.011739,45.703673],[126.026627,45.711508],[126.060995,45.70979],[126.075326,45.692723],[126.124026,45.673825],[126.152967,45.681235],[126.16549,45.703136],[126.184413,45.686174],[126.20751,45.690683],[126.223372,45.704102],[126.265114,45.703029],[126.283481,45.694763],[126.306717,45.702599],[126.298647,45.74155],[126.320214,45.745948],[126.329119,45.725994],[126.340807,45.733504],[126.35806,45.725029],[126.355556,45.747878],[126.360008,45.774899],[126.348738,45.796657],[126.364321,45.807157],[126.360982,45.822155],[126.342755,45.831258],[126.354442,45.866908],[126.365435,45.877075],[126.357086,45.889379],[126.328145,45.901894],[126.311726,45.934506],[126.319379,45.94124],[126.310752,45.970411],[126.262053,45.973295],[126.247722,45.962185],[126.231025,45.963574],[126.235477,45.990063],[126.221007,46.011736],[126.199996,46.028066],[126.170777,46.061457],[126.189978,46.069668],[126.223929,46.048871],[126.224068,46.06007],[126.242991,46.064336],[126.228659,46.07404],[126.258435,46.078091],[126.277498,46.065403],[126.328841,46.065509],[126.350547,46.095787],[126.382688,46.092376],[126.393263,46.084808],[126.423178,46.084808],[126.454763,46.11614],[126.457546,46.139788],[126.526838,46.188861],[126.587503,46.208223],[126.615609,46.235764],[126.617279,46.257341],[126.641907,46.293142],[126.635228,46.324781],[126.656795,46.340381],[126.661804,46.354598],[126.688102,46.363295],[126.682118,46.375916],[126.71259,46.388851],[126.742784,46.417149],[126.768246,46.408778],[126.778125,46.427215],[126.80331,46.422235],[126.837539,46.438443],[126.836008,46.452105],[126.853122,46.468515],[126.85187,46.477089],[126.878446,46.487038],[126.873854,46.495185],[126.906831,46.509044],[126.91824,46.506611],[126.972644,46.527553],[126.989897,46.526495],[126.998802,46.537175],[127.031779,46.547746],[127.037205,46.563071],[127.052093,46.566347],[127.05098,46.578075],[127.089244,46.592124],[127.125142,46.595398],[127.12222,46.606381],[127.151022,46.61071],[127.168832,46.620423],[127.187338,46.642587],[127.241185,46.651977],[127.275692,46.644697],[127.290163,46.657674],[127.321469,46.670648],[127.356115,46.673706],[127.408432,46.666851],[127.422485,46.648073],[127.446974,46.647124],[127.463114,46.632983],[127.481759,46.628445],[127.505831,46.5992],[127.509727,46.539924],[127.517936,46.529879],[127.549938,46.526284],[127.569696,46.512535],[127.589454,46.514651],[127.626326,46.538444],[127.681565,46.564023],[127.696453,46.554194],[127.776876,46.58304],[127.790512,46.598989],[127.814723,46.605853],[127.844221,46.576279],[127.860222,46.584097],[127.869822,46.575117],[127.903077,46.578181],[127.928261,46.575117],[127.965551,46.548698],[128.014946,46.531148],[128.048061,46.530619],[128.059888,46.518564],[128.080759,46.519198],[128.08549,46.50841],[128.12111,46.508516],[128.117353,46.5229],[128.137111,46.52639],[128.152834,46.539289],[128.172036,46.522054],[128.20056,46.534743],[128.191376,46.538972],[128.194298,46.565079],[128.238962,46.57723],[128.209047,46.574589],[128.179688,46.589695],[128.147686,46.591596],[128.116379,46.5992],[128.08229,46.61715],[128.07742,46.628762],[128.05474,46.638049],[128.056827,46.654826],[128.028443,46.69121],[128.006458,46.697008],[127.960959,46.741369],[127.92687,46.778537],[127.900294,46.794533],[127.893337,46.810104],[127.874275,46.819255],[127.847699,46.844491],[127.830724,46.86877],[127.770754,46.896923],[127.747935,46.926217],[127.728038,46.926217],[127.723168,46.934928],[127.701741,46.933774],[127.678365,46.948255],[127.686992,46.966089],[127.67113,46.96976],[127.647893,46.988216],[127.63384,46.988321],[127.632866,47.000376],[127.65652,47.007294],[127.684209,47.000481],[127.696175,47.013477],[127.702715,47.004988],[127.729986,47.017774],[127.748909,47.015678],[127.821819,47.062289],[127.8573,47.06899],[127.871631,47.080713],[127.927148,47.068571],[127.943706,47.085632],[127.963325,47.093376],[128.002145,47.085318],[128.012441,47.074747],[128.063367,47.086783],[128.069211,47.076736],[128.109979,47.078097],[128.173288,47.094318],[128.184141,47.104885],[128.198612,47.09798],[128.24258,47.10614],[128.24898,47.130823],[128.284879,47.1533],[128.308115,47.163228],[128.343318,47.157062],[128.358762,47.162706],[128.352223,47.182139],[128.403287,47.204908],[128.40774,47.211172],[128.458387,47.225161],[128.485519,47.244363],[128.484963,47.261889],[128.500268,47.271589],[128.504025,47.284832],[128.492616,47.29901],[128.49679,47.326728],[128.536723,47.356411],[128.546741,47.376294],[128.541036,47.396898],[128.552585,47.407821],[128.537836,47.428413],[128.522253,47.41687],[128.523922,47.399395],[128.512234,47.39669],[128.494146,47.363282],[128.471605,47.344436],[128.45463,47.347039],[128.459361,47.379],[128.449899,47.400123],[128.400922,47.404388],[128.387147,47.412294],[128.378799,47.40366],[128.340117,47.429244],[128.350831,47.437042],[128.347492,47.463649],[128.311872,47.473312],[128.298654,47.500835],[128.258164,47.527306],[128.238267,47.524919],[128.228248,47.541626],[128.256494,47.563307],[128.249676,47.583319],[128.268182,47.599386],[128.295314,47.603531],[128.283348,47.622078],[128.291001,47.632125],[128.275695,47.645692],[128.273469,47.65853],[128.28947,47.675919],[128.294758,47.698992],[128.322168,47.716678],[128.316742,47.738388],[128.273191,47.757404],[128.262755,47.754511],[128.266234,47.783952],[128.282931,47.798821],[128.275974,47.817299],[128.292253,47.836801],[128.320081,47.839483],[128.340257,47.824626],[128.350831,47.854749],[128.339004,47.892482],[128.316046,47.913399],[128.287244,47.928437],[128.250789,47.92545],[128.227553,47.946765],[128.184558,47.953353],[128.163966,47.944397],[128.166331,47.993997],[128.156313,48.008909],[128.163687,48.016004],[128.155617,48.035329],[128.17454,48.057831],[128.163687,48.055776],[128.157426,48.070362],[128.132102,48.07827],[128.112762,48.085355],[128.087995,48.061735],[128.05961,48.077654],[128.049731,48.071389],[128.005067,48.076319],[127.980717,48.097674],[127.87998,48.060707],[127.861335,48.030704],[127.876362,48.028956],[127.889441,48.01004],[127.87664,47.997083],[127.89292,47.982785],[127.891946,47.955],[127.871214,47.951192],[127.865509,47.940691],[127.849369,47.940485],[127.851038,47.923184],[127.815975,47.912678],[127.802896,47.894543],[127.804844,47.86434],[127.784807,47.844745],[127.763241,47.840721],[127.765467,47.822459],[127.722055,47.797479],[127.70828,47.795621],[127.692975,47.777136],[127.677391,47.803054],[127.663755,47.814718],[127.660694,47.83938],[127.629109,47.837523],[127.581941,47.826174],[127.54159,47.832674],[127.513205,47.828857],[127.462697,47.804603],[127.424294,47.795311],[127.405789,47.784675],[127.325783,47.786534],[127.284597,47.789528],[127.280562,47.781783],[127.246194,47.772487],[127.23075,47.78106],[127.190816,47.781164],[127.148657,47.788393],[127.136412,47.776103],[127.116933,47.780441],[127.085348,47.763603],[127.052093,47.762053],[127.033448,47.749344],[126.997133,47.740869],[126.981827,47.723709],[126.931458,47.713162],[126.903909,47.716678],[126.888881,47.729395],[126.844496,47.73229],[126.843939,47.743246],[126.803449,47.74273],[126.79677,47.729498],[126.756559,47.733737],[126.711338,47.713472],[126.715791,47.699716],[126.685736,47.682439],[126.652342,47.673125],[126.624375,47.660187],[126.617836,47.650766],[126.587364,47.638547],[126.58472,47.6141],[126.574841,47.595758],[126.557031,47.585703],[126.542978,47.571395],[126.540613,47.530835],[126.518907,47.49502],[126.533377,47.482557],[126.501514,47.46739],[126.508471,47.457518],[126.466451,47.403868],[126.45198,47.400643],[126.446275,47.379937],[126.189978,47.355265],[125.971806,47.33652],[125.828909,47.320477],[125.716483,47.311308],[125.681698,47.312454],[125.521547,47.294527],[125.475352,47.292442],[125.407452,47.285457],[125.332872,47.2865],[125.331203,47.146819],[125.318819,47.141488],[125.300453,47.117228],[125.285286,47.083225],[125.318541,47.029089],[125.34456,47.013058],[125.343447,46.998175],[125.303653,47.012849],[125.235752,46.963572],[125.158668,46.845542],[125.156164,46.835555],[125.190532,46.826512],[125.190949,46.810209],[125.142389,46.760009],[125.164791,46.747267],[125.180653,46.748004],[125.190949,46.726516],[125.211959,46.7262],[125.21502,46.707443],[125.231578,46.704597],[125.27652,46.674866],[125.27179,46.655248],[125.215438,46.652083],[125.207924,46.661155],[125.18107,46.652821],[125.199019,46.632456],[125.248971,46.588322],[125.235474,46.57797],[125.257319,46.543624],[125.239787,46.527553],[125.26525,46.508833],[125.233665,46.496773],[125.202637,46.537069],[125.161312,46.520045],[125.207228,46.488308],[125.221977,46.49508],[125.250223,46.494445],[125.27012,46.478783],[125.26525,46.467351],[125.240483,46.456764],[125.270816,46.436113],[125.239648,46.411003],[125.218499,46.427426],[125.191784,46.420646],[125.16159,46.42838],[125.156303,46.447339],[125.125831,46.448292],[125.179122,46.477301],[125.172304,46.482805],[125.092159,46.48037],[125.07588,46.489683],[125.062244,46.487143],[125.036642,46.444374],[124.987108,46.430075],[125.016328,46.42107],[125.036086,46.406446],[125.038868,46.386094],[125.027181,46.371674],[125.036781,46.347171],[125.012153,46.343988],[125.017023,46.3355],[125.059044,46.337622],[125.057235,46.279016],[125.052504,46.258191],[124.985299,46.251602],[124.963593,46.238316],[124.968881,46.218007],[124.917677,46.208755],[124.907381,46.170025],[124.931174,46.111346],[124.922269,46.088752],[124.907798,46.077772],[124.875935,46.068602],[124.904598,46.050044],[124.959558,46.070948],[125.001996,46.07404],[125.014797,46.080011],[125.062661,46.083848],[125.07421,46.067216],[125.061548,46.048871],[125.097307,46.056444],[125.105517,46.044924],[125.085341,46.03052],[125.09689,46.016113],[125.147259,46.043964],[125.161729,46.082356],[125.19568,46.094082],[125.223508,46.137551],[125.152825,46.129244],[125.135432,46.164596],[125.107465,46.160125],[125.07908,46.171408],[125.084646,46.238741],[125.064192,46.25936],[125.090629,46.266161],[125.1147,46.253622],[125.112474,46.215668],[125.116926,46.186626],[125.163956,46.196947],[125.187192,46.175559],[125.211959,46.171515],[125.219334,46.143622],[125.25551,46.148626],[125.290295,46.136699],[125.357083,46.147881],[125.366405,46.119017],[125.381711,46.045991],[125.420114,45.885527],[125.695751,45.907456],[125.7073,45.835006],[125.717457,45.836291],[125.711056,45.815513],[125.72344,45.797085],[125.781183,45.799228],[125.785775,45.776078],[125.771304,45.774149],[125.773391,45.762784],[125.719961,45.769324],[125.722049,45.745519],[125.748903,45.749165],[125.806646,45.699594],[125.783966,45.679194],[125.759477,45.687355],[125.752659,45.678013],[125.73151,45.687355],[125.732902,45.664266],[125.715648,45.663299],[125.72984,45.654061],[125.721631,45.646003],[125.731928,45.620854],[125.764486,45.613006],[125.743059,45.596555],[125.754607,45.56977],[125.74612,45.56213],[125.761286,45.531346]]]]}},{"type":"Feature","properties":{"adcode":232700,"name":"大兴安岭地区","center":[124.711526,52.335262],"centroid":[124.201147,52.341079],"childrenNum":4,"level":"city","parent":{"adcode":230000},"subFeatureIndex":12,"acroutes":[100000,230000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.030944,50.98125],[127.011882,51.006885],[126.985584,51.029123],[126.951355,51.049998],[126.922832,51.061881],[126.917683,51.139093],[126.900013,51.200673],[126.926588,51.246396],[126.976262,51.291496],[126.984054,51.318785],[126.964156,51.333096],[126.939807,51.332808],[126.887351,51.321955],[126.876498,51.316287],[126.878028,51.300722],[126.908639,51.283614],[126.921719,51.259671],[126.908778,51.246781],[126.884846,51.244568],[126.841434,51.258805],[126.820285,51.280922],[126.813328,51.311868],[126.819868,51.329158],[126.83726,51.345098],[126.854514,51.346538],[126.904187,51.340489],[126.923527,51.347786],[126.930067,51.359208],[126.923945,51.387128],[126.908361,51.407266],[126.835173,51.413785],[126.791344,51.432569],[126.784248,51.44809],[126.802197,51.465711],[126.812493,51.49414],[126.844078,51.521978],[126.83726,51.536034],[126.813745,51.546262],[126.725113,51.568145],[126.695615,51.578462],[126.679057,51.602238],[126.697007,51.615888],[126.729287,51.627815],[126.741114,51.64222],[126.723861,51.678927],[126.734296,51.711508],[126.712451,51.730456],[126.672935,51.731789],[126.658604,51.76243],[126.622845,51.777362],[126.601,51.808068],[126.580824,51.82479],[126.563292,51.862203],[126.543813,51.885546],[126.519881,51.9048],[126.51028,51.922245],[126.480921,51.931343],[126.462555,51.948494],[126.46812,51.982585],[126.447945,52.009366],[126.450867,52.027716],[126.461859,52.035943],[126.487739,52.04171],[126.514593,52.037361],[126.52489,52.045586],[126.524055,52.060802],[126.537969,52.070157],[126.561762,52.113878],[126.560231,52.133883],[126.499288,52.160385],[126.457267,52.165288],[126.403837,52.184987],[126.344981,52.192148],[126.306996,52.205714],[126.300456,52.220876],[126.317014,52.239421],[126.35806,52.264261],[126.409125,52.282318],[126.436535,52.277052],[126.434727,52.297924],[126.400637,52.304597],[126.343311,52.304597],[126.328006,52.310424],[126.317988,52.329119],[126.324527,52.345835],[126.348877,52.357852],[126.353608,52.389286],[126.326753,52.424354],[126.285985,52.45546],[126.270541,52.474375],[126.244521,52.475873],[126.205423,52.466136],[126.190813,52.474094],[126.192761,52.492159],[126.213354,52.525274],[126.206536,52.535185],[126.147401,52.572939],[126.093971,52.598899],[126.066978,52.603847],[126.055569,52.582653],[126.044437,52.576302],[126.022036,52.580411],[125.98892,52.603287],[125.968606,52.630348],[125.971249,52.654223],[125.995877,52.675197],[126.06183,52.673426],[126.072544,52.69113],[126.068509,52.705473],[126.050838,52.724746],[126.044159,52.741685],[126.051533,52.747267],[126.108581,52.756477],[126.118043,52.761407],[126.107885,52.77424],[126.054038,52.799616],[126.020366,52.79562],[126.001025,52.769963],[125.985581,52.758524],[125.966658,52.760012],[125.953578,52.781027],[125.93716,52.786698],[125.920324,52.818755],[125.875938,52.847632],[125.855206,52.866379],[125.854928,52.889476],[125.836144,52.898841],[125.807481,52.894947],[125.771861,52.897914],[125.751268,52.881593],[125.722049,52.880294],[125.698534,52.865265],[125.678498,52.860997],[125.666671,52.869997],[125.661801,52.899397],[125.672236,52.922384],[125.723718,52.933687],[125.736797,52.943598],[125.733736,52.970912],[125.751964,52.985534],[125.74445,52.992843],[125.684341,53.008105],[125.642738,53.041385],[125.640512,53.061895],[125.613797,53.08341],[125.588474,53.08101],[125.53073,53.050994],[125.504015,53.061248],[125.503876,53.095318],[125.492467,53.101316],[125.452812,53.107683],[125.410791,53.121613],[125.394651,53.130928],[125.372388,53.132865],[125.343447,53.144666],[125.31548,53.145127],[125.25231,53.180604],[125.194845,53.198378],[125.141972,53.20427],[125.084367,53.204822],[125.038868,53.202613],[124.970272,53.19405],[124.887623,53.16439],[124.909468,53.118108],[124.89611,53.101501],[124.872595,53.099102],[124.856177,53.111466],[124.842958,53.140241],[124.832801,53.145219],[124.78772,53.140518],[124.734429,53.146694],[124.712445,53.162455],[124.724828,53.177749],[124.720793,53.192208],[124.68406,53.206387],[124.615046,53.209609],[124.584296,53.207676],[124.563147,53.201508],[124.496638,53.207676],[124.487037,53.217432],[124.435833,53.223874],[124.412458,53.248711],[124.375864,53.259194],[124.36515,53.280703],[124.348592,53.293658],[124.346087,53.307895],[124.327999,53.332133],[124.302119,53.341586],[124.239367,53.379651],[124.194146,53.373324],[124.169518,53.364979],[124.141968,53.349293],[124.108992,53.355256],[124.086034,53.377175],[124.083668,53.390193],[124.057927,53.404031],[124.042065,53.398166],[124.013959,53.40339],[123.998375,53.4262],[123.980565,53.437005],[123.922683,53.46245],[123.89402,53.481296],[123.865357,53.48971],[123.797595,53.490075],[123.746392,53.500316],[123.718842,53.493733],[123.698249,53.498396],[123.66889,53.533946],[123.621026,53.550112],[123.587771,53.546916],[123.582762,53.524353],[123.569683,53.505161],[123.553404,53.498122],[123.531559,53.507172],[123.558134,53.532119],[123.546725,53.551664],[123.517366,53.55842],[123.49093,53.542715],[123.488703,53.526089],[123.510688,53.509092],[123.499139,53.497848],[123.472424,53.509092],[123.456701,53.536412],[123.394088,53.538148],[123.352902,53.547189],[123.309908,53.560794],[123.28041,53.563624],[123.247573,53.556594],[123.20917,53.535773],[123.179255,53.509914],[123.137373,53.498305],[123.093266,53.508086],[123.052219,53.506806],[122.943968,53.483948],[122.894434,53.462999],[122.826812,53.457234],[122.764198,53.463548],[122.6732,53.459156],[122.607804,53.465378],[122.537817,53.453299],[122.496214,53.458516],[122.461985,53.444329],[122.43527,53.444695],[122.377805,53.471417],[122.3689,53.49227],[122.350116,53.505527],[122.317696,53.496293],[122.299191,53.482576],[122.267188,53.470136],[122.227533,53.461993],[122.189548,53.471051],[122.161441,53.468581],[122.111212,53.427024],[122.077122,53.422353],[122.026197,53.428306],[121.957044,53.428489],[121.911406,53.422902],[121.876064,53.426657],[121.816234,53.413468],[121.754316,53.389368],[121.736089,53.387168],[121.697547,53.392667],[121.661649,53.375158],[121.628116,53.367088],[121.596392,53.352504],[121.49955,53.337181],[121.511516,53.317537],[121.540318,53.310283],[121.556597,53.296965],[121.57552,53.291453],[121.615315,53.258918],[121.637855,53.262228],[121.678902,53.241354],[121.674589,53.221389],[121.67918,53.200772],[121.658727,53.19405],[121.656361,53.178854],[121.665266,53.170563],[121.706313,53.156465],[121.719531,53.146233],[121.748055,53.149091],[121.762943,53.137198],[121.78451,53.104546],[121.775605,53.08978],[121.814981,53.069099],[121.813173,53.054597],[121.802459,53.049886],[121.785484,53.018554],[121.715635,52.998024],[121.677511,52.948044],[121.676676,52.93239],[121.662344,52.912468],[121.626307,52.894483],[121.610306,52.892258],[121.603905,52.872224],[121.620324,52.851067],[121.60154,52.84067],[121.591243,52.824699],[121.537674,52.801568],[121.503028,52.775635],[121.476731,52.772101],[121.454886,52.735357],[121.425944,52.720278],[121.402012,52.700444],[121.389072,52.698023],[121.373071,52.683117],[121.31004,52.676222],[121.293761,52.662707],[121.292648,52.651799],[121.269829,52.638184],[121.246592,52.631748],[121.237131,52.619059],[121.182448,52.599273],[121.194693,52.587042],[121.225582,52.577423],[121.280264,52.586855],[121.302109,52.576675],[121.325624,52.572659],[121.330633,52.55201],[121.353174,52.535746],[121.38128,52.532287],[121.409665,52.523498],[121.416344,52.499271],[121.430675,52.498522],[121.474226,52.482706],[121.495097,52.484765],[121.51889,52.456677],[121.565224,52.46033],[121.590409,52.443189],[121.640082,52.444406],[121.678763,52.419761],[121.658448,52.390318],[121.693373,52.367988],[121.715496,52.343112],[121.714104,52.318128],[121.769343,52.308168],[121.84114,52.282694],[121.864794,52.284387],[121.900692,52.280626],[121.92699,52.285703],[121.947722,52.298394],[121.958435,52.324423],[121.969149,52.327335],[121.976663,52.34377],[122.035658,52.37756],[122.047624,52.394914],[122.040528,52.413105],[122.081853,52.420886],[122.091315,52.427165],[122.080601,52.440284],[122.107455,52.452556],[122.142379,52.494966],[122.140153,52.509936],[122.169233,52.513584],[122.177999,52.489726],[122.207914,52.469225],[122.267188,52.47166],[122.285277,52.476715],[122.310461,52.475311],[122.326045,52.459487],[122.331054,52.434943],[122.342324,52.414136],[122.366952,52.413761],[122.379057,52.395664],[122.399094,52.391631],[122.416486,52.374182],[122.447236,52.393976],[122.462681,52.363484],[122.484108,52.341516],[122.474229,52.324986],[122.478125,52.296232],[122.560497,52.2826],[122.585959,52.266425],[122.678905,52.276676],[122.696576,52.270469],[122.710768,52.256265],[122.760998,52.266895],[122.787296,52.25269],[122.787157,52.239892],[122.766146,52.232644],[122.773799,52.196765],[122.769347,52.17971],[122.744719,52.164439],[122.73804,52.153502],[122.690732,52.140392],[122.629232,52.136619],[122.643981,52.111707],[122.625058,52.067606],[122.650521,52.059007],[122.65219,52.037361],[122.661513,52.023555],[122.664852,51.998675],[122.683914,51.974538],[122.726213,51.978798],[122.724961,51.943093],[122.729552,51.919306],[122.713412,51.907455],[122.706177,51.890194],[122.725656,51.878146],[122.734701,51.854609],[122.732613,51.832674],[122.748615,51.8189],[122.77199,51.779549],[122.768373,51.766805],[122.750145,51.747683],[122.772547,51.720459],[122.774912,51.703984],[122.816098,51.655285],[122.820689,51.633158],[122.841143,51.623999],[122.856309,51.606725],[122.833073,51.588776],[122.832656,51.581613],[122.87398,51.561266],[122.884555,51.549798],[122.880242,51.537754],[122.859092,51.524751],[122.880102,51.510979],[122.878015,51.496628],[122.85464,51.477678],[122.870919,51.455082],[122.900417,51.445312],[122.903478,51.415318],[122.946473,51.405156],[122.966091,51.386936],[122.960108,51.361607],[122.978197,51.331463],[123.002685,51.312157],[123.014373,51.309947],[123.059176,51.321859],[123.113302,51.307641],[123.128051,51.297936],[123.153792,51.300915],[123.167428,51.291592],[123.199569,51.281884],[123.231432,51.279192],[123.231572,51.268711],[123.270809,51.255439],[123.294185,51.254092],[123.339684,51.272461],[123.376695,51.26698],[123.414402,51.278711],[123.440143,51.270923],[123.456005,51.274384],[123.463101,51.286786],[123.487451,51.291785],[123.515557,51.287267],[123.558552,51.288709],[123.582623,51.294668],[123.582484,51.306872],[123.642593,51.319842],[123.661933,51.319169],[123.660403,51.342793],[123.681274,51.351625],[123.685031,51.373986],[123.71105,51.398253],[123.726773,51.397102],[123.764758,51.371107],[123.794673,51.361319],[123.842538,51.367557],[123.85673,51.356329],[123.887758,51.320802],[123.926161,51.300626],[123.939936,51.313117],[123.994618,51.322723],[124.071841,51.320802],[124.090347,51.341353],[124.128193,51.347498],[124.142525,51.341449],[124.162283,51.345866],[124.192476,51.339337],[124.211121,51.348746],[124.239228,51.344618],[124.268864,51.319073],[124.271647,51.308217],[124.31172,51.289574],[124.339548,51.293515],[124.350123,51.272077],[124.365428,51.279384],[124.406474,51.272077],[124.430268,51.301203],[124.426789,51.331847],[124.443625,51.358056],[124.477993,51.362279],[124.490237,51.380413],[124.526414,51.374465],[124.555772,51.375425],[124.587218,51.363719],[124.624508,51.328678],[124.648579,51.332615],[124.693521,51.332711],[124.751265,51.357001],[124.764622,51.38732],[124.783545,51.392211],[124.864664,51.379646],[124.885118,51.387991],[124.885118,51.408129],[124.905989,51.428257],[124.935209,51.437647],[124.942444,51.447419],[124.933261,51.469541],[124.917538,51.474328],[124.928808,51.498542],[124.98363,51.5083],[125.004501,51.529341],[125.047495,51.529628],[125.072819,51.55343],[125.069201,51.578366],[125.060018,51.596797],[125.07421,51.630391],[125.098838,51.658336],[125.128475,51.659004],[125.130284,51.635448],[125.176061,51.639359],[125.214881,51.628102],[125.223369,51.638214],[125.259963,51.630296],[125.289182,51.633921],[125.316036,51.60997],[125.325498,51.618083],[125.351656,51.623903],[125.370023,51.613883],[125.380598,51.58572],[125.424705,51.56289],[125.435558,51.551423],[125.473683,51.528958],[125.493162,51.511074],[125.526139,51.489642],[125.546175,51.464849],[125.578316,51.451059],[125.568855,51.43918],[125.613797,51.400266],[125.623676,51.399212],[125.625763,51.37955],[125.644965,51.369668],[125.647469,51.359496],[125.669593,51.343274],[125.695473,51.337801],[125.717874,51.297936],[125.749738,51.266499],[125.764486,51.261017],[125.766295,51.246973],[125.751825,51.234272],[125.757947,51.227342],[125.82056,51.226957],[125.852006,51.212999],[125.852562,51.202696],[125.877051,51.162617],[125.868146,51.140539],[125.908914,51.139189],[125.932151,51.127326],[125.930759,51.113916],[125.946343,51.108127],[125.972362,51.124915],[125.993651,51.118933],[125.991842,51.098765],[125.97598,51.084575],[126.001999,51.07096],[126.021618,51.06729],[126.009096,51.057244],[126.032749,51.056664],[126.030523,51.050191],[126.059186,51.043524],[126.03428,51.011043],[126.046803,50.997697],[126.04235,50.98183],[126.058908,50.974185],[126.069622,50.980863],[126.07477,50.964023],[126.059186,50.959763],[126.046524,50.945627],[126.044159,50.927999],[126.033028,50.934295],[126.019949,50.92083],[126.02941,50.924802],[126.056542,50.918892],[126.103711,50.923058],[126.131261,50.945821],[126.135992,50.957052],[126.12987,50.974863],[126.181491,50.970314],[126.208206,50.985991],[126.225042,51.001856],[126.243687,51.00321],[126.276106,50.994891],[126.310057,50.995278],[126.371,50.964119],[126.420534,50.929452],[126.443214,50.931099],[126.47633,50.902126],[126.569136,50.904646],[126.610183,50.908426],[126.639541,50.902805],[126.670848,50.914338],[126.687823,50.904162],[126.743201,50.913078],[126.785222,50.915597],[126.867732,50.91521],[126.916431,50.923349],[126.958869,50.924608],[126.975983,50.932068],[126.994767,50.92674],[127.006038,50.932358],[127.001446,50.950662],[127.01856,50.977766],[127.030944,50.98125]]],[[[124.143081,50.56613],[124.084086,50.568668],[124.076572,50.559881],[124.087008,50.539959],[124.026342,50.538396],[124.023421,50.518464],[123.983626,50.510254],[124.001297,50.49256],[124.003384,50.478869],[123.993784,50.441296],[124.005332,50.434541],[123.988914,50.41153],[123.973747,50.400362],[123.939936,50.397423],[123.920317,50.373021],[123.889289,50.383901],[123.879549,50.402518],[123.84059,50.411432],[123.838085,50.430821],[123.825702,50.449518],[123.800517,50.455879],[123.780481,50.437087],[123.789247,50.428863],[123.78382,50.401734],[123.765732,50.378118],[123.787299,50.373707],[123.777698,50.344487],[123.792308,50.340858],[123.798013,50.323688],[123.817353,50.306807],[123.833215,50.307102],[123.838224,50.294633],[123.864661,50.285305],[123.870644,50.270473],[123.860765,50.230375],[123.878853,50.20874],[123.909186,50.210117],[123.930753,50.186898],[123.953989,50.186996],[123.976948,50.208838],[124.000045,50.211199],[124.007558,50.219264],[124.024951,50.210904],[124.054031,50.206182],[124.061823,50.199001],[124.103565,50.222214],[124.102731,50.238732],[124.135429,50.237257],[124.159639,50.226442],[124.166318,50.236274],[124.186076,50.23126],[124.189415,50.216805],[124.233801,50.229195],[124.282918,50.230769],[124.275682,50.214936],[124.286535,50.189555],[124.324799,50.178434],[124.359723,50.201952],[124.344279,50.219067],[124.352488,50.25033],[124.368628,50.258094],[124.349149,50.280787],[124.353184,50.296008],[124.374055,50.31093],[124.347618,50.316623],[124.345253,50.33193],[124.364176,50.360864],[124.394926,50.360178],[124.439868,50.385567],[124.429572,50.405163],[124.432911,50.419169],[124.416632,50.449615],[124.439729,50.458325],[124.444042,50.473489],[124.433746,50.511232],[124.439312,50.536638],[124.433468,50.546698],[124.380177,50.545722],[124.359167,50.53527],[124.342192,50.537907],[124.315894,50.53273],[124.30852,50.544452],[124.26636,50.556269],[124.225453,50.554609],[124.183154,50.557636],[124.143081,50.56613]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"道外区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.85170046875,45.8681990791016],[126.893468046875,45.8511055732422],[126.887345,45.813843],[126.875250273438,45.8054921699219],[126.883468046875,45.768843],[126.87896609375,45.7487709785157],[126.845811796875,45.7258803535156],[126.772393828125,45.7601638007813],[126.742139921875,45.7474568916016],[126.717345,45.7638430000001],[126.70189578125,45.7561635566406],[126.667652617188,45.7860024238281],[126.643985625,45.767202375],[126.627345,45.7638430000001],[126.617345,45.783843],[126.702379179688,45.8158779121094],[126.707345,45.853843],[126.707345,45.863843],[126.697345,45.863843],[126.703155546875,45.8980348945312],[126.76298953125,45.9081990791016],[126.78170046875,45.9194869208984],[126.797345,45.923843],[126.816666289063,45.8893337226563],[126.85170046875,45.8681990791016]]]]}},{"type":"Feature","properties":{"name":"阿城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,45.2638430000001],[127.163922148438,45.2516506171876],[127.155152617188,45.2604195380859],[127.167345,45.2638430000001]]],[[[126.827345,45.663843],[126.830767851563,45.6760353828125],[126.839537382813,45.6672664619141],[126.827345,45.663843]]],[[[127.167345,45.2638430000001],[127.162701445313,45.2792732978516],[127.123961210938,45.2761605048829],[127.111300078125,45.2908577705079],[127.113560820313,45.3189607978516],[127.08197390625,45.3284712958985],[127.07271609375,45.3392147041016],[127.04197390625,45.3484712958985],[127.03271609375,45.3592147041016],[127.015211210938,45.374296491211],[126.916597929688,45.3663722968751],[126.839859648438,45.429848859375],[126.822345,45.4284413886719],[126.812345,45.4292446113281],[126.802345,45.4284413886719],[126.734425078125,45.4338985419922],[126.707345,45.443843],[126.693985625,45.4704836250001],[126.66841921875,45.4998244453125],[126.693985625,45.507202375],[126.709879179688,45.5386232734375],[126.697345,45.563843],[126.75654421875,45.5979750800782],[126.767345,45.633843],[126.79388796875,45.6234090400391],[126.788878203125,45.6573085761719],[126.827345,45.663843],[126.842711210938,45.640732038086],[126.871339140625,45.6598494697266],[126.893350859375,45.6678365302734],[126.931339140625,45.6998494697266],[126.962843046875,45.7112813544922],[127.001339140625,45.7574080634766],[126.961588164063,45.7473928046875],[126.943350859375,45.7798494697266],[126.92533328125,45.7918306708985],[126.913350859375,45.8098494697266],[126.887345,45.813843],[126.893468046875,45.8511055732422],[126.85170046875,45.8681990791016],[126.816666289063,45.8893337226563],[126.797345,45.923843],[126.81142703125,45.9497585273438],[126.84326296875,45.9579274726562],[126.880816679688,45.9870357490235],[126.92326296875,45.9979274726562],[126.927345,46.003843],[126.942535429688,45.9990334296875],[126.973326445313,45.9513497138672],[127.022154570313,45.8986525703125],[127.037725859375,45.8842244697266],[127.059859648438,45.8603340888672],[127.102535429688,45.8290334296876],[127.112154570313,45.7986525703125],[127.136846953125,45.7869985175782],[127.172432890625,45.6745943427735],[127.232218046875,45.5985695625001],[127.295220976563,45.6150777412109],[127.312535429688,45.5990334296876],[127.342784453125,45.5577913642579],[127.49963015625,45.5166939521485],[127.512535429688,45.5286525703125],[127.531011992188,45.5485921455078],[127.542511015625,45.5490474677735],[127.565592070313,45.5368331123048],[127.6366028125,45.555439069336],[127.647345,45.543843],[127.631300078125,45.5188631416015],[127.65170046875,45.4850429511719],[127.64298953125,45.4681990791016],[127.629049101563,45.4574391914062],[127.61298953125,45.4181990791016],[127.60170046875,45.4094869208985],[127.586265898438,45.3894869208985],[127.54170046875,45.3981990791016],[127.514952421875,45.4143349433594],[127.474620390625,45.35993675],[127.494327421875,45.3272658515626],[127.49156375,45.3085512519532],[127.506485625,45.2705940986328],[127.417061796875,45.3057485175782],[127.411607695313,45.2688430000001],[127.41677859375,45.233843],[127.37298953125,45.2159206367188],[127.38170046875,45.2081990791016],[127.4101965625,45.1965364814453],[127.397345,45.163843],[127.381065703125,45.1675649238282],[127.356339140625,45.1853652167969],[127.327345,45.1754091621094],[127.292345,45.1874282050781],[127.262345,45.1771260810548],[127.245191679688,45.1830159736329],[127.255777617188,45.213843],[127.24615359375,45.2418685126953],[127.224766875,45.2345235419922],[127.193624296875,45.2601210761719],[127.167345,45.2638430000001]]]]}},{"type":"Feature","properties":{"name":"巴彦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,46.4438430000001],[126.830767851563,46.4316506171876],[126.839537382813,46.4404195380859],[126.850728789063,46.4764681220703],[126.897276640625,46.5060201240235],[126.983170195313,46.5280178046875],[127.001519804688,46.5396681953126],[127.023170195313,46.5480178046876],[127.031519804688,46.5596681953125],[127.043170195313,46.5680178046875],[127.054918242188,46.5844118476563],[127.087345,46.5908193183594],[127.102779570313,46.5877693916016],[127.121519804688,46.5996681953125],[127.143170195313,46.6080178046875],[127.181710234375,46.6398256660156],[127.242345,46.6518068671875],[127.269386015625,46.6464632392579],[127.301519804688,46.6596681953125],[127.317345,46.663843],[127.337515898438,46.6717732978516],[127.367345,46.6673653388672],[127.385484648438,46.6700460029297],[127.42170046875,46.6481990791016],[127.482608671875,46.6232704902344],[127.503140898438,46.589233625],[127.500128203125,46.5688430000001],[127.503082304688,46.548843],[127.500299101563,46.5300038886719],[127.585426054688,46.513637921875],[127.625343046875,46.5377169013672],[127.647345,46.543843],[127.640928984375,46.5285707832031],[127.665318632813,46.4971041083985],[127.660714140625,46.4765657783203],[127.67142703125,46.4479274726563],[127.699488554688,46.4117244697266],[127.65547,46.3463564277344],[127.607823515625,46.3134615302735],[127.629224882813,46.2805971503906],[127.61326296875,46.2379274726563],[127.60142703125,46.2197585273438],[127.589176054688,46.1870119453125],[127.560347929688,46.142743756836],[127.56361453125,46.1281728339844],[127.529874296875,46.1048744941407],[127.534586210938,46.083843],[127.53107546875,46.0681728339844],[127.556827421875,46.0503908515625],[127.53326296875,46.0341188789063],[127.54142703125,46.0179274726563],[127.547345,46.013843],[127.551881132813,45.9983803535156],[127.564381132813,45.9879964423828],[127.541881132813,45.9693056464844],[127.527662382813,45.9365126777344],[127.457218046875,45.9168172431641],[127.39806765625,45.9228469062501],[127.357857695313,45.8998183417969],[127.36377078125,45.9578517890625],[127.322808867188,45.9693056464844],[127.297345,45.973843],[127.2886340625,46.0051302314454],[127.2660559375,46.0225557685547],[127.2486340625,46.0451302314454],[127.23170046875,46.0581990791016],[127.22298953125,46.0694869208984],[127.21170046875,46.0781990791016],[127.1986340625,46.0951302314453],[127.15373171875,46.1297872138672],[127.142345,46.1281038642579],[127.104386015625,46.1337136054688],[127.08298953125,46.1694869208985],[127.049303007813,46.1954866767578],[127.017218046875,46.2491384101562],[127.02375125,46.293349225586],[127.064761992188,46.325005109375],[127.08170046875,46.3727620673829],[127.061529570313,46.3883309150391],[127.064390898438,46.4076998115235],[127.056143828125,46.4181990791016],[127.02298953125,46.3981990791016],[126.971344023438,46.3838185859375],[126.932135039063,46.3896132636719],[126.892554960938,46.3780727363282],[126.872345,46.381059796875],[126.835240507813,46.3755763984376],[126.8027746875,46.3996456123047],[126.76490359375,46.3940492988282],[126.757345,46.403843],[126.76271609375,46.4084712958984],[126.77197390625,46.4192147041016],[126.827345,46.4438430000001]]]]}},{"type":"Feature","properties":{"name":"宾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.157432890625,45.9847408271484],[127.202345,45.9781038642579],[127.263511992188,45.9871431708985],[127.297345,45.973843],[127.322808867188,45.9693056464844],[127.36377078125,45.9578517890625],[127.357857695313,45.8998183417969],[127.39806765625,45.9228469062501],[127.457218046875,45.9168172431641],[127.527662382813,45.9365126777344],[127.541881132813,45.9693056464844],[127.564381132813,45.9879964423828],[127.551881132813,45.9983803535156],[127.547345,46.013843],[127.6025403125,46.0191701484375],[127.626070585938,46.0063832832032],[127.690050078125,46.010196149414],[127.70656375,45.9392110419923],[127.783111601563,45.9666756416016],[127.780474882813,45.9224733710938],[127.908140898438,45.9300826240235],[127.977808867188,45.9151973701172],[128.012891875,45.9397042060547],[128.046886015625,45.9376784492188],[128.113258085938,45.9016115546876],[128.16755984375,45.9210964179688],[128.243970976563,45.9388747382813],[128.257345,45.9538430000001],[128.267345,45.9538430000001],[128.284215117188,45.9421938300781],[128.278980742188,45.9188430000001],[128.317003203125,45.9046169257813],[128.311221953125,45.8788430000001],[128.31720828125,45.8521480537109],[128.280533476563,45.8603700996094],[128.271221953125,45.818843],[128.275557890625,45.7995131660156],[128.255513945313,45.7856740546875],[128.247345,45.753843],[128.224351835938,45.7496456123047],[128.237345,45.743843],[128.24322390625,45.72855003125],[128.2191809375,45.7092958808594],[128.225089140625,45.6617757392579],[128.176202421875,45.6477980781251],[128.206832304688,45.5956911445313],[128.1879309375,45.5720864082031],[128.137735625,45.5913796210938],[128.112310820313,45.5882167792969],[128.022916289063,45.6008010078125],[128.012896757813,45.5882900214844],[127.981793242188,45.5793959785156],[127.932608671875,45.5481044746094],[127.907345,45.553843],[127.8523840625,45.559247663086],[127.842066679688,45.5584188056641],[127.805943632813,45.5785744453125],[127.756104765625,45.5884712958985],[127.737369414063,45.5464888740235],[127.694556914063,45.5622121406251],[127.673765898438,45.5380800605469],[127.647345,45.543843],[127.6366028125,45.555439069336],[127.565592070313,45.5368331123048],[127.542511015625,45.5490474677735],[127.531011992188,45.5485921455078],[127.512535429688,45.5286525703125],[127.49963015625,45.5166939521485],[127.342784453125,45.5577913642579],[127.312535429688,45.5990334296876],[127.295220976563,45.6150777412109],[127.232218046875,45.5985695625001],[127.172432890625,45.6745943427735],[127.136846953125,45.7869985175782],[127.112154570313,45.7986525703125],[127.102535429688,45.8290334296876],[127.059859648438,45.8603340888672],[127.037725859375,45.8842244697266],[127.022154570313,45.8986525703125],[126.973326445313,45.9513497138672],[126.942535429688,45.9990334296875],[126.927345,46.003843],[126.940113554688,46.0203853583985],[127.04189578125,46.0354262519531],[127.121646757813,46.0063271308594],[127.157432890625,45.9847408271484]]],[[[127.583922148438,46.0360353828125],[127.587345,46.0238430000001],[127.575152617188,46.0272664619141],[127.583922148438,46.0360353828125]]]]}},{"type":"Feature","properties":{"name":"道里区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.627345,45.7638430000001],[126.609195585938,45.7419930244141],[126.57095828125,45.7102303291016],[126.545045195313,45.6790377021484],[126.492808867188,45.6637081123047],[126.501881132813,45.6383803535157],[126.5214465625,45.6221279121094],[126.491881132813,45.6093056464844],[126.447345,45.5738430000001],[126.43142703125,45.5779274726562],[126.404176054688,45.5956740546875],[126.349635039063,45.6160817695313],[126.286705351563,45.6019741035157],[126.252623320313,45.5876595283203],[126.23037234375,45.5926479316406],[126.234991484375,45.5720394111328],[126.162359648438,45.5465792060548],[126.148492460938,45.5666628242187],[126.153468046875,45.588843],[126.15107546875,45.5995131660157],[126.16326296875,45.6079274726563],[126.17142703125,45.6272139716797],[126.15142703125,45.6579274726563],[126.147345,45.673843],[126.152603789063,45.7063759589844],[126.186099882813,45.6851119208985],[126.235045195313,45.7052254462891],[126.300557890625,45.6922798896485],[126.291226835938,45.7395107246094],[126.307183867188,45.7480178046876],[126.322965117188,45.726001203125],[126.348121367188,45.73097190625],[126.357345,45.743843],[126.389049101563,45.7299398017578],[126.453443632813,45.7377461982423],[126.471886015625,45.7503768134766],[126.506011992188,45.7407863593751],[126.498804960938,45.7664430976563],[126.519893828125,45.7723696113282],[126.54591921875,45.7545479560547],[126.583443632813,45.7677461982422],[126.601246367188,45.7799398017579],[126.617345,45.783843],[126.627345,45.7638430000001]]]]}},{"type":"Feature","properties":{"name":"方正县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.247345,45.753843],[128.247345,45.743843],[128.237345,45.743843],[128.224351835938,45.7496456123047],[128.247345,45.753843]]],[[[128.247345,45.753843],[128.255513945313,45.7856740546875],[128.275557890625,45.7995131660156],[128.271221953125,45.818843],[128.280533476563,45.8603700996094],[128.31720828125,45.8521480537109],[128.311221953125,45.8788430000001],[128.317003203125,45.9046169257813],[128.278980742188,45.9188430000001],[128.284215117188,45.9421938300781],[128.267345,45.9538430000001],[128.276261015625,45.9649764228516],[128.3292590625,45.9715688300781],[128.412896757813,45.9593959785157],[128.505616484375,45.9165212226563],[128.632945585938,45.900683209961],[128.681793242188,45.9293959785156],[128.713453398438,45.9427370429688],[128.764757109375,45.9728963447266],[128.802345,45.9682210517579],[128.835181914063,45.9723055244141],[128.872896757813,45.9493959785157],[128.886236601563,45.9327370429688],[128.90334109375,45.9190419746094],[128.882896757813,45.8842659736329],[128.93123171875,45.8768392158203],[128.957345,45.8800868964844],[128.990987578125,45.8759023261719],[129.022799101563,45.9156276679688],[129.09982546875,45.9060463691407],[129.131793242188,45.9293959785156],[129.209849882813,45.9768086982422],[129.251236601563,46.0449489570313],[129.300142851563,46.0655568671875],[129.3132825,46.1262807441407],[129.331793242188,46.1493959785156],[129.337345,46.153843],[129.371417265625,46.1345803046875],[129.381793242188,46.0982900214844],[129.407432890625,46.0631899238282],[129.422965117188,45.9388442207032],[129.416754179688,45.888886334961],[129.461275664063,45.8627150703126],[129.512125273438,45.8481941962891],[129.522506132813,45.8494850898438],[129.547345,45.843843],[129.55603640625,45.8212288642578],[129.502896757813,45.7982900214844],[129.461793242188,45.7893959785157],[129.452345,45.7669771552735],[129.399898710938,45.7735005927735],[129.404254179688,45.7384871650391],[129.330611601563,45.72776878125],[129.336632109375,45.6793581367188],[129.2992590625,45.668671491211],[129.302984648438,45.638681256836],[129.297345,45.6138430000001],[129.259288359375,45.6200948310547],[129.218800078125,45.5956722236328],[129.170679960938,45.6027834296875],[129.142735625,45.6196395087891],[129.132345,45.6181038642578],[129.103883085938,45.6223104072266],[129.084322539063,45.5969704414063],[129.097345,45.563843],[129.077345,45.553843],[129.067345,45.553843],[129.06298953125,45.5594869208985],[129.009771757813,45.5812679267578],[128.933189726563,45.6274623847656],[128.83298953125,45.6081990791016],[128.769361601563,45.5994869208985],[128.75298953125,45.6394869208985],[128.74170046875,45.6481990791016],[128.732413359375,45.692212140625],[128.71170046875,45.7081990791016],[128.674625273438,45.7562319160157],[128.65298953125,45.7281990791016],[128.64170046875,45.7194869208985],[128.62298953125,45.6681990791016],[128.548424101563,45.6594869208985],[128.530670195313,45.6824935126953],[128.533082304688,45.698843],[128.529215117188,45.7250319648438],[128.45170046875,45.7381990791016],[128.408975859375,45.75499534375],[128.342345,45.7451485419922],[128.312345,45.7495821357422],[128.291783476563,45.7465431953125],[128.247345,45.753843]]]]}},{"type":"Feature","properties":{"name":"呼兰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.697345,45.863843],[126.707345,45.863843],[126.707345,45.853843],[126.697345,45.853843],[126.697345,45.863843]]],[[[126.417345,46.073843],[126.377345,46.073843],[126.377345,46.083843],[126.417345,46.083843],[126.417345,46.073843]]],[[[126.697345,45.863843],[126.681842070313,45.8703548408203],[126.67326296875,45.8579274726563],[126.651705351563,45.8430446601563],[126.631676054688,45.8720552802735],[126.612066679688,45.8676595283203],[126.5820715625,45.8802571845703],[126.55326296875,45.8579274726563],[126.51713015625,45.8444075751954],[126.477725859375,45.8532411933594],[126.49033328125,45.9094771552734],[126.539176054688,45.9220119453125],[126.55142703125,45.9397585273438],[126.595225859375,45.9509975410156],[126.590079375,45.9739400458984],[126.558995390625,45.9669710517578],[126.547345,45.9838430000001],[126.559537382813,45.9872664619141],[126.550767851563,45.9960353828125],[126.547345,45.9838430000001],[126.529390898438,45.9977022529297],[126.545738554688,46.0103231025391],[126.45170046875,46.0481990791016],[126.447345,46.053843],[126.459537382813,46.0572664619141],[126.450767851563,46.0660353828125],[126.447345,46.053843],[126.440704375,46.0572023750001],[126.427345,46.083843],[126.45197390625,46.1392147041016],[126.509986601563,46.1808711982422],[126.596051054688,46.2135311103516],[126.6166028125,46.2595870185547],[126.634400664063,46.2914907050782],[126.627345,46.323843],[126.63298953125,46.3281990791016],[126.641832304688,46.339657819336],[126.652857695313,46.3380281806641],[126.66170046875,46.3494869208985],[126.67298953125,46.3581990791016],[126.686988554688,46.3763368964844],[126.735611601563,46.4123867011719],[126.757345,46.403843],[126.76490359375,46.3940492988282],[126.8027746875,46.3996456123047],[126.835240507813,46.3755763984376],[126.872345,46.381059796875],[126.892554960938,46.3780727363282],[126.932135039063,46.3896132636719],[126.971344023438,46.3838185859375],[127.02298953125,46.3981990791016],[127.056143828125,46.4181990791016],[127.064390898438,46.4076998115235],[127.061529570313,46.3883309150391],[127.08170046875,46.3727620673829],[127.064761992188,46.325005109375],[127.02375125,46.293349225586],[127.017218046875,46.2491384101562],[127.049303007813,46.1954866767578],[127.08298953125,46.1694869208985],[127.104386015625,46.1337136054688],[127.142345,46.1281038642579],[127.15373171875,46.1297872138672],[127.1986340625,46.0951302314453],[127.21170046875,46.0781990791016],[127.22298953125,46.0694869208984],[127.23170046875,46.0581990791016],[127.2486340625,46.0451302314454],[127.2660559375,46.0225557685547],[127.2886340625,46.0051302314454],[127.297345,45.973843],[127.263511992188,45.9871431708985],[127.202345,45.9781038642579],[127.157432890625,45.9847408271484],[127.121646757813,46.0063271308594],[127.04189578125,46.0354262519531],[126.940113554688,46.0203853583985],[126.927345,46.003843],[126.92326296875,45.9979274726562],[126.880816679688,45.9870357490235],[126.84326296875,45.9579274726562],[126.81142703125,45.9497585273438],[126.797345,45.923843],[126.78170046875,45.9194869208984],[126.76298953125,45.9081990791016],[126.703155546875,45.8980348945312],[126.697345,45.863843]]]]}},{"type":"Feature","properties":{"name":"木兰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.808385039063,46.6050295234375],[127.830079375,46.5779396796875],[127.8484778125,46.5802278876953],[127.926871367188,46.568817975586],[127.977061796875,46.5393129707032],[128.022896757813,46.5293959785157],[128.100943632813,46.4993959785156],[128.113023710938,46.5083834052735],[128.110889921875,46.5255519843751],[128.14896609375,46.5302889228516],[128.177345,46.5238430000001],[128.164322539063,46.4928353095704],[128.188985625,46.4758046699219],[128.204801054688,46.4247933173829],[128.195592070313,46.3837197089844],[128.232345,46.3754805732422],[128.263487578125,46.3824611640625],[128.31142703125,46.3550960517578],[128.30326296875,46.3379274726562],[128.29142703125,46.3297585273438],[128.27326296875,46.2979274726563],[128.25490359375,46.2852523017579],[128.247193632813,46.2508534980469],[128.264483671875,46.2389150214844],[128.275377226563,46.190312116211],[128.260538359375,46.1506502509766],[128.23142703125,46.1397585273438],[128.22326296875,46.1279274726563],[128.20142703125,46.1197585273437],[128.187432890625,46.0994893623047],[128.146568632813,46.0841982246094],[128.177447539063,46.0443569160156],[128.148521757813,45.9999355292969],[128.16326296875,45.9897585273438],[128.17201296875,45.9770833564453],[128.20142703125,45.9579274726562],[128.257345,45.9538430000001],[128.243970976563,45.9388747382813],[128.16755984375,45.9210964179688],[128.113258085938,45.9016115546876],[128.046886015625,45.9376784492188],[128.012891875,45.9397042060547],[127.977808867188,45.9151973701172],[127.908140898438,45.9300826240235],[127.780474882813,45.9224733710938],[127.783111601563,45.9666756416016],[127.70656375,45.9392110419923],[127.690050078125,46.010196149414],[127.626070585938,46.0063832832032],[127.6025403125,46.0191701484375],[127.547345,46.013843],[127.54142703125,46.0179274726563],[127.53326296875,46.0341188789063],[127.556827421875,46.0503908515625],[127.53107546875,46.0681728339844],[127.534586210938,46.083843],[127.529874296875,46.1048744941407],[127.56361453125,46.1281728339844],[127.560347929688,46.142743756836],[127.589176054688,46.1870119453125],[127.60142703125,46.2197585273438],[127.61326296875,46.2379274726563],[127.629224882813,46.2805971503906],[127.607823515625,46.3134615302735],[127.65547,46.3463564277344],[127.699488554688,46.4117244697266],[127.67142703125,46.4479274726563],[127.660714140625,46.4765657783203],[127.665318632813,46.4971041083985],[127.640928984375,46.5285707832031],[127.647345,46.543843],[127.652896757813,46.5482900214844],[127.662799101563,46.5606526923829],[127.699210234375,46.5561232734375],[127.721983671875,46.5695095039062],[127.737486601563,46.5675814033204],[127.762896757813,46.5782900214844],[127.808385039063,46.6050295234375]],[[127.575152617188,46.0272664619141],[127.587345,46.0238430000001],[127.583922148438,46.0360353828125],[127.575152617188,46.0272664619141]]]]}},{"type":"Feature","properties":{"name":"南岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.667652617188,45.7860024238281],[126.70189578125,45.7561635566406],[126.717345,45.7638430000001],[126.711041289063,45.7417903876954],[126.682345,45.7382210517579],[126.672345,45.7394649482422],[126.662345,45.7382210517579],[126.645440703125,45.7403237128906],[126.629659453125,45.7276869941407],[126.64435671875,45.6629836250001],[126.592564726563,45.6481941962891],[126.574425078125,45.6504500556641],[126.567345,45.593843],[126.570704375,45.567202375],[126.577345,45.553843],[126.560753203125,45.5298116279298],[126.51326296875,45.5497585273437],[126.457955351563,45.5584749580078],[126.447345,45.5738430000001],[126.491881132813,45.6093056464844],[126.5214465625,45.6221279121094],[126.501881132813,45.6383803535157],[126.492808867188,45.6637081123047],[126.545045195313,45.6790377021484],[126.57095828125,45.7102303291016],[126.609195585938,45.7419930244141],[126.627345,45.7638430000001],[126.643985625,45.767202375],[126.667652617188,45.7860024238281]]]]}},{"type":"Feature","properties":{"name":"平房区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.767345,45.633843],[126.75654421875,45.5979750800782],[126.697345,45.563843],[126.67326296875,45.5479274726563],[126.609869414063,45.5257057929688],[126.59326296875,45.5497585273437],[126.577345,45.553843],[126.570704375,45.567202375],[126.567345,45.593843],[126.60298953125,45.5981990791016],[126.611773710938,45.6196663642579],[126.67564578125,45.6102272773438],[126.74170046875,45.6294869208985],[126.767345,45.633843]]]]}},{"type":"Feature","properties":{"name":"尚志市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.805943632813,45.5785744453125],[127.842066679688,45.5584188056641],[127.8523840625,45.559247663086],[127.907345,45.553843],[127.918453398438,45.5249489570313],[127.939947539063,45.4497627998048],[127.962345,45.4469771552735],[127.997906523438,45.4514003730469],[128.013023710938,45.4392958808594],[128.010460234375,45.4186714912109],[128.061793242188,45.4039943671875],[128.052896757813,45.3982900214844],[128.002896757813,45.3874721503907],[128.025982695313,45.3518190742188],[128.062896757813,45.3293959785157],[128.07369265625,45.3159163642578],[128.115904570313,45.2981288886719],[128.140079375,45.2679396796876],[128.152345,45.2694649482422],[128.162799101563,45.2681648994141],[128.193702421875,45.3067592597656],[128.307345,45.2926235175782],[128.367345,45.3000868964844],[128.382345,45.2982210517578],[128.40021609375,45.3004439521484],[128.425142851563,45.2663252998047],[128.421143828125,45.2341933417969],[128.472896757813,45.2193959785157],[128.484019804688,45.1805007148438],[128.512345,45.1769771552735],[128.532345,45.1794649482422],[128.5789075,45.1736733222657],[128.668917265625,45.1893379951172],[128.6847278125,45.2446938300782],[128.679859648438,45.283843],[128.683023710938,45.3092958808594],[128.667589140625,45.3216573310547],[128.695777617188,45.3568624091797],[128.722896757813,45.3682900214844],[128.731793242188,45.3993959785156],[128.743111601563,45.4186513496094],[128.729508085938,45.4662960029297],[128.762530546875,45.4857076240235],[128.782896757813,45.4693959785156],[128.79537234375,45.4538210273438],[128.836920195313,45.4293959785156],[128.882896757813,45.4382900214844],[128.901793242188,45.4493959785157],[128.952847929688,45.4639943671875],[128.999561796875,45.5304506660157],[129.031793242188,45.5493959785156],[129.067345,45.553843],[129.072345,45.5410353828125],[129.077345,45.553843],[129.097345,45.563843],[129.12724734375,45.5548403144532],[129.119732695313,45.4613307929688],[129.15197390625,45.4384712958985],[129.19197390625,45.4206221748047],[129.177535429688,45.3704653144532],[129.152345,45.3684413886719],[129.127828398438,45.3704109931641],[129.055260039063,45.3428719306641],[129.08271609375,45.3192147041016],[129.094561796875,45.2798702216798],[129.117345,45.2780397773437],[129.132345,45.2792446113281],[129.142623320313,45.2784188056641],[129.1683996875,45.2927999091797],[129.20158328125,45.2333235908204],[129.203189726563,45.213333966797],[129.16271609375,45.1984712958985],[129.13197390625,45.1892147041016],[129.1180871875,45.1730989814453],[129.09271609375,45.1512404609375],[129.10197390625,45.1384712958985],[129.11271609375,45.1292147041016],[129.12197390625,45.1184712958985],[129.133287382813,45.1087252021485],[129.07498171875,45.0827095771485],[129.062667265625,45.0684151435547],[128.99271609375,45.0740358710937],[129.003663359375,45.0556319404297],[129.032877226563,45.0304616523438],[129.031920195313,45.0185646796875],[129.04295046875,44.9987984443359],[129.018619414063,44.9644838691407],[129.04158328125,44.9233235908203],[129.04291140625,44.9067885566407],[129.005655546875,44.9097823310547],[128.98197390625,44.8992147041016],[128.9530871875,44.8830989814453],[128.876788359375,44.8657643867188],[128.853331328125,44.8237258125001],[128.84271609375,44.7884712958985],[128.78197390625,44.7792147041016],[128.758834257813,44.7523555732423],[128.731539335938,44.7288430000001],[128.75197390625,44.7112404609375],[128.680885039063,44.6599306464844],[128.662345,44.6584413886719],[128.652345,44.6592446113282],[128.62755984375,44.6572530341797],[128.523800078125,44.6798848701172],[128.487198515625,44.6664443183594],[128.404405546875,44.6730965400391],[128.38271609375,44.6384712958985],[128.361138945313,44.628843],[128.3627746875,44.6085195136719],[128.3519153125,44.5991664863281],[128.352799101563,44.588163678711],[128.28271609375,44.5384712958984],[128.267345,44.533843],[128.2293371875,44.5580232978516],[128.2334778125,44.5247170234376],[128.182926054688,44.4940102363282],[128.13013796875,44.5143013740235],[128.102896757813,44.4982900214844],[128.00380984375,44.4893959785157],[127.982896757813,44.5222743964844],[128.002896757813,44.5382900214844],[128.015162382813,44.58118675],[128.008951445313,44.6311074042969],[128.042896757813,44.6582900214844],[128.064268828125,44.7090041328125],[128.016969023438,44.7225276923829],[127.972345,44.7169771552735],[127.961085234375,44.7437020087891],[127.963023710938,44.7592958808594],[127.934327421875,44.7822762275391],[127.91463015625,44.8290218330079],[127.870704375,44.8385250068359],[127.882896757813,44.8482900214844],[127.891793242188,44.9056484199219],[127.861793242188,44.9182900214844],[127.845904570313,44.9381288886719],[127.80380984375,44.9558663154297],[127.742345,44.9482210517579],[127.730582304688,44.9496840644532],[127.734039335938,44.9774562812501],[127.721793242188,44.9982900214844],[127.712896757813,45.0193959785156],[127.645191679688,45.0340450263672],[127.631890898438,45.0506526923828],[127.612345,45.0482210517579],[127.59658328125,45.0501821113282],[127.542896757813,45.0893959785156],[127.50369265625,45.1059163642579],[127.492896757813,45.1193959785157],[127.461793242188,45.1282900214844],[127.412896757813,45.1593959785156],[127.397345,45.163843],[127.4101965625,45.1965364814453],[127.38170046875,45.2081990791016],[127.37298953125,45.2159206367188],[127.41677859375,45.233843],[127.411607695313,45.2688430000001],[127.417061796875,45.3057485175782],[127.506485625,45.2705940986328],[127.49156375,45.3085512519532],[127.494327421875,45.3272658515626],[127.474620390625,45.35993675],[127.514952421875,45.4143349433594],[127.54170046875,45.3981990791016],[127.586265898438,45.3894869208985],[127.60170046875,45.4094869208985],[127.61298953125,45.4181990791016],[127.629049101563,45.4574391914062],[127.64298953125,45.4681990791016],[127.65170046875,45.4850429511719],[127.631300078125,45.5188631416015],[127.647345,45.543843],[127.673765898438,45.5380800605469],[127.694556914063,45.5622121406251],[127.737369414063,45.5464888740235],[127.756104765625,45.5884712958985],[127.805943632813,45.5785744453125]]]]}},{"type":"Feature","properties":{"name":"双城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.247345,45.1538430000001],[126.259537382813,45.1504195380859],[126.250767851563,45.1416506171875],[126.247345,45.1538430000001]]],[[[126.247345,45.1538430000001],[126.232408476563,45.1465688300782],[126.217345,45.1533357978516],[126.202345,45.1465969062501],[126.17947390625,45.1568715644531],[126.167345,45.133843],[126.15170046875,45.1381990791016],[126.094190703125,45.1466982246095],[126.07298953125,45.1594869208985],[125.9875403125,45.1686452460938],[125.95298953125,45.1894869208984],[125.90170046875,45.1981990791016],[125.855699492188,45.2259468818359],[125.81170046875,45.2381990791016],[125.802935820313,45.2696694160157],[125.791954375,45.268046491211],[125.77298953125,45.2794869208985],[125.75170046875,45.2881990791016],[125.712857695313,45.339657819336],[125.702345,45.3381038642579],[125.684342070313,45.3407643867188],[125.709136992188,45.403843],[125.69170046875,45.4481990791016],[125.68047,45.4885353828125],[125.693375273438,45.4984987617188],[125.687345,45.513843],[125.7451965625,45.5197444892578],[125.757345,45.5338430000001],[125.768453398438,45.5249489570313],[125.781964140625,45.5080770087891],[125.832183867188,45.5194850898438],[125.860987578125,45.5159023261719],[125.871793242188,45.5293959785157],[125.902940703125,45.5543404365235],[125.923013945313,45.5884828925782],[125.921724882813,45.598843],[125.922965117188,45.6088430000001],[125.920582304688,45.6280019355469],[125.937345,45.6300868964844],[125.984791289063,45.6241854072266],[125.979405546875,45.6674843574219],[125.998453398438,45.6827370429688],[126.026920195313,45.7182900214844],[126.062896757813,45.6993959785156],[126.076236601563,45.6827370429688],[126.147345,45.673843],[126.15142703125,45.6579274726563],[126.17142703125,45.6272139716797],[126.16326296875,45.6079274726563],[126.15107546875,45.5995131660157],[126.153468046875,45.588843],[126.148492460938,45.5666628242187],[126.162359648438,45.5465792060548],[126.234991484375,45.5720394111328],[126.23037234375,45.5926479316406],[126.252623320313,45.5876595283203],[126.286705351563,45.6019741035157],[126.349635039063,45.6160817695313],[126.404176054688,45.5956740546875],[126.43142703125,45.5779274726562],[126.447345,45.5738430000001],[126.457955351563,45.5584749580078],[126.51326296875,45.5497585273437],[126.560753203125,45.5298116279298],[126.577345,45.553843],[126.59326296875,45.5497585273437],[126.609869414063,45.5257057929688],[126.67326296875,45.5479274726563],[126.697345,45.563843],[126.709879179688,45.5386232734375],[126.693985625,45.507202375],[126.66841921875,45.4998244453125],[126.693985625,45.4704836250001],[126.707345,45.443843],[126.696851835938,45.4302480292969],[126.667345,45.4258876777344],[126.61298953125,45.4339199042969],[126.62170046875,45.3981990791016],[126.638404570313,45.3705086494141],[126.645636015625,45.3215615058594],[126.59170046875,45.2994869208985],[126.58298953125,45.2881990791016],[126.57170046875,45.2794869208985],[126.56298953125,45.2681990791016],[126.55170046875,45.2594869208985],[126.547345,45.253843],[126.5425403125,45.23659690625],[126.517345,45.2403206611329],[126.502345,45.2381038642578],[126.492203398438,45.2396028876954],[126.438595,45.2271810126953],[126.4110559375,45.2312502265625],[126.35111453125,45.1868086982422],[126.331954375,45.1896395087891],[126.305289335938,45.1735536933594],[126.292345,45.1903206611328],[126.276324492188,45.1695638251954],[126.25170046875,45.1594869208985],[126.247345,45.1538430000001]]]]}},{"type":"Feature","properties":{"name":"松北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.547345,45.9838430000001],[126.550767851563,45.9960353828125],[126.559537382813,45.9872664619141],[126.547345,45.9838430000001]]],[[[126.447345,46.053843],[126.450767851563,46.0660353828125],[126.459537382813,46.0572664619141],[126.447345,46.053843]]],[[[126.447345,46.053843],[126.45170046875,46.0481990791016],[126.545738554688,46.0103231025391],[126.529390898438,45.9977022529297],[126.547345,45.9838430000001],[126.558995390625,45.9669710517578],[126.590079375,45.9739400458984],[126.595225859375,45.9509975410156],[126.55142703125,45.9397585273438],[126.539176054688,45.9220119453125],[126.49033328125,45.9094771552734],[126.477725859375,45.8532411933594],[126.51713015625,45.8444075751954],[126.55326296875,45.8579274726563],[126.5820715625,45.8802571845703],[126.612066679688,45.8676595283203],[126.631676054688,45.8720552802735],[126.651705351563,45.8430446601563],[126.67326296875,45.8579274726563],[126.681842070313,45.8703548408203],[126.697345,45.863843],[126.697345,45.853843],[126.707345,45.853843],[126.702379179688,45.8158779121094],[126.617345,45.783843],[126.601246367188,45.7799398017579],[126.583443632813,45.7677461982422],[126.54591921875,45.7545479560547],[126.519893828125,45.7723696113282],[126.498804960938,45.7664430976563],[126.506011992188,45.7407863593751],[126.471886015625,45.7503768134766],[126.453443632813,45.7377461982423],[126.389049101563,45.7299398017578],[126.357345,45.743843],[126.351163359375,45.7585646796875],[126.353468046875,45.768843],[126.350103789063,45.783843],[126.357496367188,45.8168325019531],[126.337579375,45.8305867744141],[126.358121367188,45.8794985175781],[126.325513945313,45.9020119453126],[126.310186796875,45.9242116523438],[126.313468046875,45.938843],[126.309283476563,45.9575057197266],[126.270875273438,45.9718764472657],[126.2326184375,45.9632997871094],[126.221329375,46.0072829414062],[126.173360625,46.0404030585938],[126.167345,46.0638430000001],[126.210572539063,46.0567421699219],[126.235889921875,46.0720137763672],[126.318761015625,46.0597670722656],[126.343414335938,46.0917055488281],[126.377345,46.083843],[126.377345,46.073843],[126.417345,46.073843],[126.417345,46.083843],[126.427345,46.083843],[126.440704375,46.0572023750001],[126.447345,46.053843]]]]}},{"type":"Feature","properties":{"name":"通河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.53298953125,46.5994869208984],[128.565240507813,46.5755763984375],[128.59990359375,46.5806990791015],[128.63205203125,46.5680611396485],[128.6790246875,46.5750026679688],[128.69298953125,46.5394869208985],[128.702955351563,46.4808058906251],[128.787345,46.4932759833985],[128.831832304688,46.4867018867188],[128.855264921875,46.5170577216797],[128.891636992188,46.5224330878907],[128.95298953125,46.5094869208985],[129.010142851563,46.4845107246094],[129.02170046875,46.4994869208985],[129.03298953125,46.5081990791016],[129.070616484375,46.5569490791016],[129.10982546875,46.5332985664063],[129.157642851563,46.5403646064453],[129.197345,46.533843],[129.225738554688,46.5111074042969],[129.218883085938,46.4560073066406],[129.241793242188,46.4182900214844],[129.262896757813,46.4093959785157],[129.271793242188,46.3882900214844],[129.295904570313,46.3781288886719],[129.311793242188,46.3582900214844],[129.32334109375,46.3490419746094],[129.30865359375,46.3240566230469],[129.421016875,46.3045021796875],[129.423824492188,46.2819496894532],[129.341793242188,46.1793959785157],[129.337345,46.153843],[129.331793242188,46.1493959785156],[129.3132825,46.1262807441407],[129.300142851563,46.0655568671875],[129.251236601563,46.0449489570313],[129.209849882813,45.9768086982422],[129.131793242188,45.9293959785156],[129.09982546875,45.9060463691407],[129.022799101563,45.9156276679688],[128.990987578125,45.8759023261719],[128.957345,45.8800868964844],[128.93123171875,45.8768392158203],[128.882896757813,45.8842659736329],[128.90334109375,45.9190419746094],[128.886236601563,45.9327370429688],[128.872896757813,45.9493959785157],[128.835181914063,45.9723055244141],[128.802345,45.9682210517579],[128.764757109375,45.9728963447266],[128.713453398438,45.9427370429688],[128.681793242188,45.9293959785156],[128.632945585938,45.900683209961],[128.505616484375,45.9165212226563],[128.412896757813,45.9593959785157],[128.3292590625,45.9715688300781],[128.276261015625,45.9649764228516],[128.267345,45.9538430000001],[128.257345,45.9538430000001],[128.20142703125,45.9579274726562],[128.17201296875,45.9770833564453],[128.16326296875,45.9897585273438],[128.148521757813,45.9999355292969],[128.177447539063,46.0443569160156],[128.146568632813,46.0841982246094],[128.187432890625,46.0994893623047],[128.20142703125,46.1197585273437],[128.22326296875,46.1279274726563],[128.23142703125,46.1397585273438],[128.260538359375,46.1506502509766],[128.275377226563,46.190312116211],[128.264483671875,46.2389150214844],[128.247193632813,46.2508534980469],[128.25490359375,46.2852523017579],[128.27326296875,46.2979274726563],[128.29142703125,46.3297585273438],[128.30326296875,46.3379274726562],[128.31142703125,46.3550960517578],[128.263487578125,46.3824611640625],[128.232345,46.3754805732422],[128.195592070313,46.3837197089844],[128.204801054688,46.4247933173829],[128.188985625,46.4758046699219],[128.164322539063,46.4928353095704],[128.177345,46.5238430000001],[128.187345,46.5238430000001],[128.187345,46.5638430000001],[128.217345,46.5638430000001],[128.217345,46.573843],[128.242418242188,46.5796529365235],[128.282135039063,46.5680727363282],[128.292345,46.5695821357423],[128.302345,46.5681038642578],[128.322345,46.571059796875],[128.342345,46.5681038642578],[128.352345,46.5695821357423],[128.377086210938,46.5659255195313],[128.393160429688,46.5783309150391],[128.389527617188,46.6029073310547],[128.447345,46.6256368232422],[128.49170046875,46.6081990791016],[128.53298953125,46.5994869208984]]]]}},{"type":"Feature","properties":{"name":"五常市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,45.2638430000001],[127.155152617188,45.2604195380859],[127.163922148438,45.2516506171876],[127.193624296875,45.2601210761719],[127.224766875,45.2345235419922],[127.24615359375,45.2418685126953],[127.255777617188,45.213843],[127.245191679688,45.1830159736329],[127.262345,45.1771260810548],[127.292345,45.1874282050781],[127.327345,45.1754091621094],[127.356339140625,45.1853652167969],[127.381065703125,45.1675649238282],[127.397345,45.163843],[127.412896757813,45.1593959785156],[127.461793242188,45.1282900214844],[127.492896757813,45.1193959785157],[127.50369265625,45.1059163642579],[127.542896757813,45.0893959785156],[127.59658328125,45.0501821113282],[127.612345,45.0482210517579],[127.631890898438,45.0506526923828],[127.645191679688,45.0340450263672],[127.712896757813,45.0193959785156],[127.721793242188,44.9982900214844],[127.734039335938,44.9774562812501],[127.730582304688,44.9496840644532],[127.742345,44.9482210517579],[127.80380984375,44.9558663154297],[127.845904570313,44.9381288886719],[127.861793242188,44.9182900214844],[127.891793242188,44.9056484199219],[127.882896757813,44.8482900214844],[127.870704375,44.8385250068359],[127.91463015625,44.8290218330079],[127.934327421875,44.7822762275391],[127.963023710938,44.7592958808594],[127.961085234375,44.7437020087891],[127.972345,44.7169771552735],[128.016969023438,44.7225276923829],[128.064268828125,44.7090041328125],[128.042896757813,44.6582900214844],[128.008951445313,44.6311074042969],[128.015162382813,44.58118675],[128.002896757813,44.5382900214844],[127.982896757813,44.5222743964844],[128.00380984375,44.4893959785157],[128.102896757813,44.4982900214844],[128.13013796875,44.5143013740235],[128.182926054688,44.4940102363282],[128.2334778125,44.5247170234376],[128.2293371875,44.5580232978516],[128.267345,44.533843],[128.224635039063,44.4695241523437],[128.247345,44.453843],[128.242808867188,44.4483803535157],[128.211641875,44.4348635078125],[128.174659453125,44.3495882392578],[128.154620390625,44.3475460029297],[128.081881132813,44.3583803535156],[128.054410429688,44.3741146064453],[128.0518371875,44.3488430000001],[128.0528528125,44.338843],[128.05107546875,44.3213906074219],[128.061881132813,44.3083803535157],[128.095787382813,44.2874678779297],[128.0532434375,44.2521279121094],[128.098668242188,44.2324269843751],[128.082779570313,44.1782888007812],[128.063004179688,44.1803047919922],[128.061798125,44.1684950996094],[128.087232695313,44.1331563544922],[128.052808867188,44.1083803535157],[128.004327421875,44.0976302314454],[127.941881132813,44.0793056464844],[127.912808867188,44.0683803535157],[127.857345,44.063843],[127.8251965625,44.0850868964844],[127.772506132813,44.0732747626953],[127.747345,44.0838430000001],[127.727388945313,44.0998220039062],[127.712423125,44.2026699042969],[127.692896757813,44.1782900214844],[127.676763945313,44.1653682685547],[127.652896757813,44.1793959785156],[127.61662234375,44.1897670722656],[127.58849734375,44.2248891425782],[127.613013945313,44.2584505439453],[127.611724882813,44.268843],[127.613248320313,44.2811074042969],[127.552921171875,44.3294179511719],[127.512896757813,44.3793959785157],[127.473902617188,44.4030800605469],[127.492896757813,44.4182900214844],[127.501793242188,44.4422743964844],[127.460084257813,44.4756728339844],[127.462965117188,44.498843],[127.460611601563,44.5177687812501],[127.532896757813,44.5282900214844],[127.56330203125,44.5461611152344],[127.560689726563,44.5671688056641],[127.521793242188,44.5782900214844],[127.478179960938,44.6039260078125],[127.411793242188,44.6182900214844],[127.392896757813,44.6293959785156],[127.278912382813,44.6382900214844],[127.2598059375,44.6144271064453],[127.202896757813,44.6222743964844],[127.224000273438,44.6391732001954],[127.178912382813,44.6482900214844],[127.162896757813,44.6282900214844],[127.135753203125,44.6065529609375],[127.093702421875,44.6117836738282],[127.060650664063,44.5705062080079],[127.037345,44.563843],[127.03271609375,44.5892147041016],[127.021539335938,44.598843],[127.035777617188,44.6111092353516],[127.030338164063,44.678843],[127.032901640625,44.7107491279298],[126.99197390625,44.7684712958984],[126.977418242188,44.8168123603516],[127.004659453125,44.8909914375],[127.06271609375,44.9084712958985],[127.083453398438,44.9200411201172],[127.081944609375,44.938843],[127.0827746875,44.9491664863281],[127.07197390625,44.9584712958984],[126.993619414063,45.0498232246094],[126.961812773438,45.0772243476563],[126.964273710938,45.1078719306641],[126.9519153125,45.1185195136719],[126.9527746875,45.1291970039063],[126.915811796875,45.1403267646485],[126.892345,45.1384413886719],[126.882345,45.1392446113282],[126.867345,45.1380397773438],[126.852345,45.1392446113282],[126.837345,45.1380397773438],[126.822345,45.1392446113282],[126.792022734375,45.1368080878907],[126.77271609375,45.1592147041016],[126.759097929688,45.1709505439453],[126.675719023438,45.189892194336],[126.597408476563,45.2387703681641],[126.547345,45.253843],[126.55170046875,45.2594869208985],[126.56298953125,45.2681990791016],[126.57170046875,45.2794869208985],[126.58298953125,45.2881990791016],[126.59170046875,45.2994869208985],[126.645636015625,45.3215615058594],[126.638404570313,45.3705086494141],[126.62170046875,45.3981990791016],[126.61298953125,45.4339199042969],[126.667345,45.4258876777344],[126.696851835938,45.4302480292969],[126.707345,45.443843],[126.734425078125,45.4338985419922],[126.802345,45.4284413886719],[126.812345,45.4292446113281],[126.822345,45.4284413886719],[126.839859648438,45.429848859375],[126.916597929688,45.3663722968751],[127.015211210938,45.374296491211],[127.03271609375,45.3592147041016],[127.04197390625,45.3484712958985],[127.07271609375,45.3392147041016],[127.08197390625,45.3284712958985],[127.113560820313,45.3189607978516],[127.111300078125,45.2908577705079],[127.123961210938,45.2761605048829],[127.162701445313,45.2792732978516],[127.167345,45.2638430000001]]]]}},{"type":"Feature","properties":{"name":"香坊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,45.663843],[126.839537382813,45.6672664619141],[126.830767851563,45.6760353828125],[126.788878203125,45.6573085761719],[126.79388796875,45.6234090400391],[126.767345,45.633843],[126.74170046875,45.6294869208985],[126.67564578125,45.6102272773438],[126.611773710938,45.6196663642579],[126.60298953125,45.5981990791016],[126.567345,45.593843],[126.574425078125,45.6504500556641],[126.592564726563,45.6481941962891],[126.64435671875,45.6629836250001],[126.629659453125,45.7276869941407],[126.645440703125,45.7403237128906],[126.662345,45.7382210517579],[126.672345,45.7394649482422],[126.682345,45.7382210517579],[126.711041289063,45.7417903876954],[126.717345,45.7638430000001],[126.742139921875,45.7474568916016],[126.772393828125,45.7601638007813],[126.845811796875,45.7258803535156],[126.87896609375,45.7487709785157],[126.883468046875,45.768843],[126.875250273438,45.8054921699219],[126.887345,45.813843],[126.913350859375,45.8098494697266],[126.92533328125,45.7918306708985],[126.943350859375,45.7798494697266],[126.961588164063,45.7473928046875],[127.001339140625,45.7574080634766],[126.962843046875,45.7112813544922],[126.931339140625,45.6998494697266],[126.893350859375,45.6678365302734],[126.871339140625,45.6598494697266],[126.842711210938,45.640732038086],[126.827345,45.663843]]]]}},{"type":"Feature","properties":{"name":"延寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.067345,45.553843],[129.077345,45.553843],[129.072345,45.5410353828125],[129.067345,45.553843]]],[[[129.067345,45.553843],[129.031793242188,45.5493959785156],[128.999561796875,45.5304506660157],[128.952847929688,45.4639943671875],[128.901793242188,45.4493959785157],[128.882896757813,45.4382900214844],[128.836920195313,45.4293959785156],[128.79537234375,45.4538210273438],[128.782896757813,45.4693959785156],[128.762530546875,45.4857076240235],[128.729508085938,45.4662960029297],[128.743111601563,45.4186513496094],[128.731793242188,45.3993959785156],[128.722896757813,45.3682900214844],[128.695777617188,45.3568624091797],[128.667589140625,45.3216573310547],[128.683023710938,45.3092958808594],[128.679859648438,45.283843],[128.6847278125,45.2446938300782],[128.668917265625,45.1893379951172],[128.5789075,45.1736733222657],[128.532345,45.1794649482422],[128.512345,45.1769771552735],[128.484019804688,45.1805007148438],[128.472896757813,45.2193959785157],[128.421143828125,45.2341933417969],[128.425142851563,45.2663252998047],[128.40021609375,45.3004439521484],[128.382345,45.2982210517578],[128.367345,45.3000868964844],[128.307345,45.2926235175782],[128.193702421875,45.3067592597656],[128.162799101563,45.2681648994141],[128.152345,45.2694649482422],[128.140079375,45.2679396796876],[128.115904570313,45.2981288886719],[128.07369265625,45.3159163642578],[128.062896757813,45.3293959785157],[128.025982695313,45.3518190742188],[128.002896757813,45.3874721503907],[128.052896757813,45.3982900214844],[128.061793242188,45.4039943671875],[128.010460234375,45.4186714912109],[128.013023710938,45.4392958808594],[127.997906523438,45.4514003730469],[127.962345,45.4469771552735],[127.939947539063,45.4497627998048],[127.918453398438,45.5249489570313],[127.907345,45.553843],[127.932608671875,45.5481044746094],[127.981793242188,45.5793959785156],[128.012896757813,45.5882900214844],[128.022916289063,45.6008010078125],[128.112310820313,45.5882167792969],[128.137735625,45.5913796210938],[128.1879309375,45.5720864082031],[128.206832304688,45.5956911445313],[128.176202421875,45.6477980781251],[128.225089140625,45.6617757392579],[128.2191809375,45.7092958808594],[128.24322390625,45.72855003125],[128.237345,45.743843],[128.247345,45.743843],[128.247345,45.753843],[128.291783476563,45.7465431953125],[128.312345,45.7495821357422],[128.342345,45.7451485419922],[128.408975859375,45.75499534375],[128.45170046875,45.7381990791016],[128.529215117188,45.7250319648438],[128.533082304688,45.698843],[128.530670195313,45.6824935126953],[128.548424101563,45.6594869208985],[128.62298953125,45.6681990791016],[128.64170046875,45.7194869208985],[128.65298953125,45.7281990791016],[128.674625273438,45.7562319160157],[128.71170046875,45.7081990791016],[128.732413359375,45.692212140625],[128.74170046875,45.6481990791016],[128.75298953125,45.6394869208985],[128.769361601563,45.5994869208985],[128.83298953125,45.6081990791016],[128.933189726563,45.6274623847656],[129.009771757813,45.5812679267578],[129.06298953125,45.5594869208985],[129.067345,45.553843]]]]}},{"type":"Feature","properties":{"name":"依兰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.057345,46.583843],[130.057345,46.5938430000001],[130.067345,46.5938430000001],[130.067345,46.583843],[130.057345,46.583843]]],[[[130.067345,46.5938430000001],[130.070767851563,46.6060353828125],[130.079537382813,46.5972664619141],[130.067345,46.5938430000001]]],[[[130.057345,46.583843],[130.052388945313,46.5572835517579],[130.022628203125,46.5306917548828],[130.072174101563,46.5185347724609],[130.082525664063,46.5191518378906],[130.125054960938,46.5077608466797],[130.107940703125,46.5878517890625],[130.142628203125,46.5985616279297],[130.191676054688,46.6252156806641],[130.152388945313,46.5529152656251],[130.147345,46.493843],[130.14134890625,46.4890419746094],[130.152896757813,46.4693959785156],[130.161793242188,46.4454116035157],[130.134146757813,46.4232747626954],[130.111417265625,46.385849225586],[130.080079375,46.3897463203125],[130.056143828125,46.3598537421876],[130.019210234375,46.3815627265625],[129.992345,46.3782210517578],[129.935069609375,46.3853450751954],[129.912896757813,46.3754116035157],[129.943975859375,46.3505245185547],[129.982896757813,46.3393959785157],[130.013082304688,46.3216524482422],[130.031793242188,46.2982900214844],[130.048453398438,46.2849489570313],[130.07068484375,46.2571834541016],[130.115904570313,46.2381288886719],[130.131793242188,46.2182900214844],[130.151632109375,46.2024025703126],[130.161793242188,46.1782900214844],[130.222896757813,46.1293959785157],[130.227345,46.123843],[130.222369414063,46.1173952460938],[130.161744414063,46.0724483466797],[130.132345,46.0681038642578],[130.109742460938,46.0714437080079],[130.114908476563,46.0364888740235],[130.099654570313,45.9706557441407],[130.107345,45.923843],[130.058526640625,45.9118526435547],[129.989464140625,45.9273342109375],[129.9421496875,45.9074599433594],[129.920230742188,45.9217317939454],[129.901676054688,45.9175716376954],[129.881007109375,45.9475057197266],[129.85142703125,45.9679274726563],[129.837652617188,45.9878792548828],[129.777725859375,45.9744448066406],[129.784586210938,45.943843],[129.778980742188,45.9188430000001],[129.783468046875,45.898843],[129.779600859375,45.8816115546875],[129.726617460938,45.8934896064453],[129.655797148438,45.8760939765626],[129.6221496875,45.8902260566406],[129.600230742188,45.8759542060548],[129.577345,45.8810848212891],[129.559381132813,45.8770577216797],[129.56361453125,45.8581728339844],[129.55142703125,45.8497585273438],[129.547345,45.843843],[129.522506132813,45.8494850898438],[129.512125273438,45.8481941962891],[129.461275664063,45.8627150703126],[129.416754179688,45.888886334961],[129.422965117188,45.9388442207032],[129.407432890625,46.0631899238282],[129.381793242188,46.0982900214844],[129.371417265625,46.1345803046875],[129.337345,46.153843],[129.341793242188,46.1793959785157],[129.423824492188,46.2819496894532],[129.421016875,46.3045021796875],[129.30865359375,46.3240566230469],[129.32334109375,46.3490419746094],[129.311793242188,46.3582900214844],[129.295904570313,46.3781288886719],[129.271793242188,46.3882900214844],[129.262896757813,46.4093959785157],[129.241793242188,46.4182900214844],[129.218883085938,46.4560073066406],[129.225738554688,46.5111074042969],[129.197345,46.533843],[129.20201296875,46.5796181464844],[129.270479765625,46.6362526679688],[129.34197390625,46.6492147041016],[129.347345,46.653843],[129.36142703125,46.6479274726563],[129.400787382813,46.6378273750001],[129.426339140625,46.6008193183594],[129.477345,46.6222432685547],[129.497345,46.613843],[129.576773710938,46.6092690253907],[129.61170046875,46.5881990791016],[129.63298953125,46.5794869208985],[129.648482695313,46.5416304755859],[129.677345,46.5373653388672],[129.692345,46.5395821357422],[129.747564726563,46.5314217353516],[129.81298953125,46.5581990791016],[129.85170046875,46.5894869208985],[129.885201445313,46.6031978583985],[129.917345,46.623843],[129.923082304688,46.6171858955078],[129.987135039063,46.5641994453125],[130.032183867188,46.58933128125],[130.057345,46.583843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昂昂溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.13125125,47.2270076728516],[124.141793242188,47.1782900214845],[124.182896757813,47.1693959785157],[124.187345,47.1338430000001],[124.18326296875,47.1279274726563],[124.14142703125,47.0997585273438],[124.09326296875,47.0579274726563],[124.071051054688,47.0496169257813],[124.076197539063,47.0266628242188],[124.06326296875,47.0079274726563],[124.00142703125,46.9997585273437],[123.997345,46.993843],[123.89170046875,46.9981990791016],[123.852686796875,47.0135372138672],[123.84298953125,47.0594869208984],[123.807164335938,47.0741487861329],[123.735460234375,47.127309796875],[123.677345,47.113843],[123.6668371875,47.1388619208985],[123.71431765625,47.1481337714844],[123.70060671875,47.1691909003907],[123.735870390625,47.1935396552734],[123.727345,47.2138430000001],[123.747081328125,47.2234542060547],[123.77521609375,47.2108144355469],[123.799698515625,47.2572927070313],[123.823892851563,47.2503932929688],[123.830797148438,47.2372927070312],[123.837345,47.233843],[123.84406375,47.2205617500001],[123.87062625,47.2071242500001],[123.880704375,47.187202375],[123.920616484375,47.180483625],[123.957345,47.2537252021485],[123.99062625,47.27056175],[123.997345,47.2838430000001],[124.06134890625,47.2918398261719],[124.063590117188,47.273843],[124.060289335938,47.2472975898438],[124.13125125,47.2270076728516]],[[123.725152617188,47.1672664619141],[123.737345,47.163843],[123.733922148438,47.1760353828125],[123.725152617188,47.1672664619141]]]]}},{"type":"Feature","properties":{"name":"拜泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.190289335938,47.878325421875],[126.19353640625,47.8238430000001],[126.191749296875,47.793843],[126.1926575,47.7786171699219],[126.180323515625,47.7559255195313],[126.203785429688,47.7048128486328],[126.356095,47.7195131660157],[126.397345,47.7170546699219],[126.432345,47.7191408515626],[126.442369414063,47.7185433173828],[126.517345,47.723843],[126.521671171875,47.5904311347656],[126.547345,47.583843],[126.54142703125,47.5697585273437],[126.53326296875,47.5279274726563],[126.519698515625,47.4956410957032],[126.52361453125,47.4781728339844],[126.505323515625,47.4655440498048],[126.469366484375,47.4121419501954],[126.442393828125,47.3935207343751],[126.437345,47.373843],[126.315308867188,47.3661934638672],[126.132628203125,47.3485616279297],[125.992237578125,47.3365785957032],[125.822628203125,47.3185616279297],[125.584664335938,47.3036458564454],[125.557345,47.293843],[125.563414335938,47.3433388496094],[125.561636992188,47.3607942939453],[125.582896757813,47.3784529853516],[125.580855742188,47.3984529853516],[125.592808867188,47.4083803535156],[125.601881132813,47.4693056464844],[125.6399621875,47.4804805732422],[125.645484648438,47.5346334052734],[125.6315246875,47.5590071845703],[125.6435559375,47.5690004707032],[125.632808867188,47.6293056464844],[125.59541140625,47.6523708320313],[125.573756132813,47.7100106025391],[125.570308867188,47.7438430000001],[125.57361453125,47.7762953925782],[125.562808867188,47.7893056464844],[125.502808867188,47.7999977851563],[125.515235625,47.8264430976563],[125.631881132813,47.8393056464844],[125.707345,47.843843],[125.712535429688,47.8486525703125],[125.832271757813,47.8590438056641],[125.847799101563,47.8584285712891],[126.125982695313,47.8715779853516],[126.137345,47.883843],[126.190289335938,47.878325421875]]]]}},{"type":"Feature","properties":{"name":"富拉尔基区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.733922148438,47.1760353828125],[123.737345,47.163843],[123.725152617188,47.1672664619141],[123.733922148438,47.1760353828125]]],[[[123.417345,47.333843],[123.405152617188,47.3372664619141],[123.413922148438,47.3460353828126],[123.417345,47.333843]]],[[[123.417345,47.333843],[123.430704375,47.3404836250001],[123.503985625,47.3472023750001],[123.530704375,47.360483625],[123.557345,47.3638430000001],[123.605396757813,47.3444893623048],[123.596944609375,47.2873140693359],[123.614449492188,47.2646364570313],[123.643922148438,47.2468593574219],[123.670767851563,47.2508266425782],[123.69170046875,47.2381990791016],[123.71298953125,47.2294869208985],[123.72170046875,47.2181990791016],[123.727345,47.2138430000001],[123.735870390625,47.1935396552734],[123.70060671875,47.1691909003907],[123.71431765625,47.1481337714844],[123.6668371875,47.1388619208985],[123.677345,47.113843],[123.657345,47.113843],[123.657345,47.0938430000001],[123.627345,47.0938430000001],[123.627345,47.073843],[123.617345,47.073843],[123.599386015625,47.0812227607423],[123.58216921875,47.0778206611329],[123.535928984375,47.0918679023438],[123.523170195313,47.1096681953126],[123.503394804688,47.123843],[123.528995390625,47.1421932197266],[123.54377078125,47.1982033515625],[123.52377078125,47.2468709541016],[123.47802859375,47.2589394355469],[123.463170195313,47.2796681953125],[123.451519804688,47.2880178046875],[123.443170195313,47.3096681953125],[123.425694609375,47.3221932197266],[123.417345,47.333843]]]]}},{"type":"Feature","properties":{"name":"富裕县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.937345,47.913843],[124.949537382813,47.910419538086],[124.940767851563,47.9016506171875],[124.937345,47.913843]]],[[[124.937345,47.913843],[124.90271609375,47.9034169746094],[124.914312773438,47.8721712470703],[125.009034453125,47.8797823310547],[125.043204375,47.8645351386719],[125.041944609375,47.848843],[125.044849882813,47.8126601386719],[124.992345,47.8084413886719],[124.937139921875,47.8128774238282],[124.845860625,47.7481587958985],[124.82271609375,47.7500185371094],[124.86197390625,47.6984712958985],[124.90271609375,47.6692147041016],[124.96197390625,47.6184712958985],[124.99271609375,47.5992147041016],[125.00197390625,47.5384712958985],[125.017345,47.4738430000001],[125.01271609375,47.4684712958985],[124.903277617188,47.4355208564453],[124.87271609375,47.4184712958985],[124.82197390625,47.4092147041016],[124.790660429688,47.3728700996094],[124.70197390625,47.3392147041016],[124.627486601563,47.3061495185548],[124.552803984375,47.3376009345703],[124.517345,47.3404500556641],[124.4822278125,47.3376284003907],[124.477345,47.353843],[124.469698515625,47.3720449042969],[124.473668242188,47.3897487617188],[124.14142703125,47.3979274726563],[124.117345,47.413843],[124.10271609375,47.4392147041016],[124.088546171875,47.4514235664063],[123.997345,47.4438430000001],[123.991265898438,47.460400006836],[123.992877226563,47.4804616523438],[123.9719153125,47.4985195136719],[123.972955351563,47.5114461494141],[123.995211210938,47.5306215644532],[124.022667265625,47.5284151435547],[124.0366028125,47.5445870185548],[124.057896757813,47.5629335761719],[124.093048125,47.5786196113282],[124.081724882813,47.5989150214844],[124.132921171875,47.6608058906251],[124.162345,47.6584413886719],[124.177345,47.6596462226563],[124.197345,47.6580397773438],[124.215108671875,47.6594667792969],[124.211138945313,47.7088430000001],[124.2327746875,47.7184969306641],[124.2319153125,47.7291664863281],[124.244273710938,47.7398140693359],[124.241920195313,47.7691213203126],[124.256031523438,47.7944161201173],[124.3037121875,47.8087709785157],[124.28197390625,47.8184712958984],[124.27271609375,47.8312404609376],[124.29271609375,47.8484712958985],[124.297345,47.8638430000001],[124.311295195313,47.873843],[124.291236601563,47.8882228828125],[124.295186796875,47.9082228828126],[124.281519804688,47.9180178046876],[124.273170195313,47.9387337470703],[124.323170195313,47.9580178046876],[124.327345,47.963843],[124.418746367188,47.9695723701173],[124.512628203125,47.9985616279297],[124.524752226563,48.0121321845704],[124.652437773438,48.0197426582032],[124.66806765625,47.9691243720703],[124.732628203125,47.9785616279297],[124.743189726563,48.0015743232422],[124.887345,48.023843],[124.929527617188,48.0165023017579],[124.932965117188,47.988843],[124.930474882813,47.9688198066407],[124.937345,47.913843]]]]}},{"type":"Feature","properties":{"name":"甘南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.40326296875,48.183319928711],[124.426519804688,48.1764162421875],[124.44697390625,48.1810018134766],[124.465557890625,48.1681728339844],[124.461221953125,48.148843],[124.464932890625,48.1322951484376],[124.426046171875,48.1177437568359],[124.417345,48.0838430000001],[124.376519804688,48.0733663154297],[124.360714140625,48.0311202216797],[124.363619414063,48.0181673408203],[124.321070585938,47.9895186591797],[124.32361453125,47.9781728339844],[124.3094934375,47.9684236884766],[124.327345,47.963843],[124.323170195313,47.9580178046876],[124.273170195313,47.9387337470703],[124.281519804688,47.9180178046876],[124.295186796875,47.9082228828126],[124.291236601563,47.8882228828125],[124.311295195313,47.873843],[124.297345,47.8638430000001],[124.24923953125,47.8739076972657],[124.208482695313,47.8458632636719],[124.17252078125,47.8070522285157],[124.100250273438,47.80991721875],[124.082535429688,47.8290334296875],[124.031363554688,47.8386525703125],[124.032550078125,47.8086568427735],[123.982935820313,47.7929482246094],[123.947608671875,47.8116414619141],[123.762633085938,47.7410573554688],[123.712154570313,47.7290334296875],[123.667515898438,47.7173372626953],[123.642276640625,47.6782509589844],[123.542906523438,47.6821895576172],[123.532310820313,47.6377095771485],[123.517345,47.6238430000001],[123.49197390625,47.6192147041016],[123.460787382813,47.6077626777344],[123.437511015625,47.6096334052734],[123.41271609375,47.6492147041016],[123.392652617188,47.6665010810547],[123.206085234375,47.6515102363282],[123.182623320313,47.6384188056641],[123.143961210938,47.6415254951172],[123.13271609375,47.6284712958984],[123.121539335938,47.618843],[123.141959257813,47.6012532783204],[123.095367460938,47.5872255683595],[123.077345,47.5938430000001],[123.072857695313,47.6223201728516],[123.043858671875,47.6158193183594],[122.984678984375,47.667212140625],[122.937345,47.6566011787109],[122.915655546875,47.6614638496094],[122.907345,47.693843],[122.9648059375,47.7107051826172],[123.071959257813,47.7563930488281],[123.150308867188,47.7793856025391],[123.20451296875,47.8183962226563],[123.233502226563,47.8532924628907],[123.271143828125,47.9143166328126],[123.287345,47.953843],[123.352628203125,47.9685616279297],[123.422061796875,47.9891243720704],[123.501798125,48.0110878730469],[123.561265898438,48.0324263740235],[123.752061796875,48.1991243720703],[123.852628203125,48.2685616279297],[123.892061796875,48.2991243720704],[123.932628203125,48.3285616279297],[123.991783476563,48.3744057441406],[124.079058867188,48.4377455878907],[124.123189726563,48.4579991889649],[124.232799101563,48.5175618720703],[124.247345,48.533843],[124.298565703125,48.5206981635743],[124.303468046875,48.498843],[124.301221953125,48.488843],[124.303468046875,48.478843],[124.299371367188,48.4605818916016],[124.3239075,48.4289223457031],[124.309454375,48.4067287421876],[124.314586210938,48.3838430000001],[124.311221953125,48.368843],[124.313468046875,48.358843],[124.310474882813,48.3454921699219],[124.336651640625,48.3274159980469],[124.35142703125,48.2879274726563],[124.388370390625,48.2668422675781],[124.40142703125,48.2479274726563],[124.415557890625,48.2381728339844],[124.40326296875,48.183319928711]]]]}},{"type":"Feature","properties":{"name":"建华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.957345,47.343843],[123.907345,47.343843],[123.907345,47.353843],[123.916046171875,47.387743756836],[123.94326296875,47.3979274726563],[123.95142703125,47.4197585273438],[123.97326296875,47.4279274726563],[123.98142703125,47.4397585273438],[123.997345,47.4438430000001],[124.088546171875,47.4514235664063],[124.10271609375,47.4392147041016],[124.117345,47.413843],[124.11326296875,47.4079274726563],[124.07377078125,47.3931514716797],[124.06326296875,47.3779274726563],[124.014796171875,47.3684633613282],[123.98326296875,47.3479274726563],[123.957345,47.343843]]]]}},{"type":"Feature","properties":{"name":"克东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.027345,48.283843],[126.189976835938,48.2784883857422],[126.238746367188,48.2794838691407],[126.277345,48.2738430000001],[126.288453398438,48.2649489570313],[126.301793242188,48.2482900214844],[126.318678007813,48.2347664619141],[126.310548125,48.1693959785157],[126.342896757813,48.1782900214844],[126.3724621875,48.195669171875],[126.432628203125,48.1881856513672],[126.481119414063,48.2068245673828],[126.562799101563,48.2169844794922],[126.607232695313,48.1614931464844],[126.661793242188,48.1231447578125],[126.652896757813,48.1182900214844],[126.611656523438,48.1093672919922],[126.613013945313,48.0984828925782],[126.5901575,48.0596004462891],[126.616822539063,48.0382460761719],[126.622965117188,47.988843],[126.620479765625,47.9688430000001],[126.623248320313,47.9465785957032],[126.564273710938,47.8993526435547],[126.561373320313,47.8760170722656],[126.589771757813,47.8277010322266],[126.561793242188,47.7893959785156],[126.552896757813,47.7282900214844],[126.517345,47.723843],[126.442369414063,47.7185433173828],[126.432345,47.7191408515626],[126.397345,47.7170546699219],[126.356095,47.7195131660157],[126.203785429688,47.7048128486328],[126.180323515625,47.7559255195313],[126.1926575,47.7786171699219],[126.191749296875,47.793843],[126.19353640625,47.8238430000001],[126.190289335938,47.878325421875],[126.137345,47.883843],[126.127310820313,47.9171639228516],[126.0983215625,47.9301003242188],[126.054283476563,48.126899640625],[126.09271609375,48.1384712958985],[126.10197390625,48.1575264716798],[126.041124296875,48.1686263251954],[126.042745390625,48.188843],[126.041402617188,48.2055605292969],[126.021871367188,48.2587483955079],[126.027345,48.283843]]]]}},{"type":"Feature","properties":{"name":"克山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.801793242188,48.5481017280274],[125.792896757813,48.4982900214844],[125.78134890625,48.4890419746094],[125.792896757813,48.4693959785157],[125.8137903125,48.3907698798828],[125.83922,48.3590126777344],[125.912125273438,48.3381941962891],[125.932345,48.3407088447266],[125.942471953125,48.3166725898437],[126.018453398438,48.2949489570313],[126.027345,48.283843],[126.021871367188,48.2587483955079],[126.041402617188,48.2055605292969],[126.042745390625,48.188843],[126.041124296875,48.1686263251954],[126.10197390625,48.1575264716798],[126.09271609375,48.1384712958985],[126.054283476563,48.126899640625],[126.0983215625,47.9301003242188],[126.127310820313,47.9171639228516],[126.137345,47.883843],[126.125982695313,47.8715779853516],[125.847799101563,47.8584285712891],[125.832271757813,47.8590438056641],[125.712535429688,47.8486525703125],[125.707345,47.843843],[125.688150664063,47.8761739326173],[125.66224734375,47.8887429023438],[125.65244265625,47.9089430976563],[125.63166140625,47.9187429023438],[125.61244265625,47.8987392402344],[125.584547148438,47.8993080878907],[125.572393828125,47.949150006836],[125.5225403125,47.9481325507813],[125.51244265625,47.9689430976563],[125.469390898438,47.9794393134766],[125.451807890625,48.0515627265625],[125.217345,48.0438430000001],[125.190733671875,48.1037898994141],[125.194351835938,48.148843],[125.187994414063,48.2280165839844],[125.2430871875,48.2446041083985],[125.241944609375,48.258843],[125.243155546875,48.2739583564454],[125.334722929688,48.2906606269532],[125.474303007813,48.2794448066407],[125.470308867188,48.3291664863282],[125.496920195313,48.3520912910156],[125.552374296875,48.3476357246094],[125.56197390625,48.3709316230469],[125.529576445313,48.5194673896485],[125.542623320313,48.5184188056641],[125.56197390625,48.5292150092774],[125.58271609375,48.5384709907227],[125.5920715625,48.5493315864259],[125.679761992188,48.5334328437501],[125.697345,48.553843],[125.7151965625,48.5607051826172],[125.801793242188,48.5481017280274]]]]}},{"type":"Feature","properties":{"name":"龙江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.417345,47.333843],[123.413922148438,47.3460353828126],[123.405152617188,47.3372664619141],[123.425694609375,47.3221932197266],[123.443170195313,47.3096681953125],[123.451519804688,47.2880178046875],[123.463170195313,47.2796681953125],[123.47802859375,47.2589394355469],[123.52377078125,47.2468709541016],[123.54377078125,47.1982033515625],[123.528995390625,47.1421932197266],[123.503394804688,47.123843],[123.523170195313,47.1096681953126],[123.535928984375,47.0918679023438],[123.58216921875,47.0778206611329],[123.599386015625,47.0812227607423],[123.617345,47.073843],[123.610113554688,47.01601096875],[123.570987578125,47.0208779121094],[123.552896757813,46.9982900214844],[123.541793242188,46.9893959785156],[123.517345,46.953843],[123.49250125,46.9485353828125],[123.473985625,46.9496395087891],[123.402374296875,46.9304592109375],[123.392628203125,46.8885616279297],[123.377061796875,46.8451876044922],[123.334615507813,46.8257057929688],[123.317906523438,46.8444057441407],[123.300845976563,46.859648053711],[123.210533476563,46.8542647529297],[123.2126575,46.8186019111328],[123.161553984375,46.7526595283204],[123.126383085938,46.7365163398438],[123.064991484375,46.740175397461],[123.032628203125,46.7285616279298],[123.000982695313,46.7191243720703],[122.981671171875,46.7612038398438],[122.922061796875,46.7885616279297],[122.912628203125,46.7991243720703],[122.902061796875,46.8085616279298],[122.892628203125,46.8591243720703],[122.879781523438,46.8827626777344],[122.892652617188,46.9186415839844],[122.892047148438,46.928843],[122.893228789063,46.9486922431641],[122.879429960938,46.9585616279298],[122.842628203125,46.9385616279297],[122.796392851563,46.9291243720704],[122.782628203125,46.9591243720704],[122.77146609375,46.9690956855469],[122.773482695313,47.0028951240235],[122.8520325,47.0599025703125],[122.752061796875,47.0785616279298],[122.712628203125,47.0891243720703],[122.65963015625,47.0990157294922],[122.616417265625,47.1224990058594],[122.592628203125,47.1491243720704],[122.572061796875,47.1585616279297],[122.530079375,47.1910982490235],[122.510968046875,47.2327352119141],[122.469176054688,47.270077741211],[122.407345,47.343843],[122.500357695313,47.4036855292969],[122.549986601563,47.5168971992188],[122.588521757813,47.5434133125],[122.739117460938,47.6054866767578],[122.807345,47.643843],[122.81142703125,47.6279274726563],[122.82326296875,47.5997585273438],[122.833604765625,47.5594564033204],[122.825250273438,47.5221938300782],[122.84326296875,47.5097585273438],[122.85142703125,47.4979274726563],[122.88326296875,47.4797585273438],[122.914522734375,47.4222371650391],[122.964390898438,47.4547115302735],[122.961041289063,47.4696590400391],[122.9951965625,47.4784236884766],[122.98142703125,47.4879274726563],[122.958726835938,47.5277022529297],[122.964586210938,47.5538430000001],[122.961031523438,47.5697060371094],[123.02326296875,47.5779274726563],[123.031676054688,47.5901143623047],[123.042345,47.5877223945313],[123.052345,47.5899636054688],[123.071676054688,47.5856307197266],[123.077345,47.5938430000001],[123.095367460938,47.5872255683595],[123.141959257813,47.6012532783204],[123.121539335938,47.618843],[123.13271609375,47.6284712958984],[123.143961210938,47.6415254951172],[123.182623320313,47.6384188056641],[123.206085234375,47.6515102363282],[123.392652617188,47.6665010810547],[123.41271609375,47.6492147041016],[123.437511015625,47.6096334052734],[123.460787382813,47.6077626777344],[123.49197390625,47.6192147041016],[123.517345,47.6238430000001],[123.52197390625,47.6184712958985],[123.62197390625,47.5805232978516],[123.61271609375,47.5584712958985],[123.574947539063,47.5416182685547],[123.551607695313,47.5086995673828],[123.582857695313,47.4891255927735],[123.571929960938,47.4390145087891],[123.574176054688,47.4110823798828],[123.56197390625,47.3892147041016],[123.557345,47.3638430000001],[123.530704375,47.360483625],[123.503985625,47.3472023750001],[123.430704375,47.3404836250001],[123.417345,47.333843]],[[123.2958215625,46.9683370185547],[123.357345,46.963843],[123.35326296875,46.9697585273438],[123.324845,46.9893794990235],[123.289185820313,46.9979274726563],[123.2958215625,46.9683370185547]],[[123.375152617188,46.9472664619141],[123.387345,46.9438430000001],[123.383922148438,46.9560353828125],[123.375152617188,46.9472664619141]]]]}},{"type":"Feature","properties":{"name":"龙沙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.907345,47.353843],[123.907345,47.343843],[123.957345,47.343843],[123.974366484375,47.3015785957032],[123.997345,47.2838430000001],[123.99062625,47.27056175],[123.957345,47.2537252021485],[123.920616484375,47.180483625],[123.880704375,47.187202375],[123.87062625,47.2071242500001],[123.84406375,47.2205617500001],[123.837345,47.233843],[123.854117460938,47.2372286201172],[123.873985625,47.2772023750001],[123.880767851563,47.3107961250001],[123.900704375,47.350483625],[123.907345,47.353843]]]]}},{"type":"Feature","properties":{"name":"梅里斯达斡尔族区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.3037121875,47.8087709785157],[124.256031523438,47.7944161201173],[124.241920195313,47.7691213203126],[124.244273710938,47.7398140693359],[124.2319153125,47.7291664863281],[124.2327746875,47.7184969306641],[124.211138945313,47.7088430000001],[124.215108671875,47.6594667792969],[124.197345,47.6580397773438],[124.177345,47.6596462226563],[124.162345,47.6584413886719],[124.132921171875,47.6608058906251],[124.081724882813,47.5989150214844],[124.093048125,47.5786196113282],[124.057896757813,47.5629335761719],[124.0366028125,47.5445870185548],[124.022667265625,47.5284151435547],[123.995211210938,47.5306215644532],[123.972955351563,47.5114461494141],[123.9719153125,47.4985195136719],[123.992877226563,47.4804616523438],[123.991265898438,47.460400006836],[123.997345,47.4438430000001],[123.98142703125,47.4397585273438],[123.97326296875,47.4279274726563],[123.95142703125,47.4197585273438],[123.94326296875,47.3979274726563],[123.916046171875,47.387743756836],[123.907345,47.353843],[123.900704375,47.350483625],[123.880767851563,47.3107961250001],[123.873985625,47.2772023750001],[123.854117460938,47.2372286201172],[123.837345,47.233843],[123.830797148438,47.2372927070312],[123.823892851563,47.2503932929688],[123.799698515625,47.2572927070313],[123.77521609375,47.2108144355469],[123.747081328125,47.2234542060547],[123.727345,47.2138430000001],[123.72170046875,47.2181990791016],[123.71298953125,47.2294869208985],[123.69170046875,47.2381990791016],[123.670767851563,47.2508266425782],[123.643922148438,47.2468593574219],[123.614449492188,47.2646364570313],[123.596944609375,47.2873140693359],[123.605396757813,47.3444893623048],[123.557345,47.3638430000001],[123.56197390625,47.3892147041016],[123.574176054688,47.4110823798828],[123.571929960938,47.4390145087891],[123.582857695313,47.4891255927735],[123.551607695313,47.5086995673828],[123.574947539063,47.5416182685547],[123.61271609375,47.5584712958985],[123.62197390625,47.5805232978516],[123.52197390625,47.6184712958985],[123.517345,47.6238430000001],[123.532310820313,47.6377095771485],[123.542906523438,47.6821895576172],[123.642276640625,47.6782509589844],[123.667515898438,47.7173372626953],[123.712154570313,47.7290334296875],[123.762633085938,47.7410573554688],[123.947608671875,47.8116414619141],[123.982935820313,47.7929482246094],[124.032550078125,47.8086568427735],[124.031363554688,47.8386525703125],[124.082535429688,47.8290334296875],[124.100250273438,47.80991721875],[124.17252078125,47.8070522285157],[124.208482695313,47.8458632636719],[124.24923953125,47.8739076972657],[124.297345,47.8638430000001],[124.29271609375,47.8484712958985],[124.27271609375,47.8312404609376],[124.28197390625,47.8184712958984],[124.3037121875,47.8087709785157]]]]}},{"type":"Feature","properties":{"name":"碾子山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.915655546875,47.6614638496094],[122.937345,47.6566011787109],[122.984678984375,47.667212140625],[123.043858671875,47.6158193183594],[123.072857695313,47.6223201728516],[123.077345,47.5938430000001],[123.071676054688,47.5856307197266],[123.052345,47.5899636054688],[123.042345,47.5877223945313],[123.031676054688,47.5901143623047],[123.02326296875,47.5779274726563],[122.961031523438,47.5697060371094],[122.964586210938,47.5538430000001],[122.958726835938,47.5277022529297],[122.98142703125,47.4879274726563],[122.9951965625,47.4784236884766],[122.961041289063,47.4696590400391],[122.964390898438,47.4547115302735],[122.914522734375,47.4222371650391],[122.88326296875,47.4797585273438],[122.85142703125,47.4979274726563],[122.84326296875,47.5097585273438],[122.825250273438,47.5221938300782],[122.833604765625,47.5594564033204],[122.82326296875,47.5997585273438],[122.81142703125,47.6279274726563],[122.807345,47.643843],[122.82306765625,47.6620925117188],[122.907345,47.693843],[122.915655546875,47.6614638496094]]]]}},{"type":"Feature","properties":{"name":"泰来县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.84298953125,47.0594869208984],[123.852686796875,47.0135372138672],[123.89170046875,46.9981990791016],[123.997345,46.993843],[124.01025515625,46.9594863105469],[123.95095828125,46.9102303291016],[123.932808867188,46.8683803535156],[123.9132434375,46.8521279121095],[123.942808867188,46.8393056464844],[123.951881132813,46.8183803535157],[123.972808867188,46.8093056464844],[123.991881132813,46.7783803535157],[124.013541289063,46.7689882636719],[123.991636992188,46.7507942939453],[123.992896757813,46.7384352851563],[123.961881132813,46.7193056464844],[123.951954375,46.7073537421875],[123.932061796875,46.7093813300782],[123.867159453125,46.6817079902344],[123.851881132813,46.7083803535157],[123.842491484375,46.7403865791016],[123.817345,46.7378237128906],[123.758780546875,46.7437929511719],[123.777047148438,46.7119026923828],[123.746983671875,46.6869307685548],[123.7631653125,46.6586788154297],[123.745308867188,46.6438430000001],[123.810753203125,46.5894802070313],[123.814620390625,46.5515419746094],[123.797642851563,46.5219026923828],[123.813834257813,46.5084529853516],[123.810816679688,46.478843],[123.833233671875,46.4691213203125],[123.818858671875,46.444028546875],[123.860069609375,46.4261556220703],[123.863834257813,46.3892330146485],[123.834288359375,46.3646895576172],[123.856373320313,46.3463442207031],[123.837345,46.303843],[123.825572539063,46.2906697822266],[123.75255984375,46.2585323310547],[123.7353528125,46.2595577216797],[123.602061796875,46.2491243720703],[123.55947390625,46.2259810615234],[123.532061796875,46.2385616279298],[123.50047,46.2557289863282],[123.449698515625,46.2375106025391],[123.381886015625,46.2415523505859],[123.38322390625,46.2191243720703],[123.352061796875,46.2285616279297],[123.334874296875,46.247798078125],[123.312345,46.2491408515625],[123.284097929688,46.2474575019531],[123.234039335938,46.2746578193359],[123.167345,46.243843],[123.162628203125,46.2591243720703],[123.136124296875,46.2970626044922],[123.09093875,46.3374367500001],[123.0008215625,46.4382955146485],[123.004429960938,46.498843],[123.000264921875,46.56870628125],[123.043834257813,46.578843],[123.0420325,46.6090956855469],[123.059058867188,46.6243093085938],[123.083511992188,46.5969417548828],[123.16845828125,46.6120369697266],[123.202105742188,46.5885311103516],[123.212345,46.5891408515625],[123.222569609375,46.5885317207032],[123.272823515625,46.6158388496094],[123.270260039063,46.658843],[123.399635039063,46.6790041328126],[123.598160429688,46.6888356757813],[123.612061796875,46.7191243720703],[123.62322390625,46.7290956855469],[123.621749296875,46.7538430000001],[123.622642851563,46.768843],[123.621451445313,46.7888430000001],[123.6226575,46.8091164375],[123.582061796875,46.8185616279297],[123.572628203125,46.8262099433594],[123.621412382813,46.8412746406251],[123.602061796875,46.8585616279297],[123.592628203125,46.8891243720704],[123.57353640625,46.8985616279297],[123.562628203125,46.8285616279297],[123.510767851563,46.8191243720704],[123.472628203125,46.8449520087891],[123.512628203125,46.9185616279297],[123.517345,46.953843],[123.541793242188,46.9893959785156],[123.552896757813,46.9982900214844],[123.570987578125,47.0208779121094],[123.610113554688,47.01601096875],[123.617345,47.073843],[123.627345,47.073843],[123.627345,47.0938430000001],[123.657345,47.0938430000001],[123.657345,47.113843],[123.677345,47.113843],[123.735460234375,47.127309796875],[123.807164335938,47.0741487861329],[123.84298953125,47.0594869208984]]]]}},{"type":"Feature","properties":{"name":"铁锋区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.4227746875,47.3085195136719],[124.401060820313,47.2898140693359],[124.402745390625,47.268843],[124.401265898438,47.250400006836],[124.4216809375,47.1948085761719],[124.378370390625,47.1574977851563],[124.337345,47.1338430000001],[124.299947539063,47.1394197822266],[124.187345,47.1338430000001],[124.182896757813,47.1693959785157],[124.141793242188,47.1782900214845],[124.13125125,47.2270076728516],[124.060289335938,47.2472975898438],[124.063590117188,47.273843],[124.06134890625,47.2918398261719],[123.997345,47.2838430000001],[123.974366484375,47.3015785957032],[123.957345,47.343843],[123.98326296875,47.3479274726563],[124.014796171875,47.3684633613282],[124.06326296875,47.3779274726563],[124.07377078125,47.3931514716797],[124.11326296875,47.4079274726563],[124.117345,47.413843],[124.14142703125,47.3979274726563],[124.473668242188,47.3897487617188],[124.469698515625,47.3720449042969],[124.477345,47.353843],[124.420504179688,47.3367299628907],[124.4227746875,47.3085195136719]],[[124.375152617188,47.2572664619141],[124.387345,47.2538430000001],[124.383922148438,47.2660353828126],[124.375152617188,47.2572664619141]]]]}},{"type":"Feature","properties":{"name":"依安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.937345,47.913843],[124.940767851563,47.9016506171875],[124.949537382813,47.910419538086],[124.930474882813,47.9688198066407],[124.932965117188,47.988843],[124.929527617188,48.0165023017579],[124.887345,48.023843],[124.881495390625,48.0401497626954],[125.092047148438,48.0526992011719],[125.217345,48.0438430000001],[125.451807890625,48.0515627265625],[125.469390898438,47.9794393134766],[125.51244265625,47.9689430976563],[125.5225403125,47.9481325507813],[125.572393828125,47.949150006836],[125.584547148438,47.8993080878907],[125.61244265625,47.8987392402344],[125.63166140625,47.9187429023438],[125.65244265625,47.9089430976563],[125.66224734375,47.8887429023438],[125.688150664063,47.8761739326173],[125.707345,47.843843],[125.631881132813,47.8393056464844],[125.515235625,47.8264430976563],[125.502808867188,47.7999977851563],[125.562808867188,47.7893056464844],[125.57361453125,47.7762953925782],[125.570308867188,47.7438430000001],[125.573756132813,47.7100106025391],[125.59541140625,47.6523708320313],[125.632808867188,47.6293056464844],[125.6435559375,47.5690004707032],[125.6315246875,47.5590071845703],[125.645484648438,47.5346334052734],[125.6399621875,47.4804805732422],[125.601881132813,47.4693056464844],[125.592808867188,47.4083803535156],[125.580855742188,47.3984529853516],[125.582896757813,47.3784529853516],[125.561636992188,47.3607942939453],[125.563414335938,47.3433388496094],[125.557345,47.293843],[125.452535429688,47.2886525703126],[125.327345,47.2838430000001],[125.322808867188,47.3093056464844],[125.306217070313,47.3838246894532],[125.178199492188,47.3707759833985],[125.162808867188,47.3893056464844],[125.071881132813,47.3983803535157],[125.042808867188,47.4693056464844],[125.017345,47.4738430000001],[125.00197390625,47.5384712958985],[124.99271609375,47.5992147041016],[124.96197390625,47.6184712958985],[124.90271609375,47.6692147041016],[124.86197390625,47.6984712958985],[124.82271609375,47.7500185371094],[124.845860625,47.7481587958985],[124.937139921875,47.8128774238282],[124.992345,47.8084413886719],[125.044849882813,47.8126601386719],[125.041944609375,47.848843],[125.043204375,47.8645351386719],[125.009034453125,47.8797823310547],[124.914312773438,47.8721712470703],[124.90271609375,47.9034169746094],[124.937345,47.913843]]]]}},{"type":"Feature","properties":{"name":"讷河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.01361453125,48.8525075507813],[125.002628203125,48.8285616279298],[124.975557890625,48.8161379218751],[125.02873171875,48.7917317939453],[125.044835234375,48.7395885444336],[125.062345,48.7385448432617],[125.089698515625,48.740175397461],[125.129263945313,48.7259773994141],[125.182345,48.7291411567383],[125.192345,48.7285448432618],[125.202569609375,48.7291545844727],[125.228961210938,48.7148125434571],[125.30810671875,48.7295842719727],[125.40513796875,48.7895705390625],[125.447345,48.7870549750977],[125.463453398438,48.8221553779298],[125.52427859375,48.8646416450196],[125.609332304688,48.8828133369141],[125.684107695313,48.7991243720704],[125.722628203125,48.8085616279297],[125.752061796875,48.8191243720703],[125.782628203125,48.8285616279298],[125.818365507813,48.8685616279298],[125.842628203125,48.8491243720703],[125.864703398438,48.8244155097657],[125.957345,48.7738430000001],[125.967345,48.7738430000001],[125.967345,48.763843],[125.977345,48.763843],[125.98406375,48.75056175],[125.997345,48.743843],[125.987164335938,48.7091573310547],[125.915904570313,48.6964577460938],[125.867257109375,48.6664534736329],[125.88330203125,48.6384392524414],[125.812808867188,48.6083803535157],[125.771881132813,48.5993056464844],[125.752506132813,48.5882067084961],[125.710845976563,48.5998537421876],[125.697345,48.553843],[125.679761992188,48.5334328437501],[125.5920715625,48.5493315864259],[125.58271609375,48.5384709907227],[125.56197390625,48.5292150092774],[125.542623320313,48.5184188056641],[125.529576445313,48.5194673896485],[125.56197390625,48.3709316230469],[125.552374296875,48.3476357246094],[125.496920195313,48.3520912910156],[125.470308867188,48.3291664863282],[125.474303007813,48.2794448066407],[125.334722929688,48.2906606269532],[125.243155546875,48.2739583564454],[125.241944609375,48.258843],[125.2430871875,48.2446041083985],[125.187994414063,48.2280165839844],[125.194351835938,48.148843],[125.190733671875,48.1037898994141],[125.217345,48.0438430000001],[125.092047148438,48.0526992011719],[124.881495390625,48.0401497626954],[124.887345,48.023843],[124.743189726563,48.0015743232422],[124.732628203125,47.9785616279297],[124.66806765625,47.9691243720703],[124.652437773438,48.0197426582032],[124.524752226563,48.0121321845704],[124.512628203125,47.9985616279297],[124.418746367188,47.9695723701173],[124.327345,47.963843],[124.3094934375,47.9684236884766],[124.32361453125,47.9781728339844],[124.321070585938,47.9895186591797],[124.363619414063,48.0181673408203],[124.360714140625,48.0311202216797],[124.376519804688,48.0733663154297],[124.417345,48.0838430000001],[124.431793242188,48.0893959785157],[124.462896757813,48.0982900214844],[124.472345,48.1207088447266],[124.492799101563,48.1181648994141],[124.501793242188,48.1293959785157],[124.51736453125,48.1418685126953],[124.53334109375,48.1690419746094],[124.521280546875,48.1786983466797],[124.546016875,48.2125569892579],[124.57341921875,48.2591762519532],[124.546632109375,48.2704640937501],[124.561793242188,48.2893959785156],[124.573590117188,48.298843],[124.561793242188,48.3082900214844],[124.552896757813,48.3193959785157],[124.541793242188,48.3282900214844],[124.532896757813,48.3593959785156],[124.511441679688,48.3765785957031],[124.515455351563,48.408843],[124.5105090625,48.4486159492188],[124.543682890625,48.4687670112305],[124.527139921875,48.4820134711914],[124.534156523438,48.5383901191407],[124.51861453125,48.5508351875],[124.552896757813,48.5782900214844],[124.561793242188,48.5893959785156],[124.572896757813,48.5982900214844],[124.581793242188,48.6193959785157],[124.592896757813,48.6282900214844],[124.601793242188,48.6593959785157],[124.613941679688,48.6910051704102],[124.6069153125,48.7474843574219],[124.644381132813,48.7774843574219],[124.6382825,48.8265151191407],[124.672061796875,48.8395000434571],[124.685025664063,48.8378874946289],[124.704039335938,48.8702294135743],[124.700865507813,48.8957497382813],[124.711793242188,48.9093959785157],[124.747345,48.9238430000001],[124.808956328125,48.9311190009766],[124.865240507813,48.9005324531251],[125.01177859375,48.8833663154298],[125.01361453125,48.8525075507813]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.07291140625,45.4393941474609],[131.092994414063,45.3690602851563],[131.091724882813,45.358843],[131.093824492188,45.3419362617188],[131.082896757813,45.3282900214844],[131.071793242188,45.3193959785156],[131.067345,45.3038430000001],[131.032843046875,45.2953688789063],[130.983306914063,45.306474225586],[130.95326296875,45.3297585273438],[130.923204375,45.3410042548829],[130.917345,45.363843],[130.949195585938,45.3798152900391],[130.934293242188,45.4103273750001],[130.920704375,45.417202375],[130.917345,45.433843],[130.950264921875,45.4263655830079],[130.98826296875,45.4541243720703],[131.07291140625,45.4393941474609]]]]}},{"type":"Feature","properties":{"name":"滴道区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.687882109375,45.4711556220703],[130.754010039063,45.4463075996094],[130.908682890625,45.4633632636719],[130.917345,45.433843],[130.920704375,45.417202375],[130.934293242188,45.4103273750001],[130.949195585938,45.3798152900391],[130.917345,45.363843],[130.889888945313,45.3612990546876],[130.864801054688,45.3363869453125],[130.839888945313,45.3312990546875],[130.837345,45.323843],[130.81142703125,45.3197585273437],[130.80326296875,45.3079274726563],[130.77142703125,45.2997585273438],[130.76326296875,45.2879274726563],[130.742393828125,45.273520734375],[130.728209257813,45.2182497382813],[130.707345,45.203843],[130.690704375,45.2004836250001],[130.677345,45.1938430000001],[130.672628203125,45.1991243720703],[130.647471953125,45.2106703925782],[130.6626575,45.2386171699219],[130.661949492188,45.2504744697266],[130.597921171875,45.2911971259766],[130.547345,45.3838430000001],[130.551158476563,45.3900307441407],[130.586744414063,45.4021584296875],[130.621158476563,45.4300307441407],[130.651842070313,45.440487897461],[130.661158476563,45.4800307441407],[130.677345,45.483843],[130.687882109375,45.4711556220703]]]]}},{"type":"Feature","properties":{"name":"恒山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.85998171875,45.2438741279297],[130.91248171875,45.2276009345704],[130.94142703125,45.2397585273438],[131.057345,45.243843],[131.09318484375,45.2187337470704],[131.050426054688,45.2055306220703],[131.027647734375,45.1851784492188],[131.071221953125,45.1651784492188],[131.03658328125,45.1342287421875],[131.0120325,45.0990798164063],[131.012642851563,45.088843],[131.011495390625,45.0696059394531],[131.030968046875,45.0337740302734],[130.961148710938,44.9796657539063],[130.894620390625,44.9757002998047],[130.887345,44.983843],[130.895924101563,45.0187630439454],[130.871051054688,45.0280690742188],[130.874815703125,45.0448744941406],[130.84107546875,45.0681728339844],[130.843526640625,45.0791213203125],[130.831163359375,45.1085646796875],[130.833468046875,45.1188430000001],[130.82978640625,45.1352523017579],[130.81060671875,45.1484950996094],[130.829454375,45.1774404121094],[130.80142703125,45.1879274726563],[130.773746367188,45.2059535957031],[130.763072539063,45.1774184394531],[130.715382109375,45.1922005439453],[130.707345,45.203843],[130.728209257813,45.2182497382813],[130.742393828125,45.273520734375],[130.76326296875,45.2879274726563],[130.77142703125,45.2997585273438],[130.80326296875,45.3079274726563],[130.81142703125,45.3197585273437],[130.837345,45.323843],[130.84142703125,45.3179274726563],[130.87365359375,45.2995333076172],[130.85998171875,45.2438741279297]]]]}},{"type":"Feature","properties":{"name":"虎林市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.907345,46.323843],[133.910767851563,46.3360353828125],[133.919537382813,46.3272664619141],[133.907345,46.323843]]],[[[133.907345,46.323843],[133.901104765625,46.2984291816407],[133.91572390625,46.2759773994141],[133.89435671875,46.2450295234376],[133.86037234375,46.2526479316407],[133.866939726563,46.2233467841797],[133.83509890625,46.20261253125],[133.8176184375,46.2279274726563],[133.80142703125,46.2197585273438],[133.782838164063,46.1871883369141],[133.75326296875,46.1679274726563],[133.6857434375,46.1590077949219],[133.680186796875,46.1342116523438],[133.699595976563,46.1060964179688],[133.74142703125,46.0772139716797],[133.721715117188,46.0306697822266],[133.67572390625,45.9989150214844],[133.671221953125,45.978843],[133.676197539063,45.9566628242188],[133.663013945313,45.9375716376953],[133.616822539063,45.9479274726563],[133.601104765625,45.9293752265625],[133.607496367188,45.9008534980469],[133.59142703125,45.8897585273438],[133.580601835938,45.8608193183594],[133.532720976563,45.8979274726563],[133.499781523438,45.8852889228516],[133.503638945313,45.8680690742188],[133.478980742188,45.858843],[133.483638945313,45.8380690742188],[133.461051054688,45.8296169257813],[133.463468046875,45.818843],[133.458922148438,45.7985707832031],[133.50142703125,45.7876625800782],[133.49138796875,45.7756948066407],[133.466265898438,45.7813271308594],[133.461124296875,45.7583962226562],[133.47422,45.7382863593751],[133.443204375,45.7266817451173],[133.437345,45.703843],[133.425152617188,45.700419538086],[133.433922148438,45.6916506171875],[133.437345,45.703843],[133.481656523438,45.6853560615234],[133.483062773438,45.6617848945313],[133.440709257813,45.64870628125],[133.472061796875,45.6206917548828],[133.462511015625,45.6185353828125],[133.425094023438,45.6207656074219],[133.4108996875,45.6080843330078],[133.413219023438,45.5691933417969],[133.402345,45.5685451484375],[133.3744934375,45.5702053046875],[133.262061796875,45.5291243720703],[133.242569609375,45.5185317207032],[133.2241028125,45.5196321845703],[133.1820325,45.4891011787109],[133.1826575,45.4785903144531],[133.16197390625,45.460107038086],[133.162779570313,45.446567609375],[133.137345,45.4238430000001],[133.13197390625,45.4192147041016],[133.098761015625,45.4165462470704],[133.025738554688,45.3965615058594],[132.989742460938,45.3994539619141],[132.957706328125,45.4366371894532],[132.847916289063,45.4696926093751],[132.827345,45.4680397773438],[132.802345,45.4700484443359],[132.753961210938,45.4661605048828],[132.726456328125,45.4980892158204],[132.662720976563,45.5172786689454],[132.631925078125,45.5664418769532],[132.588233671875,45.5795967841797],[132.56271609375,45.6092147041016],[132.517535429688,45.6481398750001],[132.47197390625,45.6684712958985],[132.467345,45.673843],[132.479537382813,45.6772664619141],[132.470767851563,45.6860353828125],[132.467345,45.673843],[132.4020325,45.7048152900391],[132.362345,45.6979824042969],[132.345050078125,45.7009596992188],[132.31263796875,45.6879317451172],[132.258306914063,45.6972847724609],[132.263258085938,45.6685396552734],[132.255396757813,45.6495772529297],[132.230914335938,45.6824910712891],[132.191612578125,45.6981087470704],[132.183077421875,45.7195772529297],[132.145728789063,45.777177350586],[132.177345,45.843843],[132.204361601563,45.8487709785156],[132.222667265625,45.8700221992188],[132.257569609375,45.8672182441406],[132.277310820313,45.9209810615234],[132.261690703125,45.9489736152344],[132.273526640625,45.9591664863282],[132.27115359375,45.9887001777344],[132.30271609375,46.0084712958985],[132.319947539063,46.0284712958984],[132.388360625,46.0183821845704],[132.454561796875,45.9814461494141],[132.5062121875,46.0044930244141],[132.56197390625,46.0692147041016],[132.594586210938,46.0790340400391],[132.62123171875,46.1099587226563],[132.6627746875,46.1284969306641],[132.660513945313,46.1566451240234],[132.734263945313,46.1837282539063],[132.7680871875,46.1545870185547],[132.783961210938,46.1361605048828],[132.822550078125,46.1392610908203],[132.867139921875,46.1270577216797],[132.89271609375,46.1384712958984],[132.910103789063,46.1586519599609],[132.9427746875,46.1684889960938],[132.9419153125,46.1791664863282],[132.962877226563,46.1972243476563],[132.961495390625,46.2144148994141],[132.977164335938,46.2664559150391],[133.011734648438,46.296239850586],[133.015025664063,46.3372243476562],[132.995220976563,46.3542885566407],[133.02197390625,46.3692147041016],[133.073287382813,46.3921120429688],[133.070416289063,46.4278719306641],[133.08271609375,46.4384712958985],[133.100484648438,46.4782918525391],[133.112584257813,46.4792641425781],[133.167178984375,46.4592147041016],[133.21166140625,46.4753377509766],[133.212745390625,46.4888430000001],[133.21060671875,46.5154909492188],[133.222764921875,46.5486043525391],[133.221129179688,46.5689607978516],[133.25271609375,46.5784712958985],[133.306485625,46.6084712958985],[133.353136015625,46.5836775947266],[133.35119265625,46.5594911933594],[133.420250273438,46.5469704414063],[133.477345,46.553843],[133.48298953125,46.5494869208985],[133.493326445313,46.5123696113281],[133.527432890625,46.5329451728516],[133.572345,46.5395821357422],[133.607345,46.5344100166016],[133.658277617188,46.5419368720704],[133.70298953125,46.5294869208984],[133.722345,46.5178108955078],[133.75267703125,46.536108625],[133.86170046875,46.5181990791016],[133.867345,46.513843],[133.86271609375,46.4984712958985],[133.83841921875,46.464203107422],[133.85197390625,46.4484712958984],[133.919127226563,46.4362215400391],[133.941597929688,46.3750325751954],[133.863424101563,46.3572725654297],[133.8618371875,46.337544171875],[133.907345,46.323843]]]]}},{"type":"Feature","properties":{"name":"鸡东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.567345,45.313843],[131.555152617188,45.310419538086],[131.563922148438,45.3016506171875],[131.573531523438,45.3100307441407],[131.584469023438,45.2779384589844],[131.619718046875,45.2562178779297],[131.636666289063,45.2287129951172],[131.673531523438,45.2200307441406],[131.677345,45.213843],[131.646378203125,45.1632692695313],[131.688873320313,45.1238961005859],[131.612535429688,45.0686525703125],[131.562154570313,45.0390334296875],[131.532535429688,45.0186525703125],[131.477706328125,44.9927754951172],[131.502154570313,44.9701210761719],[131.441021757813,44.9655440498047],[131.400465117188,44.9797591376953],[131.372345,44.9786446357422],[131.334923125,44.9801284003907],[131.312154570313,44.9590334296876],[131.27634890625,44.9203890205079],[131.203228789063,44.917491071289],[131.184439726563,44.93776878125],[131.126944609375,44.9400478339844],[131.081871367188,44.9257784248048],[131.08330203125,44.8896419501953],[131.062535429688,44.8786525703125],[130.957345,44.853843],[130.945094023438,44.8715895820312],[130.92142703125,44.8879274726563],[130.911861601563,44.9369148994141],[130.869595976563,44.9660964179688],[130.857345,44.983843],[130.887345,44.983843],[130.894620390625,44.9757002998047],[130.961148710938,44.9796657539063],[131.030968046875,45.0337740302734],[131.011495390625,45.0696059394531],[131.012642851563,45.088843],[131.0120325,45.0990798164063],[131.03658328125,45.1342287421875],[131.071221953125,45.1651784492188],[131.027647734375,45.1851784492188],[131.050426054688,45.2055306220703],[131.09318484375,45.2187337470704],[131.057345,45.243843],[131.049312773438,45.2765529609376],[131.067345,45.3038430000001],[131.071793242188,45.3193959785156],[131.082896757813,45.3282900214844],[131.093824492188,45.3419362617188],[131.091724882813,45.358843],[131.092994414063,45.3690602851563],[131.07291140625,45.4393941474609],[130.98826296875,45.4541243720703],[130.950264921875,45.4263655830079],[130.917345,45.433843],[130.908682890625,45.4633632636719],[130.754010039063,45.4463075996094],[130.687882109375,45.4711556220703],[130.677345,45.483843],[130.6860559375,45.4951302314453],[130.707603789063,45.5117604804688],[130.732345,45.5081038642578],[130.748746367188,45.5105275703125],[130.741549101563,45.559233625],[130.75298953125,45.5781990791016],[130.767345,45.6138430000001],[130.816519804688,45.6219210029297],[130.842345,45.6181038642578],[130.85990359375,45.6206990791016],[130.89248171875,45.6078926826172],[130.91170046875,45.6194869208985],[130.93298953125,45.6281990791015],[130.943624296875,45.6663991523438],[131.01170046875,45.6794869208985],[131.017345,45.6838430000001],[131.02662234375,45.6505330634766],[131.111783476563,45.6365431953125],[131.140767851563,45.6408266425782],[131.163922148438,45.6268593574219],[131.190767851563,45.6308266425781],[131.211954375,45.618046491211],[131.269068632813,45.6264864326172],[131.287345,45.593843],[131.270347929688,45.5887252021485],[131.273551054688,45.548843],[131.233204375,45.530839459961],[131.264215117188,45.4871034980469],[131.261163359375,45.4491664863281],[131.277896757813,45.4347524238282],[131.31271609375,45.4192147041016],[131.326051054688,45.4037349677735],[131.496007109375,45.3842519355469],[131.5140246875,45.3438753486328],[131.56271609375,45.3292147041016],[131.567345,45.313843]]]]}},{"type":"Feature","properties":{"name":"鸡冠区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.983306914063,45.306474225586],[131.032843046875,45.2953688789063],[131.067345,45.3038430000001],[131.049312773438,45.2765529609376],[131.057345,45.243843],[130.94142703125,45.2397585273438],[130.91248171875,45.2276009345704],[130.85998171875,45.2438741279297],[130.87365359375,45.2995333076172],[130.84142703125,45.3179274726563],[130.837345,45.323843],[130.839888945313,45.3312990546875],[130.864801054688,45.3363869453125],[130.889888945313,45.3612990546876],[130.917345,45.363843],[130.923204375,45.3410042548829],[130.95326296875,45.3297585273438],[130.983306914063,45.306474225586]]]]}},{"type":"Feature","properties":{"name":"梨树区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.829454375,45.1774404121094],[130.81060671875,45.1484950996094],[130.82978640625,45.1352523017579],[130.833468046875,45.1188430000001],[130.831163359375,45.1085646796875],[130.843526640625,45.0791213203125],[130.84107546875,45.0681728339844],[130.874815703125,45.0448744941406],[130.871051054688,45.0280690742188],[130.895924101563,45.0187630439454],[130.887345,44.983843],[130.857345,44.983843],[130.83142703125,44.9879274726563],[130.799141875,45.0014876533203],[130.7641028125,44.9936330390626],[130.747095976563,44.9689968085938],[130.713975859375,44.9597585273438],[130.691676054688,44.9920552802735],[130.672345,44.9877223945313],[130.653682890625,44.9919057441407],[130.64326296875,45.0197585273438],[130.624000273438,45.0493367744141],[130.59142703125,45.0679274726563],[130.58326296875,45.0797585273438],[130.57142703125,45.0879274726563],[130.567345,45.093843],[130.57326296875,45.0979274726563],[130.587257109375,45.1181966376953],[130.615513945313,45.1287709785157],[130.645557890625,45.1495131660156],[130.641070585938,45.1695192695312],[130.677345,45.1938430000001],[130.690704375,45.2004836250001],[130.707345,45.203843],[130.715382109375,45.1922005439453],[130.763072539063,45.1774184394531],[130.773746367188,45.2059535957031],[130.80142703125,45.1879274726563],[130.829454375,45.1774404121094]]]]}},{"type":"Feature","properties":{"name":"麻山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.567345,45.093843],[130.52420046875,45.0884462714844],[130.472706328125,45.0581764960938],[130.445152617188,45.0616030097656],[130.422799101563,45.0895211005859],[130.411846953125,45.0881587958985],[130.397345,45.123843],[130.40170046875,45.1294869208985],[130.460382109375,45.1737801337891],[130.427554960938,45.1991170478516],[130.45170046875,45.2394869208985],[130.478741484375,45.2505538154297],[130.469600859375,45.3124263740235],[130.50298953125,45.3381990791016],[130.51170046875,45.3494869208984],[130.53298953125,45.3581990791016],[130.54170046875,45.3794869208985],[130.547345,45.3838430000001],[130.597921171875,45.2911971259766],[130.661949492188,45.2504744697266],[130.6626575,45.2386171699219],[130.647471953125,45.2106703925782],[130.672628203125,45.1991243720703],[130.677345,45.1938430000001],[130.641070585938,45.1695192695312],[130.645557890625,45.1495131660156],[130.615513945313,45.1287709785157],[130.587257109375,45.1181966376953],[130.57326296875,45.0979274726563],[130.567345,45.093843]]]]}},{"type":"Feature","properties":{"name":"密山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.127345,45.143843],[133.139537382813,45.140419538086],[133.130767851563,45.1316506171876],[133.127345,45.143843]]],[[[133.097345,45.233843],[133.100767851563,45.2460353828126],[133.109537382813,45.2372664619141],[133.097345,45.233843]]],[[[131.567345,45.313843],[131.563922148438,45.3016506171875],[131.555152617188,45.310419538086],[131.567345,45.313843]]],[[[132.467345,45.673843],[132.470767851563,45.6860353828125],[132.479537382813,45.6772664619141],[132.467345,45.673843]]],[[[132.467345,45.673843],[132.47197390625,45.6684712958985],[132.517535429688,45.6481398750001],[132.56271609375,45.6092147041016],[132.588233671875,45.5795967841797],[132.631925078125,45.5664418769532],[132.662720976563,45.5172786689454],[132.726456328125,45.4980892158204],[132.753961210938,45.4661605048828],[132.802345,45.4700484443359],[132.827345,45.4680397773438],[132.847916289063,45.4696926093751],[132.957706328125,45.4366371894532],[132.989742460938,45.3994539619141],[133.025738554688,45.3965615058594],[133.098761015625,45.4165462470704],[133.13197390625,45.4192147041016],[133.137345,45.4238430000001],[133.133443632813,45.3677461982422],[133.109869414063,45.3526546455078],[133.11375125,45.3388430000001],[133.1095325,45.323843],[133.113878203125,45.3083846259766],[133.093819609375,45.2790932441406],[133.083580351563,45.2426546455079],[133.097345,45.233843],[133.10142703125,45.2279274726563],[133.117135039063,45.2170833564453],[133.124586210938,45.183843],[133.121217070313,45.1688014960938],[133.127345,45.143843],[133.122061796875,45.1391243720704],[133.112628203125,45.1285616279298],[133.102061796875,45.1191243720703],[133.092628203125,45.1085616279297],[133.05713015625,45.0859865546876],[133.031383085938,45.0571706367188],[132.981783476563,45.0344057441407],[132.952345,45.0184090400391],[132.932628203125,45.0291243720703],[132.898365507813,45.0397042060547],[132.862628203125,45.0591243720704],[132.77724734375,45.0750600410157],[132.282628203125,45.1891243720703],[131.996881132813,45.2531722236328],[131.982628203125,45.2691243720703],[131.928004179688,45.2793190742187],[131.909405546875,45.3395619941407],[131.892345,45.3385451484375],[131.882120390625,45.3391542792969],[131.835455351563,45.3137966132813],[131.802628203125,45.2685616279297],[131.792061796875,45.2591243720703],[131.780982695313,45.2467208076172],[131.7826575,45.2185829902344],[131.768365507813,45.2091243720704],[131.71228640625,45.2292458320313],[131.692628203125,45.2185616279297],[131.677345,45.213843],[131.673531523438,45.2200307441406],[131.636666289063,45.2287129951172],[131.619718046875,45.2562178779297],[131.584469023438,45.2779384589844],[131.573531523438,45.3100307441407],[131.567345,45.313843],[131.56271609375,45.3292147041016],[131.5140246875,45.3438753486328],[131.496007109375,45.3842519355469],[131.326051054688,45.4037349677735],[131.31271609375,45.4192147041016],[131.277896757813,45.4347524238282],[131.261163359375,45.4491664863281],[131.264215117188,45.4871034980469],[131.233204375,45.530839459961],[131.273551054688,45.548843],[131.270347929688,45.5887252021485],[131.287345,45.593843],[131.307745390625,45.6134432197266],[131.33224734375,45.6389430976563],[131.34244265625,45.6487429023438],[131.35224734375,45.6589430976562],[131.362584257813,45.6688759589844],[131.33244265625,45.6834975410156],[131.377496367188,45.718642194336],[131.392345,45.718944928711],[131.41994265625,45.7183815742188],[131.471983671875,45.7310689521484],[131.445636015625,45.8080532050781],[131.49244265625,45.8387429023438],[131.5061340625,45.8669600654297],[131.543013945313,45.8789278388672],[131.581046171875,45.9185103583985],[131.602418242188,45.9189467597656],[131.683648710938,45.9085634589844],[131.702437773438,45.9089467597657],[131.722633085938,45.8985427070313],[131.742345,45.898944928711],[131.761871367188,45.8985463691407],[131.777345,45.903843],[131.784215117188,45.8488661933594],[131.781676054688,45.8284828925782],[131.79322390625,45.808843],[131.775914335938,45.7793959785156],[131.802896757813,45.7882900214844],[131.813702421875,45.8017836738282],[131.852706328125,45.7969319892579],[131.883013945313,45.8484828925781],[131.880738554688,45.8667769599609],[131.922799101563,45.8720088935547],[131.972935820313,45.8093959785156],[132.055870390625,45.824159772461],[132.084581328125,45.8410359931641],[132.170987578125,45.8517836738281],[132.177345,45.843843],[132.145728789063,45.777177350586],[132.183077421875,45.7195772529297],[132.191612578125,45.6981087470704],[132.230914335938,45.6824910712891],[132.255396757813,45.6495772529297],[132.263258085938,45.6685396552734],[132.258306914063,45.6972847724609],[132.31263796875,45.6879317451172],[132.345050078125,45.7009596992188],[132.362345,45.6979824042969],[132.4020325,45.7048152900391],[132.467345,45.673843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.887345,47.4438430000001],[129.890767851563,47.4316506171875],[129.899537382813,47.440419538086],[129.8814465625,47.4692916083985],[129.894078398438,47.4790407539063],[129.870128203125,47.488843],[129.873082304688,47.5088430000001],[129.868878203125,47.5373073554688],[129.89611453125,47.5583309150391],[129.890362578125,47.5972658515625],[129.90298953125,47.6181990791016],[129.918941679688,47.6571742988282],[129.891314726563,47.6784987617188],[129.906392851563,47.7168587470703],[129.872906523438,47.7427053046875],[129.807345,47.753843],[129.795636015625,47.7721334052735],[129.771246367188,47.7877461982422],[129.763443632813,47.8099398017579],[129.737486601563,47.8265560126954],[129.74375125,47.848843],[129.74093875,47.8588430000001],[129.746011992188,47.8768996406251],[129.711886015625,47.8673091865235],[129.684835234375,47.8858339667969],[129.703443632813,47.8977461982422],[129.711246367188,47.9171944404297],[129.681246367188,47.9277461982422],[129.66658328125,47.9694356513673],[129.707345,47.9738430000001],[129.753170195313,47.9780178046875],[129.761519804688,47.9896681953126],[129.774351835938,47.9988643623047],[129.73123171875,48.0282155585938],[129.74345828125,48.0894612861328],[129.723170195313,48.1040029121094],[129.731676054688,48.1199629951173],[129.747554960938,48.1168257880859],[129.774820585938,48.1363680244141],[129.791519804688,48.1596681953125],[129.805186796875,48.1694631171875],[129.800367460938,48.193843],[129.803428984375,48.2093288398438],[129.775133085938,48.2463826728516],[129.8423059375,48.2598494697266],[129.861519804688,48.3096681953125],[129.867345,48.3138430000001],[129.912843046875,48.2950270820313],[129.970865507813,48.2533638740234],[129.984517851563,48.2227700019532],[130.07084109375,48.1730007148438],[130.09197390625,48.1484712958985],[130.127345,48.143843],[130.165933867188,48.0730538154297],[130.132838164063,48.0121504951172],[130.13095828125,47.9805940986328],[130.144332304688,47.9559865546875],[130.1673059375,47.8815883613282],[130.2026575,47.8591036201172],[130.201822539063,47.8451161933594],[130.217667265625,47.7266481757813],[130.2326575,47.6990688300782],[130.230982695313,47.6709651923829],[130.246783476563,47.6532802558594],[130.294097929688,47.6386702705078],[130.319488554688,47.61024925],[130.352144804688,47.5985329414063],[130.36259890625,47.5991561103516],[130.372061796875,47.5885616279297],[130.442628203125,47.5391243720704],[130.462061796875,47.4885616279297],[130.479815703125,47.4727022529298],[130.492628203125,47.4491243720703],[130.526773710938,47.3556764960938],[130.542061796875,47.3385616279298],[130.552628203125,47.3291243720703],[130.557345,47.3238430000001],[130.551099882813,47.318843],[130.562896757813,47.3093959785157],[130.571793242188,47.2982900214844],[130.582896757813,47.2893959785157],[130.591793242188,47.2782900214844],[130.602896757813,47.2693959785157],[130.611793242188,47.2582900214844],[130.680748320313,47.2058113837891],[130.64166140625,47.1893410468751],[130.642965117188,47.1788430000001],[130.641344023438,47.1657845283203],[130.53095828125,47.1209304023438],[130.452345,47.1307088447266],[130.41736453125,47.1263582587891],[130.400987578125,47.1059023261719],[130.371890898438,47.1095211005859],[130.3588684375,47.0932601142578],[130.37334109375,47.0686440253906],[130.359249296875,47.0573622871094],[130.280875273438,47.0671108222656],[130.222628203125,47.0895003486329],[130.206558867188,47.0875014472657],[130.142686796875,47.1341609931641],[130.129141875,47.1967659736328],[130.084254179688,47.2156795478516],[129.997857695313,47.2307149482422],[129.982896757813,47.2493959785157],[129.931793242188,47.2582900214844],[129.922896757813,47.2893959785157],[129.887345,47.303843],[129.847345,47.313843],[129.85197390625,47.3292147041016],[129.8927746875,47.3384847236329],[129.8919153125,47.3491664863281],[129.904932890625,47.3603780341798],[129.831485625,47.3931508613282],[129.832745390625,47.408843],[129.8319153125,47.419189069336],[129.887345,47.4438430000001]],[[130.231749296875,47.1942653632813],[130.24423953125,47.1598494697266],[130.270650664063,47.1708864570313],[130.261085234375,47.2088430000001],[130.263604765625,47.218843],[130.260181914063,47.2324306464844],[130.277345,47.2438430000001],[130.310499296875,47.2525893378906],[130.301339140625,47.2989247871094],[130.307345,47.3238430000001],[130.299888945313,47.338843],[130.307345,47.353843],[130.31978640625,47.3699599433595],[130.342686796875,47.3665755439453],[130.35170046875,47.4153975654297],[130.2844153125,47.405454328125],[130.277345,47.3638430000001],[130.267345,47.3638430000001],[130.267345,47.353843],[130.2619153125,47.3491664863281],[130.262769804688,47.3385469794922],[130.232843046875,47.296337506836],[130.247345,47.2838430000001],[130.247345,47.263843],[130.21599734375,47.2590291572266],[130.225943632813,47.2195607734375],[130.20982546875,47.2088430000001],[130.231749296875,47.1942653632813]],[[129.927345,47.5538430000001],[129.914835234375,47.5766616035157],[129.903804960938,47.5589070869141],[129.927345,47.5538430000001]]]]}},{"type":"Feature","properties":{"name":"工农区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.2606653125,47.2905818916016],[130.247345,47.2838430000001],[130.232843046875,47.296337506836],[130.262769804688,47.3385469794922],[130.2619153125,47.3491664863281],[130.267345,47.353843],[130.277345,47.353843],[130.277345,47.3238430000001],[130.2606653125,47.2905818916016]]]]}},{"type":"Feature","properties":{"name":"萝北县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.82197390625,48.3184712958985],[130.836373320313,48.2926607490234],[130.79271609375,48.2584712958985],[130.767628203125,48.2472768378907],[130.751217070313,48.2178621650391],[130.75353640625,48.1889858222657],[130.703004179688,48.1573329902344],[130.653111601563,48.1143508125],[130.67271609375,48.0792147041016],[130.682345,48.0472286201172],[130.724967070313,48.0282112861329],[130.75123171875,47.9977272773438],[130.804058867188,47.9741536689454],[130.87416140625,47.9238155341797],[130.90271609375,47.8992147041016],[130.91197390625,47.8784712958985],[130.951646757813,47.822514875],[130.952745390625,47.808843],[130.9517590625,47.7965413642578],[130.963814726563,47.7043880439453],[131.055792265625,47.6792147041016],[131.163511992188,47.6921767402344],[131.24158328125,47.7357344794922],[131.363468046875,47.7259401679688],[131.435264921875,47.7455886054688],[131.551124296875,47.7279335761719],[131.56197390625,47.6684712958985],[131.57271609375,47.6592147041016],[131.577345,47.653843],[131.531031523438,47.5657973457032],[131.368272734375,47.4289559150391],[131.179732695313,47.2587978339844],[131.147345,47.223843],[131.122061796875,47.2091243720703],[131.092379179688,47.1883901191406],[131.054859648438,47.2087795234376],[130.957345,47.223843],[130.96170046875,47.2394869208985],[130.97298953125,47.2481990791016],[130.98170046875,47.2627620673828],[130.960865507813,47.278843],[130.973160429688,47.2883309150391],[130.969361601563,47.3140303779297],[130.87298953125,47.2981990791016],[130.78158328125,47.2894869208984],[130.699742460938,47.3133492255859],[130.67298953125,47.3294869208984],[130.619303007813,47.3381990791016],[130.557345,47.3238430000001],[130.552628203125,47.3291243720703],[130.542061796875,47.3385616279298],[130.526773710938,47.3556764960938],[130.492628203125,47.4491243720703],[130.479815703125,47.4727022529298],[130.462061796875,47.4885616279297],[130.442628203125,47.5391243720704],[130.372061796875,47.5885616279297],[130.36259890625,47.5991561103516],[130.352144804688,47.5985329414063],[130.319488554688,47.61024925],[130.294097929688,47.6386702705078],[130.246783476563,47.6532802558594],[130.230982695313,47.6709651923829],[130.2326575,47.6990688300782],[130.217667265625,47.7266481757813],[130.201822539063,47.8451161933594],[130.2026575,47.8591036201172],[130.1673059375,47.8815883613282],[130.144332304688,47.9559865546875],[130.13095828125,47.9805940986328],[130.132838164063,48.0121504951172],[130.165933867188,48.0730538154297],[130.127345,48.143843],[130.172066679688,48.169267194336],[130.192345,48.1676375556641],[130.212345,48.1692446113282],[130.235279570313,48.1674019599609],[130.26197390625,48.1712404609376],[130.2419153125,48.1885195136719],[130.243287382813,48.2055605292969],[130.263424101563,48.260400006836],[130.2619153125,48.2791664863282],[130.28033328125,48.2950313544923],[130.362667265625,48.2884151435547],[130.380728789063,48.309374616211],[130.392667265625,48.3084151435547],[130.402022734375,48.3192708564453],[130.417345,48.3180397773438],[130.462022734375,48.3216292548829],[130.48197390625,48.2984712958985],[130.510401640625,48.2857851386719],[130.57197390625,48.2992147041016],[130.642818632813,48.3100099921875],[130.672022734375,48.3076638007813],[130.68197390625,48.3192147041016],[130.754527617188,48.3389632392579],[130.767345,48.3538430000001],[130.812218046875,48.3403328681641],[130.82197390625,48.3184712958985]]]]}},{"type":"Feature","properties":{"name":"南山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.301339140625,47.2989247871094],[130.310499296875,47.2525893378906],[130.277345,47.2438430000001],[130.277345,47.2538430000001],[130.247345,47.2538430000001],[130.247345,47.263843],[130.247345,47.2838430000001],[130.2606653125,47.2905818916016],[130.277345,47.3238430000001],[130.307345,47.3238430000001],[130.301339140625,47.2989247871094]]]]}},{"type":"Feature","properties":{"name":"绥滨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.517345,47.713843],[132.500416289063,47.6893245673829],[132.4468371875,47.6788619208985],[132.468121367188,47.6281874824219],[132.429595976563,47.6015895820313],[132.406046171875,47.5386415839844],[132.367667265625,47.5287929511719],[132.348370390625,47.5008437324219],[132.31142703125,47.4797585273438],[132.307345,47.4738430000001],[132.29197390625,47.4692147041016],[132.28271609375,47.4584712958985],[132.202935820313,47.4084993720704],[132.13197390625,47.3992147041016],[132.11271609375,47.3884712958985],[132.038936796875,47.3662575507812],[132.042764921875,47.3186043525391],[132.02115359375,47.2597566962891],[131.91818484375,47.2440663886719],[131.877550078125,47.2728774238282],[131.802345,47.2668343330078],[131.772056914063,47.2692678046875],[131.721490507813,47.2377065253906],[131.677345,47.2412532783203],[131.580299101563,47.2334560371094],[131.522550078125,47.2492610908203],[131.502345,47.2476375556641],[131.473326445313,47.2499697089844],[131.4473840625,47.2354958320312],[131.437345,47.223843],[131.391519804688,47.2196681953126],[131.339132109375,47.1745381904297],[131.272081328125,47.1877870917969],[131.243170195313,47.1996681953125],[131.211519804688,47.2080178046875],[131.193170195313,47.2196681953126],[131.147345,47.223843],[131.179732695313,47.2587978339844],[131.368272734375,47.4289559150391],[131.531031523438,47.5657973457032],[131.577345,47.653843],[131.631236601563,47.6592214179688],[131.705982695313,47.7183803535156],[131.742808867188,47.6993056464844],[131.773238554688,47.6774050117188],[131.802345,47.6803719306641],[131.861939726563,47.6742971015625],[131.902491484375,47.6895339179688],[131.9444934375,47.6593056464844],[131.979386015625,47.6704885078126],[132.0001575,47.7183803535156],[132.032808867188,47.7093056464844],[132.068897734375,47.6957442451173],[132.211539335938,47.7114730048828],[132.258702421875,47.7066658759766],[132.272808867188,47.7183803535156],[132.29748171875,47.7583803535156],[132.382808867188,47.7493056464844],[132.411881132813,47.7383803535157],[132.452808867188,47.7293056464844],[132.481881132813,47.7183803535156],[132.517345,47.713843]]]]}},{"type":"Feature","properties":{"name":"向阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.307345,47.353843],[130.299888945313,47.338843],[130.307345,47.3238430000001],[130.277345,47.3238430000001],[130.277345,47.353843],[130.267345,47.353843],[130.267345,47.3638430000001],[130.277345,47.3638430000001],[130.290704375,47.357202375],[130.307345,47.353843]]]]}},{"type":"Feature","properties":{"name":"兴安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.247345,47.263843],[130.247345,47.2538430000001],[130.277345,47.2538430000001],[130.277345,47.2438430000001],[130.260181914063,47.2324306464844],[130.263604765625,47.218843],[130.261085234375,47.2088430000001],[130.270650664063,47.1708864570313],[130.24423953125,47.1598494697266],[130.231749296875,47.1942653632813],[130.20982546875,47.2088430000001],[130.225943632813,47.2195607734375],[130.21599734375,47.2590291572266],[130.247345,47.263843]]]]}},{"type":"Feature","properties":{"name":"兴山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.35170046875,47.4153975654297],[130.342686796875,47.3665755439453],[130.31978640625,47.3699599433595],[130.307345,47.353843],[130.290704375,47.357202375],[130.277345,47.3638430000001],[130.2844153125,47.405454328125],[130.35170046875,47.4153975654297]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宝清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.137345,46.893843],[133.128858671875,46.8717696357423],[133.161236601563,46.8527370429688],[133.192896757813,46.8393959785156],[133.221793242188,46.8182900214844],[133.254049101563,46.809067609375],[133.30677859375,46.7770400214845],[133.329478789063,46.7486928535157],[133.398917265625,46.7366085029297],[133.444381132813,46.7002016425782],[133.43937625,46.6599867988282],[133.494595976563,46.6211751533204],[133.473839140625,46.5858699775391],[133.471685820313,46.5685604072266],[133.477345,46.553843],[133.420250273438,46.5469704414063],[133.35119265625,46.5594911933594],[133.353136015625,46.5836775947266],[133.306485625,46.6084712958985],[133.25271609375,46.5784712958985],[133.221129179688,46.5689607978516],[133.222764921875,46.5486043525391],[133.21060671875,46.5154909492188],[133.212745390625,46.4888430000001],[133.21166140625,46.4753377509766],[133.167178984375,46.4592147041016],[133.112584257813,46.4792641425781],[133.100484648438,46.4782918525391],[133.08271609375,46.4384712958985],[133.070416289063,46.4278719306641],[133.073287382813,46.3921120429688],[133.02197390625,46.3692147041016],[132.995220976563,46.3542885566407],[133.015025664063,46.3372243476562],[133.011734648438,46.296239850586],[132.977164335938,46.2664559150391],[132.961495390625,46.2144148994141],[132.962877226563,46.1972243476563],[132.9419153125,46.1791664863282],[132.9427746875,46.1684889960938],[132.910103789063,46.1586519599609],[132.89271609375,46.1384712958984],[132.867139921875,46.1270577216797],[132.822550078125,46.1392610908203],[132.783961210938,46.1361605048828],[132.7680871875,46.1545870185547],[132.734263945313,46.1837282539063],[132.660513945313,46.1566451240234],[132.6627746875,46.1284969306641],[132.62123171875,46.1099587226563],[132.594586210938,46.0790340400391],[132.56197390625,46.0692147041016],[132.5062121875,46.0044930244141],[132.454561796875,45.9814461494141],[132.388360625,46.0183821845704],[132.319947539063,46.0284712958984],[132.30271609375,46.0084712958985],[132.27115359375,45.9887001777344],[132.273526640625,45.9591664863282],[132.261690703125,45.9489736152344],[132.277310820313,45.9209810615234],[132.257569609375,45.8672182441406],[132.222667265625,45.8700221992188],[132.204361601563,45.8487709785156],[132.177345,45.843843],[132.170987578125,45.8517836738281],[132.084581328125,45.8410359931641],[132.055870390625,45.824159772461],[131.972935820313,45.8093959785156],[131.922799101563,45.8720088935547],[131.880738554688,45.8667769599609],[131.883013945313,45.8484828925781],[131.852706328125,45.7969319892579],[131.813702421875,45.8017836738282],[131.802896757813,45.7882900214844],[131.775914335938,45.7793959785156],[131.79322390625,45.808843],[131.781676054688,45.8284828925782],[131.784215117188,45.8488661933594],[131.777345,45.903843],[131.7886340625,45.9125557685547],[131.80170046875,45.9294869208985],[131.82298953125,45.9381990791016],[131.850240507813,45.9546364570312],[131.877081328125,45.9894094062501],[131.924561796875,46.008843],[131.898761015625,46.0194026923828],[131.915894804688,46.0781630683594],[131.893863554688,46.0881990791016],[131.84298953125,46.0681990791016],[131.782232695313,46.0578786445313],[131.749346953125,46.0777169013672],[131.69802859375,46.0920070625],[131.68298953125,46.1542757392578],[131.7231653125,46.1783040595704],[131.719854765625,46.2006917548828],[131.702203398438,46.1980831123048],[131.648595,46.2105049873048],[131.622857695313,46.2067018867187],[131.617345,46.2138430000001],[131.611890898438,46.2206526923829],[131.592061796875,46.2181856513672],[131.562628203125,46.2295003486328],[131.547345,46.2275991035157],[131.525318632813,46.2303389716797],[131.492706328125,46.2495095039063],[131.41595828125,46.2399636054688],[131.356060820313,46.2751729560547],[131.322896757813,46.2993959785157],[131.280445585938,46.3085811591797],[131.28302859375,46.3293581367188],[131.267345,46.3338430000001],[131.247345,46.363843],[131.25197390625,46.3892147041016],[131.267706328125,46.40276878125],[131.328199492188,46.3598763251954],[131.461456328125,46.3462831855469],[131.477345,46.3738430000001],[131.50486453125,46.3798458076173],[131.523961210938,46.3783113837891],[131.583624296875,46.4475618720704],[131.64271609375,46.4984712958985],[131.659722929688,46.5182112861328],[131.68271609375,46.5284712958985],[131.72295046875,46.5804763007813],[131.78271609375,46.5984712958984],[131.787345,46.6038430000001],[131.8666809375,46.5960414863282],[131.89271609375,46.6184712958985],[131.90197390625,46.6292147041016],[131.97271609375,46.6784712958984],[131.984761992188,46.7184712958985],[132.01271609375,46.7092147041016],[132.032266875,46.6983065009766],[132.062105742188,46.7092641425781],[132.077916289063,46.707993390625],[132.12314578125,46.7216115546875],[132.14271609375,46.7384712958985],[132.15197390625,46.7592147041016],[132.16271609375,46.7684712958985],[132.17197390625,46.7792147041016],[132.207345,46.803843],[132.292808867188,46.7993056464844],[132.356285429688,46.7593056464844],[132.39312625,46.7684596992188],[132.375050078125,46.8165700507813],[132.478053007813,46.8270693183594],[132.509107695313,46.78968284375],[132.544547148438,46.7860707832032],[132.596534453125,46.8006063056641],[132.719610625,46.8131514716797],[132.738394804688,46.7905385566407],[132.78213015625,46.7783113837891],[132.794298125,46.7795516181641],[132.812100859375,46.7581154609375],[132.842081328125,46.7693794990235],[132.871920195313,46.7663381171876],[132.882476835938,46.7906764960938],[132.945045195313,46.8090377021485],[132.961881132813,46.8293056464844],[132.992808867188,46.8383803535156],[133.055025664063,46.8775875068359],[133.072345,46.8793526435547],[133.082667265625,46.878300397461],[133.101881132813,46.8893056464844],[133.137345,46.893843]]]]}},{"type":"Feature","properties":{"name":"宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.760850859375,46.6342543769532],[131.771793242188,46.6082900214844],[131.787345,46.6038430000001],[131.78271609375,46.5984712958984],[131.72295046875,46.5804763007813],[131.68271609375,46.5284712958985],[131.659722929688,46.5182112861328],[131.64271609375,46.4984712958985],[131.583624296875,46.4475618720704],[131.523961210938,46.3783113837891],[131.50486453125,46.3798458076173],[131.477345,46.3738430000001],[131.448004179688,46.3789492011719],[131.454039335938,46.4274562812501],[131.440650664063,46.45022971875],[131.44447390625,46.4809737373047],[131.36162234375,46.4706679511719],[131.298736601563,46.49483909375],[131.304039335938,46.5374562812501],[131.291793242188,46.5582900214844],[131.287345,46.573843],[131.294986601563,46.5979750800782],[131.32252078125,46.5682552314453],[131.343678007813,46.5690938544923],[131.366964140625,46.5942244697266],[131.382535429688,46.6086525703126],[131.387345,46.613843],[131.433985625,46.610483625],[131.451969023438,46.5961989570313],[131.467345,46.6038430000001],[131.506265898438,46.5927150703126],[131.522896757813,46.5793959785156],[131.539210234375,46.5223427558594],[131.579249296875,46.5173622871094],[131.593023710938,46.5283901191407],[131.589810820313,46.5542360664063],[131.602896757813,46.5882900214844],[131.612174101563,46.6207369208984],[131.687345,46.6300868964844],[131.707345,46.6275991035157],[131.760850859375,46.6342543769532]]]]}},{"type":"Feature","properties":{"name":"集贤县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.057345,46.6438430000001],[131.067345,46.6438430000001],[131.067345,46.6338430000001],[131.057345,46.6338430000001],[131.057345,46.6438430000001]]],[[[131.057345,46.6438430000001],[131.019820585938,46.6500069404297],[131.00298953125,46.6281990791016],[130.98170046875,46.6194869208985],[130.954449492188,46.6030495429688],[130.94298953125,46.5881990791016],[130.937345,46.583843],[130.878702421875,46.5934767890625],[130.820250273438,46.5848390937501],[130.774439726563,46.60284690625],[130.73478640625,46.5969869208985],[130.717345,46.6038430000001],[130.72197390625,46.6492147041016],[130.736763945313,46.6757271552735],[130.721163359375,46.6891664863282],[130.722769804688,46.7091213203126],[130.706451445313,46.7383663154297],[130.66197390625,46.7484712958984],[130.6514075,46.7721535468751],[130.656099882813,46.8305501533204],[130.727550078125,46.8248085761719],[130.776754179688,46.8596938300781],[130.811373320313,46.8569124580079],[130.829722929688,46.8782112861329],[130.85271609375,46.8884712958985],[130.86197390625,46.9100185371094],[130.842022734375,46.9084151435548],[130.824517851563,46.9287337470704],[130.93888796875,46.9495967841797],[130.997345,46.982212140625],[131.022345,46.9682637763672],[131.055982695313,46.9870314765626],[131.083961210938,46.9545534492188],[131.211099882813,46.9647689033203],[131.390772734375,47.0220192695313],[131.402740507813,47.0617562080079],[131.547345,47.073843],[131.54271609375,47.0584712958984],[131.530484648438,47.0251662421875],[131.51951296875,46.888579328125],[131.627345,46.883843],[131.622784453125,46.844712140625],[131.563170195313,46.8180178046876],[131.500860625,46.7958803535156],[131.463736601563,46.7374080634766],[131.475308867188,46.6788430000001],[131.470367460938,46.653843],[131.476060820313,46.625048444336],[131.467345,46.6038430000001],[131.451969023438,46.5961989570313],[131.433985625,46.610483625],[131.387345,46.613843],[131.382799101563,46.619521100586],[131.358922148438,46.6165511298829],[131.329346953125,46.6652400947266],[131.342896757813,46.6882900214844],[131.351793242188,46.720639875],[131.327345,46.7175991035157],[131.312183867188,46.7194850898438],[131.254722929688,46.7064327216797],[131.247769804688,46.7582900214844],[131.284722929688,46.7365663886719],[131.311793242188,46.7422743964844],[131.291793242188,46.7582900214844],[131.282896757813,46.7793959785157],[131.258912382813,46.7882900214844],[131.242896757813,46.7682900214844],[131.214620390625,46.7456447578125],[131.207345,46.703843],[131.19263796875,46.6980611396484],[131.17478640625,46.7006990791016],[131.115953398438,46.6775710273438],[131.101954375,46.6796395087891],[131.070181914063,46.6604744697266],[131.057345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"尖山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.207345,46.703843],[131.211158476563,46.6776552558594],[131.2566809375,46.6621413398438],[131.24064578125,46.6393007636719],[131.246202421875,46.6214583564454],[131.231158476563,46.6000307441406],[131.227345,46.583843],[131.213077421875,46.5895772529298],[131.139674101563,46.598339459961],[131.144605742188,46.6269795966797],[131.080640898438,46.6159676337891],[131.067345,46.6338430000001],[131.067345,46.6438430000001],[131.057345,46.6438430000001],[131.070181914063,46.6604744697266],[131.101954375,46.6796395087891],[131.115953398438,46.6775710273438],[131.17478640625,46.7006990791016],[131.19263796875,46.6980611396484],[131.207345,46.703843]]]]}},{"type":"Feature","properties":{"name":"岭东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.057345,46.6438430000001],[131.057345,46.6338430000001],[131.067345,46.6338430000001],[131.080640898438,46.6159676337891],[131.144605742188,46.6269795966797],[131.139674101563,46.598339459961],[131.213077421875,46.5895772529298],[131.227345,46.583843],[131.25142703125,46.5779274726563],[131.287345,46.573843],[131.291793242188,46.5582900214844],[131.304039335938,46.5374562812501],[131.298736601563,46.49483909375],[131.36162234375,46.4706679511719],[131.44447390625,46.4809737373047],[131.440650664063,46.45022971875],[131.454039335938,46.4274562812501],[131.448004179688,46.3789492011719],[131.477345,46.3738430000001],[131.461456328125,46.3462831855469],[131.328199492188,46.3598763251954],[131.267706328125,46.40276878125],[131.25197390625,46.3892147041016],[131.247345,46.363843],[131.222486601563,46.3696028876953],[131.185108671875,46.3640792060547],[131.140767851563,46.3908266425781],[131.117345,46.3873653388672],[131.097345,46.3903206611329],[131.082345,46.3881038642578],[131.064771757813,46.3907015205078],[131.05298953125,46.4194869208985],[131.017452421875,46.4407399726563],[131.024244414063,46.4866945625001],[130.960699492188,46.5127022529297],[130.963546171875,46.531982038086],[130.94170046875,46.5681990791016],[130.937345,46.583843],[130.94298953125,46.5881990791016],[130.954449492188,46.6030495429688],[130.98170046875,46.6194869208985],[131.00298953125,46.6281990791016],[131.019820585938,46.6500069404297],[131.057345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"饶河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.137345,46.913843],[133.125152617188,46.9172664619141],[133.133922148438,46.9260353828126],[133.137345,46.913843]]],[[[133.187345,47.003843],[133.183922148438,46.9916506171875],[133.175152617188,47.000419538086],[133.187345,47.003843]]],[[[133.217345,47.063843],[133.213922148438,47.0516506171875],[133.205152617188,47.060419538086],[133.217345,47.063843]]],[[[133.137345,46.913843],[133.145557890625,46.9195131660157],[133.14107546875,46.9395131660156],[133.15361453125,46.9481728339844],[133.150982695313,46.9599306464844],[133.18142703125,46.9797585273438],[133.197345,46.9838430000001],[133.197345,46.973843],[133.185152617188,46.9704195380859],[133.193922148438,46.9616506171876],[133.197345,46.973843],[133.210152617188,46.9788430000001],[133.197345,46.9838430000001],[133.20547,47.0001845527344],[133.187345,47.003843],[133.190343046875,47.0108461738281],[133.220260039063,47.0183162666016],[133.198258085938,47.0277309394532],[133.209288359375,47.0442287421875],[133.223717070313,47.0345833564453],[133.230343046875,47.0582814765625],[133.217345,47.063843],[133.222926054688,47.0790358710938],[133.211646757813,47.0887532783203],[133.23963015625,47.1282234931641],[133.25197390625,47.1692147041016],[133.26271609375,47.1784712958985],[133.2766028125,47.1945870185547],[133.2927746875,47.2085195136719],[133.285772734375,47.295639875],[133.34271609375,47.3284712958985],[133.39197390625,47.3992147041016],[133.447345,47.463843],[133.500440703125,47.44343284375],[133.587843046875,47.4325618720704],[133.616261015625,47.5000014472657],[133.6440246875,47.5346724677735],[133.717345,47.543843],[133.726641875,47.533437116211],[133.841641875,47.5402913642579],[133.970235625,47.5266310859375],[134.029698515625,47.530175397461],[134.1020715625,47.5042055488281],[134.183560820313,47.5611263251954],[134.25830203125,47.4274031806641],[134.302061796875,47.4391243720703],[134.327345,47.4438430000001],[134.322896757813,47.4382900214844],[134.265347929688,47.3978383613282],[134.249752226563,47.3608235908203],[134.174322539063,47.3329378486329],[134.1498840625,47.2531624580079],[134.168785429688,47.2295571113281],[134.210347929688,47.2120424628907],[134.224879179688,47.1742360664062],[134.221724882813,47.148843],[134.22490359375,47.123280866211],[134.205152617188,47.0986177802735],[134.128267851563,47.0874282050782],[134.111676054688,47.0592031074219],[134.113741484375,47.0426076484375],[134.08818484375,47.0005324531251],[134.060533476563,46.9783901191407],[134.066090117188,46.9337227607422],[134.049019804688,46.9046840644532],[134.032896757813,46.8482900214844],[134.013355742188,46.8150453925781],[134.041241484375,46.7927150703125],[134.043013945313,46.7784828925782],[134.01931765625,46.7381764960938],[134.02552859375,46.6882601142579],[133.999215117188,46.6258138251953],[133.917261992188,46.6023836494141],[133.886378203125,46.5290840888672],[133.867345,46.513843],[133.86170046875,46.5181990791016],[133.75267703125,46.536108625],[133.722345,46.5178108955078],[133.70298953125,46.5294869208984],[133.658277617188,46.5419368720704],[133.607345,46.5344100166016],[133.572345,46.5395821357422],[133.527432890625,46.5329451728516],[133.493326445313,46.5123696113281],[133.48298953125,46.5494869208985],[133.477345,46.553843],[133.471685820313,46.5685604072266],[133.473839140625,46.5858699775391],[133.494595976563,46.6211751533204],[133.43937625,46.6599867988282],[133.444381132813,46.7002016425782],[133.398917265625,46.7366085029297],[133.329478789063,46.7486928535157],[133.30677859375,46.7770400214845],[133.254049101563,46.809067609375],[133.221793242188,46.8182900214844],[133.192896757813,46.8393959785156],[133.161236601563,46.8527370429688],[133.128858671875,46.8717696357423],[133.137345,46.893843],[133.137345,46.913843]]]]}},{"type":"Feature","properties":{"name":"四方台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.291793242188,46.7582900214844],[131.311793242188,46.7422743964844],[131.284722929688,46.7365663886719],[131.247769804688,46.7582900214844],[131.254722929688,46.7064327216797],[131.312183867188,46.7194850898438],[131.327345,46.7175991035157],[131.351793242188,46.720639875],[131.342896757813,46.6882900214844],[131.329346953125,46.6652400947266],[131.358922148438,46.6165511298829],[131.382799101563,46.619521100586],[131.387345,46.613843],[131.382535429688,46.6086525703126],[131.366964140625,46.5942244697266],[131.343678007813,46.5690938544923],[131.32252078125,46.5682552314453],[131.294986601563,46.5979750800782],[131.287345,46.573843],[131.25142703125,46.5779274726563],[131.227345,46.583843],[131.231158476563,46.6000307441406],[131.246202421875,46.6214583564454],[131.24064578125,46.6393007636719],[131.2566809375,46.6621413398438],[131.211158476563,46.6776552558594],[131.207345,46.703843],[131.214620390625,46.7456447578125],[131.242896757813,46.7682900214844],[131.258912382813,46.7882900214844],[131.282896757813,46.7793959785157],[131.291793242188,46.7582900214844]]]]}},{"type":"Feature","properties":{"name":"友谊县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.244224882813,46.9054213691407],[132.193385039063,46.8740651679688],[132.191803007813,46.8585201240235],[132.213595,46.8204726386719],[132.207345,46.803843],[132.17197390625,46.7792147041016],[132.16271609375,46.7684712958985],[132.15197390625,46.7592147041016],[132.14271609375,46.7384712958985],[132.12314578125,46.7216115546875],[132.077916289063,46.707993390625],[132.062105742188,46.7092641425781],[132.032266875,46.6983065009766],[132.01271609375,46.7092147041016],[131.984761992188,46.7184712958985],[131.97271609375,46.6784712958984],[131.90197390625,46.6292147041016],[131.89271609375,46.6184712958985],[131.8666809375,46.5960414863282],[131.787345,46.6038430000001],[131.771793242188,46.6082900214844],[131.760850859375,46.6342543769532],[131.707345,46.6275991035157],[131.687345,46.6300868964844],[131.612174101563,46.6207369208984],[131.602896757813,46.5882900214844],[131.589810820313,46.5542360664063],[131.593023710938,46.5283901191407],[131.579249296875,46.5173622871094],[131.539210234375,46.5223427558594],[131.522896757813,46.5793959785156],[131.506265898438,46.5927150703126],[131.467345,46.6038430000001],[131.476060820313,46.625048444336],[131.470367460938,46.653843],[131.475308867188,46.6788430000001],[131.463736601563,46.7374080634766],[131.500860625,46.7958803535156],[131.563170195313,46.8180178046876],[131.622784453125,46.844712140625],[131.627345,46.883843],[131.712808867188,46.8793056464844],[131.7255090625,46.8640126777344],[131.748267851563,46.8829177070313],[131.767345,46.9058815742187],[131.789420195313,46.8793056464844],[131.861881132813,46.8896797919922],[131.852808867188,46.8993056464844],[131.822808867188,46.9123165107422],[131.833155546875,46.9544985175781],[131.954342070313,46.9883803535156],[132.05611453125,46.9779402900391],[132.161881132813,46.9583803535156],[132.261534453125,46.945630109375],[132.241793242188,46.9292330146485],[132.244224882813,46.9054213691407]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大同区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.087345,45.903843],[125.099537382813,45.900419538086],[125.090767851563,45.8916506171876],[125.087345,45.903843]]],[[[125.087345,45.903843],[125.05752078125,45.922997663086],[125.03298953125,45.9081990791016],[124.99170046875,45.8994869208985],[124.980806914063,45.8853755927734],[124.952345,45.8895821357422],[124.942027617188,45.8880568671875],[124.875499296875,45.9171303535157],[124.811768828125,45.8698799873047],[124.80298953125,45.8181990791016],[124.797345,45.8038430000001],[124.752281523438,45.7704140449219],[124.702896757813,45.7893959785157],[124.6586340625,45.8020516181641],[124.642896757813,45.8393959785157],[124.626920195313,45.8482900214844],[124.574893828125,45.8177053046876],[124.5061340625,45.8306716132813],[124.482896757813,45.8714345527344],[124.541881132813,45.896288678711],[124.551793242188,45.9157820869141],[124.382345,45.9369759345704],[124.371632109375,45.9624025703125],[124.336978789063,45.9901528144531],[124.327345,46.0238430000001],[124.331793242188,46.0293959785157],[124.412896757813,46.0382900214844],[124.43759890625,46.0528090644531],[124.451793242188,46.0942659736328],[124.416265898438,46.1227150703125],[124.355972929688,46.1399532294922],[124.322896757813,46.1593959785156],[124.25259890625,46.1794960761719],[124.23556765625,46.17737815625],[124.222896757813,46.2139943671876],[124.273658476563,46.2448262763672],[124.308970976563,46.2240700507813],[124.4228528125,46.2382350898438],[124.43963015625,46.2591854072266],[124.5370715625,46.2686971259766],[124.564776640625,46.3143074775391],[124.556285429688,46.3825478339844],[124.637345,46.4438430000001],[124.684947539063,46.4316268134766],[124.72326296875,46.4097585273438],[124.727345,46.403843],[124.739595976563,46.3901308417969],[124.7894934375,46.3583956123048],[124.742803984375,46.291552350586],[124.741749296875,46.273843],[124.7426575,46.2585903144532],[124.732061796875,46.2491243720703],[124.722613554688,46.2285292792969],[124.710069609375,46.2292763496094],[124.677906523438,46.1932802558594],[124.642628203125,46.1617568183594],[124.678077421875,46.1497536445313],[124.732061796875,46.1691243720704],[124.7626575,46.1785720039063],[124.7608996875,46.2080989814453],[124.835777617188,46.2281533027344],[124.89259890625,46.2315401435548],[124.917345,46.203843],[124.905416289063,46.1946364570313],[124.90095828125,46.1644509101563],[124.91170046875,46.1381990791016],[124.929195585938,46.1091963935547],[124.91298953125,46.0881990791016],[124.87298953125,46.0642757392578],[124.901773710938,46.0549288154298],[124.959581328125,46.0717848945312],[125.060445585938,46.0866902900391],[125.063082304688,46.0688430000001],[125.059967070313,46.0477529121094],[125.10170046875,46.0539199042969],[125.09298953125,46.0381990791016],[125.081314726563,46.0291872382813],[125.087345,46.013843],[125.094810820313,45.9944228339844],[125.104156523438,45.9192958808594],[125.091793242188,45.9093959785157],[125.087345,45.903843]]]]}},{"type":"Feature","properties":{"name":"杜尔伯特蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.612896757813,46.7282900214844],[124.592896757813,46.6762581611328],[124.621793242188,46.6482900214844],[124.690787382813,46.6063838935547],[124.69439578125,46.577348859375],[124.63892703125,46.5539754462891],[124.616969023438,46.4968508125],[124.637345,46.4438430000001],[124.556285429688,46.3825478339844],[124.564776640625,46.3143074775391],[124.5370715625,46.2686971259766],[124.43963015625,46.2591854072266],[124.4228528125,46.2382350898438],[124.308970976563,46.2240700507813],[124.273658476563,46.2448262763672],[124.222896757813,46.2139943671876],[124.23556765625,46.17737815625],[124.25259890625,46.1794960761719],[124.322896757813,46.1593959785156],[124.355972929688,46.1399532294922],[124.416265898438,46.1227150703125],[124.451793242188,46.0942659736328],[124.43759890625,46.0528090644531],[124.412896757813,46.0382900214844],[124.331793242188,46.0293959785157],[124.327345,46.0238430000001],[124.32170046875,46.0194869208985],[124.310787382813,45.9677614570312],[124.2134778125,45.9279366279297],[124.177345,45.9332759833984],[124.135264921875,45.9270577216797],[124.10427859375,45.8869118476563],[124.057345,45.8738430000001],[124.044097929688,45.8886702705078],[123.99923953125,45.9025215888672],[123.952628203125,45.9417568183594],[123.973233671875,45.9796840644532],[123.9989075,45.978153913086],[124.022061796875,45.9806917548829],[123.995753203125,46.0042024970704],[123.982628203125,46.0197200751953],[124.032769804688,46.0167317939453],[124.031070585938,46.04524925],[123.994254179688,46.0621462226563],[124.01353640625,46.0793758369141],[123.991749296875,46.098843],[124.002628203125,46.1085616279297],[124.012061796875,46.1206917548828],[123.99185671875,46.1387453437501],[124.002886992188,46.1590431953125],[123.9720325,46.1685720039063],[123.9726575,46.1790956855469],[123.943468046875,46.2051784492188],[123.973829375,46.2191139960938],[123.9508996875,46.2396016669922],[123.953228789063,46.2786562324219],[123.940494414063,46.2885616279297],[123.915679960938,46.2607881904297],[123.899678984375,46.2491243720703],[123.902769804688,46.3009542060547],[123.853570585938,46.2980220771485],[123.837345,46.303843],[123.856373320313,46.3463442207031],[123.834288359375,46.3646895576172],[123.863834257813,46.3892330146485],[123.860069609375,46.4261556220703],[123.818858671875,46.444028546875],[123.833233671875,46.4691213203125],[123.810816679688,46.478843],[123.813834257813,46.5084529853516],[123.797642851563,46.5219026923828],[123.814620390625,46.5515419746094],[123.810753203125,46.5894802070313],[123.745308867188,46.6438430000001],[123.7631653125,46.6586788154297],[123.746983671875,46.6869307685548],[123.777047148438,46.7119026923828],[123.758780546875,46.7437929511719],[123.817345,46.7378237128906],[123.842491484375,46.7403865791016],[123.851881132813,46.7083803535157],[123.867159453125,46.6817079902344],[123.932061796875,46.7093813300782],[123.951954375,46.7073537421875],[123.961881132813,46.7193056464844],[123.992896757813,46.7384352851563],[123.991636992188,46.7507942939453],[124.013541289063,46.7689882636719],[123.991881132813,46.7783803535157],[123.972808867188,46.8093056464844],[123.951881132813,46.8183803535157],[123.942808867188,46.8393056464844],[123.9132434375,46.8521279121095],[123.932808867188,46.8683803535156],[123.95095828125,46.9102303291016],[124.01025515625,46.9594863105469],[123.997345,46.993843],[124.00142703125,46.9997585273437],[124.06326296875,47.0079274726563],[124.076197539063,47.0266628242188],[124.071051054688,47.0496169257813],[124.09326296875,47.0579274726563],[124.14142703125,47.0997585273438],[124.18326296875,47.1279274726563],[124.187345,47.1338430000001],[124.299947539063,47.1394197822266],[124.337345,47.1338430000001],[124.347735625,47.0933571601562],[124.381724882813,47.0712233710938],[124.53326296875,47.0197585273438],[124.54142703125,46.9579274726563],[124.567345,46.9438430000001],[124.628350859375,46.9190535712891],[124.680728789063,46.8771089912109],[124.703453398438,46.8384493232422],[124.658814726563,46.8256850410156],[124.621793242188,46.7793959785157],[124.612896757813,46.7282900214844]]]]}},{"type":"Feature","properties":{"name":"红岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.964971953125,46.2469484687501],[124.952896757813,46.2182900214844],[124.917345,46.203843],[124.89259890625,46.2315401435548],[124.835777617188,46.2281533027344],[124.7608996875,46.2080989814453],[124.7626575,46.1785720039063],[124.732061796875,46.1691243720704],[124.678077421875,46.1497536445313],[124.642628203125,46.1617568183594],[124.677906523438,46.1932802558594],[124.710069609375,46.2292763496094],[124.722613554688,46.2285292792969],[124.732061796875,46.2491243720703],[124.7426575,46.2585903144532],[124.741749296875,46.273843],[124.742803984375,46.291552350586],[124.7894934375,46.3583956123048],[124.739595976563,46.3901308417969],[124.727345,46.403843],[124.796744414063,46.4236855292969],[124.811793242188,46.4593959785156],[124.825357695313,46.482470319336],[124.868912382813,46.5008235908204],[124.891793242188,46.5293959785157],[124.904742460938,46.5397670722657],[124.917345,46.583843],[124.97955203125,46.5760622382813],[124.997345,46.553843],[125.004268828125,46.537353131836],[124.99326296875,46.5079274726563],[124.97142703125,46.4997585273438],[124.937877226563,46.4380178046876],[124.903829375,46.4145125556641],[124.96091921875,46.3931514716797],[124.97142703125,46.3779274726562],[125.017345,46.3738430000001],[125.026163359375,46.3509041572266],[125.010772734375,46.3385811591797],[125.04552859375,46.3286440253907],[125.054078398438,46.25991721875],[124.964971953125,46.2469484687501]]]]}},{"type":"Feature","properties":{"name":"林甸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.383922148438,47.2660353828126],[124.387345,47.2538430000001],[124.375152617188,47.2572664619141],[124.383922148438,47.2660353828126]]],[[[125.162808867188,47.3893056464844],[125.178199492188,47.3707759833985],[125.306217070313,47.3838246894532],[125.322808867188,47.3093056464844],[125.327345,47.2838430000001],[125.32326296875,47.1479274726563],[125.3105871875,47.1391762519532],[125.274171171875,47.0832564521485],[125.31142703125,47.0279274726562],[125.327345,47.0238430000001],[125.333985625,47.010483625],[125.337345,46.993843],[125.2957825,47.0084108710937],[125.23408328125,46.9659560371094],[125.171041289063,46.8765340400391],[125.157345,46.8638430000001],[125.062574492188,46.8697505927734],[124.9831653125,46.8650179267578],[124.977345,46.8338430000001],[124.885284453125,46.8249575019532],[124.866026640625,46.8465126777344],[124.732081328125,46.8385292792969],[124.722628203125,46.8569283271484],[124.772628203125,46.8685616279297],[124.792061796875,46.8983034492188],[124.719049101563,46.9820174384766],[124.795406523438,47.0055959296876],[124.769429960938,47.0385616279298],[124.715421171875,47.0092116523438],[124.64619265625,46.9931056953125],[124.578487578125,46.9563118720704],[124.567345,46.9438430000001],[124.54142703125,46.9579274726563],[124.53326296875,47.0197585273438],[124.381724882813,47.0712233710938],[124.347735625,47.0933571601562],[124.337345,47.1338430000001],[124.378370390625,47.1574977851563],[124.4216809375,47.1948085761719],[124.401265898438,47.250400006836],[124.402745390625,47.268843],[124.401060820313,47.2898140693359],[124.4227746875,47.3085195136719],[124.420504179688,47.3367299628907],[124.477345,47.353843],[124.4822278125,47.3376284003907],[124.517345,47.3404500556641],[124.552803984375,47.3376009345703],[124.627486601563,47.3061495185548],[124.70197390625,47.3392147041016],[124.790660429688,47.3728700996094],[124.82197390625,47.4092147041016],[124.87271609375,47.4184712958985],[124.903277617188,47.4355208564453],[125.01271609375,47.4684712958985],[125.017345,47.4738430000001],[125.042808867188,47.4693056464844],[125.071881132813,47.3983803535157],[125.162808867188,47.3893056464844]]]]}},{"type":"Feature","properties":{"name":"龙凤区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.237345,46.463843],[125.233922148438,46.4760353828125],[125.225152617188,46.4672664619141],[125.26197390625,46.4243849921875],[125.237701445313,46.4169313789063],[125.153726835938,46.4297273994141],[125.130738554688,46.4495351386719],[125.170660429688,46.4839302802735],[125.097345,46.4780397773438],[125.043033476563,46.4824037910156],[125.041944609375,46.468843],[125.043258085938,46.4524715400391],[124.981070585938,46.4288729072266],[125.03197390625,46.4061598945313],[125.02271609375,46.3784712958985],[125.017345,46.3738430000001],[124.97142703125,46.3779274726562],[124.96091921875,46.3931514716797],[124.903829375,46.4145125556641],[124.937877226563,46.4380178046876],[124.97142703125,46.4997585273438],[124.99326296875,46.5079274726563],[125.004268828125,46.537353131836],[124.997345,46.553843],[125.04978640625,46.5589626289063],[125.106597929688,46.5712544990235],[125.134327421875,46.6462502265625],[125.16341921875,46.6585097480469],[125.146925078125,46.6865682197266],[125.207345,46.703843],[125.250235625,46.6912569404297],[125.268687773438,46.6590395332031],[125.173717070313,46.6483901191407],[125.233834257813,46.5984529853516],[125.231807890625,46.5785781074219],[125.243682890625,46.5469741035157],[125.241803007813,46.5285201240234],[125.25853640625,46.4993056464844],[125.221881132813,46.5083803535157],[125.182686796875,46.5365883613282],[125.156173125,46.5145613837891],[125.202022734375,46.488300397461],[125.249176054688,46.4931069160156],[125.263287382813,46.468466413086],[125.237345,46.463843]]]]}},{"type":"Feature","properties":{"name":"让胡路区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.722628203125,46.8569283271484],[124.732081328125,46.8385292792969],[124.866026640625,46.8465126777344],[124.885284453125,46.8249575019532],[124.977345,46.8338430000001],[125.031822539063,46.8454817939454],[125.012061796875,46.8091243720704],[125.002003203125,46.7232588935547],[124.942628203125,46.6985616279297],[124.89162234375,46.6789553046876],[124.9026575,46.6690956855469],[124.90095828125,46.6405940986328],[124.9126575,46.6190688300781],[124.9115246875,46.6000661445313],[124.917345,46.583843],[124.904742460938,46.5397670722657],[124.891793242188,46.5293959785157],[124.868912382813,46.5008235908204],[124.825357695313,46.482470319336],[124.811793242188,46.4593959785156],[124.796744414063,46.4236855292969],[124.727345,46.403843],[124.72326296875,46.4097585273438],[124.684947539063,46.4316268134766],[124.637345,46.4438430000001],[124.616969023438,46.4968508125],[124.63892703125,46.5539754462891],[124.69439578125,46.577348859375],[124.690787382813,46.6063838935547],[124.621793242188,46.6482900214844],[124.592896757813,46.6762581611328],[124.612896757813,46.7282900214844],[124.621793242188,46.7793959785157],[124.658814726563,46.8256850410156],[124.703453398438,46.8384493232422],[124.680728789063,46.8771089912109],[124.628350859375,46.9190535712891],[124.567345,46.9438430000001],[124.578487578125,46.9563118720704],[124.64619265625,46.9931056953125],[124.715421171875,47.0092116523438],[124.769429960938,47.0385616279298],[124.795406523438,47.0055959296876],[124.719049101563,46.9820174384766],[124.792061796875,46.8983034492188],[124.772628203125,46.8685616279297],[124.722628203125,46.8569283271484]]]]}},{"type":"Feature","properties":{"name":"萨尔图区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.157345,46.8638430000001],[125.152081328125,46.83868675],[125.191744414063,46.8199678779297],[125.141949492188,46.7587837958984],[125.172535429688,46.7390334296875],[125.182154570313,46.7286525703125],[125.202535429688,46.7190334296875],[125.207345,46.703843],[125.146925078125,46.6865682197266],[125.16341921875,46.6585097480469],[125.134327421875,46.6462502265625],[125.106597929688,46.5712544990235],[125.04978640625,46.5589626289063],[124.997345,46.553843],[124.97955203125,46.5760622382813],[124.917345,46.583843],[124.9115246875,46.6000661445313],[124.9126575,46.6190688300781],[124.90095828125,46.6405940986328],[124.9026575,46.6690956855469],[124.89162234375,46.6789553046876],[124.942628203125,46.6985616279297],[125.002003203125,46.7232588935547],[125.012061796875,46.8091243720704],[125.031822539063,46.8454817939454],[124.977345,46.8338430000001],[124.9831653125,46.8650179267578],[125.062574492188,46.8697505927734],[125.157345,46.8638430000001]]]]}},{"type":"Feature","properties":{"name":"肇源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.382345,45.9369759345704],[124.551793242188,45.9157820869141],[124.541881132813,45.896288678711],[124.482896757813,45.8714345527344],[124.5061340625,45.8306716132813],[124.574893828125,45.8177053046876],[124.626920195313,45.8482900214844],[124.642896757813,45.8393959785157],[124.6586340625,45.8020516181641],[124.702896757813,45.7893959785157],[124.752281523438,45.7704140449219],[124.797345,45.8038430000001],[124.858258085938,45.7953395820313],[124.912252226563,45.7587392402344],[124.922823515625,45.758954694336],[124.94224734375,45.7387429023438],[124.96244265625,45.7289430976563],[124.9745715625,45.6792018867188],[125.03916140625,45.7013112617188],[125.06244265625,45.6789430976563],[125.103629179688,45.6360762763672],[125.224718046875,45.6183815742188],[125.287345,45.6196590400391],[125.362345,45.6181288886719],[125.412056914063,45.6191432929688],[125.490094023438,45.5789430976563],[125.521197539063,45.6036183906251],[125.533956328125,45.6559658027344],[125.61244265625,45.6687429023438],[125.659581328125,45.6808229804688],[125.707345,45.673843],[125.707345,45.663843],[125.717345,45.663843],[125.724605742188,45.621103131836],[125.753609648438,45.6092317939454],[125.741549101563,45.589233625],[125.743824492188,45.5738430000001],[125.740670195313,45.5524935126954],[125.75170046875,45.5381990791016],[125.757345,45.5338430000001],[125.7451965625,45.5197444892578],[125.687345,45.513843],[125.66013796875,45.5033846259766],[125.63095828125,45.5205361152344],[125.608472929688,45.517739484375],[125.586832304688,45.4907149482422],[125.521793242188,45.4793959785156],[125.488546171875,45.4598537421875],[125.472896757813,45.4793959785156],[125.420548125,45.4882900214844],[125.423590117188,45.463843],[125.420142851563,45.4361208320313],[125.359249296875,45.3873622871094],[125.338472929688,45.3899465156251],[125.312857695313,45.4219313789063],[125.30267703125,45.3977687812501],[125.282896757813,45.4093959785157],[125.252935820313,45.4182900214844],[125.175421171875,45.3961556220703],[125.147345,45.4126601386719],[125.092711210938,45.3805458808594],[125.087345,45.3738430000001],[125.071881132813,45.3783803535157],[125.052808867188,45.3953694892579],[125.082808867188,45.4083803535157],[125.091881132813,45.4213442207032],[125.062345,45.4183333564453],[125.045494414063,45.4200508857422],[125.027471953125,45.4616060615235],[125.046529570313,45.4948751044923],[124.982345,45.4883333564453],[124.965406523438,45.4900600410157],[124.932808867188,45.5293056464844],[124.914234648438,45.5447322822266],[124.902808867188,45.5183803535157],[124.880015898438,45.4867098212891],[124.884610625,45.4416036201172],[124.877725859375,45.4293056464845],[124.834517851563,45.4540535712891],[124.769888945313,45.4297695136719],[124.772896757813,45.4592702460938],[124.749420195313,45.4683803535156],[124.730391875,45.4454744697266],[124.687345,45.4498622871094],[124.669107695313,45.4480031562501],[124.657345,45.433843],[124.61224734375,45.4387429023438],[124.57216921875,45.4524599433594],[124.572803984375,45.4214650703125],[124.525162382813,45.4089430976563],[124.459947539063,45.4584255195313],[124.395924101563,45.4365114570313],[124.367345,45.4538430000001],[124.36298953125,45.4694869208985],[124.351392851563,45.4887075019532],[124.36312625,45.5185512519531],[124.358785429688,45.5479225898438],[124.283922148438,45.5368593574219],[124.259093046875,45.5518367744141],[124.264947539063,45.5914437080078],[124.242345,45.5881038642578],[124.219049101563,45.5915462470704],[124.225924101563,45.6380666328126],[124.18486453125,45.6132985664063],[124.128604765625,45.6216121650391],[124.143424101563,45.6593080878906],[124.120611601563,45.6686452460938],[124.139078398438,45.6829012275391],[124.098365507813,45.6995638251953],[124.08298953125,45.7194869208985],[124.077345,45.7238430000001],[124.067725859375,45.7342244697266],[124.05093875,45.7497780585938],[124.01244265625,45.7482521796875],[123.992535429688,45.7759883857423],[124.055792265625,45.7960158515625],[124.023214140625,45.8262026191406],[124.06896609375,45.8406880927735],[124.057345,45.8738430000001],[124.10427859375,45.8869118476563],[124.135264921875,45.9270577216797],[124.177345,45.9332759833984],[124.2134778125,45.9279366279297],[124.310787382813,45.9677614570312],[124.32170046875,46.0194869208985],[124.327345,46.0238430000001],[124.336978789063,45.9901528144531],[124.371632109375,45.9624025703125],[124.382345,45.9369759345704]]]]}},{"type":"Feature","properties":{"name":"肇州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.087345,45.903843],[125.090767851563,45.8916506171876],[125.099537382813,45.900419538086],[125.091793242188,45.9093959785157],[125.104156523438,45.9192958808594],[125.094810820313,45.9944228339844],[125.087345,46.013843],[125.132896757813,46.0382900214844],[125.155572539063,46.0756172919922],[125.192896757813,46.0982900214844],[125.221793242188,46.1343715644532],[125.151890898438,46.1256771064453],[125.123702421875,46.1608779121094],[125.102345,46.1582210517579],[125.092345,46.1594649482422],[125.08181765625,46.1581557441407],[125.072896757813,46.2048390937501],[125.099151640625,46.2182900214844],[125.112345,46.1869771552735],[125.147735625,46.1913796210938],[125.202506132813,46.1703279853516],[125.211793242188,46.1482900214844],[125.283316679688,46.1358431220704],[125.347345,46.1438430000001],[125.361241484375,46.1051149726562],[125.412633085938,45.8828499580079],[125.689581328125,45.9054494453125],[125.709078398438,45.800985944336],[125.782061796875,45.787362897461],[125.762628203125,45.7685616279297],[125.712628203125,45.7569283271485],[125.722061796875,45.7485616279297],[125.768004179688,45.7343764472657],[125.797999296875,45.6914315009766],[125.732061796875,45.6791243720703],[125.722628203125,45.6685616279297],[125.717345,45.663843],[125.717345,45.673843],[125.707345,45.673843],[125.659581328125,45.6808229804688],[125.61244265625,45.6687429023438],[125.533956328125,45.6559658027344],[125.521197539063,45.6036183906251],[125.490094023438,45.5789430976563],[125.412056914063,45.6191432929688],[125.362345,45.6181288886719],[125.287345,45.6196590400391],[125.224718046875,45.6183815742188],[125.103629179688,45.6360762763672],[125.06244265625,45.6789430976563],[125.03916140625,45.7013112617188],[124.9745715625,45.6792018867188],[124.96244265625,45.7289430976563],[124.94224734375,45.7387429023438],[124.922823515625,45.758954694336],[124.912252226563,45.7587392402344],[124.858258085938,45.7953395820313],[124.797345,45.8038430000001],[124.80298953125,45.8181990791016],[124.811768828125,45.8698799873047],[124.875499296875,45.9171303535157],[124.942027617188,45.8880568671875],[124.952345,45.8895821357422],[124.980806914063,45.8853755927734],[124.99170046875,45.8994869208985],[125.03298953125,45.9081990791016],[125.05752078125,45.922997663086],[125.087345,45.903843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"嘉荫县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.807345,48.603843],[129.810767851563,48.5916506171875],[129.819537382813,48.6004198432618],[129.802896757813,48.6093959785157],[129.701793242188,48.6382900214844],[129.669693632813,48.6839534736328],[129.657345,48.6938430000001],[129.664508085938,48.737439496582],[129.633795195313,48.7788661933594],[129.612623320313,48.7952059150391],[129.60298953125,48.8264736152344],[129.66298953125,48.8681993842773],[129.68701296875,48.9083663154297],[129.65170046875,48.9181993842774],[129.63298953125,48.9294866157227],[129.61170046875,48.9381993842774],[129.587345,48.9528911567383],[129.562735625,48.938046491211],[129.547047148438,48.9403649116211],[129.507345,48.933843],[129.451793242188,48.9482900214844],[129.442896757813,48.9693959785156],[129.431676054688,48.988483197754],[129.43775515625,49.0373488593751],[129.407486601563,49.0501042915039],[129.352345,49.0432457709961],[129.291529570313,49.0508104682618],[129.242896757813,49.0793959785157],[129.22166140625,49.088344953125],[129.231246367188,49.1654048896485],[129.172613554688,49.2636721015625],[129.162896757813,49.3182503486329],[129.230279570313,49.372209394043],[129.280987578125,49.3659023261719],[129.287345,49.373843],[129.326803007813,49.3492150092774],[129.37435671875,49.3588018012696],[129.368873320313,49.4270592475586],[129.417838164063,49.4450408149415],[129.530699492188,49.4143206000977],[129.54271609375,49.3592150092774],[129.55468875,49.2806636787109],[129.605738554688,49.2765615058594],[129.685792265625,49.2984709907227],[129.729127226563,49.2835729194337],[129.74271609375,49.2592150092774],[129.754718046875,49.1804491401367],[129.854366484375,49.1690254951172],[129.849683867188,49.1107131171875],[129.93197390625,49.0957024360352],[129.92271609375,49.0684709907227],[129.90271609375,49.0512401557618],[129.935186796875,49.0297090888672],[130.009508085938,49.0161516547852],[130.0434778125,48.976723859375],[130.120709257813,48.9422627998047],[130.21271609375,48.8892150092774],[130.226104765625,48.8592150092774],[130.29271609375,48.8684709907227],[130.372081328125,48.897616803711],[130.459429960938,48.9046352363281],[130.507178984375,48.8492150092774],[130.55271609375,48.8584709907227],[130.634410429688,48.8884709907227],[130.69197390625,48.8696483588868],[130.67271609375,48.8384709907227],[130.618844023438,48.7920580268555],[130.55271609375,48.6684709907227],[130.514010039063,48.6138796210938],[130.601632109375,48.5874980903321],[130.614405546875,48.4898827338867],[130.651265898438,48.4869210029297],[130.737178984375,48.5184709907227],[130.7671496875,48.4841341376953],[130.731763945313,48.4389455390625],[130.76271609375,48.3692147041016],[130.767345,48.3538430000001],[130.754527617188,48.3389632392579],[130.68197390625,48.3192147041016],[130.672022734375,48.3076638007813],[130.642818632813,48.3100099921875],[130.57197390625,48.2992147041016],[130.510401640625,48.2857851386719],[130.48197390625,48.2984712958985],[130.462022734375,48.3216292548829],[130.417345,48.3180397773438],[130.402022734375,48.3192708564453],[130.392667265625,48.3084151435547],[130.380728789063,48.309374616211],[130.362667265625,48.2884151435547],[130.28033328125,48.2950313544923],[130.2619153125,48.2791664863282],[130.263424101563,48.260400006836],[130.243287382813,48.2055605292969],[130.2419153125,48.1885195136719],[130.26197390625,48.1712404609376],[130.235279570313,48.1674019599609],[130.212345,48.1692446113282],[130.192345,48.1676375556641],[130.172066679688,48.169267194336],[130.127345,48.143843],[130.09197390625,48.1484712958985],[130.07084109375,48.1730007148438],[129.984517851563,48.2227700019532],[129.970865507813,48.2533638740234],[129.912843046875,48.2950270820313],[129.867345,48.3138430000001],[129.883863554688,48.3388362861329],[129.869215117188,48.3613259101563],[129.89326296875,48.3779274726563],[129.90142703125,48.3976625800781],[129.861041289063,48.408026959961],[129.863526640625,48.4191213203126],[129.857345,48.4338430000001],[129.86170046875,48.4394869208985],[129.873585234375,48.5013069892579],[129.846378203125,48.5223079658203],[129.815831328125,48.5038823676759],[129.80298953125,48.5794866157227],[129.789390898438,48.5899837470704],[129.807345,48.603843]]]]}},{"type":"Feature","properties":{"name":"铁力市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.61978640625,47.4452523017578],[128.62349734375,47.4286959052735],[128.609859648438,47.3846877265626],[128.62142703125,47.3679274726562],[128.63361453125,47.3595131660156],[128.631070585938,47.3481661201172],[128.697345,47.303843],[128.69271609375,47.2984712958985],[128.671060820313,47.279814069336],[128.672769804688,47.2585646796876],[128.651773710938,47.2209365058594],[128.653424101563,47.200400006836],[128.63271609375,47.144009015625],[128.664986601563,47.0898360419922],[128.682623320313,47.0884188056641],[128.717345,47.1077913642578],[128.757803984375,47.0852181220704],[128.8287121875,47.1006850410157],[128.862105742188,47.0884218574219],[128.879615507813,47.089829328125],[128.98197390625,47.0308162666016],[128.97271609375,47.0084712958985],[128.95740359375,46.9810237861328],[128.98271609375,46.9592147041016],[128.995235625,46.9311580634766],[129.026788359375,46.8807851386719],[129.05271609375,46.8692147041016],[129.072901640625,46.8457851386719],[129.146851835938,46.8660237861328],[129.164610625,46.8454091621094],[129.21197390625,46.8492147041016],[129.217345,46.853843],[129.24298953125,46.8494869208985],[129.26170046875,46.8381990791016],[129.290787382813,46.8262960029297],[129.313140898438,46.7892336250001],[129.310445585938,46.7709914375],[129.36298953125,46.7494869208985],[129.37170046875,46.7381990791016],[129.4082825,46.728012921875],[129.39298953125,46.7081990791016],[129.3585559375,46.6941072822266],[129.347345,46.653843],[129.34197390625,46.6492147041016],[129.270479765625,46.6362526679688],[129.20201296875,46.5796181464844],[129.197345,46.533843],[129.157642851563,46.5403646064453],[129.10982546875,46.5332985664063],[129.070616484375,46.5569490791016],[129.03298953125,46.5081990791016],[129.02170046875,46.4994869208985],[129.010142851563,46.4845107246094],[128.95298953125,46.5094869208985],[128.891636992188,46.5224330878907],[128.855264921875,46.5170577216797],[128.831832304688,46.4867018867188],[128.787345,46.4932759833985],[128.702955351563,46.4808058906251],[128.69298953125,46.5394869208985],[128.6790246875,46.5750026679688],[128.63205203125,46.5680611396485],[128.59990359375,46.5806990791015],[128.565240507813,46.5755763984375],[128.53298953125,46.5994869208984],[128.49170046875,46.6081990791016],[128.447345,46.6256368232422],[128.389527617188,46.6029073310547],[128.393160429688,46.5783309150391],[128.377086210938,46.5659255195313],[128.352345,46.5695821357423],[128.342345,46.5681038642578],[128.322345,46.571059796875],[128.302345,46.5681038642578],[128.292345,46.5695821357423],[128.282135039063,46.5680727363282],[128.242418242188,46.5796529365235],[128.217345,46.573843],[128.19197390625,46.5784712958985],[128.10865359375,46.5966451240235],[128.053043242188,46.6360744453125],[128.0380871875,46.6695870185548],[127.96197390625,46.7284712958985],[127.929576445313,46.7660744453126],[127.89197390625,46.7984712958985],[127.88271609375,46.8092147041016],[127.814029570313,46.86839378125],[127.78197390625,46.8884712958985],[127.74271609375,46.9192147041016],[127.689918242188,46.9392519355469],[127.66572390625,46.9673311591797],[127.63197390625,46.9884712958985],[127.62271609375,47.0000185371094],[127.6424621875,46.9984316230469],[127.738443632813,47.0133211494141],[127.82259890625,47.0658473945313],[127.93271609375,47.0784712958985],[127.962291289063,47.08933128125],[128.0066809375,47.07718284375],[128.042345,47.080048444336],[128.10588015625,47.0749434638673],[128.173902617188,47.0999233222657],[128.192345,47.098441388672],[128.226436796875,47.1011806464844],[128.25595828125,47.1354476142579],[128.296041289063,47.1605544257813],[128.341998320313,47.1568617988282],[128.355181914063,47.1864064765625],[128.470826445313,47.2342305732422],[128.48197390625,47.2592147041016],[128.494273710938,47.269814069336],[128.490455351563,47.31737815625],[128.53271609375,47.3684712958985],[128.543961210938,47.4058229804688],[128.537345,47.423843],[128.55033328125,47.4426564765625],[128.580264921875,47.4359468818359],[128.607345,47.453843],[128.61978640625,47.4452523017578]]]]}},{"type":"Feature","properties":{"name":"乌伊岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.507345,48.873843],[129.510767851563,48.8616506171876],[129.519537382813,48.8704198432618],[129.51392703125,48.8895098090821],[129.488980742188,48.898843],[129.513673125,48.9080815864258],[129.507345,48.933843],[129.547047148438,48.9403649116211],[129.562735625,48.938046491211],[129.587345,48.9528911567383],[129.61170046875,48.9381993842774],[129.63298953125,48.9294866157227],[129.65170046875,48.9181993842774],[129.68701296875,48.9083663154297],[129.66298953125,48.8681993842773],[129.60298953125,48.8264736152344],[129.612623320313,48.7952059150391],[129.633795195313,48.7788661933594],[129.664508085938,48.737439496582],[129.657345,48.6938430000001],[129.65271609375,48.6884709907227],[129.579654570313,48.6773375678711],[129.58412234375,48.6217107368164],[129.5712121875,48.6067238593751],[129.53197390625,48.5892150092774],[129.4808996875,48.5492150092774],[129.42197390625,48.5584709907227],[129.367340117188,48.5785338569336],[129.23197390625,48.5984709907227],[129.187345,48.6238430000001],[129.192764921875,48.6386046577149],[129.191710234375,48.6517565131836],[129.223951445313,48.6795351386719],[129.158326445313,48.736073834961],[129.1727746875,48.7485192084961],[129.171671171875,48.7622380805665],[129.254293242188,48.7396263862305],[129.251236601563,48.7776448798829],[129.27584109375,48.7913741279298],[129.312667265625,48.7884151435547],[129.328253203125,48.8065056586915],[129.362345,48.8092446113282],[129.372345,48.8084413886719],[129.387345,48.8096465278321],[129.428624296875,48.8063295722657],[129.44271609375,48.8184709907227],[129.45197390625,48.8292150092774],[129.48572390625,48.8503548408203],[129.50197390625,48.8692150092774],[129.507345,48.873843]]]]}},{"type":"Feature","properties":{"name":"汤旺河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.807345,48.603843],[129.819537382813,48.6004198432618],[129.810767851563,48.5916506171875],[129.807345,48.603843]]],[[[129.807345,48.603843],[129.789390898438,48.5899837470704],[129.80298953125,48.5794866157227],[129.815831328125,48.5038823676759],[129.846378203125,48.5223079658203],[129.873585234375,48.5013069892579],[129.86170046875,48.4394869208985],[129.857345,48.4338430000001],[129.773219023438,48.4278969550782],[129.737345,48.4300350166016],[129.712345,48.4285451484375],[129.702159453125,48.4291524482422],[129.632628203125,48.4085616279298],[129.532061796875,48.3991243720703],[129.47595828125,48.3871376777345],[129.413482695313,48.3908614326172],[129.367345,48.3838430000001],[129.235025664063,48.3765987373048],[129.218199492188,48.4472408271485],[129.182154570313,48.4586522651367],[129.143121367188,48.4855123115234],[129.051710234375,48.4663872504883],[128.987345,48.4738430000001],[128.979874296875,48.4920174384766],[129.011519804688,48.5496678901368],[129.023170195313,48.5580181098633],[129.031519804688,48.5696678901367],[129.063170195313,48.5780181098633],[129.083267851563,48.6060616279297],[129.102345,48.6098311591797],[129.117374296875,48.6068608833008],[129.181519804688,48.6196678901368],[129.187345,48.6238430000001],[129.23197390625,48.5984709907227],[129.367340117188,48.5785338569336],[129.42197390625,48.5584709907227],[129.4808996875,48.5492150092774],[129.53197390625,48.5892150092774],[129.5712121875,48.6067238593751],[129.58412234375,48.6217107368164],[129.579654570313,48.6773375678711],[129.65271609375,48.6884709907227],[129.657345,48.6938430000001],[129.669693632813,48.6839534736328],[129.701793242188,48.6382900214844],[129.802896757813,48.6093959785157],[129.807345,48.603843]]]]}},{"type":"Feature","properties":{"name":"带岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.0327746875,47.109189069336],[129.030401640625,47.0796517158204],[129.136178007813,47.0688619208985],[129.16345828125,47.0199587226563],[129.19123171875,46.9577272773438],[129.236070585938,46.8944838691407],[129.22197390625,46.8692147041016],[129.217345,46.853843],[129.21197390625,46.8492147041016],[129.164610625,46.8454091621094],[129.146851835938,46.8660237861328],[129.072901640625,46.8457851386719],[129.05271609375,46.8692147041016],[129.026788359375,46.8807851386719],[128.995235625,46.9311580634766],[128.98271609375,46.9592147041016],[128.95740359375,46.9810237861328],[128.97271609375,47.0084712958985],[128.98197390625,47.0308162666016],[128.879615507813,47.089829328125],[128.862105742188,47.0884218574219],[128.8287121875,47.1006850410157],[128.757803984375,47.0852181220704],[128.717345,47.1077913642578],[128.682623320313,47.0884188056641],[128.664986601563,47.0898360419922],[128.63271609375,47.144009015625],[128.653424101563,47.200400006836],[128.651773710938,47.2209365058594],[128.672769804688,47.2585646796876],[128.671060820313,47.279814069336],[128.69271609375,47.2984712958985],[128.697345,47.303843],[128.712628203125,47.3085616279297],[128.852061796875,47.3591243720703],[128.867345,47.3638430000001],[128.874014921875,47.3272658515625],[128.96271609375,47.2292147041016],[128.97197390625,47.1984712958985],[128.993492460938,47.1681215644531],[128.990279570313,47.1281508613282],[129.0327746875,47.109189069336]]]]}},{"type":"Feature","properties":{"name":"新青区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.857345,48.4338430000001],[129.863526640625,48.4191213203126],[129.861041289063,48.408026959961],[129.90142703125,48.3976625800781],[129.89326296875,48.3779274726563],[129.869215117188,48.3613259101563],[129.883863554688,48.3388362861329],[129.867345,48.3138430000001],[129.861519804688,48.3096681953125],[129.8423059375,48.2598494697266],[129.775133085938,48.2463826728516],[129.803428984375,48.2093288398438],[129.800367460938,48.193843],[129.805186796875,48.1694631171875],[129.791519804688,48.1596681953125],[129.774820585938,48.1363680244141],[129.747554960938,48.1168257880859],[129.731676054688,48.1199629951173],[129.723170195313,48.1040029121094],[129.74345828125,48.0894612861328],[129.73123171875,48.0282155585938],[129.774351835938,47.9988643623047],[129.761519804688,47.9896681953126],[129.753170195313,47.9780178046875],[129.707345,47.9738430000001],[129.698892851563,47.9847914863282],[129.64170046875,48.0081990791016],[129.617921171875,48.0479616523438],[129.597345,48.063843],[129.588453398438,48.0749489570313],[129.571793242188,48.0882900214844],[129.562896757813,48.1393959785156],[129.533521757813,48.2422792792969],[129.461236601563,48.2727370429688],[129.424625273438,48.2942592597657],[129.390728789063,48.3424813056641],[129.367345,48.3838430000001],[129.413482695313,48.3908614326172],[129.47595828125,48.3871376777345],[129.532061796875,48.3991243720703],[129.632628203125,48.4085616279298],[129.702159453125,48.4291524482422],[129.712345,48.4285451484375],[129.737345,48.4300350166016],[129.773219023438,48.4278969550782],[129.857345,48.4338430000001]]]]}},{"type":"Feature","properties":{"name":"红星区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.143121367188,48.4855123115234],[129.182154570313,48.4586522651367],[129.218199492188,48.4472408271485],[129.235025664063,48.3765987373048],[129.367345,48.3838430000001],[129.390728789063,48.3424813056641],[129.424625273438,48.2942592597657],[129.461236601563,48.2727370429688],[129.533521757813,48.2422792792969],[129.562896757813,48.1393959785156],[129.571793242188,48.0882900214844],[129.588453398438,48.0749489570313],[129.597345,48.063843],[129.580889921875,48.0335646796875],[129.517379179688,48.047802350586],[129.45326296875,48.0279274726563],[129.307345,48.023843],[129.31197390625,48.0492147041016],[129.345362578125,48.0963045478516],[129.341236601563,48.1476137519532],[129.29197390625,48.1784712958985],[129.272457304688,48.2222078681641],[129.24197390625,48.2484712958985],[129.217213164063,48.2772078681641],[129.19197390625,48.2884712958985],[129.1673840625,48.3021901679688],[129.09849734375,48.3821492744141],[129.052345,48.3784413886719],[129.025875273438,48.3805684638673],[128.967345,48.413843],[128.945621367188,48.4170088935547],[128.984801054688,48.4563866401367],[128.987345,48.4738430000001],[129.051710234375,48.4663872504883],[129.143121367188,48.4855123115234]]]]}},{"type":"Feature","properties":{"name":"五营区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.025875273438,48.3805684638673],[129.052345,48.3784413886719],[129.09849734375,48.3821492744141],[129.1673840625,48.3021901679688],[129.19197390625,48.2884712958985],[129.217213164063,48.2772078681641],[129.24197390625,48.2484712958985],[129.272457304688,48.2222078681641],[129.29197390625,48.1784712958985],[129.341236601563,48.1476137519532],[129.345362578125,48.0963045478516],[129.31197390625,48.0492147041016],[129.307345,48.023843],[129.30142703125,48.0197585273438],[129.269366484375,47.9721419501953],[129.235513945313,47.9487709785157],[129.21142703125,47.9397585273438],[129.207345,47.9338430000001],[129.17142703125,47.9379274726562],[129.147345,47.953843],[129.18271609375,47.9984712958985],[129.209737578125,48.0590218330078],[129.16056765625,48.0884712958985],[129.14271609375,48.0484712958984],[129.130328398438,48.0377999091797],[129.104449492188,48.0398793769531],[129.020670195313,48.1091786933594],[128.94197390625,48.1584712958984],[128.894928007813,48.1918288398438],[128.86271609375,48.2292147041016],[128.857345,48.2338430000001],[128.857345,48.263843],[128.861519804688,48.2696681953125],[128.90728640625,48.2788430000001],[128.899381132813,48.3188430000001],[128.923472929688,48.3281349921876],[128.914136992188,48.3753865791016],[128.958018828125,48.4008278632813],[128.967345,48.413843],[129.025875273438,48.3805684638673]]]]}},{"type":"Feature","properties":{"name":"伊春区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.933980742188,47.7006832099609],[128.863746367188,47.6593959785157],[128.833863554688,47.6816292548828],[128.826988554688,47.7369014716797],[128.837345,47.763843],[128.845426054688,47.7798183417969],[128.877345,47.7838430000001],[128.928443632813,47.7452022529297],[128.933980742188,47.7006832099609]]]]}},{"type":"Feature","properties":{"name":"翠峦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.59271609375,47.8792147041016],[128.60716921875,47.7999813056641],[128.667345,47.793843],[128.671881132813,47.7883803535156],[128.740797148438,47.7490346503906],[128.744273710938,47.7149263740235],[128.670416289063,47.6727596259766],[128.673448515625,47.6429964423829],[128.623219023438,47.6212105537109],[128.612808867188,47.5283803535156],[128.599288359375,47.5047774482423],[128.607345,47.453843],[128.580264921875,47.4359468818359],[128.55033328125,47.4426564765625],[128.537345,47.423843],[128.526226835938,47.414941022461],[128.472896757813,47.3482900214844],[128.454332304688,47.3393959785156],[128.441016875,47.3859749580078],[128.384605742188,47.409745709961],[128.367345,47.4075991035157],[128.33951296875,47.4110610175782],[128.3454309375,47.458671491211],[128.311793242188,47.4682900214844],[128.302896757813,47.4793959785157],[128.291793242188,47.4882900214844],[128.27400515625,47.5105025458985],[128.21615359375,47.5348799873048],[128.246749296875,47.5593807197266],[128.237345,47.583843],[128.283287382813,47.5980300117188],[128.282047148438,47.618843],[128.2826575,47.629095685547],[128.272061796875,47.6385616279297],[128.262628203125,47.6506917548829],[128.282628203125,47.6685616279297],[128.292515898438,47.7005953193359],[128.312628203125,47.7185616279297],[128.322061796875,47.7302028632813],[128.252764921875,47.7620095039063],[128.273194609375,47.7996059394532],[128.272047148438,47.8188430000001],[128.272838164063,47.8320919013673],[128.332613554688,47.8285292792969],[128.344595976563,47.8546450019532],[128.327345,47.8938430000001],[128.34271609375,47.8984712958985],[128.355577421875,47.9272890449219],[128.39271609375,47.9384712958985],[128.410103789063,47.9586519599609],[128.44271609375,47.9684712958984],[128.478565703125,47.9884712958985],[128.509151640625,47.9767494941406],[128.579000273438,47.9165724921876],[128.59271609375,47.8792147041016]]]]}},{"type":"Feature","properties":{"name":"金山屯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.887345,47.4438430000001],[129.899537382813,47.440419538086],[129.890767851563,47.4316506171875],[129.887345,47.4438430000001]]],[[[129.914835234375,47.5766616035157],[129.927345,47.5538430000001],[129.903804960938,47.5589070869141],[129.914835234375,47.5766616035157]]],[[[129.887345,47.4438430000001],[129.8319153125,47.419189069336],[129.832745390625,47.408843],[129.831485625,47.3931508613282],[129.904932890625,47.3603780341798],[129.8919153125,47.3491664863281],[129.8927746875,47.3384847236329],[129.85197390625,47.3292147041016],[129.847345,47.313843],[129.82224734375,47.3089430976563],[129.732428007813,47.2887392402344],[129.721646757813,47.2889595771484],[129.697252226563,47.3143477607422],[129.62244265625,47.2887429023438],[129.57224734375,47.2789430976563],[129.560328398438,47.2422200751953],[129.492042265625,47.2289430976563],[129.49275515625,47.2639412666015],[129.46224734375,47.2787429023438],[129.434146757813,47.2932186103516],[129.461163359375,47.3456691718751],[129.3864075,47.3587429023438],[129.289112578125,47.3192787910156],[129.201275664063,47.3493428779297],[129.187345,47.3638430000001],[129.206470976563,47.3860427070313],[129.306002226563,47.4434285712891],[129.32197390625,47.4792147041016],[129.359957304688,47.4906508613281],[129.37197390625,47.5247017646485],[129.34197390625,47.5784712958985],[129.337345,47.603843],[129.346710234375,47.6770229316406],[129.43672,47.6970607734376],[129.529888945313,47.6875643134766],[129.583878203125,47.7026601386719],[129.64603640625,47.6793056464845],[129.692808867188,47.6883803535157],[129.701881132813,47.7493056464844],[129.807345,47.753843],[129.872906523438,47.7427053046875],[129.906392851563,47.7168587470703],[129.891314726563,47.6784987617188],[129.918941679688,47.6571742988282],[129.90298953125,47.6181990791016],[129.890362578125,47.5972658515625],[129.89611453125,47.5583309150391],[129.868878203125,47.5373073554688],[129.873082304688,47.5088430000001],[129.870128203125,47.488843],[129.894078398438,47.4790407539063],[129.8814465625,47.4692916083985],[129.887345,47.4438430000001]]]]}},{"type":"Feature","properties":{"name":"西林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.337345,47.603843],[129.34197390625,47.5784712958985],[129.37197390625,47.5247017646485],[129.359957304688,47.4906508613281],[129.32197390625,47.4792147041016],[129.306002226563,47.4434285712891],[129.206470976563,47.3860427070313],[129.187345,47.3638430000001],[129.16000125,47.3696852851563],[129.077345,47.3638430000001],[129.083311796875,47.3800881171875],[129.02271609375,47.4322920966797],[129.03627078125,47.4570705390625],[129.082154570313,47.4966017890626],[129.09197390625,47.5292147041016],[129.15271609375,47.5384712958985],[129.217486601563,47.5920455146485],[129.287198515625,47.5864443183594],[129.32197390625,47.5992147041016],[129.337345,47.603843]]]]}},{"type":"Feature","properties":{"name":"南岔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.567345,47.0238430000001],[129.563922148438,47.0360353828126],[129.555152617188,47.0272664619141],[129.5894153125,46.9894808173829],[129.570362578125,46.9647951484375],[129.52298953125,46.9834181953125],[129.5327746875,46.9550881171875],[129.554483671875,46.9383309150391],[129.551607695313,46.918843],[129.553082304688,46.9088430000001],[129.551519804688,46.8982729316406],[129.580084257813,46.8865828681641],[129.592686796875,46.855786359375],[129.625084257813,46.8138161445313],[129.697471953125,46.7985408759766],[129.691607695313,46.758843],[129.695709257813,46.7310634589844],[129.66298953125,46.7181990791016],[129.579215117188,46.7092201972657],[129.5572278125,46.6807338691407],[129.52170046875,46.6594869208985],[129.497345,46.613843],[129.477345,46.6222432685547],[129.426339140625,46.6008193183594],[129.400787382813,46.6378273750001],[129.36142703125,46.6479274726563],[129.347345,46.653843],[129.3585559375,46.6941072822266],[129.39298953125,46.7081990791016],[129.4082825,46.728012921875],[129.37170046875,46.7381990791016],[129.36298953125,46.7494869208985],[129.310445585938,46.7709914375],[129.313140898438,46.7892336250001],[129.290787382813,46.8262960029297],[129.26170046875,46.8381990791016],[129.24298953125,46.8494869208985],[129.217345,46.853843],[129.22197390625,46.8692147041016],[129.236070585938,46.8944838691407],[129.19123171875,46.9577272773438],[129.16345828125,47.0199587226563],[129.136178007813,47.0688619208985],[129.030401640625,47.0796517158204],[129.0327746875,47.109189069336],[128.990279570313,47.1281508613282],[128.993492460938,47.1681215644531],[128.97197390625,47.1984712958985],[128.96271609375,47.2292147041016],[128.874014921875,47.3272658515625],[128.867345,47.3638430000001],[128.867345,47.373843],[129.02271609375,47.3692147041016],[129.077345,47.3638430000001],[129.16000125,47.3696852851563],[129.187345,47.3638430000001],[129.201275664063,47.3493428779297],[129.289112578125,47.3192787910156],[129.3864075,47.3587429023438],[129.461163359375,47.3456691718751],[129.434146757813,47.2932186103516],[129.46224734375,47.2787429023438],[129.49275515625,47.2639412666015],[129.492042265625,47.2289430976563],[129.560328398438,47.2422200751953],[129.57224734375,47.2789430976563],[129.62244265625,47.2887429023438],[129.697252226563,47.3143477607422],[129.721646757813,47.2889595771484],[129.732428007813,47.2887392402344],[129.82224734375,47.3089430976563],[129.847345,47.313843],[129.887345,47.303843],[129.854112578125,47.2555135322266],[129.78365359375,47.2642775703126],[129.772896757813,47.1782900214845],[129.7409778125,47.1648390937501],[129.74474734375,47.134536359375],[129.686202421875,47.117798078125],[129.711793242188,47.0742659736329],[129.682681914063,47.0496498847657],[129.639527617188,47.0373274970704],[129.622183867188,47.0394850898438],[129.572896757813,47.0282900214844],[129.567345,47.0238430000001]]]]}},{"type":"Feature","properties":{"name":"乌马河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.132428007813,47.7907570625],[129.1178528125,47.6992592597657],[129.097003203125,47.6984334541016],[129.0385559375,47.7386525703125],[128.993609648438,47.7267763496095],[128.89935671875,47.5808113837891],[128.843468046875,47.5631179023438],[128.825079375,47.4752095771485],[128.85353640625,47.448843],[128.813214140625,47.4114833808594],[128.860133085938,47.3966286445313],[128.867345,47.373843],[128.867345,47.3638430000001],[128.852061796875,47.3591243720703],[128.712628203125,47.3085616279297],[128.697345,47.303843],[128.631070585938,47.3481661201172],[128.63361453125,47.3595131660156],[128.62142703125,47.3679274726562],[128.609859648438,47.3846877265626],[128.62349734375,47.4286959052735],[128.61978640625,47.4452523017578],[128.607345,47.453843],[128.599288359375,47.5047774482423],[128.612808867188,47.5283803535156],[128.623219023438,47.6212105537109],[128.673448515625,47.6429964423829],[128.670416289063,47.6727596259766],[128.744273710938,47.7149263740235],[128.740797148438,47.7490346503906],[128.671881132813,47.7883803535156],[128.667345,47.793843],[128.75271609375,47.7892147041016],[128.837345,47.763843],[128.826988554688,47.7369014716797],[128.833863554688,47.6816292548828],[128.863746367188,47.6593959785157],[128.933980742188,47.7006832099609],[128.928443632813,47.7452022529297],[128.877345,47.7838430000001],[128.91080203125,47.8271865058594],[128.980386992188,47.84187034375],[128.997345,47.8638430000001],[129.05271609375,47.8884712958984],[129.09197390625,47.9192147041016],[129.126456328125,47.9295967841797],[129.147345,47.953843],[129.17142703125,47.9379274726562],[129.207345,47.9338430000001],[129.200811796875,47.8724373603516],[129.171353789063,47.8268239570313],[129.132428007813,47.7907570625]]]]}},{"type":"Feature","properties":{"name":"美溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.617921171875,48.0479616523438],[129.64170046875,48.0081990791016],[129.698892851563,47.9847914863282],[129.707345,47.9738430000001],[129.66658328125,47.9694356513673],[129.681246367188,47.9277461982422],[129.711246367188,47.9171944404297],[129.703443632813,47.8977461982422],[129.684835234375,47.8858339667969],[129.711886015625,47.8673091865235],[129.746011992188,47.8768996406251],[129.74093875,47.8588430000001],[129.74375125,47.848843],[129.737486601563,47.8265560126954],[129.763443632813,47.8099398017579],[129.771246367188,47.7877461982422],[129.795636015625,47.7721334052735],[129.807345,47.753843],[129.701881132813,47.7493056464844],[129.692808867188,47.6883803535157],[129.64603640625,47.6793056464845],[129.583878203125,47.7026601386719],[129.529888945313,47.6875643134766],[129.43672,47.6970607734376],[129.346710234375,47.6770229316406],[129.337345,47.603843],[129.32197390625,47.5992147041016],[129.287198515625,47.5864443183594],[129.217486601563,47.5920455146485],[129.15271609375,47.5384712958985],[129.09197390625,47.5292147041016],[129.082154570313,47.4966017890626],[129.03627078125,47.4570705390625],[129.02271609375,47.4322920966797],[129.083311796875,47.3800881171875],[129.077345,47.3638430000001],[129.02271609375,47.3692147041016],[128.867345,47.373843],[128.860133085938,47.3966286445313],[128.813214140625,47.4114833808594],[128.85353640625,47.448843],[128.825079375,47.4752095771485],[128.843468046875,47.5631179023438],[128.89935671875,47.5808113837891],[128.993609648438,47.7267763496095],[129.0385559375,47.7386525703125],[129.097003203125,47.6984334541016],[129.1178528125,47.6992592597657],[129.132428007813,47.7907570625],[129.171353789063,47.8268239570313],[129.200811796875,47.8724373603516],[129.207345,47.9338430000001],[129.21142703125,47.9397585273438],[129.235513945313,47.9487709785157],[129.269366484375,47.9721419501953],[129.30142703125,48.0197585273438],[129.307345,48.023843],[129.45326296875,48.0279274726563],[129.517379179688,48.047802350586],[129.580889921875,48.0335646796875],[129.597345,48.063843],[129.617921171875,48.0479616523438]]]]}},{"type":"Feature","properties":{"name":"上甘岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.104449492188,48.0398793769531],[129.130328398438,48.0377999091797],[129.14271609375,48.0484712958984],[129.16056765625,48.0884712958985],[129.209737578125,48.0590218330078],[129.18271609375,47.9984712958985],[129.147345,47.953843],[129.126456328125,47.9295967841797],[129.09197390625,47.9192147041016],[129.05271609375,47.8884712958984],[128.997345,47.8638430000001],[128.987906523438,47.8744057441406],[128.9087121875,47.8891878486328],[128.862628203125,47.942821881836],[128.891978789063,48.0246218085938],[128.810538359375,48.0435695625001],[128.815074492188,48.1196468330079],[128.832652617188,48.1686415839845],[128.830928984375,48.1975685859375],[128.857345,48.2338430000001],[128.86271609375,48.2292147041016],[128.894928007813,48.1918288398438],[128.94197390625,48.1584712958984],[129.020670195313,48.1091786933594],[129.104449492188,48.0398793769531]]]]}},{"type":"Feature","properties":{"name":"友好区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.744503203125,48.3988088203125],[128.76271609375,48.3492147041016],[128.779000273438,48.2951381660156],[128.817511015625,48.2504366279298],[128.842667265625,48.2484151435547],[128.85197390625,48.2592147041016],[128.857345,48.263843],[128.857345,48.2338430000001],[128.830928984375,48.1975685859375],[128.832652617188,48.1686415839845],[128.815074492188,48.1196468330079],[128.810538359375,48.0435695625001],[128.891978789063,48.0246218085938],[128.862628203125,47.942821881836],[128.9087121875,47.8891878486328],[128.987906523438,47.8744057441406],[128.997345,47.8638430000001],[128.980386992188,47.84187034375],[128.91080203125,47.8271865058594],[128.877345,47.7838430000001],[128.845426054688,47.7798183417969],[128.837345,47.763843],[128.75271609375,47.7892147041016],[128.667345,47.793843],[128.60716921875,47.7999813056641],[128.59271609375,47.8792147041016],[128.579000273438,47.9165724921876],[128.509151640625,47.9767494941406],[128.478565703125,47.9884712958985],[128.44271609375,47.9684712958984],[128.410103789063,47.9586519599609],[128.39271609375,47.9384712958985],[128.355577421875,47.9272890449219],[128.34271609375,47.8984712958985],[128.327345,47.8938430000001],[128.29298953125,47.9194869208985],[128.24170046875,47.9281990791016],[128.22298953125,47.9394869208984],[128.16170046875,47.9481990791016],[128.150494414063,48.0013124824219],[128.153082304688,48.018843],[128.150206328125,48.0383309150391],[128.163160429688,48.0483309150391],[128.16076296875,48.0645369697266],[128.127345,48.073843],[128.13197390625,48.0792147041016],[128.16271609375,48.0984712958985],[128.185357695313,48.1247524238281],[128.257491484375,48.1512416816407],[128.329859648438,48.1454268623047],[128.343472929688,48.1698238349609],[128.339215117188,48.2227992988281],[128.3666028125,48.2545870185547],[128.38271609375,48.2684712958985],[128.3937903125,48.293290631836],[128.455943632813,48.3654299140625],[128.5352746875,48.3798128486329],[128.552550078125,48.3784249091797],[128.592139921875,48.3892610908203],[128.602623320313,48.3884188056641],[128.634498320313,48.4062038398438],[128.691715117188,48.4108010078125],[128.744503203125,48.3988088203125]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东风区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.407345,46.7938430000001],[130.44142703125,46.7850960517578],[130.432823515625,46.7670064521485],[130.407345,46.783843],[130.407345,46.7938430000001]]],[[[130.407345,46.7938430000001],[130.39181765625,46.8016994453125],[130.387345,46.8238430000001],[130.39406375,46.83712425],[130.413985625,46.8472023750001],[130.417345,46.853843],[130.450777617188,46.848843],[130.42072390625,46.8296053291016],[130.42396609375,46.8180806708985],[130.411246367188,46.8099398017579],[130.407345,46.7938430000001]]]]}},{"type":"Feature","properties":{"name":"抚远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.510426054688,48.4229579902344],[134.583365507813,48.4021291328126],[134.687843046875,48.4151241279297],[134.766397734375,48.3599068427735],[134.719117460938,48.2820687080079],[134.665426054688,48.2494564033204],[134.673428984375,48.1851241279297],[134.662896757813,48.1482900214844],[134.644146757813,48.1332747626954],[134.620543242188,48.0944112373047],[134.553170195313,48.0404586005859],[134.545787382813,47.9811074042969],[134.600689726563,47.9371401191406],[134.602965117188,47.918843],[134.601656523438,47.9083187080078],[134.660894804688,47.8955025458985],[134.663590117188,47.873843],[134.661261015625,47.8551241279297],[134.671793242188,47.8182900214844],[134.702896757813,47.7993959785156],[134.731793242188,47.7782900214844],[134.770064726563,47.7621614814453],[134.77490359375,47.723280866211],[134.736217070313,47.6749709296876],[134.682310820313,47.6318056464844],[134.672896757813,47.5882900214844],[134.63791140625,47.5670400214844],[134.615904570313,47.5395571113281],[134.575553007813,47.5225539375],[134.562896757813,47.4782900214844],[134.511793242188,47.4593959785157],[134.49279421875,47.448227765625],[134.384049101563,47.4347017646484],[134.327345,47.4438430000001],[134.302061796875,47.4391243720703],[134.25830203125,47.4274031806641],[134.183560820313,47.5611263251954],[134.1020715625,47.5042055488281],[134.029698515625,47.530175397461],[133.970235625,47.5266310859375],[133.841641875,47.5402913642579],[133.726641875,47.533437116211],[133.717345,47.543843],[133.71170046875,47.5681990791016],[133.702730742188,47.806347272461],[133.671041289063,47.849091413086],[133.70298953125,47.8681990791016],[133.71170046875,47.9694869208985],[133.727603789063,47.9817604804688],[133.767174101563,47.9759127021485],[133.80170046875,47.9894869208985],[133.85298953125,47.9981990791016],[133.86170046875,48.0094869208984],[133.91298953125,48.0381990791016],[133.92490359375,48.0536367011719],[133.964722929688,48.0477529121094],[133.961514921875,48.0694637275391],[134.03298953125,48.0781990791016],[134.04170046875,48.0894869208984],[134.073170195313,48.0982503486329],[134.071168242188,48.1117940498047],[134.11314578125,48.1684133125001],[134.111607695313,48.178843],[134.1131653125,48.1893819404297],[134.068990507813,48.2158022285156],[134.036324492188,48.2581221748048],[134.00670046875,48.2702455878906],[133.997345,48.303843],[134.013248320313,48.3165785957032],[134.010582304688,48.3380019355469],[134.042345,48.3419527412109],[134.129029570313,48.3311702705079],[134.168453398438,48.3627370429688],[134.18732546875,48.386308209961],[134.272345,48.3757332587891],[134.307345,48.3800868964844],[134.32974734375,48.37730003125],[134.392896757813,48.3882900214844],[134.458140898438,48.416454694336],[134.510426054688,48.4229579902344]]]]}},{"type":"Feature","properties":{"name":"富锦市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.197345,46.973843],[133.193922148438,46.9616506171876],[133.185152617188,46.9704195380859],[133.197345,46.973843]]],[[[133.197345,46.973843],[133.197345,46.9838430000001],[133.210152617188,46.9788430000001],[133.197345,46.973843]]],[[[133.217345,47.063843],[133.205152617188,47.060419538086],[133.213922148438,47.0516506171875],[133.230343046875,47.0582814765625],[133.223717070313,47.0345833564453],[133.209288359375,47.0442287421875],[133.198258085938,47.0277309394532],[133.220260039063,47.0183162666016],[133.190343046875,47.0108461738281],[133.187345,47.003843],[133.175152617188,47.000419538086],[133.183922148438,46.9916506171875],[133.187345,47.003843],[133.20547,47.0001845527344],[133.197345,46.9838430000001],[133.18142703125,46.9797585273438],[133.150982695313,46.9599306464844],[133.15361453125,46.9481728339844],[133.14107546875,46.9395131660156],[133.145557890625,46.9195131660157],[133.137345,46.913843],[133.133922148438,46.9260353828126],[133.125152617188,46.9172664619141],[133.137345,46.913843],[133.137345,46.893843],[133.101881132813,46.8893056464844],[133.082667265625,46.878300397461],[133.072345,46.8793526435547],[133.055025664063,46.8775875068359],[132.992808867188,46.8383803535156],[132.961881132813,46.8293056464844],[132.945045195313,46.8090377021485],[132.882476835938,46.7906764960938],[132.871920195313,46.7663381171876],[132.842081328125,46.7693794990235],[132.812100859375,46.7581154609375],[132.794298125,46.7795516181641],[132.78213015625,46.7783113837891],[132.738394804688,46.7905385566407],[132.719610625,46.8131514716797],[132.596534453125,46.8006063056641],[132.544547148438,46.7860707832032],[132.509107695313,46.78968284375],[132.478053007813,46.8270693183594],[132.375050078125,46.8165700507813],[132.39312625,46.7684596992188],[132.356285429688,46.7593056464844],[132.292808867188,46.7993056464844],[132.207345,46.803843],[132.213595,46.8204726386719],[132.191803007813,46.8585201240235],[132.193385039063,46.8740651679688],[132.244224882813,46.9054213691407],[132.241793242188,46.9292330146485],[132.261534453125,46.945630109375],[132.161881132813,46.9583803535156],[132.05611453125,46.9779402900391],[131.954342070313,46.9883803535156],[131.833155546875,46.9544985175781],[131.822808867188,46.9123165107422],[131.852808867188,46.8993056464844],[131.861881132813,46.8896797919922],[131.789420195313,46.8793056464844],[131.767345,46.9058815742187],[131.748267851563,46.8829177070313],[131.7255090625,46.8640126777344],[131.712808867188,46.8793056464844],[131.627345,46.883843],[131.51951296875,46.888579328125],[131.530484648438,47.0251662421875],[131.54271609375,47.0584712958984],[131.547345,47.073843],[131.55443484375,47.1032674384766],[131.55000125,47.1257076240234],[131.493389921875,47.1585286689453],[131.503453398438,47.2094631171875],[131.487554960938,47.2208602119141],[131.458551054688,47.2151290107422],[131.437345,47.223843],[131.4473840625,47.2354958320312],[131.473326445313,47.2499697089844],[131.502345,47.2476375556641],[131.522550078125,47.2492610908203],[131.580299101563,47.2334560371094],[131.677345,47.2412532783203],[131.721490507813,47.2377065253906],[131.772056914063,47.2692678046875],[131.802345,47.2668343330078],[131.877550078125,47.2728774238282],[131.91818484375,47.2440663886719],[132.02115359375,47.2597566962891],[132.042764921875,47.3186043525391],[132.038936796875,47.3662575507812],[132.11271609375,47.3884712958985],[132.13197390625,47.3992147041016],[132.202935820313,47.4084993720704],[132.28271609375,47.4584712958985],[132.29197390625,47.4692147041016],[132.307345,47.4738430000001],[132.342154570313,47.4586525703125],[132.37357546875,47.4487044501953],[132.401065703125,47.4190334296875],[132.422550078125,47.4286592841798],[132.421373320313,47.4583480048829],[132.462408476563,47.4691005683594],[132.4823059375,47.4585720039063],[132.512193632813,47.4690474677735],[132.52252078125,47.468637921875],[132.532154570313,47.4790334296875],[132.562535429688,47.4886525703126],[132.592154570313,47.5090334296876],[132.622535429688,47.5186525703126],[132.662154570313,47.5490334296876],[132.72275515625,47.5934835029297],[132.7220325,47.6117067695313],[132.824576445313,47.5983370185547],[132.881793242188,47.600605084961],[132.89474734375,47.573153913086],[133.0003528125,47.5172743964844],[133.33482546875,47.4590334296875],[133.362535429688,47.4686525703125],[133.40033328125,47.4886525703126],[133.422535429688,47.4790334296875],[133.447345,47.463843],[133.39197390625,47.3992147041016],[133.34271609375,47.3284712958985],[133.285772734375,47.295639875],[133.2927746875,47.2085195136719],[133.2766028125,47.1945870185547],[133.26271609375,47.1784712958985],[133.25197390625,47.1692147041016],[133.23963015625,47.1282234931641],[133.211646757813,47.0887532783203],[133.222926054688,47.0790358710938],[133.217345,47.063843]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.977345,47.013843],[129.965152617188,47.0172664619141],[129.973922148438,47.0260353828125],[129.977345,47.013843]]],[[[130.057345,46.583843],[130.067345,46.583843],[130.067345,46.5938430000001],[130.079537382813,46.5972664619141],[130.070767851563,46.6060353828125],[130.067345,46.5938430000001],[130.057345,46.5938430000001],[130.032183867188,46.58933128125],[129.987135039063,46.5641994453125],[129.923082304688,46.6171858955078],[129.917345,46.623843],[129.922003203125,46.6715572333985],[129.948453398438,46.6927370429688],[129.9659778125,46.7146254707031],[129.960440703125,46.7591609931641],[130.036104765625,46.7723287177735],[130.092374296875,46.7480373359375],[130.121793242188,46.7622743964844],[130.101793242188,46.7782900214844],[130.092896757813,46.8093959785156],[130.075152617188,46.8395815253907],[130.042066679688,46.8660762763672],[130.029010039063,46.9704775214844],[129.981793242188,47.0082900214844],[129.977345,47.013843],[130.002896757813,47.0093959785157],[130.058970976563,46.9933846259766],[130.072354765625,47.0100966621094],[130.122896757813,46.9793959785157],[130.170426054688,46.9446791816407],[130.229249296875,46.9373622871094],[130.243590117188,46.9488430000001],[130.21861453125,46.968843],[130.242896757813,46.9882900214844],[130.256261015625,47.0049764228516],[130.301793242188,47.010639875],[130.292896757813,46.9782900214844],[130.262896757813,46.9656484199219],[130.304625273438,46.9493959785157],[130.352896757813,46.9582900214844],[130.380719023438,46.9746425605469],[130.441890898438,46.9670333076172],[130.462584257813,46.9928755927734],[130.522896757813,47.0182900214844],[130.556920195313,47.0382900214844],[130.582896757813,47.0293959785156],[130.587345,47.0238430000001],[130.593004179688,47.0091255927735],[130.589859648438,46.9838430000001],[130.593013945313,46.9584828925782],[130.581676054688,46.9392031074219],[130.584156523438,46.9192958808594],[130.542896757813,46.8862581611329],[130.572896757813,46.8882900214844],[130.621793242188,46.9070839667969],[130.612896757813,46.8782900214844],[130.590479765625,46.8688430000001],[130.5942590625,46.8384603095704],[130.492135039063,46.8256868720703],[130.471666289063,46.8092958808594],[130.472965117188,46.798843],[130.47166140625,46.7883278632813],[130.517760039063,46.7751467109375],[130.533013945313,46.7492031074219],[130.529405546875,46.7202016425781],[130.551793242188,46.7022743964844],[130.542896757813,46.6882900214844],[130.515504179688,46.6767464423829],[130.476558867188,46.6104903388672],[130.497345,46.5938430000001],[130.469283476563,46.5600600410157],[130.452081328125,46.5583065009766],[130.410172148438,46.5740535712891],[130.381158476563,46.5574349189454],[130.362345,46.5593526435547],[130.343238554688,46.5574050117188],[130.301568632813,46.5873928046875],[130.272345,46.5903719306641],[130.242735625,46.5873537421876],[130.210011015625,46.6267501044923],[130.213912382813,46.5884615302734],[130.202808867188,46.5383803535156],[130.19093875,46.5176552558594],[130.19443484375,46.4833602119141],[130.147345,46.493843],[130.152388945313,46.5529152656251],[130.191676054688,46.6252156806641],[130.142628203125,46.5985616279297],[130.107940703125,46.5878517890625],[130.125054960938,46.5077608466797],[130.082525664063,46.5191518378906],[130.072174101563,46.5185347724609],[130.022628203125,46.5306917548828],[130.052388945313,46.5572835517579],[130.057345,46.583843]],[[130.450777617188,46.848843],[130.417345,46.853843],[130.35338015625,46.8490590644532],[130.338995390625,46.777011334961],[130.367345,46.783843],[130.382105742188,46.7776436591797],[130.407345,46.783843],[130.432823515625,46.7670064521485],[130.44142703125,46.7850960517578],[130.407345,46.7938430000001],[130.411246367188,46.8099398017579],[130.42396609375,46.8180806708985],[130.42072390625,46.8296053291016],[130.450777617188,46.848843]]]]}},{"type":"Feature","properties":{"name":"前进区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.407345,46.783843],[130.382105742188,46.7776436591797],[130.367345,46.783843],[130.3586340625,46.8193178535156],[130.387345,46.8238430000001],[130.39181765625,46.8016994453125],[130.407345,46.7938430000001],[130.407345,46.783843]]]]}},{"type":"Feature","properties":{"name":"汤原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.567345,47.0238430000001],[129.555152617188,47.0272664619141],[129.563922148438,47.0360353828126],[129.567345,47.0238430000001]]],[[[129.977345,47.013843],[129.973922148438,47.0260353828125],[129.965152617188,47.0172664619141],[129.981793242188,47.0082900214844],[130.029010039063,46.9704775214844],[130.042066679688,46.8660762763672],[130.075152617188,46.8395815253907],[130.092896757813,46.8093959785156],[130.101793242188,46.7782900214844],[130.121793242188,46.7622743964844],[130.092374296875,46.7480373359375],[130.036104765625,46.7723287177735],[129.960440703125,46.7591609931641],[129.9659778125,46.7146254707031],[129.948453398438,46.6927370429688],[129.922003203125,46.6715572333985],[129.917345,46.623843],[129.885201445313,46.6031978583985],[129.85170046875,46.5894869208985],[129.81298953125,46.5581990791016],[129.747564726563,46.5314217353516],[129.692345,46.5395821357422],[129.677345,46.5373653388672],[129.648482695313,46.5416304755859],[129.63298953125,46.5794869208985],[129.61170046875,46.5881990791016],[129.576773710938,46.6092690253907],[129.497345,46.613843],[129.52170046875,46.6594869208985],[129.5572278125,46.6807338691407],[129.579215117188,46.7092201972657],[129.66298953125,46.7181990791016],[129.695709257813,46.7310634589844],[129.691607695313,46.758843],[129.697471953125,46.7985408759766],[129.625084257813,46.8138161445313],[129.592686796875,46.855786359375],[129.580084257813,46.8865828681641],[129.551519804688,46.8982729316406],[129.553082304688,46.9088430000001],[129.551607695313,46.918843],[129.554483671875,46.9383309150391],[129.5327746875,46.9550881171875],[129.52298953125,46.9834181953125],[129.570362578125,46.9647951484375],[129.5894153125,46.9894808173829],[129.567345,47.0238430000001],[129.572896757813,47.0282900214844],[129.622183867188,47.0394850898438],[129.639527617188,47.0373274970704],[129.682681914063,47.0496498847657],[129.711793242188,47.0742659736329],[129.686202421875,47.117798078125],[129.74474734375,47.134536359375],[129.7409778125,47.1648390937501],[129.772896757813,47.1782900214845],[129.78365359375,47.2642775703126],[129.854112578125,47.2555135322266],[129.887345,47.303843],[129.922896757813,47.2893959785157],[129.931793242188,47.2582900214844],[129.982896757813,47.2493959785157],[129.997857695313,47.2307149482422],[130.084254179688,47.2156795478516],[130.129141875,47.1967659736328],[130.142686796875,47.1341609931641],[130.206558867188,47.0875014472657],[130.222628203125,47.0895003486329],[130.280875273438,47.0671108222656],[130.359249296875,47.0573622871094],[130.37334109375,47.0686440253906],[130.3588684375,47.0932601142578],[130.371890898438,47.1095211005859],[130.400987578125,47.1059023261719],[130.41736453125,47.1263582587891],[130.452345,47.1307088447266],[130.53095828125,47.1209304023438],[130.641344023438,47.1657845283203],[130.642965117188,47.1788430000001],[130.64166140625,47.1893410468751],[130.680748320313,47.2058113837891],[130.611793242188,47.2582900214844],[130.602896757813,47.2693959785157],[130.591793242188,47.2782900214844],[130.582896757813,47.2893959785157],[130.571793242188,47.2982900214844],[130.562896757813,47.3093959785157],[130.551099882813,47.318843],[130.557345,47.3238430000001],[130.619303007813,47.3381990791016],[130.67298953125,47.3294869208984],[130.699742460938,47.3133492255859],[130.78158328125,47.2894869208984],[130.87298953125,47.2981990791016],[130.969361601563,47.3140303779297],[130.973160429688,47.2883309150391],[130.960865507813,47.278843],[130.98170046875,47.2627620673828],[130.97298953125,47.2481990791016],[130.96170046875,47.2394869208985],[130.957345,47.223843],[130.939737578125,47.2010317207032],[130.87298953125,47.1881990791016],[130.8030090625,47.1782509589844],[130.79156375,47.1491347480469],[130.79459109375,47.1286452460938],[130.76170046875,47.1194869208985],[130.75298953125,47.0981990791016],[130.715797148438,47.0694911933594],[130.699918242188,47.0307015205078],[130.681954375,47.028046491211],[130.648844023438,47.0480196357422],[130.587345,47.0238430000001],[130.582896757813,47.0293959785156],[130.556920195313,47.0382900214844],[130.522896757813,47.0182900214844],[130.462584257813,46.9928755927734],[130.441890898438,46.9670333076172],[130.380719023438,46.9746425605469],[130.352896757813,46.9582900214844],[130.304625273438,46.9493959785157],[130.262896757813,46.9656484199219],[130.292896757813,46.9782900214844],[130.301793242188,47.010639875],[130.256261015625,47.0049764228516],[130.242896757813,46.9882900214844],[130.21861453125,46.968843],[130.243590117188,46.9488430000001],[130.229249296875,46.9373622871094],[130.170426054688,46.9446791816407],[130.122896757813,46.9793959785157],[130.072354765625,47.0100966621094],[130.058970976563,46.9933846259766],[130.002896757813,47.0093959785157],[129.977345,47.013843]]]]}},{"type":"Feature","properties":{"name":"同江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.1131653125,48.1893819404297],[134.111607695313,48.178843],[134.11314578125,48.1684133125001],[134.071168242188,48.1117940498047],[134.073170195313,48.0982503486329],[134.04170046875,48.0894869208984],[134.03298953125,48.0781990791016],[133.961514921875,48.0694637275391],[133.964722929688,48.0477529121094],[133.92490359375,48.0536367011719],[133.91298953125,48.0381990791016],[133.86170046875,48.0094869208984],[133.85298953125,47.9981990791016],[133.80170046875,47.9894869208985],[133.767174101563,47.9759127021485],[133.727603789063,47.9817604804688],[133.71170046875,47.9694869208985],[133.70298953125,47.8681990791016],[133.671041289063,47.849091413086],[133.702730742188,47.806347272461],[133.71170046875,47.5681990791016],[133.717345,47.543843],[133.6440246875,47.5346724677735],[133.616261015625,47.5000014472657],[133.587843046875,47.4325618720704],[133.500440703125,47.44343284375],[133.447345,47.463843],[133.422535429688,47.4790334296875],[133.40033328125,47.4886525703126],[133.362535429688,47.4686525703125],[133.33482546875,47.4590334296875],[133.0003528125,47.5172743964844],[132.89474734375,47.573153913086],[132.881793242188,47.600605084961],[132.824576445313,47.5983370185547],[132.7220325,47.6117067695313],[132.72275515625,47.5934835029297],[132.662154570313,47.5490334296876],[132.622535429688,47.5186525703126],[132.592154570313,47.5090334296876],[132.562535429688,47.4886525703126],[132.532154570313,47.4790334296875],[132.52252078125,47.468637921875],[132.512193632813,47.4690474677735],[132.4823059375,47.4585720039063],[132.462408476563,47.4691005683594],[132.421373320313,47.4583480048829],[132.422550078125,47.4286592841798],[132.401065703125,47.4190334296875],[132.37357546875,47.4487044501953],[132.342154570313,47.4586525703125],[132.307345,47.4738430000001],[132.31142703125,47.4797585273438],[132.348370390625,47.5008437324219],[132.367667265625,47.5287929511719],[132.406046171875,47.5386415839844],[132.429595976563,47.6015895820313],[132.468121367188,47.6281874824219],[132.4468371875,47.6788619208985],[132.500416289063,47.6893245673829],[132.517345,47.713843],[132.58783328125,47.7226595283203],[132.60322390625,47.7488430000001],[132.582896757813,47.7834200263672],[132.621793242188,47.8393959785156],[132.653502226563,47.8527584052735],[132.68705203125,47.8796260810547],[132.662896757813,47.9193959785157],[132.642896757813,47.9354116035157],[132.687320585938,47.9682900214844],[132.722896757813,47.9593959785157],[132.7776575,47.9193959785157],[132.819605742188,47.9341762519531],[132.869913359375,47.997001569336],[132.921793242188,48.0193959785156],[133.011568632813,48.0388204169923],[133.023004179688,48.0685604072266],[133.019547148438,48.0963210273438],[133.0550403125,48.1171834541016],[133.186104765625,48.135634381836],[133.242896757813,48.1193959785157],[133.3053528125,48.0953896308594],[133.378829375,48.1236336494141],[133.462345,48.1132454658204],[133.512345,48.1194649482422],[133.555963164063,48.1140395332031],[133.579757109375,48.197249982422],[133.7107434375,48.1809572578125],[133.713590117188,48.2038430000001],[133.710865507813,48.2257497382813],[133.733922148438,48.2545467353516],[133.812896757813,48.2682900214844],[133.851793242188,48.2793959785157],[133.892896757813,48.2882900214844],[133.931793242188,48.2993959785157],[133.997345,48.303843],[134.00670046875,48.2702455878906],[134.036324492188,48.2581221748048],[134.068990507813,48.2158022285156],[134.1131653125,48.1893819404297]]]]}},{"type":"Feature","properties":{"name":"向阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.367345,46.783843],[130.338995390625,46.777011334961],[130.35338015625,46.8490590644532],[130.417345,46.853843],[130.413985625,46.8472023750001],[130.39406375,46.83712425],[130.387345,46.8238430000001],[130.3586340625,46.8193178535156],[130.367345,46.783843]]]]}},{"type":"Feature","properties":{"name":"桦川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.437345,47.223843],[131.458551054688,47.2151290107422],[131.487554960938,47.2208602119141],[131.503453398438,47.2094631171875],[131.493389921875,47.1585286689453],[131.55000125,47.1257076240234],[131.55443484375,47.1032674384766],[131.547345,47.073843],[131.402740507813,47.0617562080079],[131.390772734375,47.0220192695313],[131.211099882813,46.9647689033203],[131.083961210938,46.9545534492188],[131.055982695313,46.9870314765626],[131.022345,46.9682637763672],[130.997345,46.982212140625],[130.93888796875,46.9495967841797],[130.824517851563,46.9287337470704],[130.842022734375,46.9084151435548],[130.86197390625,46.9100185371094],[130.85271609375,46.8884712958985],[130.829722929688,46.8782112861329],[130.811373320313,46.8569124580079],[130.776754179688,46.8596938300781],[130.727550078125,46.8248085761719],[130.656099882813,46.8305501533204],[130.6514075,46.7721535468751],[130.66197390625,46.7484712958984],[130.706451445313,46.7383663154297],[130.722769804688,46.7091213203126],[130.721163359375,46.6891664863282],[130.736763945313,46.6757271552735],[130.72197390625,46.6492147041016],[130.717345,46.6038430000001],[130.710719023438,46.5890566230469],[130.718219023438,46.5649880195312],[130.683585234375,46.5406703925782],[130.64033328125,46.5541414619141],[130.586510039063,46.5300307441407],[130.546729765625,46.5386104560547],[130.529718046875,46.5662178779298],[130.511158476563,46.5776552558594],[130.503531523438,46.5900307441406],[130.497345,46.5938430000001],[130.476558867188,46.6104903388672],[130.515504179688,46.6767464423829],[130.542896757813,46.6882900214844],[130.551793242188,46.7022743964844],[130.529405546875,46.7202016425781],[130.533013945313,46.7492031074219],[130.517760039063,46.7751467109375],[130.47166140625,46.7883278632813],[130.472965117188,46.798843],[130.471666289063,46.8092958808594],[130.492135039063,46.8256868720703],[130.5942590625,46.8384603095704],[130.590479765625,46.8688430000001],[130.612896757813,46.8782900214844],[130.621793242188,46.9070839667969],[130.572896757813,46.8882900214844],[130.542896757813,46.8862581611329],[130.584156523438,46.9192958808594],[130.581676054688,46.9392031074219],[130.593013945313,46.9584828925782],[130.589859648438,46.9838430000001],[130.593004179688,47.0091255927735],[130.587345,47.0238430000001],[130.648844023438,47.0480196357422],[130.681954375,47.028046491211],[130.699918242188,47.0307015205078],[130.715797148438,47.0694911933594],[130.75298953125,47.0981990791016],[130.76170046875,47.1194869208985],[130.79459109375,47.1286452460938],[130.79156375,47.1491347480469],[130.8030090625,47.1782509589844],[130.87298953125,47.1881990791016],[130.939737578125,47.2010317207032],[130.957345,47.223843],[131.054859648438,47.2087795234376],[131.092379179688,47.1883901191406],[131.122061796875,47.2091243720703],[131.147345,47.223843],[131.193170195313,47.2196681953126],[131.211519804688,47.2080178046875],[131.243170195313,47.1996681953125],[131.272081328125,47.1877870917969],[131.339132109375,47.1745381904297],[131.391519804688,47.2196681953126],[131.437345,47.223843]]]]}},{"type":"Feature","properties":{"name":"桦南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.210011015625,46.6267501044923],[130.242735625,46.5873537421876],[130.272345,46.5903719306641],[130.301568632813,46.5873928046875],[130.343238554688,46.5574050117188],[130.362345,46.5593526435547],[130.381158476563,46.5574349189454],[130.410172148438,46.5740535712891],[130.452081328125,46.5583065009766],[130.469283476563,46.5600600410157],[130.497345,46.5938430000001],[130.503531523438,46.5900307441406],[130.511158476563,46.5776552558594],[130.529718046875,46.5662178779298],[130.546729765625,46.5386104560547],[130.586510039063,46.5300307441407],[130.64033328125,46.5541414619141],[130.683585234375,46.5406703925782],[130.718219023438,46.5649880195312],[130.710719023438,46.5890566230469],[130.717345,46.6038430000001],[130.73478640625,46.5969869208985],[130.774439726563,46.60284690625],[130.820250273438,46.5848390937501],[130.878702421875,46.5934767890625],[130.937345,46.583843],[130.94170046875,46.5681990791016],[130.963546171875,46.531982038086],[130.960699492188,46.5127022529297],[131.024244414063,46.4866945625001],[131.017452421875,46.4407399726563],[131.05298953125,46.4194869208985],[131.064771757813,46.3907015205078],[131.082345,46.3881038642578],[131.097345,46.3903206611329],[131.117345,46.3873653388672],[131.140767851563,46.3908266425781],[131.185108671875,46.3640792060547],[131.222486601563,46.3696028876953],[131.247345,46.363843],[131.267345,46.3338430000001],[131.242633085938,46.3184181953125],[131.2124621875,46.3208425117188],[131.197428007813,46.2709004951173],[131.10197390625,46.2492147041016],[131.088878203125,46.2340163398438],[131.10728640625,46.2010237861329],[131.070386992188,46.1692342353516],[131.09271609375,46.1292147041015],[131.10197390625,46.1070638251953],[131.06197390625,46.0892147041016],[131.05271609375,46.0684712958984],[131.04197390625,46.0492147041016],[131.03271609375,46.0284712958984],[130.920269804688,46.0170009589844],[130.872345,46.0208516669922],[130.842345,46.0184413886719],[130.832203398438,46.0192562080078],[130.772486601563,46.0084297919922],[130.762066679688,46.0092671943359],[130.741363554688,45.9977162910156],[130.712345,46.000048444336],[130.690382109375,45.9982833076172],[130.692745390625,45.968843],[130.691573515625,45.9542647529297],[130.668565703125,45.9392147041016],[130.61345828125,45.9699587226562],[130.57197390625,45.9884712958984],[130.54271609375,46.0092147041016],[130.5034778125,46.026723859375],[130.49271609375,46.0392147041016],[130.437818632813,46.0516866279297],[130.42271609375,46.0692147041016],[130.355377226563,46.0894887519532],[130.342066679688,46.0884188056641],[130.322623320313,46.099267194336],[130.28650515625,46.0963649726563],[130.227345,46.123843],[130.222896757813,46.1293959785157],[130.161793242188,46.1782900214844],[130.151632109375,46.2024025703126],[130.131793242188,46.2182900214844],[130.115904570313,46.2381288886719],[130.07068484375,46.2571834541016],[130.048453398438,46.2849489570313],[130.031793242188,46.2982900214844],[130.013082304688,46.3216524482422],[129.982896757813,46.3393959785157],[129.943975859375,46.3505245185547],[129.912896757813,46.3754116035157],[129.935069609375,46.3853450751954],[129.992345,46.3782210517578],[130.019210234375,46.3815627265625],[130.056143828125,46.3598537421876],[130.080079375,46.3897463203125],[130.111417265625,46.385849225586],[130.134146757813,46.4232747626954],[130.161793242188,46.4454116035157],[130.152896757813,46.4693959785156],[130.14134890625,46.4890419746094],[130.147345,46.493843],[130.19443484375,46.4833602119141],[130.19093875,46.5176552558594],[130.202808867188,46.5383803535156],[130.213912382813,46.5884615302734],[130.210011015625,46.6267501044923]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"勃利县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.277345,45.823843],[131.289537382813,45.827266461914],[131.280767851563,45.8360353828125],[131.26170046875,45.8194869208985],[131.242110625,45.8076692939454],[131.23298953125,45.8194869208985],[131.176236601563,45.8623250556641],[131.162686796875,45.8798751044922],[131.126436796875,45.8656240058594],[131.11298953125,45.8481990791016],[131.09170046875,45.8394869208984],[131.07298953125,45.8281990791016],[131.02170046875,45.8094869208985],[131.017345,45.8038430000001],[130.983638945313,45.7899916816407],[130.977345,45.813843],[130.97326296875,45.8197585273438],[130.96142703125,45.8279274726563],[130.940714140625,45.8579274726563],[130.91142703125,45.8397585273438],[130.902828398438,45.8273030830079],[130.857667265625,45.8388930488282],[130.838721953125,45.8663307929688],[130.769947539063,45.8289522529297],[130.78326296875,45.8197585273438],[130.79142703125,45.7979274726563],[130.80326296875,45.7897585273438],[130.81142703125,45.7779274726563],[130.82326296875,45.7697585273438],[130.833116484375,45.7434120917969],[130.877345,45.7533266425782],[130.909141875,45.7461983466798],[130.927345,45.753843],[130.95326296875,45.7397585273437],[130.969595976563,45.7160964179688],[131.017345,45.703843],[131.017345,45.6838430000001],[131.01170046875,45.6794869208985],[130.943624296875,45.6663991523438],[130.93298953125,45.6281990791015],[130.91170046875,45.6194869208985],[130.89248171875,45.6078926826172],[130.85990359375,45.6206990791016],[130.842345,45.6181038642578],[130.816519804688,45.6219210029297],[130.767345,45.6138430000001],[130.762535429688,45.6190334296875],[130.720074492188,45.6583754707032],[130.692535429688,45.6286525703125],[130.660323515625,45.6078530097657],[130.641461210938,45.5874910712891],[130.580250273438,45.5899172187501],[130.547193632813,45.6255940986329],[130.474683867188,45.6065944648438],[130.387276640625,45.6777303291015],[130.3324621875,45.6185720039063],[130.289625273438,45.6297963691406],[130.26216921875,45.6594307685548],[130.21252078125,45.6574629951172],[130.192535429688,45.6790334296876],[130.16045046875,45.6941756416016],[130.182955351563,45.7583870673828],[130.182144804688,45.778843],[130.182740507813,45.793843],[130.181949492188,45.813843],[130.182550078125,45.8290071845704],[130.168468046875,45.8556185126954],[130.1829309375,45.8690200019532],[130.182003203125,45.8924239326172],[130.107345,45.923843],[130.099654570313,45.9706557441407],[130.114908476563,46.0364888740235],[130.109742460938,46.0714437080079],[130.132345,46.0681038642578],[130.161744414063,46.0724483466797],[130.222369414063,46.1173952460938],[130.227345,46.123843],[130.28650515625,46.0963649726563],[130.322623320313,46.099267194336],[130.342066679688,46.0884188056641],[130.355377226563,46.0894887519532],[130.42271609375,46.0692147041016],[130.437818632813,46.0516866279297],[130.49271609375,46.0392147041016],[130.5034778125,46.026723859375],[130.54271609375,46.0092147041016],[130.57197390625,45.9884712958984],[130.61345828125,45.9699587226562],[130.668565703125,45.9392147041016],[130.691573515625,45.9542647529297],[130.692745390625,45.968843],[130.690382109375,45.9982833076172],[130.712345,46.000048444336],[130.741363554688,45.9977162910156],[130.762066679688,46.0092671943359],[130.772486601563,46.0084297919922],[130.832203398438,46.0192562080078],[130.842345,46.0184413886719],[130.872345,46.0208516669922],[130.920269804688,46.0170009589844],[131.03271609375,46.0284712958984],[131.04197390625,46.0492147041016],[131.05271609375,46.0684712958984],[131.06197390625,46.0892147041016],[131.10197390625,46.1070638251953],[131.09271609375,46.1292147041015],[131.070386992188,46.1692342353516],[131.10728640625,46.2010237861329],[131.088878203125,46.2340163398438],[131.10197390625,46.2492147041016],[131.197428007813,46.2709004951173],[131.2124621875,46.3208425117188],[131.242633085938,46.3184181953125],[131.267345,46.3338430000001],[131.28302859375,46.3293581367188],[131.280445585938,46.3085811591797],[131.322896757813,46.2993959785157],[131.356060820313,46.2751729560547],[131.41595828125,46.2399636054688],[131.492706328125,46.2495095039063],[131.525318632813,46.2303389716797],[131.547345,46.2275991035157],[131.562628203125,46.2295003486328],[131.592061796875,46.2181856513672],[131.611890898438,46.2206526923829],[131.617345,46.2138430000001],[131.592789335938,46.1977675605469],[131.573892851563,46.2015010810548],[131.563170195313,46.1480178046875],[131.537706328125,46.1297682929687],[131.503326445313,46.1165071845703],[131.491095,46.0701595283204],[131.49341921875,46.0584096503906],[131.48127078125,46.0392763496094],[131.483453398438,46.0282228828125],[131.46244265625,46.0131612373047],[131.449093046875,45.9625691962891],[131.412345,45.9698311591798],[131.395987578125,45.9665987373047],[131.383170195313,45.9180178046875],[131.359381132813,45.9088430000001],[131.365308867188,45.8788430000001],[131.359761992188,45.8507833076172],[131.373521757813,45.8291103339844],[131.357506132813,45.7796681953126],[131.341324492188,45.8022396064453],[131.281519804688,45.8180178046875],[131.277345,45.823843]]]]}},{"type":"Feature","properties":{"name":"茄子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.277345,45.823843],[131.280767851563,45.8360353828125],[131.289537382813,45.827266461914],[131.277345,45.823843]]],[[[131.277345,45.823843],[131.281519804688,45.8180178046875],[131.341324492188,45.8022396064453],[131.357506132813,45.7796681953126],[131.373521757813,45.8291103339844],[131.359761992188,45.8507833076172],[131.365308867188,45.8788430000001],[131.359381132813,45.9088430000001],[131.383170195313,45.9180178046875],[131.395987578125,45.9665987373047],[131.412345,45.9698311591798],[131.449093046875,45.9625691962891],[131.46244265625,46.0131612373047],[131.483453398438,46.0282228828125],[131.48127078125,46.0392763496094],[131.49341921875,46.0584096503906],[131.491095,46.0701595283204],[131.503326445313,46.1165071845703],[131.537706328125,46.1297682929687],[131.563170195313,46.1480178046875],[131.573892851563,46.2015010810548],[131.592789335938,46.1977675605469],[131.617345,46.2138430000001],[131.622857695313,46.2067018867187],[131.648595,46.2105049873048],[131.702203398438,46.1980831123048],[131.719854765625,46.2006917548828],[131.7231653125,46.1783040595704],[131.68298953125,46.1542757392578],[131.69802859375,46.0920070625],[131.749346953125,46.0777169013672],[131.782232695313,46.0578786445313],[131.84298953125,46.0681990791016],[131.893863554688,46.0881990791016],[131.915894804688,46.0781630683594],[131.898761015625,46.0194026923828],[131.924561796875,46.008843],[131.877081328125,45.9894094062501],[131.850240507813,45.9546364570312],[131.82298953125,45.9381990791016],[131.80170046875,45.9294869208985],[131.7886340625,45.9125557685547],[131.777345,45.903843],[131.761871367188,45.8985463691407],[131.742345,45.898944928711],[131.722633085938,45.8985427070313],[131.702437773438,45.9089467597657],[131.683648710938,45.9085634589844],[131.602418242188,45.9189467597656],[131.581046171875,45.9185103583985],[131.543013945313,45.8789278388672],[131.5061340625,45.8669600654297],[131.49244265625,45.8387429023438],[131.445636015625,45.8080532050781],[131.471983671875,45.7310689521484],[131.41994265625,45.7183815742188],[131.392345,45.718944928711],[131.377496367188,45.718642194336],[131.33244265625,45.6834975410156],[131.362584257813,45.6688759589844],[131.35224734375,45.6589430976562],[131.34244265625,45.6487429023438],[131.33224734375,45.6389430976563],[131.307745390625,45.6134432197266],[131.287345,45.593843],[131.269068632813,45.6264864326172],[131.211954375,45.618046491211],[131.190767851563,45.6308266425781],[131.163922148438,45.6268593574219],[131.140767851563,45.6408266425782],[131.111783476563,45.6365431953125],[131.02662234375,45.6505330634766],[131.017345,45.6838430000001],[131.017345,45.703843],[131.044815703125,45.7228115058594],[131.035245390625,45.7655037666016],[131.017345,45.8038430000001],[131.02170046875,45.8094869208985],[131.07298953125,45.8281990791016],[131.09170046875,45.8394869208984],[131.11298953125,45.8481990791016],[131.126436796875,45.8656240058594],[131.162686796875,45.8798751044922],[131.176236601563,45.8623250556641],[131.23298953125,45.8194869208985],[131.242110625,45.8076692939454],[131.26170046875,45.8194869208985],[131.277345,45.823843]]]]}},{"type":"Feature","properties":{"name":"桃山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.977345,45.813843],[130.983638945313,45.7899916816407],[131.017345,45.8038430000001],[131.035245390625,45.7655037666016],[131.044815703125,45.7228115058594],[131.017345,45.703843],[130.969595976563,45.7160964179688],[130.95326296875,45.7397585273437],[130.927345,45.753843],[130.913985625,45.7807192207032],[130.929195585938,45.8028231025391],[130.951353789063,45.7920009589844],[130.960704375,45.8104836250001],[130.977345,45.813843]]]]}},{"type":"Feature","properties":{"name":"新兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.857667265625,45.8388930488282],[130.902828398438,45.8273030830079],[130.91142703125,45.8397585273438],[130.940714140625,45.8579274726563],[130.96142703125,45.8279274726563],[130.97326296875,45.8197585273438],[130.977345,45.813843],[130.960704375,45.8104836250001],[130.951353789063,45.7920009589844],[130.929195585938,45.8028231025391],[130.913985625,45.7807192207032],[130.927345,45.753843],[130.909141875,45.7461983466798],[130.877345,45.7533266425782],[130.833116484375,45.7434120917969],[130.82326296875,45.7697585273438],[130.81142703125,45.7779274726563],[130.80326296875,45.7897585273438],[130.79142703125,45.7979274726563],[130.78326296875,45.8197585273438],[130.769947539063,45.8289522529297],[130.838721953125,45.8663307929688],[130.857667265625,45.8388930488282]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"西安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.5626965625,44.4974141669923],[129.592579375,44.4697286201172],[129.591773710938,44.4494600654297],[129.627345,44.4480501533203],[129.654229765625,44.4491158271484],[129.737345,44.3838430000001],[129.732022734375,44.3776638007813],[129.637345,44.3852712226563],[129.527535429688,44.3764479804688],[129.501539335938,44.398843],[129.521959257813,44.4164327216797],[129.48197390625,44.4284712958984],[129.443199492188,44.455962140625],[129.40271609375,44.4592147041016],[129.397345,44.4638430000001],[129.389132109375,44.4695131660156],[129.395089140625,44.4960744453125],[129.432345,44.4877223945313],[129.442345,44.4899636054688],[129.452789335938,44.4876216865234],[129.47142703125,44.4997585273438],[129.49326296875,44.5079274726562],[129.512838164063,44.5362831855469],[129.517345,44.553843],[129.561671171875,44.5613729072266],[129.59170046875,44.5794869208984],[129.607345,44.5838430000001],[129.615079375,44.5617775703126],[129.5626965625,44.4974141669923]]]]}},{"type":"Feature","properties":{"name":"绥芬河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.157345,44.533843],[131.227345,44.293843],[131.198140898438,44.3000826240234],[131.137345,44.2964589667969],[131.077345,44.3000350166016],[131.052345,44.2985451484376],[131.042345,44.2991408515625],[131.027345,44.2982466865235],[131.003673125,44.299657819336],[130.952628203125,44.3206917548828],[130.98369265625,44.3484474921875],[130.932779570313,44.3808272529297],[130.952628203125,44.3985616279297],[130.962061796875,44.4091243720704],[130.972628203125,44.4185616279297],[130.982061796875,44.4291243720703],[130.9926575,44.4385903144532],[130.992047148438,44.448843],[130.993389921875,44.4713741279297],[131.017906523438,44.4932802558594],[131.032061796875,44.5091243720703],[131.069600859375,44.5263533759766],[131.157345,44.533843]]]]}},{"type":"Feature","properties":{"name":"爱民区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.455719023438,44.8336159492188],[129.481793242188,44.8182900214844],[129.532896757813,44.8093959785157],[129.548785429688,44.7895571113281],[129.581016875,44.7759749580079],[129.591793242188,44.7382900214844],[129.612896757813,44.7293959785157],[129.625758085938,44.6988790107422],[129.677345,44.6938430000001],[129.673170195313,44.6880178046876],[129.654522734375,44.6746541572266],[129.641842070313,44.6114022041016],[129.617345,44.593843],[129.607345,44.593843],[129.607345,44.5838430000001],[129.59170046875,44.5794869208984],[129.561671171875,44.5613729072266],[129.517345,44.553843],[129.4985559375,44.5833766914063],[129.503023710938,44.6192958808594],[129.491793242188,44.6282900214844],[129.468565703125,44.657294538086],[129.438912382813,44.6682900214844],[129.422345,44.6475991035157],[129.412896757813,44.6593959785157],[129.389859648438,44.67784690625],[129.402896757813,44.6882900214844],[129.411793242188,44.7279201484375],[129.3448840625,44.7685585761719],[129.321793242188,44.7782900214844],[129.312896757813,44.7978481269531],[129.372896757813,44.8082900214844],[129.390987578125,44.8308779121094],[129.412345,44.8282210517579],[129.455719023438,44.8336159492188]]]]}},{"type":"Feature","properties":{"name":"东安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.84326296875,44.4497585273438],[129.873116484375,44.4303163886719],[129.88142703125,44.3979274726562],[129.908599882813,44.3897585273438],[129.917345,44.4238430000001],[129.943565703125,44.4190596748048],[129.941632109375,44.3949495673828],[129.98271609375,44.3692147041016],[130.03197390625,44.3284712958985],[130.08197390625,44.3061598945312],[130.062594023438,44.2984212470704],[130.042838164063,44.3000081611328],[130.041944609375,44.288843],[130.043492460938,44.2695644355469],[130.02197390625,44.2392147041016],[130.0098840625,44.2121193671876],[129.972579375,44.1984206367187],[129.907345,44.2038430000001],[129.902345,44.2166506171876],[129.897345,44.2038430000001],[129.881041289063,44.2080269599609],[129.883580351563,44.2193477607422],[129.855894804688,44.2550691962891],[129.86361453125,44.2895131660157],[129.847193632813,44.3008534980469],[129.854263945313,44.3323964667969],[129.771060820313,44.3615608955078],[129.737345,44.3838430000001],[129.654229765625,44.4491158271484],[129.627345,44.4480501533203],[129.591773710938,44.4494600654297],[129.592579375,44.4697286201172],[129.5626965625,44.4974141669923],[129.615079375,44.5617775703126],[129.607345,44.5838430000001],[129.607345,44.593843],[129.617345,44.593843],[129.62142703125,44.5879274726562],[129.65326296875,44.5797585273438],[129.6712121875,44.5537599921875],[129.71326296875,44.5297585273438],[129.72142703125,44.5179274726563],[129.75713015625,44.4932772041016],[129.79326296875,44.4797585273437],[129.82142703125,44.4579274726563],[129.84326296875,44.4497585273438]]]]}},{"type":"Feature","properties":{"name":"东宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.217345,43.753843],[131.217345,43.763843],[131.230152617188,43.758843],[131.217345,43.753843]]],[[[131.217345,43.763843],[131.204537382813,43.758843],[131.217345,43.753843],[131.224366484375,43.738169171875],[131.210538359375,43.729648053711],[131.213902617188,43.718843],[131.208883085938,43.7027309394531],[131.2307825,43.653843],[131.210235625,43.6079701972657],[131.241158476563,43.5974318671876],[131.22267703125,43.5871816230469],[131.205089140625,43.5926595283204],[131.200787382813,43.578843],[131.206763945313,43.5596480537109],[131.197345,43.5538430000001],[131.193922148438,43.5660353828126],[131.185152617188,43.5572664619141],[131.197345,43.5538430000001],[131.200719023438,43.5270955634766],[131.2722278125,43.4914601875],[131.293336210938,43.5017684150391],[131.297345,43.493843],[131.289058867188,43.465610578125],[131.233516875,43.4712715888672],[131.222808867188,43.4583803535157],[131.201881132813,43.4493056464844],[131.182667265625,43.438300397461],[131.172081328125,43.4393794990235],[131.126861601563,43.422387921875],[131.112808867188,43.4393056464844],[131.081881132813,43.4583803535157],[131.012408476563,43.5083803535157],[130.931090117188,43.472426984375],[130.902808867188,43.4383803535156],[130.897345,43.4338430000001],[130.847471953125,43.4389302802735],[130.81271609375,43.4992147041016],[130.79197390625,43.5084712958984],[130.78271609375,43.5192147041016],[130.76197390625,43.5284712958985],[130.729210234375,43.5467507148437],[130.6218371875,43.5874977851563],[130.624464140625,43.6202187324219],[130.602345,43.6184413886719],[130.592345,43.6192446113282],[130.57486453125,43.6178401923829],[130.515894804688,43.6307021308594],[130.480103789063,43.6506716132813],[130.411729765625,43.6451778388672],[130.38271609375,43.6847017646485],[130.414039335938,43.7408437324219],[130.38197390625,43.7684712958985],[130.37271609375,43.8092147041016],[130.361807890625,43.8389199042969],[130.372882109375,43.8587660957032],[130.361807890625,43.8889199042969],[130.372999296875,43.9089736152344],[130.36197390625,43.9184712958985],[130.3480871875,43.9345870185547],[130.327242460938,43.9525453925781],[130.35271609375,43.9884712958985],[130.357345,44.0438430000001],[130.382896757813,44.0482900214844],[130.391793242188,44.0593959785156],[130.402896757813,44.0682900214844],[130.435963164063,44.1227260566407],[130.4837121875,44.14284690625],[130.479547148438,44.1763210273438],[130.501793242188,44.1893959785157],[130.52951296875,44.2010774970704],[130.53388796875,44.2362459541015],[130.522896757813,44.2993959785157],[130.502896757813,44.3154116035157],[130.511793242188,44.3493959785157],[130.525479765625,44.3726808906251],[130.502896757813,44.4314278388672],[130.521793242188,44.4593959785157],[130.542896757813,44.4682900214844],[130.551793242188,44.4793959785156],[130.563023710938,44.4883901191406],[130.561676054688,44.4992354560548],[130.582896757813,44.5282900214844],[130.591793242188,44.5693959785157],[130.623018828125,44.6084389472656],[130.621085234375,44.6239839912109],[130.631846953125,44.64952659375],[130.68634890625,44.6427474189453],[130.705133085938,44.687323834961],[130.729527617188,44.6903585029297],[130.776187773438,44.6770345283203],[130.802896757813,44.6882900214844],[130.817857695313,44.7069710517578],[130.857345,44.713843],[130.865094023438,44.6927358222657],[130.850885039063,44.6672682929688],[130.8658996875,44.6011806464844],[130.89271609375,44.5892147041016],[130.921964140625,44.572895734375],[131.012218046875,44.5892598701172],[131.13197390625,44.5784712958984],[131.147345,44.573843],[131.150704375,44.547202375],[131.157345,44.533843],[131.069600859375,44.5263533759766],[131.032061796875,44.5091243720703],[131.017906523438,44.4932802558594],[130.993389921875,44.4713741279297],[130.992047148438,44.448843],[130.9926575,44.4385903144532],[130.982061796875,44.4291243720703],[130.972628203125,44.4185616279297],[130.962061796875,44.4091243720704],[130.952628203125,44.3985616279297],[130.932779570313,44.3808272529297],[130.98369265625,44.3484474921875],[130.952628203125,44.3206917548828],[131.003673125,44.299657819336],[131.027345,44.2982466865235],[131.042345,44.2991408515625],[131.052345,44.2985451484376],[131.077345,44.3000350166016],[131.137345,44.2964589667969],[131.198140898438,44.3000826240234],[131.227345,44.293843],[131.2329309375,44.2786342597656],[131.300474882813,44.0533315253906],[131.245142851563,44.0186739326172],[131.240513945313,43.9610823798829],[131.26197390625,43.9226247382813],[131.24271609375,43.8884712958984],[131.23197390625,43.8792147041016],[131.22271609375,43.8484712958984],[131.211920195313,43.8291213203125],[131.213150664063,43.8138430000001],[131.211944609375,43.798843],[131.212745390625,43.788843],[131.211925078125,43.7786043525391],[131.217345,43.763843]]],[[[130.857345,44.713843],[130.860767851563,44.7260353828125],[130.869537382813,44.7172664619141],[130.857345,44.713843]]]]}},{"type":"Feature","properties":{"name":"海林市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.103883085938,45.6223104072266],[129.132345,45.6181038642578],[129.142735625,45.6196395087891],[129.170679960938,45.6027834296875],[129.218800078125,45.5956722236328],[129.259288359375,45.6200948310547],[129.297345,45.6138430000001],[129.316983671875,45.591048810547],[129.4227746875,45.5591970039063],[129.421031523438,45.5375002265625],[129.46197390625,45.5084712958985],[129.48271609375,45.4992147041016],[129.502066679688,45.4884188056641],[129.514439726563,45.4894130683594],[129.568565703125,45.4592147041016],[129.58271609375,45.4784712958985],[129.603736601563,45.52558128125],[129.646119414063,45.4955306220703],[129.692642851563,45.4992684150391],[129.72197390625,45.4784712958985],[129.74271609375,45.4692147041016],[129.768253203125,45.4395735908203],[129.801373320313,45.4369124580079],[129.81197390625,45.4492147041016],[129.863385039063,45.4608950019531],[129.861236601563,45.4876448798828],[129.894498320313,45.5062038398437],[129.950719023438,45.5107210517579],[129.971295195313,45.473843],[129.951690703125,45.4387123847657],[129.966763945313,45.4257271552735],[129.95197390625,45.3992147041016],[129.94271609375,45.3584712958985],[129.93197390625,45.3392147041016],[129.92271609375,45.2884712958985],[129.904312773438,45.2383614326172],[129.901944609375,45.208843],[129.905836210938,45.1604232001954],[129.86271609375,45.1334169746094],[129.88197390625,45.1184712958985],[129.909757109375,45.1060738349609],[129.87197390625,45.0892147041016],[129.848595,45.0620778632813],[129.765382109375,45.0431746650391],[129.7480871875,45.0230989814453],[129.730225859375,45.0077095771485],[129.71271609375,44.9684712958985],[129.656451445313,44.9332289863281],[129.685133085938,44.9085195136719],[129.679752226563,44.8416005683594],[129.702769804688,44.8091390205078],[129.701925078125,44.7986043525391],[129.716104765625,44.7599837470703],[129.691402617188,44.7489607978516],[129.697345,44.743843],[129.693804960938,44.7373836494141],[129.669097929688,44.7297493720704],[129.690709257813,44.7011696601563],[129.677345,44.6938430000001],[129.625758085938,44.6988790107422],[129.612896757813,44.7293959785157],[129.591793242188,44.7382900214844],[129.581016875,44.7759749580079],[129.548785429688,44.7895571113281],[129.532896757813,44.8093959785157],[129.481793242188,44.8182900214844],[129.455719023438,44.8336159492188],[129.412345,44.8282210517579],[129.390987578125,44.8308779121094],[129.372896757813,44.8082900214844],[129.312896757813,44.7978481269531],[129.321793242188,44.7782900214844],[129.3448840625,44.7685585761719],[129.411793242188,44.7279201484375],[129.402896757813,44.6882900214844],[129.389859648438,44.67784690625],[129.412896757813,44.6593959785157],[129.422345,44.6475991035157],[129.438912382813,44.6682900214844],[129.468565703125,44.657294538086],[129.491793242188,44.6282900214844],[129.503023710938,44.6192958808594],[129.4985559375,44.5833766914063],[129.517345,44.553843],[129.512838164063,44.5362831855469],[129.49326296875,44.5079274726562],[129.47142703125,44.4997585273438],[129.452789335938,44.4876216865234],[129.442345,44.4899636054688],[129.432345,44.4877223945313],[129.395089140625,44.4960744453125],[129.389132109375,44.4695131660156],[129.397345,44.4638430000001],[129.381890898438,44.444546125],[129.341954375,44.4495137763672],[129.312896757813,44.4282900214844],[129.281236601563,44.4149489570313],[129.252144804688,44.3978475166016],[129.238516875,44.4148702216797],[129.201793242188,44.3993959785156],[129.192896757813,44.3882900214844],[129.181793242188,44.3793959785157],[129.172896757813,44.3682900214844],[129.151793242188,44.3593959785156],[129.129210234375,44.3461232734375],[129.082345,44.351952741211],[129.052345,44.3482210517578],[129.025479765625,44.3515627265625],[128.98873171875,44.3299636054688],[128.908624296875,44.3399275947266],[128.871793242188,44.3293959785156],[128.828194609375,44.2945272041016],[128.802896757813,44.3093959785157],[128.751656523438,44.3183132148438],[128.753599882813,44.333935163086],[128.7081653125,44.3164699531251],[128.649171171875,44.3333150458985],[128.631666289063,44.3192958808594],[128.633214140625,44.3068691230469],[128.611890898438,44.309521100586],[128.59400515625,44.2871834541016],[128.561441679688,44.2611074042969],[128.564459257813,44.2368422675782],[128.532896757813,44.2182900214844],[128.491793242188,44.2093959785156],[128.457345,44.193843],[128.451710234375,44.208843],[128.465933867188,44.2467067695313],[128.451617460938,44.2586006904297],[128.47166140625,44.3119490791016],[128.445308867188,44.333843],[128.462808867188,44.3483803535157],[128.471881132813,44.3734603095704],[128.45093875,44.4100307441407],[128.453053007813,44.4307942939453],[128.431881132813,44.4483803535157],[128.422100859375,44.4709389472657],[128.381881132813,44.4883803535157],[128.361202421875,44.5132784248047],[128.297564726563,44.4861446357422],[128.278267851563,44.4629177070312],[128.247345,44.453843],[128.224635039063,44.4695241523437],[128.267345,44.533843],[128.28271609375,44.5384712958984],[128.352799101563,44.588163678711],[128.3519153125,44.5991664863281],[128.3627746875,44.6085195136719],[128.361138945313,44.628843],[128.38271609375,44.6384712958985],[128.404405546875,44.6730965400391],[128.487198515625,44.6664443183594],[128.523800078125,44.6798848701172],[128.62755984375,44.6572530341797],[128.652345,44.6592446113282],[128.662345,44.6584413886719],[128.680885039063,44.6599306464844],[128.75197390625,44.7112404609375],[128.731539335938,44.7288430000001],[128.758834257813,44.7523555732423],[128.78197390625,44.7792147041016],[128.84271609375,44.7884712958985],[128.853331328125,44.8237258125001],[128.876788359375,44.8657643867188],[128.9530871875,44.8830989814453],[128.98197390625,44.8992147041016],[129.005655546875,44.9097823310547],[129.04291140625,44.9067885566407],[129.04158328125,44.9233235908203],[129.018619414063,44.9644838691407],[129.04295046875,44.9987984443359],[129.031920195313,45.0185646796875],[129.032877226563,45.0304616523438],[129.003663359375,45.0556319404297],[128.99271609375,45.0740358710937],[129.062667265625,45.0684151435547],[129.07498171875,45.0827095771485],[129.133287382813,45.1087252021485],[129.12197390625,45.1184712958985],[129.11271609375,45.1292147041016],[129.10197390625,45.1384712958985],[129.09271609375,45.1512404609375],[129.1180871875,45.1730989814453],[129.13197390625,45.1892147041016],[129.16271609375,45.1984712958985],[129.203189726563,45.213333966797],[129.20158328125,45.2333235908204],[129.1683996875,45.2927999091797],[129.142623320313,45.2784188056641],[129.132345,45.2792446113281],[129.117345,45.2780397773437],[129.094561796875,45.2798702216798],[129.08271609375,45.3192147041016],[129.055260039063,45.3428719306641],[129.127828398438,45.3704109931641],[129.152345,45.3684413886719],[129.177535429688,45.3704653144532],[129.19197390625,45.4206221748047],[129.15197390625,45.4384712958985],[129.119732695313,45.4613307929688],[129.12724734375,45.5548403144532],[129.097345,45.563843],[129.084322539063,45.5969704414063],[129.103883085938,45.6223104072266]]]]}},{"type":"Feature","properties":{"name":"林口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.881007109375,45.9475057197266],[129.901676054688,45.9175716376954],[129.920230742188,45.9217317939454],[129.9421496875,45.9074599433594],[129.989464140625,45.9273342109375],[130.058526640625,45.9118526435547],[130.107345,45.923843],[130.182003203125,45.8924239326172],[130.1829309375,45.8690200019532],[130.168468046875,45.8556185126954],[130.182550078125,45.8290071845704],[130.181949492188,45.813843],[130.182740507813,45.793843],[130.182144804688,45.778843],[130.182955351563,45.7583870673828],[130.16045046875,45.6941756416016],[130.192535429688,45.6790334296876],[130.21252078125,45.6574629951172],[130.26216921875,45.6594307685548],[130.289625273438,45.6297963691406],[130.3324621875,45.6185720039063],[130.387276640625,45.6777303291015],[130.474683867188,45.6065944648438],[130.547193632813,45.6255940986329],[130.580250273438,45.5899172187501],[130.641461210938,45.5874910712891],[130.660323515625,45.6078530097657],[130.692535429688,45.6286525703125],[130.720074492188,45.6583754707032],[130.762535429688,45.6190334296875],[130.767345,45.6138430000001],[130.75298953125,45.5781990791016],[130.741549101563,45.559233625],[130.748746367188,45.5105275703125],[130.732345,45.5081038642578],[130.707603789063,45.5117604804688],[130.6860559375,45.4951302314453],[130.677345,45.483843],[130.661158476563,45.4800307441407],[130.651842070313,45.440487897461],[130.621158476563,45.4300307441407],[130.586744414063,45.4021584296875],[130.551158476563,45.3900307441407],[130.547345,45.3838430000001],[130.54170046875,45.3794869208985],[130.53298953125,45.3581990791016],[130.51170046875,45.3494869208984],[130.50298953125,45.3381990791016],[130.469600859375,45.3124263740235],[130.478741484375,45.2505538154297],[130.45170046875,45.2394869208985],[130.427554960938,45.1991170478516],[130.460382109375,45.1737801337891],[130.40170046875,45.1294869208985],[130.397345,45.123843],[130.380181914063,45.1172463203126],[130.361983671875,45.1195095039063],[130.332100859375,45.1019423652344],[130.229576445313,45.0891194892578],[130.205904570313,45.0595571113281],[130.18166140625,45.0493410468751],[130.184830351563,45.023843],[130.181676054688,44.9984505439454],[130.203258085938,44.9689028144532],[130.191676054688,44.9492031074219],[130.193023710938,44.9383901191406],[130.180533476563,44.9283901191407],[130.183023710938,44.9083901191406],[130.160553007813,44.8903963447266],[130.173433867188,44.868487165039],[130.12166140625,44.8493477607422],[130.123590117188,44.833843],[130.121724882813,44.818843],[130.122965117188,44.8088430000001],[130.121724882813,44.798843],[130.1262121875,44.7627584052735],[130.179586210938,44.7200185371094],[130.110621367188,44.6715444160156],[130.075206328125,44.6566213203126],[130.052345,44.6594649482422],[130.027345,44.6563552070313],[129.997345,44.6600868964845],[129.982345,44.6582210517578],[129.962345,44.6607088447266],[129.937345,44.6575991035157],[129.922061796875,44.6595003486328],[129.907345,44.6538430000001],[129.893062773438,44.6753224921875],[129.833062773438,44.6602053046875],[129.813350859375,44.6898494697266],[129.781339140625,44.6978365302735],[129.773350859375,44.7098494697266],[129.717608671875,44.7184096503907],[129.703350859375,44.7398494697266],[129.697345,44.743843],[129.691402617188,44.7489607978516],[129.716104765625,44.7599837470703],[129.701925078125,44.7986043525391],[129.702769804688,44.8091390205078],[129.679752226563,44.8416005683594],[129.685133085938,44.9085195136719],[129.656451445313,44.9332289863281],[129.71271609375,44.9684712958985],[129.730225859375,45.0077095771485],[129.7480871875,45.0230989814453],[129.765382109375,45.0431746650391],[129.848595,45.0620778632813],[129.87197390625,45.0892147041016],[129.909757109375,45.1060738349609],[129.88197390625,45.1184712958985],[129.86271609375,45.1334169746094],[129.905836210938,45.1604232001954],[129.901944609375,45.208843],[129.904312773438,45.2383614326172],[129.92271609375,45.2884712958985],[129.93197390625,45.3392147041016],[129.94271609375,45.3584712958985],[129.95197390625,45.3992147041016],[129.966763945313,45.4257271552735],[129.951690703125,45.4387123847657],[129.971295195313,45.473843],[129.950719023438,45.5107210517579],[129.894498320313,45.5062038398437],[129.861236601563,45.4876448798828],[129.863385039063,45.4608950019531],[129.81197390625,45.4492147041016],[129.801373320313,45.4369124580079],[129.768253203125,45.4395735908203],[129.74271609375,45.4692147041016],[129.72197390625,45.4784712958985],[129.692642851563,45.4992684150391],[129.646119414063,45.4955306220703],[129.603736601563,45.52558128125],[129.58271609375,45.4784712958985],[129.568565703125,45.4592147041016],[129.514439726563,45.4894130683594],[129.502066679688,45.4884188056641],[129.48271609375,45.4992147041016],[129.46197390625,45.5084712958985],[129.421031523438,45.5375002265625],[129.4227746875,45.5591970039063],[129.316983671875,45.591048810547],[129.297345,45.6138430000001],[129.302984648438,45.638681256836],[129.2992590625,45.668671491211],[129.336632109375,45.6793581367188],[129.330611601563,45.72776878125],[129.404254179688,45.7384871650391],[129.399898710938,45.7735005927735],[129.452345,45.7669771552735],[129.461793242188,45.7893959785157],[129.502896757813,45.7982900214844],[129.55603640625,45.8212288642578],[129.547345,45.843843],[129.55142703125,45.8497585273438],[129.56361453125,45.8581728339844],[129.559381132813,45.8770577216797],[129.577345,45.8810848212891],[129.600230742188,45.8759542060548],[129.6221496875,45.8902260566406],[129.655797148438,45.8760939765626],[129.726617460938,45.8934896064453],[129.779600859375,45.8816115546875],[129.783468046875,45.898843],[129.778980742188,45.9188430000001],[129.784586210938,45.943843],[129.777725859375,45.9744448066406],[129.837652617188,45.9878792548828],[129.85142703125,45.9679274726563],[129.881007109375,45.9475057197266]]]]}},{"type":"Feature","properties":{"name":"穆棱市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.907345,44.2038430000001],[129.897345,44.2038430000001],[129.902345,44.2166506171876],[129.907345,44.2038430000001]]],[[[130.857345,44.713843],[130.869537382813,44.7172664619141],[130.860767851563,44.7260353828125],[130.817857695313,44.7069710517578],[130.802896757813,44.6882900214844],[130.776187773438,44.6770345283203],[130.729527617188,44.6903585029297],[130.705133085938,44.687323834961],[130.68634890625,44.6427474189453],[130.631846953125,44.64952659375],[130.621085234375,44.6239839912109],[130.623018828125,44.6084389472656],[130.591793242188,44.5693959785157],[130.582896757813,44.5282900214844],[130.561676054688,44.4992354560548],[130.563023710938,44.4883901191406],[130.551793242188,44.4793959785156],[130.542896757813,44.4682900214844],[130.521793242188,44.4593959785157],[130.502896757813,44.4314278388672],[130.525479765625,44.3726808906251],[130.511793242188,44.3493959785157],[130.502896757813,44.3154116035157],[130.522896757813,44.2993959785157],[130.53388796875,44.2362459541015],[130.52951296875,44.2010774970704],[130.501793242188,44.1893959785157],[130.479547148438,44.1763210273438],[130.4837121875,44.14284690625],[130.435963164063,44.1227260566407],[130.402896757813,44.0682900214844],[130.391793242188,44.0593959785156],[130.382896757813,44.0482900214844],[130.357345,44.0438430000001],[130.309576445313,44.0378682685547],[130.292896757813,43.9982900214844],[130.274146757813,43.9832747626954],[130.252896757813,43.9482900214844],[130.239249296875,43.9373622871094],[130.19939578125,43.9423195625001],[130.159146757813,43.9268471503907],[130.139932890625,43.8812544990235],[130.111793242188,43.8693959785156],[130.102896757813,43.8482900214844],[130.06322390625,43.8315712714844],[130.006275664063,43.8650460029297],[130.01537234375,43.9381764960938],[129.97380984375,44.0088808417969],[129.947345,44.023843],[129.963682890625,44.0475057197266],[130.01451296875,44.0826003242188],[130.05013796875,44.1450118232422],[130.0220715625,44.1643868232422],[129.977017851563,44.154286725586],[129.95326296875,44.1697585273438],[129.92142703125,44.1779274726563],[129.907345,44.2038430000001],[129.972579375,44.1984206367187],[130.0098840625,44.2121193671876],[130.02197390625,44.2392147041016],[130.043492460938,44.2695644355469],[130.041944609375,44.288843],[130.042838164063,44.3000081611328],[130.062594023438,44.2984212470704],[130.08197390625,44.3061598945312],[130.03197390625,44.3284712958985],[129.98271609375,44.3692147041016],[129.941632109375,44.3949495673828],[129.943565703125,44.4190596748048],[129.917345,44.4238430000001],[129.90537234375,44.4657112861328],[129.851793242188,44.4882900214844],[129.842896757813,44.5093959785157],[129.811793242188,44.5182900214844],[129.761666289063,44.5583797431641],[129.7636340625,44.574204328125],[129.818717070313,44.5899532294922],[129.851793242188,44.6093959785157],[129.872896757813,44.6182900214844],[129.886236601563,44.6349489570313],[129.902896757813,44.6482900214844],[129.907345,44.6538430000001],[129.922061796875,44.6595003486328],[129.937345,44.6575991035157],[129.962345,44.6607088447266],[129.982345,44.6582210517578],[129.997345,44.6600868964845],[130.027345,44.6563552070313],[130.052345,44.6594649482422],[130.075206328125,44.6566213203126],[130.110621367188,44.6715444160156],[130.179586210938,44.7200185371094],[130.1262121875,44.7627584052735],[130.121724882813,44.798843],[130.122965117188,44.8088430000001],[130.121724882813,44.818843],[130.123590117188,44.833843],[130.12166140625,44.8493477607422],[130.173433867188,44.868487165039],[130.160553007813,44.8903963447266],[130.183023710938,44.9083901191406],[130.180533476563,44.9283901191407],[130.193023710938,44.9383901191406],[130.191676054688,44.9492031074219],[130.203258085938,44.9689028144532],[130.181676054688,44.9984505439454],[130.184830351563,45.023843],[130.18166140625,45.0493410468751],[130.205904570313,45.0595571113281],[130.229576445313,45.0891194892578],[130.332100859375,45.1019423652344],[130.361983671875,45.1195095039063],[130.380181914063,45.1172463203126],[130.397345,45.123843],[130.411846953125,45.0881587958985],[130.422799101563,45.0895211005859],[130.445152617188,45.0616030097656],[130.472706328125,45.0581764960938],[130.52420046875,45.0884462714844],[130.567345,45.093843],[130.57142703125,45.0879274726563],[130.58326296875,45.0797585273438],[130.59142703125,45.0679274726563],[130.624000273438,45.0493367744141],[130.64326296875,45.0197585273438],[130.653682890625,44.9919057441407],[130.672345,44.9877223945313],[130.691676054688,44.9920552802735],[130.713975859375,44.9597585273438],[130.747095976563,44.9689968085938],[130.7641028125,44.9936330390626],[130.799141875,45.0014876533203],[130.83142703125,44.9879274726563],[130.857345,44.983843],[130.869595976563,44.9660964179688],[130.911861601563,44.9369148994141],[130.92142703125,44.8879274726563],[130.945094023438,44.8715895820312],[130.957345,44.853843],[130.96170046875,44.8281990791016],[131.01076296875,44.8145369697266],[131.013082304688,44.798843],[131.011514921875,44.7882381416016],[131.064303007813,44.7770992255859],[131.061226835938,44.7562831855469],[131.083160429688,44.739355084961],[131.080670195313,44.7224935126953],[131.09170046875,44.7081990791016],[131.1086340625,44.6951302314453],[131.13041140625,44.6169118476562],[131.147345,44.573843],[131.13197390625,44.5784712958984],[131.012218046875,44.5892598701172],[130.921964140625,44.572895734375],[130.89271609375,44.5892147041016],[130.8658996875,44.6011806464844],[130.850885039063,44.6672682929688],[130.865094023438,44.6927358222657],[130.857345,44.713843]]]]}},{"type":"Feature","properties":{"name":"宁安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.307345,43.803843],[129.303922148438,43.8160353828125],[129.295152617188,43.8072664619141],[129.295777617188,43.7893959785156],[129.281793242188,43.7982900214844],[129.265777617188,43.8182900214844],[129.232432890625,43.8059261298828],[129.207139921875,43.7856728339844],[129.212965117188,43.7388430000001],[129.211676054688,43.7284828925782],[129.22322390625,43.7088430000001],[129.202896757813,43.6742659736329],[129.211793242188,43.6482900214844],[129.231793242188,43.6142659736328],[129.218985625,43.5912587714844],[129.162706328125,43.5581764960938],[129.13468875,43.5616609931641],[129.091793242188,43.5493959785157],[129.087345,43.543843],[129.04197390625,43.5392147041016],[129.008990507813,43.5271034980469],[128.977862578125,43.5296047187501],[128.935889921875,43.5530239082032],[128.8740246875,43.5360915351563],[128.86271609375,43.5492147041016],[128.85197390625,43.5584712958985],[128.836021757813,43.5769844794922],[128.80345828125,43.6499587226563],[128.78197390625,43.6884712958985],[128.76373171875,43.7293563056641],[128.743717070313,43.7277480292969],[128.71271609375,43.7406221748047],[128.75490359375,43.7594472480469],[128.71740359375,43.8266622138672],[128.751363554688,43.8559200263672],[128.6989075,43.901112897461],[128.652550078125,43.8884249091797],[128.62884890625,43.8903292060547],[128.6327746875,43.9391664863282],[128.585094023438,43.9802431464844],[128.557901640625,44.0519008613281],[128.53197390625,44.0884712958985],[128.52271609375,44.1092147041016],[128.463472929688,44.1602577949219],[128.457345,44.193843],[128.491793242188,44.2093959785156],[128.532896757813,44.2182900214844],[128.564459257813,44.2368422675782],[128.561441679688,44.2611074042969],[128.59400515625,44.2871834541016],[128.611890898438,44.309521100586],[128.633214140625,44.3068691230469],[128.631666289063,44.3192958808594],[128.649171171875,44.3333150458985],[128.7081653125,44.3164699531251],[128.753599882813,44.333935163086],[128.751656523438,44.3183132148438],[128.802896757813,44.3093959785157],[128.828194609375,44.2945272041016],[128.871793242188,44.3293959785156],[128.908624296875,44.3399275947266],[128.98873171875,44.3299636054688],[129.025479765625,44.3515627265625],[129.052345,44.3482210517578],[129.082345,44.351952741211],[129.129210234375,44.3461232734375],[129.151793242188,44.3593959785156],[129.172896757813,44.3682900214844],[129.181793242188,44.3793959785157],[129.192896757813,44.3882900214844],[129.201793242188,44.3993959785156],[129.238516875,44.4148702216797],[129.252144804688,44.3978475166016],[129.281236601563,44.4149489570313],[129.312896757813,44.4282900214844],[129.341954375,44.4495137763672],[129.381890898438,44.444546125],[129.397345,44.4638430000001],[129.40271609375,44.4592147041016],[129.443199492188,44.455962140625],[129.48197390625,44.4284712958984],[129.521959257813,44.4164327216797],[129.501539335938,44.398843],[129.527535429688,44.3764479804688],[129.637345,44.3852712226563],[129.732022734375,44.3776638007813],[129.737345,44.3838430000001],[129.771060820313,44.3615608955078],[129.854263945313,44.3323964667969],[129.847193632813,44.3008534980469],[129.86361453125,44.2895131660157],[129.855894804688,44.2550691962891],[129.883580351563,44.2193477607422],[129.881041289063,44.2080269599609],[129.897345,44.2038430000001],[129.907345,44.2038430000001],[129.92142703125,44.1779274726563],[129.95326296875,44.1697585273438],[129.977017851563,44.154286725586],[130.0220715625,44.1643868232422],[130.05013796875,44.1450118232422],[130.01451296875,44.0826003242188],[129.963682890625,44.0475057197266],[129.947345,44.023843],[129.912418242188,44.018212506836],[129.901954375,44.0195137763672],[129.872198515625,43.9977797675782],[129.8615246875,44.0111135078125],[129.802896757813,43.9682900214844],[129.780479765625,43.958843],[129.783023710938,43.9383901191407],[129.771666289063,43.9292958808594],[129.775455351563,43.8988430000001],[129.731656523438,43.8893672919922],[129.733370390625,43.8756056953125],[129.697345,43.8800868964844],[129.647345,43.8738674140625],[129.602310820313,43.8794692207031],[129.522379179688,43.8682167792969],[129.464610625,43.8754024482422],[129.442896757813,43.8482900214844],[129.409210234375,43.838657453125],[129.392896757813,43.8182900214844],[129.363546171875,43.7947835517578],[129.307345,43.803843]]]]}},{"type":"Feature","properties":{"name":"阳明区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.813350859375,44.6898494697266],[129.833062773438,44.6602053046875],[129.893062773438,44.6753224921875],[129.907345,44.6538430000001],[129.902896757813,44.6482900214844],[129.886236601563,44.6349489570313],[129.872896757813,44.6182900214844],[129.851793242188,44.6093959785157],[129.818717070313,44.5899532294922],[129.7636340625,44.574204328125],[129.761666289063,44.5583797431641],[129.811793242188,44.5182900214844],[129.842896757813,44.5093959785157],[129.851793242188,44.4882900214844],[129.90537234375,44.4657112861328],[129.917345,44.4238430000001],[129.908599882813,44.3897585273438],[129.88142703125,44.3979274726562],[129.873116484375,44.4303163886719],[129.84326296875,44.4497585273438],[129.82142703125,44.4579274726563],[129.79326296875,44.4797585273437],[129.75713015625,44.4932772041016],[129.72142703125,44.5179274726563],[129.71326296875,44.5297585273438],[129.6712121875,44.5537599921875],[129.65326296875,44.5797585273438],[129.62142703125,44.5879274726562],[129.617345,44.593843],[129.641842070313,44.6114022041016],[129.654522734375,44.6746541572266],[129.673170195313,44.6880178046876],[129.677345,44.6938430000001],[129.690709257813,44.7011696601563],[129.669097929688,44.7297493720704],[129.693804960938,44.7373836494141],[129.697345,44.743843],[129.703350859375,44.7398494697266],[129.717608671875,44.7184096503907],[129.773350859375,44.7098494697266],[129.781339140625,44.6978365302735],[129.813350859375,44.6898494697266]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"爱辉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.052154570313,50.9586522651367],[127.129600859375,50.922101972168],[127.233756132813,50.7719222236328],[127.301475859375,50.7455513740235],[127.272535429688,50.6908559394532],[127.295235625,50.6535930610352],[127.34986453125,50.602975385254],[127.369132109375,50.5665654731446],[127.343839140625,50.5392684150391],[127.3114075,50.5239611030273],[127.287100859375,50.4546196723633],[127.361431914063,50.4369148994141],[127.362926054688,50.3991625190431],[127.322535429688,50.3464903999024],[127.333678007813,50.325825421875],[127.382154570313,50.2886522651367],[127.452535429688,50.2690337348633],[127.482154570313,50.2586522651368],[127.602120390625,50.2395418525391],[127.602545195313,50.228843],[127.602144804688,50.2188430000001],[127.602843046875,50.2012163520508],[127.583678007813,50.1406795478516],[127.572535429688,50.1286522651367],[127.504263945313,50.0785762763673],[127.489210234375,49.9921346259766],[127.54547,49.9255596137696],[127.520963164063,49.8556349921876],[127.533707304688,49.8021276069336],[127.576358671875,49.7871788764649],[127.671925078125,49.7644148994141],[127.672843046875,49.7412990546876],[127.667345,49.6938430000001],[127.611197539063,49.6881157661133],[127.6133215625,49.6616646552735],[127.57197390625,49.6492150092774],[127.55935671875,49.6209395576172],[127.432823515625,49.6092150092774],[127.342603789063,49.6492653632813],[127.327345,49.648039472168],[127.312345,49.6492446113282],[127.302022734375,49.6484151435548],[127.29271609375,49.6592150092774],[127.276104765625,49.6684709907227],[127.26271609375,49.6384709907227],[127.248521757813,49.626239850586],[127.176392851563,49.6045244575196],[127.120279570313,49.6198821235352],[127.099742460938,49.618232038086],[127.08271609375,49.5984709907227],[127.020377226563,49.5889720893555],[127.002667265625,49.5684151435547],[126.967345,49.5712535834961],[126.932345,49.5684413886719],[126.922105742188,49.5692638374024],[126.89271609375,49.5584709907227],[126.85197390625,49.5492150092774],[126.84271609375,49.5184709907227],[126.8319153125,49.509166791504],[126.8327746875,49.4985192084961],[126.82197390625,49.4892150092774],[126.81271609375,49.4684709907227],[126.775167265625,49.4517150092774],[126.73271609375,49.4184709907227],[126.697345,49.413843],[126.697345,49.4238430000001],[126.677345,49.4238430000001],[126.66697390625,49.4367943549805],[126.585972929688,49.4599532294922],[126.542603789063,49.4854470039063],[126.532896757813,49.5193959785157],[126.52146609375,49.5388430000001],[126.532896757813,49.5582900214844],[126.54478640625,49.5998747993165],[126.518272734375,49.6211077094727],[126.5237121875,49.66483909375],[126.491793242188,49.6782900214844],[126.472896757813,49.6942662788087],[126.498687773438,49.7381429267578],[126.451793242188,49.7482900214844],[126.394683867188,49.764596479004],[126.322896757813,49.7482900214844],[126.2484778125,49.7374584174806],[126.231890898438,49.7395214057617],[126.208800078125,49.7106853461914],[126.224034453125,49.6984874702149],[126.171793242188,49.6893959785157],[126.160831328125,49.6757085395508],[126.10345828125,49.6920912910157],[126.063941679688,49.687175824707],[126.052896757813,49.7442662788086],[126.076090117188,49.7837224555665],[126.071724882813,49.818843],[126.073023710938,49.8292958808594],[126.02474734375,49.8679552436524],[126.011261015625,49.915123822754],[126.0141809375,49.9386159492188],[125.981793242188,49.9582900214845],[125.968355742188,50.0052892280274],[125.880455351563,50.0286452460938],[125.885636015625,50.070299604004],[125.911890898438,50.067033612793],[125.928057890625,50.0872216010742],[125.869610625,50.1118508125],[125.873033476563,50.1393669868164],[125.824390898438,50.1498912788086],[125.83443484375,50.2306453681641],[125.882896757813,50.2882900214844],[125.89248171875,50.3541323066406],[125.952896757813,50.3882900214844],[125.984410429688,50.4113079047852],[126.07740359375,50.431428144043],[126.091793242188,50.4493959785157],[126.131470976563,50.4811702705079],[126.157447539063,50.5428185249024],[126.14654421875,50.6304705024414],[126.163013945313,50.658483197754],[126.1609778125,50.67483909375],[126.192896757813,50.6882900214844],[126.212144804688,50.7339681220703],[126.226632109375,50.8172228217774],[126.252896757813,50.8282900214844],[126.281793242188,50.8493959785156],[126.335089140625,50.8817693305664],[126.331724882813,50.9088430000001],[126.332965117188,50.918843],[126.330094023438,50.9419280219727],[126.337345,50.973843],[126.382535429688,50.9490337348633],[126.412720976563,50.9282631660156],[126.432515898438,50.9290477729493],[126.47252078125,50.9015172553711],[126.662345,50.9090410590821],[126.697345,50.9076540351563],[126.834527617188,50.9130913520508],[126.972252226563,50.9290450263672],[126.992354765625,50.9282482124024],[127.017345,50.9838430000001],[127.052154570313,50.9586522651367]]]]}},{"type":"Feature","properties":{"name":"北安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.012398710938,48.5493315864259],[127.042105742188,48.5384221625977],[127.062022734375,48.5400221992188],[127.079742460938,48.5194539619141],[127.092345,48.5184413886719],[127.107916289063,48.5196923041993],[127.144586210938,48.508651959961],[127.164039335938,48.4860741401368],[127.247017851563,48.4556023383789],[127.333604765625,48.4625603461915],[127.372105742188,48.4484218574219],[127.382345,48.4492446113281],[127.392345,48.4484413886719],[127.402623320313,48.4492671943359],[127.42197390625,48.4384712958985],[127.537345,48.4338430000001],[127.549210234375,48.419028546875],[127.6010559375,48.4042043281251],[127.602965117188,48.3888430000001],[127.600650664063,48.3702297187501],[127.623316679688,48.3316689277344],[127.621085234375,48.3137020087891],[127.631793242188,48.2882900214844],[127.6429309375,48.2793709541016],[127.682896757813,48.2293959785157],[127.701793242188,48.1982900214844],[127.7749621875,48.1876406074219],[127.805142851563,48.1463252998048],[127.801724882813,48.1188430000001],[127.802965117188,48.108843],[127.800650664063,48.09022971875],[127.813013945313,48.0692031074219],[127.8107434375,48.0509700751953],[127.841793242188,48.0282900214844],[127.857345,48.023843],[127.885225859375,48.0166884589844],[127.880103789063,47.993843],[127.886197539063,47.9666628242187],[127.87326296875,47.9479274726563],[127.847257109375,47.9381966376953],[127.83326296875,47.9179274726563],[127.806046171875,47.907743756836],[127.791485625,47.8510042548829],[127.76142703125,47.8397585273438],[127.75326296875,47.8179274726563],[127.687345,47.7838430000001],[127.663721953125,47.804950788086],[127.651011992188,47.8326375556641],[127.562345,47.827353131836],[127.532345,47.8291408515626],[127.507803984375,47.8276784492188],[127.472628203125,47.8085616279297],[127.409459257813,47.7890554023438],[127.245201445313,47.77718284375],[127.207345,47.7794393134766],[127.187345,47.7782466865234],[127.14545046875,47.7807442451172],[126.994019804688,47.7401869941407],[126.949068632813,47.7157601142579],[126.887515898438,47.7194289375001],[126.82250125,47.7427565742188],[126.726939726563,47.7257741523437],[126.694429960938,47.6893904853516],[126.587120390625,47.6401369453125],[126.570968046875,47.604950788086],[126.547345,47.583843],[126.521671171875,47.5904311347656],[126.517345,47.723843],[126.552896757813,47.7282900214844],[126.561793242188,47.7893959785156],[126.589771757813,47.8277010322266],[126.561373320313,47.8760170722656],[126.564273710938,47.8993526435547],[126.623248320313,47.9465785957032],[126.620479765625,47.9688430000001],[126.622965117188,47.988843],[126.616822539063,48.0382460761719],[126.5901575,48.0596004462891],[126.613013945313,48.0984828925782],[126.611656523438,48.1093672919922],[126.652896757813,48.1182900214844],[126.661793242188,48.1231447578125],[126.607232695313,48.1614931464844],[126.562799101563,48.2169844794922],[126.481119414063,48.2068245673828],[126.432628203125,48.1881856513672],[126.3724621875,48.195669171875],[126.342896757813,48.1782900214844],[126.310548125,48.1693959785157],[126.318678007813,48.2347664619141],[126.301793242188,48.2482900214844],[126.288453398438,48.2649489570313],[126.277345,48.2738430000001],[126.29123171875,48.2899587226563],[126.343204375,48.3131508613282],[126.3405090625,48.3466866279297],[126.372623320313,48.349267194336],[126.408565703125,48.3292147041016],[126.413345976563,48.3513869453125],[126.4119153125,48.3691970039063],[126.454107695313,48.3819008613282],[126.4519153125,48.409204328125],[126.509288359375,48.4196694160156],[126.55505984375,48.4727999091798],[126.59572390625,48.4473311591798],[126.618873320313,48.4204622626953],[126.767843046875,48.4070412421876],[126.802154570313,48.4366017890626],[126.812525664063,48.471057050293],[126.862105742188,48.4892638374024],[126.919429960938,48.4846578193359],[126.933472929688,48.5098235297852],[126.930904570313,48.5417711616212],[126.972550078125,48.5384249091797],[127.012398710938,48.5493315864259]]]]}},{"type":"Feature","properties":{"name":"嫩江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.977345,48.763843],[125.997345,48.763843],[125.997345,48.743843],[125.98406375,48.75056175],[125.977345,48.763843]]],[[[125.977345,48.763843],[125.967345,48.763843],[125.967345,48.7738430000001],[125.977345,48.7738430000001],[125.977345,48.763843]]],[[[125.257345,49.353843],[125.245152617188,49.3572661567383],[125.253922148438,49.3660353828126],[125.257345,49.353843]]],[[[125.437345,50.2238430000001],[125.424537382813,50.228843],[125.437345,50.233843],[125.437345,50.2238430000001]]],[[[125.257345,49.353843],[125.270928984375,49.3651262641602],[125.24302859375,49.413843],[125.264478789063,49.4513021064453],[125.220308867188,49.4879964423828],[125.233365507813,49.4988430000001],[125.221881132813,49.5083803535156],[125.207515898438,49.5256774116211],[125.224771757813,49.5400139594727],[125.2218371875,49.5688430000001],[125.223873320313,49.588843],[125.191422148438,49.6029180122071],[125.162667265625,49.6193856025391],[125.133961210938,49.6164595771484],[125.112808867188,49.6723632026368],[125.157432890625,49.667814862793],[125.182345,49.6378237128907],[125.191881132813,49.6493056464844],[125.213053007813,49.666891400879],[125.210308867188,49.6938430000001],[125.212886992188,49.7191658759766],[125.201617460938,49.738843],[125.212808867188,49.7583803535157],[125.221881132813,49.7944075751954],[125.167345,49.823843],[125.171519804688,49.8296678901367],[125.225401640625,49.838378522461],[125.221236601563,49.8594634223633],[125.238917265625,49.8721388984375],[125.211261015625,49.9083571601563],[125.2139465625,49.9219445014649],[125.18326296875,49.9439360786133],[125.173170195313,49.9675722480469],[125.228761015625,49.956587140625],[125.241519804688,49.9896678901367],[125.279605742188,49.9997158027344],[125.291519804688,50.0274651313477],[125.2512121875,50.0380998969727],[125.254610625,50.0553115058594],[125.307398710938,50.0448802924805],[125.331519804688,50.0579940009766],[125.26968875,50.070390241211],[125.273472929688,50.0895510078126],[125.249381132813,50.098843],[125.273472929688,50.1081349921875],[125.270391875,50.1237355781251],[125.297183867188,50.1380181098633],[125.312345,50.1168669868165],[125.321519804688,50.1296678901367],[125.365284453125,50.1384419990235],[125.329810820313,50.1590087104492],[125.370904570313,50.1748580146485],[125.381519804688,50.1896678901368],[125.431832304688,50.2029412055665],[125.437345,50.2238430000001],[125.4605871875,50.228843],[125.437345,50.233843],[125.442652617188,50.2486418891602],[125.4420325,50.259095685547],[125.452628203125,50.2685616279297],[125.462061796875,50.2891243720703],[125.488853789063,50.31306175],[125.523043242188,50.3287526679688],[125.51115359375,50.3393755317383],[125.532940703125,50.358843],[125.5220325,50.3685903144532],[125.523194609375,50.3880803657227],[125.5120325,50.4086174750977],[125.512867460938,50.4226253486328],[125.577984648438,50.3992604804688],[125.55611453125,50.4395125556641],[125.57259890625,50.4385298896485],[125.583101835938,50.4502880073243],[125.631588164063,50.4473979926758],[125.650260039063,50.4682955146485],[125.672628203125,50.4785616279297],[125.682061796875,50.4891243720703],[125.728995390625,50.5231856513672],[125.747877226563,50.5020549750977],[125.772061796875,50.5291243720703],[125.814444609375,50.548576581543],[125.811178007813,50.6033824897461],[125.791495390625,50.6396056342774],[125.792642851563,50.658843],[125.791451445313,50.6788430000001],[125.812628203125,50.6885616279297],[125.822061796875,50.7002031684571],[125.781451445313,50.7188430000001],[125.7826575,50.7391139960938],[125.751597929688,50.7487062812501],[125.779654570313,50.7737779975586],[125.833502226563,50.7544582343751],[125.8314465625,50.7889333320313],[125.864097929688,50.799016034668],[125.882061796875,50.8191243720704],[125.912974882813,50.8333104682618],[125.9120325,50.8491139960938],[125.9426575,50.8585720039063],[125.9420325,50.8690532661133],[125.954195585938,50.8985616279297],[125.972061796875,50.8785616279297],[125.99322390625,50.8691243720703],[125.99197390625,50.890107038086],[126.012628203125,50.9085616279297],[126.017345,50.923843],[126.027345,50.923843],[126.037345,50.923843],[126.043990507813,50.9155446601563],[126.115631132813,50.9310448432618],[126.13334109375,50.9730724311524],[126.17271609375,50.9681746650391],[126.225269804688,51.0016075874024],[126.322896757813,50.9893959785157],[126.331793242188,50.9782900214844],[126.337345,50.973843],[126.330094023438,50.9419280219727],[126.332965117188,50.918843],[126.331724882813,50.9088430000001],[126.335089140625,50.8817693305664],[126.281793242188,50.8493959785156],[126.252896757813,50.8282900214844],[126.226632109375,50.8172228217774],[126.212144804688,50.7339681220703],[126.192896757813,50.6882900214844],[126.1609778125,50.67483909375],[126.163013945313,50.658483197754],[126.14654421875,50.6304705024414],[126.157447539063,50.5428185249024],[126.131470976563,50.4811702705079],[126.091793242188,50.4493959785157],[126.07740359375,50.431428144043],[125.984410429688,50.4113079047852],[125.952896757813,50.3882900214844],[125.89248171875,50.3541323066406],[125.882896757813,50.2882900214844],[125.83443484375,50.2306453681641],[125.824390898438,50.1498912788086],[125.873033476563,50.1393669868164],[125.869610625,50.1118508125],[125.928057890625,50.0872216010742],[125.911890898438,50.067033612793],[125.885636015625,50.070299604004],[125.880455351563,50.0286452460938],[125.968355742188,50.0052892280274],[125.981793242188,49.9582900214845],[126.0141809375,49.9386159492188],[126.011261015625,49.915123822754],[126.02474734375,49.8679552436524],[126.073023710938,49.8292958808594],[126.071724882813,49.818843],[126.076090117188,49.7837224555665],[126.052896757813,49.7442662788086],[126.063941679688,49.687175824707],[126.10345828125,49.6920912910157],[126.160831328125,49.6757085395508],[126.171793242188,49.6893959785157],[126.224034453125,49.6984874702149],[126.208800078125,49.7106853461914],[126.231890898438,49.7395214057617],[126.2484778125,49.7374584174806],[126.322896757813,49.7482900214844],[126.394683867188,49.764596479004],[126.451793242188,49.7482900214844],[126.498687773438,49.7381429267578],[126.472896757813,49.6942662788087],[126.491793242188,49.6782900214844],[126.5237121875,49.66483909375],[126.518272734375,49.6211077094727],[126.54478640625,49.5998747993165],[126.532896757813,49.5582900214844],[126.52146609375,49.5388430000001],[126.532896757813,49.5193959785157],[126.542603789063,49.4854470039063],[126.585972929688,49.4599532294922],[126.66697390625,49.4367943549805],[126.677345,49.4238430000001],[126.677345,49.413843],[126.697345,49.413843],[126.70170046875,49.3981993842774],[126.7164465625,49.3737532783203],[126.724561796875,49.318843],[126.721143828125,49.2957039619141],[126.743140898438,49.2592333198243],[126.740445585938,49.2409914375],[126.802994414063,49.2153920722657],[126.827345,49.183843],[126.766558867188,49.1398543525391],[126.73033328125,49.1290337348633],[126.687257109375,49.1755236030273],[126.669595976563,49.1886522651368],[126.612496367188,49.1686388374024],[126.602203398438,49.1690468574219],[126.562281523438,49.1585854316407],[126.539654570313,49.1705586982423],[126.513228789063,49.1990761542969],[126.492345,49.1982485175782],[126.472174101563,49.199048078125],[126.432535429688,49.1686522651367],[126.40908328125,49.1575850654298],[126.362720976563,49.1594228339844],[126.3189075,49.1292751289063],[126.262496367188,49.1490471625977],[126.252345,49.1486449409181],[126.23252078125,49.1494304633789],[126.211441679688,49.1266771674805],[126.213726835938,49.0689363837891],[126.172154570313,49.0590337348633],[126.161451445313,49.0363576484376],[126.162545195313,49.008843],[126.161749296875,48.988843],[126.162550078125,48.968665998047],[126.149298125,48.9563875556641],[126.082159453125,48.9590486884766],[126.071734648438,48.9261293769532],[126.002154570313,48.8990337348633],[125.992535429688,48.8886522651368],[125.971363554688,48.8786592841797],[125.972916289063,48.8393758369141],[125.962154570313,48.8190337348633],[125.957345,48.7738430000001],[125.864703398438,48.8244155097657],[125.842628203125,48.8491243720703],[125.818365507813,48.8685616279298],[125.782628203125,48.8285616279298],[125.752061796875,48.8191243720703],[125.722628203125,48.8085616279297],[125.684107695313,48.7991243720704],[125.609332304688,48.8828133369141],[125.52427859375,48.8646416450196],[125.463453398438,48.8221553779298],[125.447345,48.7870549750977],[125.40513796875,48.7895705390625],[125.30810671875,48.7295842719727],[125.228961210938,48.7148125434571],[125.202569609375,48.7291545844727],[125.192345,48.7285448432618],[125.182345,48.7291411567383],[125.129263945313,48.7259773994141],[125.089698515625,48.740175397461],[125.062345,48.7385448432617],[125.044835234375,48.7395885444336],[125.02873171875,48.7917317939453],[124.975557890625,48.8161379218751],[125.002628203125,48.8285616279298],[125.01361453125,48.8525075507813],[125.01177859375,48.8833663154298],[124.865240507813,48.9005324531251],[124.808956328125,48.9311190009766],[124.747345,48.9238430000001],[124.741925078125,48.9386046577149],[124.74338015625,48.9567385078125],[124.813350859375,49.0413265205079],[124.811944609375,49.058843],[124.813424101563,49.0772859931641],[124.80173953125,49.1091100288087],[124.83654421875,49.1246419501954],[124.85505984375,49.1661293769531],[124.900128203125,49.1862395454102],[124.939620390625,49.1642046333009],[125.032974882813,49.1717061591797],[125.0311340625,49.1487874580078],[125.109439726563,49.1192150092774],[125.18197390625,49.1792150092773],[125.2127746875,49.188488690918],[125.211944609375,49.198843],[125.213951445313,49.2238430000001],[125.211944609375,49.248843],[125.213150664063,49.2638430000001],[125.2119153125,49.279166791504],[125.22271609375,49.2884709907227],[125.23197390625,49.2992150092774],[125.252877226563,49.3172243476563],[125.251929960938,49.3290145087891],[125.257345,49.353843]]]]}},{"type":"Feature","properties":{"name":"孙吴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.697345,49.413843],[126.677345,49.413843],[126.677345,49.4238430000001],[126.697345,49.4238430000001],[126.697345,49.413843]]],[[[127.987345,49.553843],[127.983922148438,49.5660353828125],[127.975152617188,49.5572661567384],[127.955479765625,49.5075029731446],[127.86732546875,49.4884291816407],[127.805455351563,49.4449419379884],[127.789810820313,49.4042360664063],[127.793023710938,49.3783901191407],[127.778331328125,49.3666237617188],[127.733472929688,49.2927751899414],[127.691793242188,49.2593959785157],[127.682896757813,49.2482900214844],[127.649581328125,49.2216085029297],[127.622896757813,49.1882900214844],[127.594757109375,49.1764315009766],[127.582896757813,49.1482900214844],[127.528736601563,49.0858736396485],[127.512896757813,49.0482900214844],[127.481793242188,49.0293959785157],[127.477345,49.023843],[127.432154570313,49.0286522651367],[127.37584109375,49.0584511542969],[127.327345,49.0250798774415],[127.255152617188,48.9910106635742],[127.191065703125,48.9790337348633],[127.172535429688,48.9990337348634],[127.147760039063,49.0107268500977],[127.168155546875,49.0492714667969],[127.142345,49.0482485175782],[127.122345,49.0490410590821],[127.102877226563,49.0482695747071],[127.072725859375,49.0642241645509],[127.021773710938,49.088271100586],[127.00216921875,49.1094304633789],[126.96216921875,49.1078450751953],[126.93357546875,49.1387044501953],[126.891871367188,49.1519078803712],[126.893033476563,49.1812285590821],[126.869595976563,49.1986522651368],[126.827345,49.183843],[126.802994414063,49.2153920722657],[126.740445585938,49.2409914375],[126.743140898438,49.2592333198243],[126.721143828125,49.2957039619141],[126.724561796875,49.318843],[126.7164465625,49.3737532783203],[126.70170046875,49.3981993842774],[126.697345,49.413843],[126.73271609375,49.4184709907227],[126.775167265625,49.4517150092774],[126.81271609375,49.4684709907227],[126.82197390625,49.4892150092774],[126.8327746875,49.4985192084961],[126.8319153125,49.509166791504],[126.84271609375,49.5184709907227],[126.85197390625,49.5492150092774],[126.89271609375,49.5584709907227],[126.922105742188,49.5692638374024],[126.932345,49.5684413886719],[126.967345,49.5712535834961],[127.002667265625,49.5684151435547],[127.020377226563,49.5889720893555],[127.08271609375,49.5984709907227],[127.099742460938,49.618232038086],[127.120279570313,49.6198821235352],[127.176392851563,49.6045244575196],[127.248521757813,49.626239850586],[127.26271609375,49.6384709907227],[127.276104765625,49.6684709907227],[127.29271609375,49.6592150092774],[127.302022734375,49.6484151435548],[127.312345,49.6492446113282],[127.327345,49.648039472168],[127.342603789063,49.6492653632813],[127.432823515625,49.6092150092774],[127.55935671875,49.6209395576172],[127.57197390625,49.6492150092774],[127.6133215625,49.6616646552735],[127.611197539063,49.6881157661133],[127.667345,49.6938430000001],[127.672896757813,49.6893959785157],[127.69767703125,49.6584505439454],[127.782105742188,49.6228755927734],[127.810728789063,49.5871291328126],[127.915719023438,49.5740697456055],[127.956920195313,49.5982900214844],[128.005865507813,49.5781758857423],[128.017345,49.563843],[128.013150664063,49.5475041938477],[127.987345,49.553843]]]]}},{"type":"Feature","properties":{"name":"五大连池市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.513228789063,49.1990761542969],[126.539654570313,49.1705586982423],[126.562281523438,49.1585854316407],[126.602203398438,49.1690468574219],[126.612496367188,49.1686388374024],[126.669595976563,49.1886522651368],[126.687257109375,49.1755236030273],[126.73033328125,49.1290337348633],[126.766558867188,49.1398543525391],[126.827345,49.183843],[126.869595976563,49.1986522651368],[126.893033476563,49.1812285590821],[126.891871367188,49.1519078803712],[126.93357546875,49.1387044501953],[126.96216921875,49.1078450751953],[127.00216921875,49.1094304633789],[127.021773710938,49.088271100586],[127.072725859375,49.0642241645509],[127.102877226563,49.0482695747071],[127.122345,49.0490410590821],[127.142345,49.0482485175782],[127.168155546875,49.0492714667969],[127.147760039063,49.0107268500977],[127.172535429688,48.9990337348634],[127.191065703125,48.9790337348633],[127.255152617188,48.9910106635742],[127.327345,49.0250798774415],[127.37584109375,49.0584511542969],[127.432154570313,49.0286522651367],[127.477345,49.023843],[127.464429960938,49.0093904853516],[127.411646757813,48.9851647163086],[127.388897734375,48.943297650879],[127.402061796875,48.9285616279297],[127.441964140625,48.91024925],[127.442940703125,48.893843],[127.441168242188,48.8640901923829],[127.471500273438,48.7979991889649],[127.49283328125,48.7789403510743],[127.476002226563,48.7479677558594],[127.453179960938,48.6843682075195],[127.4926575,48.6490956855469],[127.490499296875,48.6129152656251],[127.502628203125,48.5791243720703],[127.512061796875,48.5485616279297],[127.52435671875,48.5375789619141],[127.5208996875,48.4796013618164],[127.541929960938,48.4608116889649],[127.54322390625,48.4390956855469],[127.537345,48.4338430000001],[127.42197390625,48.4384712958985],[127.402623320313,48.4492671943359],[127.392345,48.4484413886719],[127.382345,48.4492446113281],[127.372105742188,48.4484218574219],[127.333604765625,48.4625603461915],[127.247017851563,48.4556023383789],[127.164039335938,48.4860741401368],[127.144586210938,48.508651959961],[127.107916289063,48.5196923041993],[127.092345,48.5184413886719],[127.079742460938,48.5194539619141],[127.062022734375,48.5400221992188],[127.042105742188,48.5384221625977],[127.012398710938,48.5493315864259],[126.972550078125,48.5384249091797],[126.930904570313,48.5417711616212],[126.933472929688,48.5098235297852],[126.919429960938,48.4846578193359],[126.862105742188,48.4892638374024],[126.812525664063,48.471057050293],[126.802154570313,48.4366017890626],[126.767843046875,48.4070412421876],[126.618873320313,48.4204622626953],[126.59572390625,48.4473311591798],[126.55505984375,48.4727999091798],[126.509288359375,48.4196694160156],[126.4519153125,48.409204328125],[126.454107695313,48.3819008613282],[126.4119153125,48.3691970039063],[126.413345976563,48.3513869453125],[126.408565703125,48.3292147041016],[126.372623320313,48.349267194336],[126.3405090625,48.3466866279297],[126.343204375,48.3131508613282],[126.29123171875,48.2899587226563],[126.277345,48.2738430000001],[126.238746367188,48.2794838691407],[126.189976835938,48.2784883857422],[126.027345,48.283843],[126.018453398438,48.2949489570313],[125.942471953125,48.3166725898437],[125.932345,48.3407088447266],[125.912125273438,48.3381941962891],[125.83922,48.3590126777344],[125.8137903125,48.3907698798828],[125.792896757813,48.4693959785157],[125.78134890625,48.4890419746094],[125.792896757813,48.4982900214844],[125.801793242188,48.5481017280274],[125.7151965625,48.5607051826172],[125.697345,48.553843],[125.710845976563,48.5998537421876],[125.752506132813,48.5882067084961],[125.771881132813,48.5993056464844],[125.812808867188,48.6083803535157],[125.88330203125,48.6384392524414],[125.867257109375,48.6664534736329],[125.915904570313,48.6964577460938],[125.987164335938,48.7091573310547],[125.997345,48.743843],[125.997345,48.763843],[125.977345,48.763843],[125.977345,48.7738430000001],[125.967345,48.7738430000001],[125.957345,48.7738430000001],[125.962154570313,48.8190337348633],[125.972916289063,48.8393758369141],[125.971363554688,48.8786592841797],[125.992535429688,48.8886522651368],[126.002154570313,48.8990337348633],[126.071734648438,48.9261293769532],[126.082159453125,48.9590486884766],[126.149298125,48.9563875556641],[126.162550078125,48.968665998047],[126.161749296875,48.988843],[126.162545195313,49.008843],[126.161451445313,49.0363576484376],[126.172154570313,49.0590337348633],[126.213726835938,49.0689363837891],[126.211441679688,49.1266771674805],[126.23252078125,49.1494304633789],[126.252345,49.1486449409181],[126.262496367188,49.1490471625977],[126.3189075,49.1292751289063],[126.362720976563,49.1594228339844],[126.40908328125,49.1575850654298],[126.432535429688,49.1686522651367],[126.472174101563,49.199048078125],[126.492345,49.1982485175782],[126.513228789063,49.1990761542969]]]]}},{"type":"Feature","properties":{"name":"逊克县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.507345,48.873843],[129.519537382813,48.8704198432618],[129.510767851563,48.8616506171876],[129.507345,48.873843]]],[[[127.987345,49.553843],[127.975152617188,49.5572661567384],[127.983922148438,49.5660353828125],[127.987345,49.553843]]],[[[129.507345,48.873843],[129.50197390625,48.8692150092774],[129.48572390625,48.8503548408203],[129.45197390625,48.8292150092774],[129.44271609375,48.8184709907227],[129.428624296875,48.8063295722657],[129.387345,48.8096465278321],[129.372345,48.8084413886719],[129.362345,48.8092446113282],[129.328253203125,48.8065056586915],[129.312667265625,48.7884151435547],[129.27584109375,48.7913741279298],[129.251236601563,48.7776448798829],[129.254293242188,48.7396263862305],[129.171671171875,48.7622380805665],[129.1727746875,48.7485192084961],[129.158326445313,48.736073834961],[129.223951445313,48.6795351386719],[129.191710234375,48.6517565131836],[129.192764921875,48.6386046577149],[129.187345,48.6238430000001],[129.181519804688,48.6196678901368],[129.117374296875,48.6068608833008],[129.102345,48.6098311591797],[129.083267851563,48.6060616279297],[129.063170195313,48.5780181098633],[129.031519804688,48.5696678901367],[129.023170195313,48.5580181098633],[129.011519804688,48.5496678901368],[128.979874296875,48.4920174384766],[128.987345,48.4738430000001],[128.984801054688,48.4563866401367],[128.945621367188,48.4170088935547],[128.967345,48.413843],[128.958018828125,48.4008278632813],[128.914136992188,48.3753865791016],[128.923472929688,48.3281349921876],[128.899381132813,48.3188430000001],[128.90728640625,48.2788430000001],[128.861519804688,48.2696681953125],[128.857345,48.263843],[128.85197390625,48.2592147041016],[128.842667265625,48.2484151435547],[128.817511015625,48.2504366279298],[128.779000273438,48.2951381660156],[128.76271609375,48.3492147041016],[128.744503203125,48.3988088203125],[128.691715117188,48.4108010078125],[128.634498320313,48.4062038398438],[128.602623320313,48.3884188056641],[128.592139921875,48.3892610908203],[128.552550078125,48.3784249091797],[128.5352746875,48.3798128486329],[128.455943632813,48.3654299140625],[128.3937903125,48.293290631836],[128.38271609375,48.2684712958985],[128.3666028125,48.2545870185547],[128.339215117188,48.2227992988281],[128.343472929688,48.1698238349609],[128.329859648438,48.1454268623047],[128.257491484375,48.1512416816407],[128.185357695313,48.1247524238281],[128.16271609375,48.0984712958985],[128.13197390625,48.0792147041016],[128.127345,48.073843],[128.101690703125,48.084618756836],[128.082691679688,48.0571047187501],[128.06326296875,48.0697585273438],[128.00142703125,48.0779274726563],[127.972584257813,48.0900423408203],[127.91752078125,48.0765181708985],[127.865225859375,48.0545528388672],[127.857345,48.023843],[127.841793242188,48.0282900214844],[127.8107434375,48.0509700751953],[127.813013945313,48.0692031074219],[127.800650664063,48.09022971875],[127.802965117188,48.108843],[127.801724882813,48.1188430000001],[127.805142851563,48.1463252998048],[127.7749621875,48.1876406074219],[127.701793242188,48.1982900214844],[127.682896757813,48.2293959785157],[127.6429309375,48.2793709541016],[127.631793242188,48.2882900214844],[127.621085234375,48.3137020087891],[127.623316679688,48.3316689277344],[127.600650664063,48.3702297187501],[127.602965117188,48.3888430000001],[127.6010559375,48.4042043281251],[127.549210234375,48.419028546875],[127.537345,48.4338430000001],[127.54322390625,48.4390956855469],[127.541929960938,48.4608116889649],[127.5208996875,48.4796013618164],[127.52435671875,48.5375789619141],[127.512061796875,48.5485616279297],[127.502628203125,48.5791243720703],[127.490499296875,48.6129152656251],[127.4926575,48.6490956855469],[127.453179960938,48.6843682075195],[127.476002226563,48.7479677558594],[127.49283328125,48.7789403510743],[127.471500273438,48.7979991889649],[127.441168242188,48.8640901923829],[127.442940703125,48.893843],[127.441964140625,48.91024925],[127.402061796875,48.9285616279297],[127.388897734375,48.943297650879],[127.411646757813,48.9851647163086],[127.464429960938,49.0093904853516],[127.477345,49.023843],[127.481793242188,49.0293959785157],[127.512896757813,49.0482900214844],[127.528736601563,49.0858736396485],[127.582896757813,49.1482900214844],[127.594757109375,49.1764315009766],[127.622896757813,49.1882900214844],[127.649581328125,49.2216085029297],[127.682896757813,49.2482900214844],[127.691793242188,49.2593959785157],[127.733472929688,49.2927751899414],[127.778331328125,49.3666237617188],[127.793023710938,49.3783901191407],[127.789810820313,49.4042360664063],[127.805455351563,49.4449419379884],[127.86732546875,49.4884291816407],[127.955479765625,49.5075029731446],[127.987345,49.553843],[128.013150664063,49.5475041938477],[128.017345,49.563843],[128.04408328125,49.5542491889649],[128.187901640625,49.5351262641602],[128.249429960938,49.5685616279297],[128.292628203125,49.5591243720704],[128.329429960938,49.5391243720703],[128.352628203125,49.5485616279298],[128.37937625,49.5906197333985],[128.55994265625,49.6013820625001],[128.612628203125,49.5891243720704],[128.665523710938,49.5701436591797],[128.721812773438,49.5667885566406],[128.735562773438,49.5967455268555],[128.812061796875,49.5731221748047],[128.799346953125,49.5535002875977],[128.732628203125,49.4938872504883],[128.763331328125,49.4696782661133],[128.782530546875,49.4685338569336],[128.86955203125,49.4943035102539],[128.902628203125,49.4791243720704],[128.944635039063,49.4562972236328],[129.009459257813,49.4601610541993],[129.042628203125,49.3991243720704],[129.06093875,49.3592247749024],[129.137589140625,49.3546562934571],[129.20502078125,49.4069130683594],[129.262628203125,49.3891243720703],[129.287345,49.373843],[129.280987578125,49.3659023261719],[129.230279570313,49.372209394043],[129.162896757813,49.3182503486329],[129.172613554688,49.2636721015625],[129.231246367188,49.1654048896485],[129.22166140625,49.088344953125],[129.242896757813,49.0793959785157],[129.291529570313,49.0508104682618],[129.352345,49.0432457709961],[129.407486601563,49.0501042915039],[129.43775515625,49.0373488593751],[129.431676054688,48.988483197754],[129.442896757813,48.9693959785156],[129.451793242188,48.9482900214844],[129.507345,48.933843],[129.513673125,48.9080815864258],[129.488980742188,48.898843],[129.51392703125,48.8895098090821],[129.507345,48.873843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安达市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.237345,46.463843],[125.225152617188,46.4672664619141],[125.233922148438,46.4760353828125],[125.237345,46.463843]]],[[[125.237345,46.463843],[125.263287382813,46.468466413086],[125.249176054688,46.4931069160156],[125.202022734375,46.488300397461],[125.156173125,46.5145613837891],[125.182686796875,46.5365883613282],[125.221881132813,46.5083803535157],[125.25853640625,46.4993056464844],[125.241803007813,46.5285201240234],[125.243682890625,46.5469741035157],[125.231807890625,46.5785781074219],[125.233834257813,46.5984529853516],[125.173717070313,46.6483901191407],[125.268687773438,46.6590395332031],[125.250235625,46.6912569404297],[125.207345,46.703843],[125.202535429688,46.7190334296875],[125.182154570313,46.7286525703125],[125.172535429688,46.7390334296875],[125.141949492188,46.7587837958984],[125.191744414063,46.8199678779297],[125.152081328125,46.83868675],[125.157345,46.8638430000001],[125.171041289063,46.8765340400391],[125.23408328125,46.9659560371094],[125.2957825,47.0084108710937],[125.337345,46.993843],[125.37271609375,46.9892147041016],[125.39197390625,46.9584712958985],[125.4080871875,46.9445870185547],[125.4273840625,46.9221901679688],[125.4616028125,46.9030989814454],[125.52062625,46.8767604804688],[125.58197390625,46.8384712958985],[125.69271609375,46.7892147041016],[125.776793242188,46.714169538086],[125.865206328125,46.6747170234375],[125.907345,46.6438430000001],[125.88974734375,46.6210463691407],[125.78843875,46.6038362861328],[125.707926054688,46.5744600654297],[125.72298953125,46.5494869208985],[125.73170046875,46.4881990791016],[125.744483671875,46.4783309150391],[125.7394153125,46.4440151191407],[125.747345,46.423843],[125.73736453125,46.4113777900391],[125.64939578125,46.4223195625001],[125.612896757813,46.4082900214844],[125.5636340625,46.394204328125],[125.561676054688,46.3784828925781],[125.574132109375,46.3572951484375],[125.51005984375,46.2772817207031],[125.442896757813,46.2482900214844],[125.330445585938,46.2342244697266],[125.342896757813,46.1793959785157],[125.347345,46.1438430000001],[125.283316679688,46.1358431220704],[125.211793242188,46.1482900214844],[125.202506132813,46.1703279853516],[125.147735625,46.1913796210938],[125.112345,46.1869771552735],[125.099151640625,46.2182900214844],[125.072896757813,46.2048390937501],[125.08181765625,46.1581557441407],[125.092345,46.1594649482422],[125.102345,46.1582210517579],[125.123702421875,46.1608779121094],[125.151890898438,46.1256771064453],[125.221793242188,46.1343715644532],[125.192896757813,46.0982900214844],[125.155572539063,46.0756172919922],[125.132896757813,46.0382900214844],[125.087345,46.013843],[125.081314726563,46.0291872382813],[125.09298953125,46.0381990791016],[125.10170046875,46.0539199042969],[125.059967070313,46.0477529121094],[125.063082304688,46.0688430000001],[125.060445585938,46.0866902900391],[124.959581328125,46.0717848945312],[124.901773710938,46.0549288154298],[124.87298953125,46.0642757392578],[124.91298953125,46.0881990791016],[124.929195585938,46.1091963935547],[124.91170046875,46.1381990791016],[124.90095828125,46.1644509101563],[124.905416289063,46.1946364570313],[124.917345,46.203843],[124.952896757813,46.2182900214844],[124.964971953125,46.2469484687501],[125.054078398438,46.25991721875],[125.04552859375,46.3286440253907],[125.010772734375,46.3385811591797],[125.026163359375,46.3509041572266],[125.017345,46.3738430000001],[125.02271609375,46.3784712958985],[125.03197390625,46.4061598945313],[124.981070585938,46.4288729072266],[125.043258085938,46.4524715400391],[125.041944609375,46.468843],[125.043033476563,46.4824037910156],[125.097345,46.4780397773438],[125.170660429688,46.4839302802735],[125.130738554688,46.4495351386719],[125.153726835938,46.4297273994141],[125.237701445313,46.4169313789063],[125.26197390625,46.4243849921875],[125.237345,46.463843]]]]}},{"type":"Feature","properties":{"name":"北林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,46.4438430000001],[126.839537382813,46.4404195380859],[126.830767851563,46.4316506171876],[126.827345,46.4438430000001]]],[[[126.827345,46.4438430000001],[126.77197390625,46.4192147041016],[126.76271609375,46.4084712958984],[126.757345,46.403843],[126.735611601563,46.4123867011719],[126.686988554688,46.3763368964844],[126.67298953125,46.3581990791016],[126.66170046875,46.3494869208985],[126.652857695313,46.3380281806641],[126.641832304688,46.339657819336],[126.63298953125,46.3281990791016],[126.627345,46.323843],[126.61197390625,46.3284712958984],[126.60271609375,46.3592147041016],[126.5866028125,46.3730989814454],[126.568253203125,46.3943947578125],[126.55271609375,46.4292147041016],[126.52718875,46.4512099433594],[126.460704375,46.5437996650391],[126.427345,46.553843],[126.431793242188,46.5793959785156],[126.442896757813,46.5882900214844],[126.452530546875,46.6219795966797],[126.475440703125,46.6403237128907],[126.510987578125,46.6359023261719],[126.521793242188,46.6493959785156],[126.567628203125,46.6593129707032],[126.601983671875,46.6795095039063],[126.612345,46.6782210517578],[126.622345,46.6794649482422],[126.632345,46.6782210517578],[126.678531523438,46.6839656806641],[126.72650515625,46.7121657539063],[126.811422148438,46.736444928711],[126.821890898438,46.749521100586],[126.837345,46.7475991035157],[126.862345,46.7507088447266],[126.882799101563,46.7481648994141],[126.896236601563,46.7649489570312],[126.913023710938,46.7783901191407],[126.911099882813,46.7938430000001],[126.91297,46.8088771796875],[126.90052859375,46.8972499824219],[126.913013945313,46.9184828925782],[126.911666289063,46.9293184638672],[126.949078398438,46.9520436835938],[126.963057890625,47.0481026435547],[126.961695585938,47.0590602851563],[126.9747278125,47.1046938300782],[126.971685820313,47.1291255927734],[126.977345,47.143843],[126.987345,47.163843],[127.135074492188,47.1570888496094],[127.152154570313,47.1386525703126],[127.212550078125,47.1290309882813],[127.212139921875,47.118691022461],[127.222828398438,47.0881911445313],[127.1989465625,47.0660610175782],[127.311095,47.0425978828125],[127.342154570313,47.0590334296875],[127.367345,47.063843],[127.362159453125,47.0457064033204],[127.341793242188,47.0293959785156],[127.331236601563,46.9924715400391],[127.309019804688,46.9546840644531],[127.292686796875,46.897558209961],[127.242706328125,46.8681764960938],[127.222896757813,46.8706398750001],[127.238570585938,46.8488777900391],[127.262896757813,46.8293959785157],[127.274010039063,46.7905385566407],[127.313590117188,46.758843],[127.293448515625,46.7427150703126],[127.291475859375,46.7268691230469],[127.312843046875,46.72952659375],[127.321793242188,46.7082900214844],[127.33334109375,46.6886440253906],[127.321793242188,46.6793959785157],[127.317345,46.663843],[127.301519804688,46.6596681953125],[127.269386015625,46.6464632392579],[127.242345,46.6518068671875],[127.181710234375,46.6398256660156],[127.143170195313,46.6080178046875],[127.121519804688,46.5996681953125],[127.102779570313,46.5877693916016],[127.087345,46.5908193183594],[127.054918242188,46.5844118476563],[127.043170195313,46.5680178046875],[127.031519804688,46.5596681953125],[127.023170195313,46.5480178046876],[127.001519804688,46.5396681953126],[126.983170195313,46.5280178046875],[126.897276640625,46.5060201240235],[126.850728789063,46.4764681220703],[126.827345,46.4438430000001]]]]}},{"type":"Feature","properties":{"name":"海伦市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.651011992188,47.8326375556641],[127.663721953125,47.804950788086],[127.687345,47.7838430000001],[127.69736453125,47.771327741211],[127.727345,47.7675991035157],[127.751793242188,47.770639875],[127.729586210938,47.7148329902344],[127.6339465625,47.7267287421875],[127.631676054688,47.7084828925781],[127.647491484375,47.6815859199219],[127.612896757813,47.6682900214844],[127.491793242188,47.6593959785157],[127.472896757813,47.6482900214844],[127.431793242188,47.6393959785156],[127.415479765625,47.619028546875],[127.381793242188,47.6093959785156],[127.337686796875,47.5466518378906],[127.27162234375,47.5093013740234],[127.221793242188,47.4693959785157],[127.212896757813,47.4582900214844],[127.189537382813,47.4395815253907],[127.171793242188,47.4093959785156],[127.161768828125,47.3743440986328],[127.128453398438,47.3327370429688],[127.091749296875,47.3033455634766],[127.071676054688,47.2692031074219],[127.073023710938,47.2583901191406],[127.05068484375,47.2405025458985],[127.032896757813,47.2182900214844],[127.001793242188,47.1993959785157],[126.987345,47.163843],[126.977345,47.143843],[126.962061796875,47.1391243720703],[126.897564726563,47.1352797675781],[126.882628203125,47.1185616279297],[126.802061796875,47.1091243720704],[126.751178007813,47.0908663154297],[126.572291289063,47.1015285468751],[126.562569609375,46.9979354072266],[126.537345,46.9994393134766],[126.499893828125,46.997206647461],[126.392061796875,46.9741677070313],[126.227345,46.963843],[126.2335559375,46.9861537910157],[126.265377226563,46.9991768623048],[126.251475859375,47.0591799140626],[126.284991484375,47.104389875],[126.277345,47.123843],[126.29806765625,47.1297670722656],[126.323824492188,47.1619362617188],[126.32166140625,47.179341046875],[126.342896757813,47.1882900214844],[126.363863554688,47.2616225410156],[126.361676054688,47.2792031074219],[126.373013945313,47.2984828925782],[126.370758085938,47.3166188789063],[126.423023710938,47.3483675361329],[126.421666289063,47.3592958808594],[126.432896757813,47.3682900214844],[126.437345,47.373843],[126.442393828125,47.3935207343751],[126.469366484375,47.4121419501954],[126.505323515625,47.4655440498048],[126.52361453125,47.4781728339844],[126.519698515625,47.4956410957032],[126.53326296875,47.5279274726563],[126.54142703125,47.5697585273437],[126.547345,47.583843],[126.570968046875,47.604950788086],[126.587120390625,47.6401369453125],[126.694429960938,47.6893904853516],[126.726939726563,47.7257741523437],[126.82250125,47.7427565742188],[126.887515898438,47.7194289375001],[126.949068632813,47.7157601142579],[126.994019804688,47.7401869941407],[127.14545046875,47.7807442451172],[127.187345,47.7782466865234],[127.207345,47.7794393134766],[127.245201445313,47.77718284375],[127.409459257813,47.7890554023438],[127.472628203125,47.8085616279297],[127.507803984375,47.8276784492188],[127.532345,47.8291408515626],[127.562345,47.827353131836],[127.651011992188,47.8326375556641]]]]}},{"type":"Feature","properties":{"name":"兰西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.907345,46.6438430000001],[125.93232546875,46.6279518867188],[125.95447390625,46.6409737373047],[125.951676054688,46.6184505439453],[125.979908476563,46.5797963691406],[125.998424101563,46.5649709296876],[126.052896757813,46.5493959785157],[126.12900515625,46.4885256171875],[126.236734648438,46.4793959785157],[126.358892851563,46.5142794013672],[126.367345,46.543843],[126.39142703125,46.5497585273438],[126.427345,46.553843],[126.460704375,46.5437996650391],[126.52718875,46.4512099433594],[126.55271609375,46.4292147041016],[126.568253203125,46.3943947578125],[126.5866028125,46.3730989814454],[126.60271609375,46.3592147041016],[126.61197390625,46.3284712958984],[126.627345,46.323843],[126.634400664063,46.2914907050782],[126.6166028125,46.2595870185547],[126.596051054688,46.2135311103516],[126.509986601563,46.1808711982422],[126.45197390625,46.1392147041016],[126.427345,46.083843],[126.417345,46.083843],[126.377345,46.083843],[126.343414335938,46.0917055488281],[126.318761015625,46.0597670722656],[126.235889921875,46.0720137763672],[126.210572539063,46.0567421699219],[126.167345,46.0638430000001],[126.151773710938,46.078271100586],[126.087823515625,46.1472927070313],[126.026798125,46.2304903388672],[125.955406523438,46.3410457587891],[125.79326296875,46.4175673652344],[125.747345,46.423843],[125.7394153125,46.4440151191407],[125.744483671875,46.4783309150391],[125.73170046875,46.4881990791016],[125.72298953125,46.5494869208985],[125.707926054688,46.5744600654297],[125.78843875,46.6038362861328],[125.88974734375,46.6210463691407],[125.907345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"明水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.567027617188,47.0287441230469],[125.327345,47.0238430000001],[125.31142703125,47.0279274726562],[125.274171171875,47.0832564521485],[125.3105871875,47.1391762519532],[125.32326296875,47.1479274726563],[125.327345,47.2838430000001],[125.452535429688,47.2886525703126],[125.557345,47.293843],[125.584664335938,47.3036458564454],[125.822628203125,47.3185616279297],[125.992237578125,47.3365785957032],[126.132628203125,47.3485616279297],[126.315308867188,47.3661934638672],[126.437345,47.373843],[126.432896757813,47.3682900214844],[126.421666289063,47.3592958808594],[126.423023710938,47.3483675361329],[126.370758085938,47.3166188789063],[126.373013945313,47.2984828925782],[126.361676054688,47.2792031074219],[126.363863554688,47.2616225410156],[126.342896757813,47.1882900214844],[126.32166140625,47.179341046875],[126.323824492188,47.1619362617188],[126.29806765625,47.1297670722656],[126.277345,47.123843],[126.262154570313,47.1190334296875],[126.214303007813,47.1171370673829],[126.001783476563,47.0894271064453],[125.97482546875,47.0603322578125],[125.868033476563,47.04573753125],[125.567027617188,47.0287441230469]]]]}},{"type":"Feature","properties":{"name":"青冈县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.271070585938,46.6617391181641],[126.282535429688,46.6290334296876],[126.294556914063,46.5910573554688],[126.332535429688,46.5790334296875],[126.351773710938,46.5582711005859],[126.367345,46.543843],[126.358892851563,46.5142794013672],[126.236734648438,46.4793959785157],[126.12900515625,46.4885256171875],[126.052896757813,46.5493959785157],[125.998424101563,46.5649709296876],[125.979908476563,46.5797963691406],[125.951676054688,46.6184505439453],[125.95447390625,46.6409737373047],[125.93232546875,46.6279518867188],[125.907345,46.6438430000001],[125.865206328125,46.6747170234375],[125.776793242188,46.714169538086],[125.69271609375,46.7892147041016],[125.58197390625,46.8384712958985],[125.52062625,46.8767604804688],[125.4616028125,46.9030989814454],[125.4273840625,46.9221901679688],[125.4080871875,46.9445870185547],[125.39197390625,46.9584712958985],[125.37271609375,46.9892147041016],[125.337345,46.993843],[125.333985625,47.010483625],[125.327345,47.0238430000001],[125.567027617188,47.0287441230469],[125.868033476563,47.04573753125],[125.97482546875,47.0603322578125],[126.001783476563,47.0894271064453],[126.214303007813,47.1171370673829],[126.262154570313,47.1190334296875],[126.277345,47.123843],[126.284991484375,47.104389875],[126.251475859375,47.0591799140626],[126.265377226563,46.9991768623048],[126.2335559375,46.9861537910157],[126.227345,46.963843],[126.222535429688,46.9586525703125],[126.202110625,46.9397286201172],[126.202550078125,46.9286733222657],[126.172779570313,46.8854061103516],[126.192535429688,46.8290334296875],[126.20248171875,46.7976131416016],[126.241651640625,46.7613210273438],[126.242545195313,46.738843],[126.241788359375,46.7198384833984],[126.252154570313,46.7086525703125],[126.272550078125,46.6990267158203],[126.271070585938,46.6617391181641]]]]}},{"type":"Feature","properties":{"name":"庆安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.246749296875,47.5593807197266],[128.21615359375,47.5348799873048],[128.27400515625,47.5105025458985],[128.291793242188,47.4882900214844],[128.302896757813,47.4793959785157],[128.311793242188,47.4682900214844],[128.3454309375,47.458671491211],[128.33951296875,47.4110610175782],[128.367345,47.4075991035157],[128.384605742188,47.409745709961],[128.441016875,47.3859749580078],[128.454332304688,47.3393959785156],[128.472896757813,47.3482900214844],[128.526226835938,47.414941022461],[128.537345,47.423843],[128.543961210938,47.4058229804688],[128.53271609375,47.3684712958985],[128.490455351563,47.31737815625],[128.494273710938,47.269814069336],[128.48197390625,47.2592147041016],[128.470826445313,47.2342305732422],[128.355181914063,47.1864064765625],[128.341998320313,47.1568617988282],[128.296041289063,47.1605544257813],[128.25595828125,47.1354476142579],[128.226436796875,47.1011806464844],[128.192345,47.098441388672],[128.173902617188,47.0999233222657],[128.10588015625,47.0749434638673],[128.042345,47.080048444336],[128.0066809375,47.07718284375],[127.962291289063,47.08933128125],[127.93271609375,47.0784712958985],[127.82259890625,47.0658473945313],[127.738443632813,47.0133211494141],[127.6424621875,46.9984316230469],[127.62271609375,47.0000185371094],[127.63197390625,46.9884712958985],[127.66572390625,46.9673311591797],[127.689918242188,46.9392519355469],[127.74271609375,46.9192147041016],[127.78197390625,46.8884712958985],[127.814029570313,46.86839378125],[127.88271609375,46.8092147041016],[127.89197390625,46.7984712958985],[127.929576445313,46.7660744453126],[127.96197390625,46.7284712958985],[128.0380871875,46.6695870185548],[128.053043242188,46.6360744453125],[128.10865359375,46.5966451240235],[128.19197390625,46.5784712958985],[128.217345,46.573843],[128.217345,46.5638430000001],[128.187345,46.5638430000001],[128.187345,46.5238430000001],[128.177345,46.5238430000001],[128.14896609375,46.5302889228516],[128.110889921875,46.5255519843751],[128.113023710938,46.5083834052735],[128.100943632813,46.4993959785156],[128.022896757813,46.5293959785157],[127.977061796875,46.5393129707032],[127.926871367188,46.568817975586],[127.8484778125,46.5802278876953],[127.830079375,46.5779396796875],[127.808385039063,46.6050295234375],[127.762896757813,46.5782900214844],[127.737486601563,46.5675814033204],[127.721983671875,46.5695095039062],[127.699210234375,46.5561232734375],[127.662799101563,46.5606526923829],[127.652896757813,46.5482900214844],[127.647345,46.543843],[127.625343046875,46.5377169013672],[127.585426054688,46.513637921875],[127.500299101563,46.5300038886719],[127.503082304688,46.548843],[127.500128203125,46.5688430000001],[127.503140898438,46.589233625],[127.482608671875,46.6232704902344],[127.42170046875,46.6481990791016],[127.385484648438,46.6700460029297],[127.367345,46.6673653388672],[127.337515898438,46.6717732978516],[127.317345,46.663843],[127.321793242188,46.6793959785157],[127.33334109375,46.6886440253906],[127.321793242188,46.7082900214844],[127.312843046875,46.72952659375],[127.291475859375,46.7268691230469],[127.293448515625,46.7427150703126],[127.313590117188,46.758843],[127.274010039063,46.7905385566407],[127.262896757813,46.8293959785157],[127.238570585938,46.8488777900391],[127.222896757813,46.8706398750001],[127.242706328125,46.8681764960938],[127.292686796875,46.897558209961],[127.309019804688,46.9546840644531],[127.331236601563,46.9924715400391],[127.341793242188,47.0293959785156],[127.362159453125,47.0457064033204],[127.367345,47.063843],[127.375484648438,47.0923146796875],[127.438453398438,47.1427370429688],[127.451793242188,47.1593959785157],[127.468453398438,47.1727370429688],[127.481793242188,47.1893959785156],[127.519097929688,47.2192696357422],[127.531793242188,47.2493959785157],[127.572896757813,47.2982900214844],[127.605377226563,47.3517641425781],[127.678551054688,47.4152614570313],[127.722345,47.4207088447266],[127.749249296875,47.4173622871094],[127.768453398438,47.4327370429688],[127.784610625,47.4529146552735],[127.827345,47.4475991035156],[127.842628203125,47.4495003486328],[127.87263796875,47.4379647041016],[127.881890898438,47.4495211005859],[127.892818632813,47.4481618476563],[127.911793242188,47.4793959785157],[127.922896757813,47.4882900214844],[127.931793242188,47.4993959785157],[127.948453398438,47.5127370429688],[127.986905546875,47.5607570625],[128.042486601563,47.5481319404297],[128.071793242188,47.5593959785157],[128.142896757813,47.5682900214844],[128.15537234375,47.5838649726563],[128.186182890625,47.6019771552735],[128.221793242188,47.5882900214844],[128.237345,47.583843],[128.246749296875,47.5593807197266]]]]}},{"type":"Feature","properties":{"name":"绥棱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.06326296875,48.0697585273438],[128.082691679688,48.0571047187501],[128.101690703125,48.084618756836],[128.127345,48.073843],[128.16076296875,48.0645369697266],[128.163160429688,48.0483309150391],[128.150206328125,48.0383309150391],[128.153082304688,48.018843],[128.150494414063,48.0013124824219],[128.16170046875,47.9481990791016],[128.22298953125,47.9394869208984],[128.24170046875,47.9281990791016],[128.29298953125,47.9194869208985],[128.327345,47.8938430000001],[128.344595976563,47.8546450019532],[128.332613554688,47.8285292792969],[128.272838164063,47.8320919013673],[128.272047148438,47.8188430000001],[128.273194609375,47.7996059394532],[128.252764921875,47.7620095039063],[128.322061796875,47.7302028632813],[128.312628203125,47.7185616279297],[128.292515898438,47.7005953193359],[128.282628203125,47.6685616279297],[128.262628203125,47.6506917548829],[128.272061796875,47.6385616279297],[128.2826575,47.629095685547],[128.282047148438,47.618843],[128.283287382813,47.5980300117188],[128.237345,47.583843],[128.221793242188,47.5882900214844],[128.186182890625,47.6019771552735],[128.15537234375,47.5838649726563],[128.142896757813,47.5682900214844],[128.071793242188,47.5593959785157],[128.042486601563,47.5481319404297],[127.986905546875,47.5607570625],[127.948453398438,47.5127370429688],[127.931793242188,47.4993959785157],[127.922896757813,47.4882900214844],[127.911793242188,47.4793959785157],[127.892818632813,47.4481618476563],[127.881890898438,47.4495211005859],[127.87263796875,47.4379647041016],[127.842628203125,47.4495003486328],[127.827345,47.4475991035156],[127.784610625,47.4529146552735],[127.768453398438,47.4327370429688],[127.749249296875,47.4173622871094],[127.722345,47.4207088447266],[127.678551054688,47.4152614570313],[127.605377226563,47.3517641425781],[127.572896757813,47.2982900214844],[127.531793242188,47.2493959785157],[127.519097929688,47.2192696357422],[127.481793242188,47.1893959785156],[127.468453398438,47.1727370429688],[127.451793242188,47.1593959785157],[127.438453398438,47.1427370429688],[127.375484648438,47.0923146796875],[127.367345,47.063843],[127.342154570313,47.0590334296875],[127.311095,47.0425978828125],[127.1989465625,47.0660610175782],[127.222828398438,47.0881911445313],[127.212139921875,47.118691022461],[127.212550078125,47.1290309882813],[127.152154570313,47.1386525703126],[127.135074492188,47.1570888496094],[126.987345,47.163843],[127.001793242188,47.1993959785157],[127.032896757813,47.2182900214844],[127.05068484375,47.2405025458985],[127.073023710938,47.2583901191406],[127.071676054688,47.2692031074219],[127.091749296875,47.3033455634766],[127.128453398438,47.3327370429688],[127.161768828125,47.3743440986328],[127.171793242188,47.4093959785156],[127.189537382813,47.4395815253907],[127.212896757813,47.4582900214844],[127.221793242188,47.4693959785157],[127.27162234375,47.5093013740234],[127.337686796875,47.5466518378906],[127.381793242188,47.6093959785156],[127.415479765625,47.619028546875],[127.431793242188,47.6393959785156],[127.472896757813,47.6482900214844],[127.491793242188,47.6593959785157],[127.612896757813,47.6682900214844],[127.647491484375,47.6815859199219],[127.631676054688,47.7084828925781],[127.6339465625,47.7267287421875],[127.729586210938,47.7148329902344],[127.751793242188,47.770639875],[127.727345,47.7675991035157],[127.69736453125,47.771327741211],[127.687345,47.7838430000001],[127.75326296875,47.8179274726563],[127.76142703125,47.8397585273438],[127.791485625,47.8510042548829],[127.806046171875,47.907743756836],[127.83326296875,47.9179274726563],[127.847257109375,47.9381966376953],[127.87326296875,47.9479274726563],[127.886197539063,47.9666628242187],[127.880103789063,47.993843],[127.885225859375,48.0166884589844],[127.857345,48.023843],[127.865225859375,48.0545528388672],[127.91752078125,48.0765181708985],[127.972584257813,48.0900423408203],[128.00142703125,48.0779274726563],[128.06326296875,48.0697585273438]]]]}},{"type":"Feature","properties":{"name":"望奎县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.9747278125,47.1046938300782],[126.961695585938,47.0590602851563],[126.963057890625,47.0481026435547],[126.949078398438,46.9520436835938],[126.911666289063,46.9293184638672],[126.913013945313,46.9184828925782],[126.90052859375,46.8972499824219],[126.91297,46.8088771796875],[126.911099882813,46.7938430000001],[126.913023710938,46.7783901191407],[126.896236601563,46.7649489570312],[126.882799101563,46.7481648994141],[126.862345,46.7507088447266],[126.837345,46.7475991035157],[126.821890898438,46.749521100586],[126.811422148438,46.736444928711],[126.72650515625,46.7121657539063],[126.678531523438,46.6839656806641],[126.632345,46.6782210517578],[126.622345,46.6794649482422],[126.612345,46.6782210517578],[126.601983671875,46.6795095039063],[126.567628203125,46.6593129707032],[126.521793242188,46.6493959785156],[126.510987578125,46.6359023261719],[126.475440703125,46.6403237128907],[126.452530546875,46.6219795966797],[126.442896757813,46.5882900214844],[126.431793242188,46.5793959785156],[126.427345,46.553843],[126.39142703125,46.5497585273438],[126.367345,46.543843],[126.351773710938,46.5582711005859],[126.332535429688,46.5790334296875],[126.294556914063,46.5910573554688],[126.282535429688,46.6290334296876],[126.271070585938,46.6617391181641],[126.272550078125,46.6990267158203],[126.252154570313,46.7086525703125],[126.241788359375,46.7198384833984],[126.242545195313,46.738843],[126.241651640625,46.7613210273438],[126.20248171875,46.7976131416016],[126.192535429688,46.8290334296875],[126.172779570313,46.8854061103516],[126.202550078125,46.9286733222657],[126.202110625,46.9397286201172],[126.222535429688,46.9586525703125],[126.227345,46.963843],[126.392061796875,46.9741677070313],[126.499893828125,46.997206647461],[126.537345,46.9994393134766],[126.562569609375,46.9979354072266],[126.572291289063,47.1015285468751],[126.751178007813,47.0908663154297],[126.802061796875,47.1091243720704],[126.882628203125,47.1185616279297],[126.897564726563,47.1352797675781],[126.962061796875,47.1391243720703],[126.977345,47.143843],[126.971685820313,47.1291255927734],[126.9747278125,47.1046938300782]]]]}},{"type":"Feature","properties":{"name":"肇东市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.717345,45.663843],[125.707345,45.663843],[125.707345,45.673843],[125.717345,45.673843],[125.717345,45.663843]]],[[[125.717345,45.663843],[125.722628203125,45.6685616279297],[125.732061796875,45.6791243720703],[125.797999296875,45.6914315009766],[125.768004179688,45.7343764472657],[125.722061796875,45.7485616279297],[125.712628203125,45.7569283271485],[125.762628203125,45.7685616279297],[125.782061796875,45.787362897461],[125.709078398438,45.800985944336],[125.689581328125,45.9054494453125],[125.412633085938,45.8828499580079],[125.361241484375,46.1051149726562],[125.347345,46.1438430000001],[125.342896757813,46.1793959785157],[125.330445585938,46.2342244697266],[125.442896757813,46.2482900214844],[125.51005984375,46.2772817207031],[125.574132109375,46.3572951484375],[125.561676054688,46.3784828925781],[125.5636340625,46.394204328125],[125.612896757813,46.4082900214844],[125.64939578125,46.4223195625001],[125.73736453125,46.4113777900391],[125.747345,46.423843],[125.79326296875,46.4175673652344],[125.955406523438,46.3410457587891],[126.026798125,46.2304903388672],[126.087823515625,46.1472927070313],[126.151773710938,46.078271100586],[126.167345,46.0638430000001],[126.173360625,46.0404030585938],[126.221329375,46.0072829414062],[126.2326184375,45.9632997871094],[126.270875273438,45.9718764472657],[126.309283476563,45.9575057197266],[126.313468046875,45.938843],[126.310186796875,45.9242116523438],[126.325513945313,45.9020119453126],[126.358121367188,45.8794985175781],[126.337579375,45.8305867744141],[126.357496367188,45.8168325019531],[126.350103789063,45.783843],[126.353468046875,45.768843],[126.351163359375,45.7585646796875],[126.357345,45.743843],[126.348121367188,45.73097190625],[126.322965117188,45.726001203125],[126.307183867188,45.7480178046876],[126.291226835938,45.7395107246094],[126.300557890625,45.6922798896485],[126.235045195313,45.7052254462891],[126.186099882813,45.6851119208985],[126.152603789063,45.7063759589844],[126.147345,45.673843],[126.076236601563,45.6827370429688],[126.062896757813,45.6993959785156],[126.026920195313,45.7182900214844],[125.998453398438,45.6827370429688],[125.979405546875,45.6674843574219],[125.984791289063,45.6241854072266],[125.937345,45.6300868964844],[125.920582304688,45.6280019355469],[125.922965117188,45.6088430000001],[125.921724882813,45.598843],[125.923013945313,45.5884828925782],[125.902940703125,45.5543404365235],[125.871793242188,45.5293959785157],[125.860987578125,45.5159023261719],[125.832183867188,45.5194850898438],[125.781964140625,45.5080770087891],[125.768453398438,45.5249489570313],[125.757345,45.5338430000001],[125.75170046875,45.5381990791016],[125.740670195313,45.5524935126954],[125.743824492188,45.5738430000001],[125.741549101563,45.589233625],[125.753609648438,45.6092317939454],[125.724605742188,45.621103131836],[125.717345,45.663843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"呼玛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.027345,50.923843],[126.017345,50.923843],[126.022345,50.9366506171875],[126.027345,50.923843]]],[[[126.917345,51.2538430000001],[126.912261992188,51.2695128608399],[126.86302859375,51.3168141914062],[126.970094023438,51.3387430549316],[126.980538359375,51.2952356696778],[126.93244265625,51.2587430549316],[126.917345,51.2538430000001]]],[[[126.917345,51.2538430000001],[126.912896757813,51.2382898688965],[126.895054960938,51.1918749213868],[126.912896757813,51.1293961311036],[126.921998320313,51.0566300178223],[126.9779309375,51.0330612922364],[127.017345,50.9838430000001],[126.992354765625,50.9282482124024],[126.972252226563,50.9290450263672],[126.834527617188,50.9130913520508],[126.697345,50.9076540351563],[126.662345,50.9090410590821],[126.47252078125,50.9015172553711],[126.432515898438,50.9290477729493],[126.412720976563,50.9282631660156],[126.382535429688,50.9490337348633],[126.337345,50.973843],[126.331793242188,50.9782900214844],[126.322896757813,50.9893959785157],[126.225269804688,51.0016075874024],[126.17271609375,50.9681746650391],[126.13334109375,50.9730724311524],[126.115631132813,50.9310448432618],[126.043990507813,50.9155446601563],[126.037345,50.923843],[126.045513945313,50.9556743598634],[126.06498171875,50.9691149116211],[126.04142703125,50.9779274726563],[126.025616484375,51.0008309150391],[126.048878203125,51.0365526557618],[126.01142703125,51.0579273200684],[126.007345,51.0638430000001],[126.019537382813,51.0672663093262],[126.010767851563,51.0760352302247],[126.007345,51.0638430000001],[125.981754179688,51.0788887763673],[125.982740507813,51.103843],[125.981866484375,51.1259423041993],[125.93224734375,51.108551557129],[125.9134778125,51.1288091254884],[125.855284453125,51.1426702094727],[125.8726965625,51.1588008857422],[125.852154570313,51.1886524177246],[125.8388684375,51.2168013740235],[125.752139921875,51.2286544013672],[125.753316679688,51.2583116889649],[125.725518828125,51.2840674567872],[125.692535429688,51.3290335822754],[125.672154570313,51.3386524177247],[125.649654570313,51.3505586982422],[125.632535429688,51.3690335822754],[125.616964140625,51.3834616828614],[125.592916289063,51.4094148994141],[125.572154570313,51.4286524177246],[125.561431914063,51.4513684821777],[125.418389921875,51.5615502143555],[125.375362578125,51.5818585944825],[125.357345,51.6200321174316],[125.293228789063,51.6174907661134],[125.281812773438,51.6298128486329],[125.252345,51.6286447883301],[125.232345,51.6294374824219],[125.207345,51.6284465766602],[125.135631132813,51.6312891364747],[125.122345,51.659437482422],[125.099483671875,51.6585314155274],[125.050357695313,51.6055091071778],[125.062550078125,51.5589835334473],[125.061392851563,51.5298630500489],[124.982154570313,51.5190335822754],[124.972535429688,51.5086524177246],[124.922154570313,51.4990335822754],[124.912535429688,51.4868300605469],[124.934932890625,51.4445030952149],[124.902154570313,51.4290335822754],[124.892535429688,51.4186524177246],[124.872110625,51.3997286201172],[124.872545195313,51.388843],[124.872081328125,51.3771721625977],[124.788258085938,51.3896718574219],[124.75658328125,51.3884163642578],[124.742535429688,51.3586524177246],[124.726851835938,51.3441185737305],[124.619146757813,51.3269611335449],[124.5608996875,51.3670416999512],[124.497867460938,51.382055890625],[124.472535429688,51.3686524177247],[124.425675078125,51.3538164497071],[124.408482695313,51.2816324592286],[124.341065703125,51.2690335822754],[124.32216921875,51.289430463379],[124.3012903125,51.2886029792481],[124.242535429688,51.3290335822754],[124.208253203125,51.3511713386231],[124.172496367188,51.3386388374024],[124.095987578125,51.3416713691406],[124.061969023438,51.3182633186036],[124.037345,51.3192394233398],[124.022345,51.3186447883302],[123.978585234375,51.3203792548829],[123.900186796875,51.3039766669923],[123.831124296875,51.3601819587403],[123.79218875,51.3586386848145],[123.703780546875,51.3923743415528],[123.667725859375,51.3534616828613],[123.652154570313,51.3390335822754],[123.63630984375,51.3219335151368],[123.582154570313,51.3090335822754],[123.572535429688,51.2986524177247],[123.536632109375,51.2872856879884],[123.464273710938,51.2901538825684],[123.442535429688,51.2786524177246],[123.3742590625,51.2677761054688],[123.337345,51.2692394233399],[123.309342070313,51.2681294990235],[123.272408476563,51.2485855842285],[123.230596953125,51.259542005127],[123.212535429688,51.2790335822755],[123.162154570313,51.2886524177247],[123.141812773438,51.299416425293],[123.122213164063,51.2986396003419],[123.06451296875,51.3107125068359],[123.002877226563,51.3082695747071],[122.978214140625,51.3213211799317],[122.951788359375,51.3498384833985],[122.953350859375,51.3892102790528],[122.891729765625,51.4182921577149],[122.892550078125,51.4390265632324],[122.872154570313,51.4486524177247],[122.857345,51.4738430000001],[122.861793242188,51.4793961311036],[122.872896757813,51.4882898688965],[122.881793242188,51.5022740913086],[122.854859648438,51.523843],[122.880284453125,51.5442044807129],[122.824405546875,51.5834815192872],[122.85107546875,51.60483909375],[122.821793242188,51.6282898688965],[122.812896757813,51.6493961311035],[122.801793242188,51.6582898688965],[122.788453398438,51.6749492622071],[122.771793242188,51.6882898688965],[122.762896757813,51.7293961311035],[122.747354765625,51.7418445563965],[122.7641028125,51.770337140625],[122.734766875,51.8202371955567],[122.712896757813,51.8793961311035],[122.701666289063,51.8883901191407],[122.703448515625,51.9027149177246],[122.723023710938,51.9183901191406],[122.716783476563,51.9685555244141],[122.665709257813,51.9796054816895],[122.642896757813,52.0593961311035],[122.62127078125,52.0685094428712],[122.635064726563,52.0919759345703],[122.630440703125,52.1291608405762],[122.717437773438,52.1443004584962],[122.766534453125,52.1801650214844],[122.760533476563,52.2283901191407],[122.778453398438,52.242736737793],[122.787345,52.253843],[122.822808867188,52.2583805061036],[122.851881132813,52.2693054938965],[122.882808867188,52.2783805061036],[122.899107695313,52.2980033851319],[122.942345,52.3024105048828],[122.989888945313,52.2975644660645],[123.047799101563,52.3137554908448],[123.14287234375,52.3313375831299],[123.204913359375,52.3250138831787],[123.291329375,52.3618609595947],[123.327345,52.3538430000001],[123.332061796875,52.3385617805176],[123.39463015625,52.2874890876465],[123.422345,52.2891410041505],[123.441119414063,52.2880219245606],[123.53093875,52.3202492500001],[123.624097929688,52.3490159583741],[123.642061796875,52.3691242194825],[123.732628203125,52.3785617805176],[123.7776575,52.4100164771729],[123.809971953125,52.4080902839356],[123.882345,52.4209513068848],[123.955733671875,52.407909772461],[124.0130090625,52.3679015327149],[124.052120390625,52.3891544318848],[124.091158476563,52.3868276954346],[124.151300078125,52.3652473426514],[124.1220325,52.3390958381348],[124.1226575,52.3285767341309],[124.100260039063,52.3182955909424],[124.082628203125,52.2985617805177],[124.062061796875,52.2891242194825],[124.042628203125,52.250323255127],[124.102628203125,52.2391242194824],[124.152135039063,52.2185324836426],[124.162345,52.2191410041505],[124.172345,52.2185449958496],[124.231495390625,52.2220703864746],[124.252061796875,52.1685617805176],[124.2669934375,52.1552217841797],[124.364815703125,52.1761222053223],[124.412891875,52.2097043586426],[124.432345,52.2085449958496],[124.444312773438,52.2092583442383],[124.462061796875,52.2291242194825],[124.48197390625,52.2469116950684],[124.622574492188,52.2385311103516],[124.672061796875,52.2691242194825],[124.713648710938,52.2819655585938],[124.7120325,52.3090686774903],[124.725142851563,52.3331912971192],[124.784664335938,52.3008470893555],[124.825772734375,52.2881531501465],[124.842345,52.2891410041505],[124.86875125,52.2875670600586],[124.882061796875,52.2585617805177],[124.942628203125,52.2491242194825],[124.962061796875,52.2445639777832],[124.916607695313,52.2156549812012],[124.973287382813,52.1896417976074],[124.971954375,52.1673015571289],[125.07560671875,52.1795426154786],[125.112345,52.1773529792481],[125.147345,52.1794390083008],[125.197345,52.1764589667969],[125.301812773438,52.1826854682617],[125.335494414063,52.2009889960938],[125.331451445313,52.268843],[125.3326965625,52.2897161079102],[125.352589140625,52.2885305],[125.411285429688,52.3366901374512],[125.559644804688,52.3540700507813],[125.652345,52.3485449958497],[125.672345,52.3497370124512],[125.726846953125,52.3464884925537],[125.763570585938,52.3596641517334],[125.784010039063,52.3584457374268],[125.82318484375,52.3797340369873],[125.82197390625,52.4000617194825],[125.75912234375,52.4194701362305],[125.71531375,52.4684985328369],[125.624845,52.4895474219971],[125.612628203125,52.5291242194825],[125.580885039063,52.5493127418213],[125.583678007813,52.596195142334],[125.57187625,52.6290808845215],[125.617720976563,52.6397473121338],[125.599815703125,52.6727022529297],[125.572779570313,52.6968585944825],[125.632867460938,52.7350751472169],[125.6314465625,52.7589333320313],[125.662628203125,52.7685617805176],[125.672891875,52.7909297156983],[125.710968046875,52.824950788086],[125.722662382813,52.8504238105469],[125.782628203125,52.8885617805176],[125.787345,52.8938430000001],[125.842535429688,52.8890336585694],[125.854000273438,52.8647366309815],[125.910172148438,52.8126907325439],[125.932164335938,52.7786376166993],[125.94252078125,52.7790482307129],[125.97033328125,52.7490336585694],[125.985260039063,52.760798947876],[126.02033328125,52.7986523414307],[126.112154570313,52.7712262702637],[126.102535429688,52.7586523414307],[126.032535429688,52.7452880073242],[126.042154570313,52.7286523414307],[126.072154570313,52.685055310791],[126.052535429688,52.6786523414307],[125.962843046875,52.6663943458252],[125.961011992188,52.62027168042],[126.023975859375,52.5690336585694],[126.042535429688,52.5786523414307],[126.068175078125,52.6063260627441],[126.203687773438,52.5319325996094],[126.182535429688,52.4715903449707],[126.1944934375,52.4679373145753],[126.261812773438,52.4706055427246],[126.282154570313,52.4486523414307],[126.325953398438,52.420367963379],[126.352154570313,52.3708558631592],[126.335909453125,52.3502440620117],[126.302535429688,52.3344941688232],[126.317955351563,52.3090993476563],[126.442154570313,52.2958814979248],[126.432310820313,52.2782497382813],[126.403209257813,52.2794033027344],[126.372535429688,52.2686524177246],[126.329371367188,52.2549867988281],[126.292535429688,52.2208559394532],[126.30900515625,52.1999582648926],[126.352154570313,52.1886524177246],[126.402535429688,52.1790335822754],[126.432154570313,52.1686524177247],[126.510513945313,52.1561698127442],[126.55748171875,52.1258397651368],[126.532139921875,52.0890128303223],[126.5329309375,52.069020154541],[126.522154570313,52.0590335822754],[126.512159453125,52.037859418457],[126.46375125,52.0397782111817],[126.432535429688,52.0108559394532],[126.442154570313,51.9986524177246],[126.452535429688,51.9890335822754],[126.462154570313,51.9386524177247],[126.501612578125,51.9200308967286],[126.521773710938,51.898271100586],[126.550631132813,51.8715343452149],[126.562535429688,51.8490335822755],[126.572769804688,51.8273471809083],[126.592535429688,51.8090335822754],[126.61267703125,51.7778452277832],[126.652535429688,51.7590335822754],[126.66634890625,51.7297603583985],[126.723336210938,51.7188805366211],[126.721798125,51.6800164008789],[126.733853789063,51.6339948249512],[126.662535429688,51.6003359199219],[126.70275515625,51.570891034668],[126.788116484375,51.5505586982422],[126.841412382813,51.5254064155274],[126.802154570313,51.4890335822754],[126.792535429688,51.4686524177246],[126.773287382813,51.4322753120118],[126.812154570313,51.4186524177246],[126.909215117188,51.407037732666],[126.928736601563,51.3513407111817],[126.892496367188,51.3386388374024],[126.82396609375,51.3413550544434],[126.802535429688,51.3008559394532],[126.825865507813,51.2625643134766],[126.8556653125,51.2467946601563],[126.912154570313,51.2490335822755],[126.917345,51.2538430000001]]]]}},{"type":"Feature","properties":{"name":"漠河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.452628203125,53.5291242480927],[123.470982695313,53.4891242480927],[123.497266875,53.5005852628403],[123.472628203125,53.5459289837532],[123.54947390625,53.5585617495232],[123.552701445313,53.5386677361183],[123.522628203125,53.4956134200745],[123.563956328125,53.4996754146271],[123.590245390625,53.556949456995],[123.662628203125,53.5291242480927],[123.689718046875,53.498800818985],[123.88459109375,53.4789236331635],[123.941500273438,53.4479992461854],[123.984429960938,53.4282955909424],[124.01209109375,53.3973378730469],[124.060220976563,53.4002065826111],[124.072628203125,53.3891242576294],[124.114635039063,53.3421066642456],[124.216236601563,53.3785617423706],[124.255323515625,53.3645832610779],[124.272628203125,53.3491242576294],[124.277345,53.3438430000001],[124.266422148438,53.3347680068665],[124.25107546875,53.3162956786805],[124.252896757813,53.298419663971],[124.177594023438,53.2657599998169],[124.128707304688,53.2707428146058],[124.032081328125,53.2295421577149],[124.022808867188,53.2183805061036],[124.001456328125,53.2091214347534],[124.013233671875,53.1885645652466],[123.991793242188,53.1792663551025],[123.992896757813,53.1684196448975],[123.971881132813,53.1593054938965],[123.9506653125,53.1249078727418],[123.910933867188,53.0919055152589],[123.881881132813,53.0793054938965],[123.86373171875,53.0574555183106],[123.819288359375,53.0205363822632],[123.853214140625,52.9923556495361],[123.851324492188,52.973813817566],[123.801881132813,52.9593054938965],[123.792808867188,52.9383805061035],[123.747398710938,52.9103716254883],[123.71634890625,52.8969058967286],[123.692345,52.8993526435547],[123.661373320313,52.8961956763916],[123.612808867188,52.8683805061036],[123.572589140625,52.8509388709717],[123.55373171875,52.8074555183106],[123.520885039063,52.7801721931153],[123.471881132813,52.7693054938965],[123.4592590625,52.7541097999268],[123.462886992188,52.7185202766114],[123.45093875,52.6976549506836],[123.454678984375,52.6609606147461],[123.472808867188,52.6293054938966],[123.481881132813,52.6083805061036],[123.492808867188,52.5993054938965],[123.513428984375,52.5744799018555],[123.511812773438,52.5586133552247],[123.53298953125,52.4887004829102],[123.5189465625,52.464176404541],[123.42681765625,52.4437479377442],[123.395338164063,52.3711592841797],[123.341881132813,52.3593054938965],[123.327345,52.3538430000001],[123.291329375,52.3618609595947],[123.204913359375,52.3250138831787],[123.14287234375,52.3313375831299],[123.047799101563,52.3137554908448],[122.989888945313,52.2975644660645],[122.942345,52.3024105048828],[122.899107695313,52.2980033851319],[122.882808867188,52.2783805061036],[122.851881132813,52.2693054938965],[122.822808867188,52.2583805061036],[122.787345,52.253843],[122.75896609375,52.2602887702637],[122.696422148438,52.2525087714845],[122.682896757813,52.2693961311036],[122.656187773438,52.2806513190919],[122.591964140625,52.2623114753418],[122.562896757813,52.2793961311036],[122.466080351563,52.293487317627],[122.473023710938,52.3492958808594],[122.456236601563,52.362736737793],[122.433897734375,52.3906345344239],[122.405347929688,52.3738508582764],[122.392896757813,52.3893961311036],[122.371793242188,52.3982898688966],[122.362896757813,52.4093961311035],[122.327720976563,52.4242190528565],[122.306846953125,52.473756482666],[122.247345,52.4663552833253],[122.217345,52.4700868201905],[122.202345,52.4682210517578],[122.186261015625,52.4702217078858],[122.15724734375,52.5064543891602],[122.139752226563,52.5182898688965],[122.122896757813,52.4782898688965],[122.106041289063,52.4496146369629],[122.081793242188,52.4393961311035],[122.072896757813,52.4182898688965],[122.031656523438,52.4093671394044],[122.034605742188,52.3856726051026],[121.968472929688,52.3327148414307],[121.932896757813,52.2882898688965],[121.847955351563,52.2793961311036],[121.742564726563,52.3094919562988],[121.732183867188,52.3082009864502],[121.707345,52.3138430000001],[121.702374296875,52.3545245338135],[121.66062625,52.3867488074952],[121.673375273438,52.4191870093995],[121.647999296875,52.4387742591553],[121.58170046875,52.4481992316895],[121.54990359375,52.4606990791016],[121.513883085938,52.4553755164795],[121.495714140625,52.4789116645508],[121.412398710938,52.4964926887207],[121.40298953125,52.5194867683106],[121.35170046875,52.5381992316895],[121.324449492188,52.554636762207],[121.31298953125,52.5694867683106],[121.276124296875,52.5845738959961],[121.222345,52.5766263557129],[121.196676054688,52.5804198432617],[121.18298953125,52.6018281531983],[121.22298953125,52.6181992316895],[121.24170046875,52.6294867683106],[121.280943632813,52.6455468726807],[121.298839140625,52.6687358070069],[121.38306765625,52.6908455634766],[121.448370390625,52.7392578101807],[121.47170046875,52.7694867683106],[121.50298953125,52.7781992316895],[121.53170046875,52.7994867683106],[121.567525664063,52.8141488624268],[121.605523710938,52.8423219276123],[121.601607695313,52.868843],[121.603975859375,52.8848651099853],[121.65341921875,52.9144367194825],[121.704952421875,52.9885380912476],[121.770943632813,53.0155469108277],[121.8102746875,53.066504857605],[121.770699492188,53.0827023673706],[121.774327421875,53.1072656226807],[121.755172148438,53.1390264106446],[121.71170046875,53.1481992316895],[121.662594023438,53.1675042319947],[121.64298953125,53.182761800354],[121.66298953125,53.1981992316895],[121.675924101563,53.2446471763306],[121.61170046875,53.258199250763],[121.57298953125,53.2894867492371],[121.50170046875,53.318199250763],[121.497345,53.333843],[121.573189726563,53.3479992461853],[121.632061796875,53.3691242576295],[121.662628203125,53.3785617423706],[121.684097929688,53.3902286887818],[121.737506132813,53.3870453620606],[121.858824492188,53.4229707694702],[121.972345,53.4297370410614],[122.101319609375,53.4220498252563],[122.163531523438,53.4702623058015],[122.25709109375,53.4646859241181],[122.33681765625,53.5080096650773],[122.379488554688,53.4602492500001],[122.422779570313,53.4447160888367],[122.595186796875,53.4613558364563],[122.672345,53.4567569041901],[122.747345,53.4612271094971],[122.853824492188,53.4548806358032],[122.912628203125,53.4685617519074],[122.938160429688,53.48243675],[123.052296171875,53.5027199865036],[123.144307890625,53.4972360540085],[123.242530546875,53.5579601312332],[123.296846953125,53.5611974931412],[123.354053984375,53.5406715512925],[123.452628203125,53.5291242480927]]]]}},{"type":"Feature","properties":{"name":"塔河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.35244265625,53.2789430022889],[124.372047148438,53.2585429931335],[124.413179960938,53.2385866523438],[124.440845976563,53.2097919822388],[124.537345,53.2078226066285],[124.599410429688,53.2090892387086],[124.712779570313,53.1952360511475],[124.7118371875,53.1490315986329],[124.782271757813,53.1387394309692],[124.8319153125,53.1397525764161],[124.858619414063,53.0990210700684],[124.892232695313,53.0983350730592],[124.892843046875,53.1281732536011],[124.8732825,53.1661432243042],[124.999449492188,53.1984777808839],[125.150675078125,53.2015639854126],[125.242642851563,53.179142987793],[125.311026640625,53.1439152122193],[125.37244265625,53.1289429832153],[125.44224734375,53.1087430167847],[125.489781523438,53.0971548057252],[125.507711210938,53.0418928123169],[125.54244265625,53.0587430167847],[125.600679960938,53.0887430167847],[125.6297278125,53.0645482230835],[125.642603789063,53.0380084586792],[125.66244265625,53.0189429832153],[125.672613554688,53.0083580756836],[125.738136015625,52.987096326416],[125.722349882813,52.938446919983],[125.65244265625,52.9157628608399],[125.664254179688,52.8590943885498],[125.737144804688,52.8840429664307],[125.787345,52.8938430000001],[125.782628203125,52.8885617805176],[125.722662382813,52.8504238105469],[125.710968046875,52.824950788086],[125.672891875,52.7909297156983],[125.662628203125,52.7685617805176],[125.6314465625,52.7589333320313],[125.632867460938,52.7350751472169],[125.572779570313,52.6968585944825],[125.599815703125,52.6727022529297],[125.617720976563,52.6397473121338],[125.57187625,52.6290808845215],[125.583678007813,52.596195142334],[125.580885039063,52.5493127418213],[125.612628203125,52.5291242194825],[125.624845,52.4895474219971],[125.71531375,52.4684985328369],[125.75912234375,52.4194701362305],[125.82197390625,52.4000617194825],[125.82318484375,52.3797340369873],[125.784010039063,52.3584457374268],[125.763570585938,52.3596641517334],[125.726846953125,52.3464884925537],[125.672345,52.3497370124512],[125.652345,52.3485449958497],[125.559644804688,52.3540700507813],[125.411285429688,52.3366901374512],[125.352589140625,52.2885305],[125.3326965625,52.2897161079102],[125.331451445313,52.268843],[125.335494414063,52.2009889960938],[125.301812773438,52.1826854682617],[125.197345,52.1764589667969],[125.147345,52.1794390083008],[125.112345,52.1773529792481],[125.07560671875,52.1795426154786],[124.971954375,52.1673015571289],[124.973287382813,52.1896417976074],[124.916607695313,52.2156549812012],[124.962061796875,52.2445639777832],[124.942628203125,52.2491242194825],[124.882061796875,52.2585617805177],[124.86875125,52.2875670600586],[124.842345,52.2891410041505],[124.825772734375,52.2881531501465],[124.784664335938,52.3008470893555],[124.725142851563,52.3331912971192],[124.7120325,52.3090686774903],[124.713648710938,52.2819655585938],[124.672061796875,52.2691242194825],[124.622574492188,52.2385311103516],[124.48197390625,52.2469116950684],[124.462061796875,52.2291242194825],[124.444312773438,52.2092583442383],[124.432345,52.2085449958496],[124.412891875,52.2097043586426],[124.364815703125,52.1761222053223],[124.2669934375,52.1552217841797],[124.252061796875,52.1685617805176],[124.231495390625,52.2220703864746],[124.172345,52.2185449958496],[124.162345,52.2191410041505],[124.152135039063,52.2185324836426],[124.102628203125,52.2391242194824],[124.042628203125,52.250323255127],[124.062061796875,52.2891242194825],[124.082628203125,52.2985617805177],[124.100260039063,52.3182955909424],[124.1226575,52.3285767341309],[124.1220325,52.3390958381348],[124.151300078125,52.3652473426514],[124.091158476563,52.3868276954346],[124.052120390625,52.3891544318848],[124.0130090625,52.3679015327149],[123.955733671875,52.407909772461],[123.882345,52.4209513068848],[123.809971953125,52.4080902839356],[123.7776575,52.4100164771729],[123.732628203125,52.3785617805176],[123.642061796875,52.3691242194825],[123.624097929688,52.3490159583741],[123.53093875,52.3202492500001],[123.441119414063,52.2880219245606],[123.422345,52.2891410041505],[123.39463015625,52.2874890876465],[123.332061796875,52.3385617805176],[123.327345,52.3538430000001],[123.341881132813,52.3593054938965],[123.395338164063,52.3711592841797],[123.42681765625,52.4437479377442],[123.5189465625,52.464176404541],[123.53298953125,52.4887004829102],[123.511812773438,52.5586133552247],[123.513428984375,52.5744799018555],[123.492808867188,52.5993054938965],[123.481881132813,52.6083805061036],[123.472808867188,52.6293054938966],[123.454678984375,52.6609606147461],[123.45093875,52.6976549506836],[123.462886992188,52.7185202766114],[123.4592590625,52.7541097999268],[123.471881132813,52.7693054938965],[123.520885039063,52.7801721931153],[123.55373171875,52.8074555183106],[123.572589140625,52.8509388709717],[123.612808867188,52.8683805061036],[123.661373320313,52.8961956763916],[123.692345,52.8993526435547],[123.71634890625,52.8969058967286],[123.747398710938,52.9103716254883],[123.792808867188,52.9383805061035],[123.801881132813,52.9593054938965],[123.851324492188,52.973813817566],[123.853214140625,52.9923556495361],[123.819288359375,53.0205363822632],[123.86373171875,53.0574555183106],[123.881881132813,53.0793054938965],[123.910933867188,53.0919055152589],[123.9506653125,53.1249078727418],[123.971881132813,53.1593054938965],[123.992896757813,53.1684196448975],[123.991793242188,53.1792663551025],[124.013233671875,53.1885645652466],[124.001456328125,53.2091214347534],[124.022808867188,53.2183805061036],[124.032081328125,53.2295421577149],[124.128707304688,53.2707428146058],[124.177594023438,53.2657599998169],[124.252896757813,53.298419663971],[124.25107546875,53.3162956786805],[124.266422148438,53.3347680068665],[124.277345,53.3438430000001],[124.322291289063,53.329257390564],[124.341690703125,53.289277551239],[124.35244265625,53.2789430022889]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":310101,"name":"黄浦区","center":[121.490317,31.222771],"centroid":[121.483572,31.215946],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":0,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457689,31.220196],[121.460707,31.213488],[121.461555,31.210194],[121.462264,31.203173],[121.466449,31.204395],[121.46745,31.203065],[121.469605,31.196404],[121.470383,31.191276],[121.474944,31.189886],[121.475987,31.187885],[121.490752,31.191467],[121.494631,31.192857],[121.498066,31.195601],[121.501319,31.199747],[121.508368,31.210158],[121.509911,31.214506],[121.509397,31.218459],[121.506741,31.223119],[121.502014,31.228018],[121.495744,31.232977],[121.493491,31.23615],[121.493491,31.240163],[121.494826,31.24221],[121.487805,31.244186],[121.485969,31.244091],[121.482994,31.241923],[121.47892,31.240294],[121.474847,31.24142],[121.469563,31.239216],[121.462973,31.241396],[121.466129,31.234917],[121.467658,31.225634],[121.467464,31.223862],[121.456758,31.223898],[121.457689,31.220196]]]]}},{"type":"Feature","properties":{"adcode":310104,"name":"徐汇区","center":[121.43752,31.179973],"centroid":[121.439405,31.162992],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":1,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457689,31.220196],[121.452184,31.217429],[121.44697,31.215812],[121.439462,31.214482],[121.43746,31.211535],[121.435235,31.21114],[121.437933,31.203976],[121.433025,31.20128],[121.423793,31.197314],[121.421638,31.19535],[121.422027,31.192294],[121.419719,31.190796],[121.412572,31.19112],[121.41356,31.18683],[121.415256,31.187357],[121.415158,31.183391],[121.41146,31.182037],[121.400101,31.178813],[121.398349,31.179904],[121.398071,31.178226],[121.394442,31.177879],[121.395415,31.174595],[121.39269,31.173085],[121.394053,31.169489],[121.391508,31.168686],[121.394567,31.159601],[121.402645,31.162226],[121.404578,31.157588],[121.401867,31.157528],[121.395874,31.15585],[121.396931,31.152685],[121.401449,31.153776],[121.400977,31.155214],[121.404953,31.156689],[121.411293,31.14174],[121.41381,31.13728],[121.418398,31.131669],[121.421526,31.127137],[121.436445,31.129043],[121.43853,31.121729],[121.438836,31.119103],[121.435736,31.113539],[121.438002,31.1121],[121.441547,31.112568],[121.445788,31.114954],[121.446706,31.114282],[121.450807,31.115398],[121.450154,31.112819],[121.452364,31.108586],[121.447623,31.107423],[121.446275,31.105744],[121.451878,31.103849],[121.452629,31.101234],[121.455423,31.100755],[121.462862,31.101954],[121.463237,31.108586],[121.465211,31.1121],[121.469299,31.118731],[121.469674,31.124859],[121.468729,31.127868],[121.462431,31.134463],[121.457453,31.142232],[121.457453,31.146451],[121.460387,31.150276],[121.46574,31.155118],[121.468354,31.158091],[121.469369,31.162298],[121.468159,31.167092],[121.464905,31.17541],[121.464905,31.178022],[121.466254,31.18109],[121.468729,31.184122],[121.475987,31.187885],[121.474944,31.189886],[121.470383,31.191276],[121.469605,31.196404],[121.46745,31.203065],[121.466449,31.204395],[121.462264,31.203173],[121.461555,31.210194],[121.460707,31.213488],[121.457689,31.220196]]]]}},{"type":"Feature","properties":{"adcode":310105,"name":"长宁区","center":[121.4222,31.218123],"centroid":[121.380949,31.20737],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":2,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.439462,31.214482],[121.436167,31.220675],[121.435416,31.225071],[121.434304,31.225886],[121.429034,31.223095],[121.427713,31.224221],[121.427519,31.229288],[121.423334,31.228114],[121.419941,31.225191],[121.415617,31.228581],[121.414853,31.228054],[121.415965,31.224473],[121.414157,31.223359],[121.408707,31.222364],[121.403799,31.22058],[121.400462,31.220807],[121.399712,31.218711],[121.388658,31.218639],[121.37691,31.220687],[121.373197,31.220089],[121.371404,31.222508],[121.366691,31.224065],[121.366065,31.226006],[121.362102,31.22597],[121.359071,31.229827],[121.354177,31.237121],[121.352856,31.238342],[121.348741,31.239372],[121.350131,31.241839],[121.348922,31.243863],[121.347281,31.243192],[121.346822,31.241037],[121.344612,31.243552],[121.345585,31.239887],[121.340872,31.239947],[121.338355,31.237528],[121.343513,31.234306],[121.345376,31.23039],[121.345362,31.227886],[121.341581,31.226293],[121.340997,31.224269],[121.345627,31.223526],[121.343096,31.223071],[121.342457,31.217789],[121.33937,31.216615],[121.339996,31.212278],[121.338508,31.212182],[121.338438,31.20666],[121.338925,31.196644],[121.33734,31.195817],[121.338049,31.192618],[121.331806,31.189622],[121.338341,31.180108],[121.341414,31.179436],[121.351424,31.183499],[121.353301,31.181629],[121.356958,31.182768],[121.358321,31.186015],[121.360253,31.185296],[121.365954,31.185572],[121.38001,31.190065],[121.391425,31.191911],[121.412572,31.19112],[121.419719,31.190796],[121.422027,31.192294],[121.421638,31.19535],[121.423793,31.197314],[121.433025,31.20128],[121.437933,31.203976],[121.435235,31.21114],[121.43746,31.211535],[121.439462,31.214482]]]]}},{"type":"Feature","properties":{"adcode":310106,"name":"静安区","center":[121.448224,31.229003],"centroid":[121.450659,31.270821],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":3,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457689,31.220196],[121.456758,31.223898],[121.467464,31.223862],[121.467658,31.225634],[121.466129,31.234917],[121.462973,31.241396],[121.469563,31.239216],[121.474847,31.24142],[121.47892,31.240294],[121.482994,31.241923],[121.481228,31.247959],[121.479588,31.249815],[121.481673,31.250689],[121.479629,31.253383],[121.480589,31.255239],[121.480491,31.258568],[121.474124,31.263453],[121.469605,31.267799],[121.464627,31.274396],[121.462834,31.275389],[121.461457,31.278921],[121.461805,31.284691],[121.460081,31.289778],[121.462445,31.292747],[121.46453,31.297989],[121.463529,31.306008],[121.467672,31.306307],[121.468312,31.316036],[121.468145,31.32032],[121.465378,31.321397],[121.457133,31.321002],[121.4547,31.319243],[121.447887,31.317101],[121.44672,31.319817],[121.436765,31.319662],[121.436459,31.32087],[121.433595,31.32087],[121.432468,31.318669],[121.434623,31.312303],[121.432163,31.31168],[121.431676,31.309478],[121.432441,31.305912],[121.431287,31.303638],[121.426434,31.303207],[121.426935,31.298528],[121.42364,31.297259],[121.420039,31.296912],[121.418648,31.292256],[121.419691,31.291071],[121.423806,31.291011],[121.422833,31.28426],[121.424432,31.280238],[121.424571,31.27193],[121.425252,31.270661],[121.429841,31.274923],[121.432413,31.271942],[121.437098,31.269439],[121.442952,31.267117],[121.451044,31.256269],[121.44932,31.252928],[121.451461,31.251994],[121.450404,31.247743],[121.448318,31.245216],[121.449987,31.2433],[121.445774,31.241348],[121.435166,31.235252],[121.431009,31.235108],[121.427908,31.231144],[121.427519,31.229288],[121.427713,31.224221],[121.429034,31.223095],[121.434304,31.225886],[121.435416,31.225071],[121.436167,31.220675],[121.439462,31.214482],[121.44697,31.215812],[121.452184,31.217429],[121.457689,31.220196]]]]}},{"type":"Feature","properties":{"adcode":310107,"name":"普陀区","center":[121.392499,31.241701],"centroid":[121.392042,31.257895],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":4,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.354177,31.237121],[121.359071,31.229827],[121.362102,31.22597],[121.366065,31.226006],[121.366691,31.224065],[121.371404,31.222508],[121.373197,31.220089],[121.37691,31.220687],[121.388658,31.218639],[121.399712,31.218711],[121.400462,31.220807],[121.403799,31.22058],[121.408707,31.222364],[121.414157,31.223359],[121.415965,31.224473],[121.414853,31.228054],[121.415617,31.228581],[121.419941,31.225191],[121.423334,31.228114],[121.427519,31.229288],[121.427908,31.231144],[121.431009,31.235108],[121.435166,31.235252],[121.445774,31.241348],[121.449987,31.2433],[121.448318,31.245216],[121.450404,31.247743],[121.451461,31.251994],[121.44932,31.252928],[121.451044,31.256269],[121.442952,31.267117],[121.437098,31.269439],[121.432413,31.271942],[121.429841,31.274923],[121.425252,31.270661],[121.419496,31.265237],[121.41577,31.265896],[121.41527,31.26914],[121.410598,31.270373],[121.41096,31.273175],[121.40544,31.273067],[121.406496,31.276862],[121.404564,31.276227],[121.400087,31.278071],[121.404453,31.286223],[121.400379,31.286115],[121.398446,31.287145],[121.399559,31.288904],[121.39789,31.29052],[121.393483,31.291274],[121.394762,31.294674],[121.388394,31.29526],[121.384765,31.294446],[121.381623,31.292711],[121.38154,31.289431],[121.376242,31.290592],[121.374838,31.289096],[121.370153,31.290329],[121.369666,31.28912],[121.363785,31.291334],[121.363785,31.292028],[121.358585,31.293465],[121.360295,31.294674],[121.363534,31.302741],[121.360309,31.302717],[121.354803,31.299808],[121.352954,31.301663],[121.348894,31.299246],[121.349659,31.297582],[121.346892,31.296349],[121.34685,31.297654],[121.340927,31.297439],[121.341011,31.293716],[121.338675,31.293225],[121.336506,31.294901],[121.332224,31.292998],[121.332821,31.290915],[121.326384,31.288928],[121.327316,31.285182],[121.328998,31.284595],[121.332738,31.286067],[121.335004,31.279711],[121.336061,31.280046],[121.336228,31.275461],[121.338883,31.275006],[121.338272,31.272839],[121.343541,31.271439],[121.344723,31.273917],[121.35732,31.271415],[121.358918,31.268793],[121.361268,31.27084],[121.367441,31.269631],[121.366996,31.266662],[121.362227,31.26756],[121.35985,31.266997],[121.358918,31.263609],[121.361783,31.259945],[121.366023,31.259358],[121.365884,31.257682],[121.374574,31.257059],[121.375158,31.25949],[121.377508,31.259478],[121.380886,31.257766],[121.377216,31.247719],[121.375686,31.244486],[121.3731,31.245683],[121.372349,31.243755],[121.368387,31.247384],[121.366718,31.246342],[121.363117,31.240091],[121.36067,31.238642],[121.360086,31.240498],[121.356068,31.240151],[121.356054,31.237803],[121.354177,31.237121]]]]}},{"type":"Feature","properties":{"adcode":310109,"name":"虹口区","center":[121.491832,31.26097],"centroid":[121.485443,31.276649],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":5,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.485413,31.311573],[121.485372,31.314636],[121.479171,31.314696],[121.472956,31.315797],[121.468312,31.316036],[121.467672,31.306307],[121.463529,31.306008],[121.46453,31.297989],[121.462445,31.292747],[121.460081,31.289778],[121.461805,31.284691],[121.461457,31.278921],[121.462834,31.275389],[121.464627,31.274396],[121.469605,31.267799],[121.474124,31.263453],[121.480491,31.258568],[121.480589,31.255239],[121.479629,31.253383],[121.481673,31.250689],[121.479588,31.249815],[121.481228,31.247959],[121.482994,31.241923],[121.485969,31.244091],[121.487805,31.244186],[121.494826,31.24221],[121.500012,31.244989],[121.50688,31.246474],[121.516488,31.246953],[121.516001,31.251599],[121.517642,31.251862],[121.514569,31.256317],[121.508479,31.262639],[121.50631,31.266746],[121.506505,31.270589],[121.499915,31.275904],[121.496564,31.276407],[121.496049,31.282991],[121.498149,31.286259],[121.502709,31.289658],[121.500652,31.295488],[121.493644,31.293884],[121.490168,31.292603],[121.485664,31.303483],[121.485413,31.311573]]]]}},{"type":"Feature","properties":{"adcode":310110,"name":"杨浦区","center":[121.522797,31.270755],"centroid":[121.529302,31.29835],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":6,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.516488,31.246953],[121.527555,31.247252],[121.536384,31.249623],[121.541542,31.251826],[121.559074,31.264219],[121.563537,31.268805],[121.568515,31.275701],[121.56953,31.279567],[121.569141,31.285254],[121.565456,31.294135],[121.562523,31.29976],[121.561758,31.303339],[121.561883,31.321158],[121.560493,31.32781],[121.558574,31.331256],[121.555779,31.333948],[121.549398,31.337789],[121.525483,31.346797],[121.522883,31.342885],[121.520256,31.344033],[121.517628,31.340779],[121.50556,31.345732],[121.493575,31.330299],[121.497593,31.328109],[121.498928,31.325322],[121.496216,31.323347],[121.496717,31.311489],[121.485413,31.311573],[121.485664,31.303483],[121.490168,31.292603],[121.493644,31.293884],[121.500652,31.295488],[121.502709,31.289658],[121.498149,31.286259],[121.496049,31.282991],[121.496564,31.276407],[121.499915,31.275904],[121.506505,31.270589],[121.50631,31.266746],[121.508479,31.262639],[121.514569,31.256317],[121.517642,31.251862],[121.516001,31.251599],[121.516488,31.246953]]]]}},{"type":"Feature","properties":{"adcode":310112,"name":"闵行区","center":[121.375972,31.111658],"centroid":[121.418901,31.087213],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":7,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.35871,30.97786],[121.375227,30.982832],[121.394261,30.988247],[121.409333,30.990229],[121.413184,30.991069],[121.423973,30.994515],[121.431426,30.999174],[121.433636,31.001779],[121.436834,31.00406],[121.440811,31.005789],[121.448305,31.007458],[121.459942,31.007398],[121.465587,31.008755],[121.47144,31.011948],[121.476362,31.01334],[121.485872,31.014073],[121.489153,31.014949],[121.492879,31.012752],[121.491948,31.010039],[121.495924,30.998297],[121.498872,30.998213],[121.49883,30.999426],[121.503057,31.002716],[121.507881,31.004745],[121.510412,31.004553],[121.517002,31.007626],[121.520853,31.004445],[121.522105,31.002199],[121.520089,31.00256],[121.520325,30.999354],[121.522897,30.99981],[121.528612,30.99592],[121.531962,30.994815],[121.534507,30.995848],[121.537774,30.994683],[121.538233,30.993146],[121.543294,30.994203],[121.54613,30.99305],[121.549537,30.988307],[121.55279,30.98886],[121.553304,30.993026],[121.556224,30.993374],[121.555918,30.995152],[121.561494,30.995644],[121.570475,30.998345],[121.567959,31.000879],[121.570712,31.002295],[121.570253,31.004565],[121.571463,31.005633],[121.569725,31.010603],[121.568181,31.010063],[121.565859,31.011912],[121.569822,31.012452],[121.571018,31.016426],[121.574674,31.018634],[121.574758,31.020951],[121.572325,31.026677],[121.56839,31.025284],[121.569057,31.024396],[121.564302,31.021191],[121.56027,31.024132],[121.558699,31.020255],[121.556474,31.020255],[121.556516,31.01873],[121.554139,31.01861],[121.552262,31.020915],[121.552804,31.023268],[121.555765,31.022908],[121.558407,31.024528],[121.558254,31.029533],[121.559505,31.030278],[121.559464,31.041391],[121.562119,31.043635],[121.559811,31.044812],[121.557031,31.04798],[121.556127,31.047632],[121.554737,31.050824],[121.552693,31.0493],[121.550538,31.049396],[121.54955,31.047908],[121.547799,31.048544],[121.54588,31.047044],[121.541472,31.046396],[121.542307,31.049072],[121.540791,31.052528],[121.54328,31.054016],[121.543308,31.055696],[121.548383,31.056896],[121.547201,31.061647],[121.548549,31.063639],[121.551094,31.063795],[121.551789,31.065643],[121.556753,31.06737],[121.55279,31.069506],[121.555599,31.071689],[121.559033,31.072169],[121.557531,31.073357],[121.562675,31.074305],[121.56262,31.075121],[121.567639,31.0762],[121.575272,31.080063],[121.572658,31.081323],[121.571643,31.080063],[121.569766,31.081611],[121.563579,31.082486],[121.561563,31.08365],[121.557031,31.082702],[121.556405,31.081059],[121.553555,31.080303],[121.550565,31.082834],[121.548549,31.086889],[121.551539,31.088148],[121.551608,31.090128],[121.559088,31.091951],[121.561563,31.09357],[121.561855,31.091867],[121.564358,31.091891],[121.567264,31.09363],[121.566819,31.096569],[121.563315,31.098955],[121.562064,31.101258],[121.563649,31.101858],[121.561132,31.105264],[121.561396,31.106224],[121.557851,31.109797],[121.559867,31.111896],[121.556697,31.113083],[121.555279,31.114882],[121.553332,31.112688],[121.552317,31.113899],[121.549217,31.113419],[121.550426,31.11162],[121.547687,31.109653],[121.544225,31.111464],[121.542251,31.116153],[121.539526,31.115626],[121.537885,31.113983],[121.535341,31.117976],[121.532254,31.117208],[121.53142,31.11842],[121.525289,31.116741],[121.522869,31.115242],[121.521424,31.116309],[121.514513,31.115278],[121.513749,31.118012],[121.511343,31.12119],[121.50549,31.120002],[121.503863,31.118324],[121.505295,31.115494],[121.501583,31.114666],[121.498538,31.121501],[121.49281,31.118719],[121.490266,31.124283],[121.485969,31.124523],[121.485705,31.121933],[121.48191,31.120086],[121.481256,31.118024],[121.477446,31.117328],[121.481353,31.110697],[121.477321,31.110853],[121.474137,31.114354],[121.473984,31.112915],[121.470286,31.110937],[121.465211,31.1121],[121.463237,31.108586],[121.462862,31.101954],[121.455423,31.100755],[121.452629,31.101234],[121.451878,31.103849],[121.446275,31.105744],[121.447623,31.107423],[121.452364,31.108586],[121.450154,31.112819],[121.450807,31.115398],[121.446706,31.114282],[121.445788,31.114954],[121.441547,31.112568],[121.438002,31.1121],[121.435736,31.113539],[121.438836,31.119103],[121.43853,31.121729],[121.436445,31.129043],[121.421526,31.127137],[121.418398,31.131669],[121.41381,31.13728],[121.411293,31.14174],[121.404953,31.156689],[121.400977,31.155214],[121.401449,31.153776],[121.396931,31.152685],[121.395874,31.15585],[121.401867,31.157528],[121.404578,31.157588],[121.402645,31.162226],[121.394567,31.159601],[121.391508,31.168686],[121.394053,31.169489],[121.39269,31.173085],[121.395415,31.174595],[121.394442,31.177879],[121.398071,31.178226],[121.398349,31.179904],[121.400101,31.178813],[121.41146,31.182037],[121.415158,31.183391],[121.415256,31.187357],[121.41356,31.18683],[121.412572,31.19112],[121.391425,31.191911],[121.38001,31.190065],[121.365954,31.185572],[121.360253,31.185296],[121.358321,31.186015],[121.356958,31.182768],[121.353301,31.181629],[121.351424,31.183499],[121.341414,31.179436],[121.338341,31.180108],[121.331806,31.189622],[121.338049,31.192618],[121.33734,31.195817],[121.338925,31.196644],[121.338438,31.20666],[121.338508,31.212182],[121.339996,31.212278],[121.33937,31.216615],[121.342457,31.217789],[121.343096,31.223071],[121.345627,31.223526],[121.340997,31.224269],[121.341581,31.226293],[121.345362,31.227886],[121.345376,31.23039],[121.343513,31.234306],[121.338355,31.237528],[121.334935,31.235887],[121.333878,31.232006],[121.32612,31.229575],[121.322853,31.229623],[121.315386,31.227204],[121.302998,31.230605],[121.296922,31.231048],[121.29264,31.232761],[121.288538,31.238198],[121.287301,31.243276],[121.283742,31.245192],[121.28142,31.248174],[121.284228,31.251838],[121.280363,31.251886],[121.275302,31.253527],[121.271284,31.252258],[121.264444,31.256496],[121.263985,31.259155],[121.260217,31.258328],[121.254405,31.259634],[121.254183,31.258688],[121.247314,31.253287],[121.24591,31.248821],[121.241683,31.247348],[121.239932,31.241061],[121.241391,31.240222],[121.247912,31.240917],[121.249692,31.236534],[121.251082,31.238198],[121.252792,31.236965],[121.254155,31.23312],[121.257158,31.230701],[121.258006,31.226868],[121.256588,31.226329],[121.258215,31.222772],[121.25745,31.220208],[121.259675,31.218148],[121.261218,31.215081],[121.259397,31.212769],[121.263846,31.208912],[121.26468,31.206731],[121.263053,31.205701],[121.264777,31.203317],[121.266724,31.203257],[121.271701,31.198309],[121.277388,31.193576],[121.284034,31.194391],[121.287329,31.196332],[121.292126,31.200621],[121.292431,31.202514],[121.294837,31.203077],[121.297506,31.201412],[121.300565,31.197027],[121.30856,31.188388],[121.310784,31.18423],[121.316304,31.176836],[121.318042,31.173624],[121.318584,31.170256],[121.323854,31.162933],[121.327218,31.156856],[121.328775,31.156665],[121.331528,31.15205],[121.331292,31.149772],[121.333711,31.148765],[121.335477,31.143862],[121.336728,31.14355],[121.338814,31.14017],[121.33677,31.138971],[121.342095,31.134655],[121.344681,31.130338],[121.344014,31.129451],[121.346002,31.126202],[121.34489,31.12577],[121.347545,31.121969],[121.346753,31.121657],[121.349589,31.117748],[121.353065,31.117604],[121.35066,31.115554],[121.353774,31.111512],[121.356026,31.112532],[121.357014,31.110529],[121.352217,31.106487],[121.351675,31.107735],[121.348532,31.106655],[121.351341,31.099255],[121.35839,31.100791],[121.359085,31.098931],[121.362756,31.099771],[121.368289,31.088976],[121.372016,31.079871],[121.370625,31.078372],[121.368804,31.079127],[121.365481,31.077892],[121.364341,31.073705],[121.362116,31.072601],[121.364424,31.069878],[121.363743,31.068354],[121.357278,31.066758],[121.358195,31.064047],[121.35344,31.061287],[121.343444,31.059139],[121.341456,31.062763],[121.335338,31.060435],[121.335102,31.04564],[121.33367,31.040695],[121.334017,31.031922],[121.333308,31.030686],[121.333892,31.026917],[121.333725,31.015657],[121.333072,31.01334],[121.339898,31.013857],[121.34279,31.014817],[121.34425,31.013941],[121.339829,31.010267],[121.33823,31.006197],[121.330347,30.996905],[121.327482,30.995896],[121.326773,30.994479],[121.326898,30.989964],[121.3258,30.9833],[121.327371,30.980658],[121.329554,30.981318],[121.334406,30.980694],[121.34375,30.976599],[121.351258,30.975986],[121.35871,30.97786]]]]}},{"type":"Feature","properties":{"adcode":310113,"name":"宝山区","center":[121.489934,31.398896],"centroid":[121.404861,31.392111],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":8,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.425252,31.270661],[121.424571,31.27193],[121.424432,31.280238],[121.422833,31.28426],[121.423806,31.291011],[121.419691,31.291071],[121.418648,31.292256],[121.420039,31.296912],[121.42364,31.297259],[121.426935,31.298528],[121.426434,31.303207],[121.431287,31.303638],[121.432441,31.305912],[121.431676,31.309478],[121.432163,31.31168],[121.434623,31.312303],[121.432468,31.318669],[121.433595,31.32087],[121.436459,31.32087],[121.436765,31.319662],[121.44672,31.319817],[121.447887,31.317101],[121.4547,31.319243],[121.457133,31.321002],[121.465378,31.321397],[121.468145,31.32032],[121.468312,31.316036],[121.472956,31.315797],[121.479171,31.314696],[121.485372,31.314636],[121.485413,31.311573],[121.496717,31.311489],[121.496216,31.323347],[121.498928,31.325322],[121.497593,31.328109],[121.493575,31.330299],[121.50556,31.345732],[121.517628,31.340779],[121.520256,31.344033],[121.522883,31.342885],[121.525483,31.346797],[121.514903,31.352],[121.508424,31.357251],[121.503835,31.36493],[121.50346,31.369403],[121.503835,31.373744],[121.507284,31.379102],[121.512372,31.385858],[121.521229,31.39479],[121.507353,31.405933],[121.509425,31.408288],[121.516585,31.405287],[121.517239,31.406303],[121.510801,31.409973],[121.502362,31.413404],[121.501319,31.411982],[121.507228,31.409722],[121.505991,31.407021],[121.49427,31.417851],[121.481339,31.427294],[121.463696,31.438277],[121.446024,31.450717],[121.434276,31.458496],[121.41869,31.470682],[121.409694,31.476321],[121.404328,31.479212],[121.403966,31.481494],[121.406288,31.485388],[121.405426,31.487215],[121.376298,31.501106],[121.362255,31.50679],[121.357751,31.508259],[121.343499,31.512057],[121.335838,31.508295],[121.329512,31.504247],[121.327218,31.504247],[121.323131,31.502288],[121.323701,31.499649],[121.319905,31.49972],[121.32003,31.502993],[121.321879,31.503399],[121.320169,31.505883],[121.316652,31.505775],[121.315345,31.501273],[121.311938,31.502909],[121.310353,31.505919],[121.305529,31.505333],[121.305876,31.503435],[121.302595,31.502599],[121.299926,31.499756],[121.300857,31.496747],[121.304667,31.495779],[121.306544,31.493307],[121.309171,31.492495],[121.31027,31.489735],[121.308629,31.488649],[121.310214,31.487311],[121.313342,31.480598],[121.315956,31.481219],[121.318807,31.475055],[121.31426,31.472474],[121.317958,31.468472],[121.320572,31.469058],[121.320058,31.466728],[121.317277,31.466262],[121.317778,31.460109],[121.320531,31.457289],[121.318654,31.456895],[121.319794,31.454876],[121.324132,31.455007],[121.327399,31.448829],[121.326106,31.448041],[121.328261,31.441098],[121.331236,31.439652],[121.333656,31.440118],[121.336603,31.432254],[121.336645,31.429493],[121.335143,31.429158],[121.336422,31.424999],[121.336561,31.419058],[121.33239,31.416943],[121.334101,31.413655],[121.332488,31.413117],[121.333141,31.410739],[121.330444,31.410308],[121.32847,31.411958],[121.314316,31.4072],[121.317375,31.403661],[121.315637,31.402729],[121.314747,31.398365],[121.317444,31.39742],[121.321476,31.397576],[121.323145,31.395866],[121.323339,31.393331],[121.320419,31.389123],[121.323061,31.388489],[121.326607,31.381063],[121.330527,31.381135],[121.331306,31.378456],[121.328734,31.377344],[121.331389,31.37433],[121.334003,31.37262],[121.333336,31.371281],[121.335991,31.370097],[121.335018,31.366963],[121.337576,31.364189],[121.338911,31.360995],[121.340329,31.360517],[121.341428,31.357802],[121.337118,31.356019],[121.337743,31.3534],[121.334643,31.3509],[121.332251,31.351307],[121.332502,31.347084],[121.336464,31.346821],[121.337521,31.344536],[121.338925,31.344775],[121.342401,31.341306],[121.344347,31.341928],[121.34628,31.336329],[121.342846,31.336066],[121.341692,31.33329],[121.342318,31.331005],[121.345932,31.32513],[121.347517,31.324077],[121.344848,31.323335],[121.345585,31.320835],[121.3492,31.321313],[121.347782,31.319542],[121.347698,31.316706],[121.343458,31.317185],[121.340357,31.311525],[121.338981,31.310101],[121.335686,31.303339],[121.331306,31.301436],[121.334198,31.296122],[121.33588,31.297044],[121.336506,31.294901],[121.338675,31.293225],[121.341011,31.293716],[121.340927,31.297439],[121.34685,31.297654],[121.346892,31.296349],[121.349659,31.297582],[121.348894,31.299246],[121.352954,31.301663],[121.354803,31.299808],[121.360309,31.302717],[121.363534,31.302741],[121.360295,31.294674],[121.358585,31.293465],[121.363785,31.292028],[121.363785,31.291334],[121.369666,31.28912],[121.370153,31.290329],[121.374838,31.289096],[121.376242,31.290592],[121.38154,31.289431],[121.381623,31.292711],[121.384765,31.294446],[121.388394,31.29526],[121.394762,31.294674],[121.393483,31.291274],[121.39789,31.29052],[121.399559,31.288904],[121.398446,31.287145],[121.400379,31.286115],[121.404453,31.286223],[121.400087,31.278071],[121.404564,31.276227],[121.406496,31.276862],[121.40544,31.273067],[121.41096,31.273175],[121.410598,31.270373],[121.41527,31.26914],[121.41577,31.265896],[121.419496,31.265237],[121.425252,31.270661]]]]}},{"type":"Feature","properties":{"adcode":310114,"name":"嘉定区","center":[121.250333,31.383524],"centroid":[121.24439,31.358138],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":9,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.153743,31.276646],[121.153924,31.272061],[121.151783,31.267632],[121.155537,31.266147],[121.157845,31.270541],[121.161057,31.26762],[121.162614,31.269176],[121.167661,31.263944],[121.168036,31.259622],[121.170386,31.259119],[121.16894,31.256197],[121.171415,31.254928],[121.174251,31.256856],[121.176768,31.254605],[121.178798,31.255862],[121.17934,31.253419],[121.181537,31.254413],[121.183928,31.252246],[121.186444,31.252329],[121.188377,31.25476],[121.193021,31.253623],[121.193368,31.251455],[121.19626,31.251228],[121.19608,31.253395],[121.199848,31.255239],[121.203143,31.255814],[121.202865,31.257131],[121.206368,31.260065],[121.208482,31.25749],[121.209816,31.258017],[121.209761,31.260831],[121.212625,31.259837],[121.214182,31.254353],[121.221273,31.256293],[121.220216,31.257406],[121.223859,31.259035],[121.223539,31.260532],[121.229198,31.261717],[121.229087,31.262711],[121.235177,31.262699],[121.237693,31.262088],[121.242253,31.25937],[121.246577,31.259801],[121.246758,31.258448],[121.254183,31.258688],[121.254405,31.259634],[121.260217,31.258328],[121.263985,31.259155],[121.264444,31.256496],[121.271284,31.252258],[121.275302,31.253527],[121.280363,31.251886],[121.284228,31.251838],[121.28142,31.248174],[121.283742,31.245192],[121.287301,31.243276],[121.288538,31.238198],[121.29264,31.232761],[121.296922,31.231048],[121.302998,31.230605],[121.315386,31.227204],[121.322853,31.229623],[121.32612,31.229575],[121.333878,31.232006],[121.334935,31.235887],[121.338355,31.237528],[121.340872,31.239947],[121.345585,31.239887],[121.344612,31.243552],[121.346822,31.241037],[121.347281,31.243192],[121.348922,31.243863],[121.350131,31.241839],[121.348741,31.239372],[121.352856,31.238342],[121.354177,31.237121],[121.356054,31.237803],[121.356068,31.240151],[121.360086,31.240498],[121.36067,31.238642],[121.363117,31.240091],[121.366718,31.246342],[121.368387,31.247384],[121.372349,31.243755],[121.3731,31.245683],[121.375686,31.244486],[121.377216,31.247719],[121.380886,31.257766],[121.377508,31.259478],[121.375158,31.25949],[121.374574,31.257059],[121.365884,31.257682],[121.366023,31.259358],[121.361783,31.259945],[121.358918,31.263609],[121.35985,31.266997],[121.362227,31.26756],[121.366996,31.266662],[121.367441,31.269631],[121.361268,31.27084],[121.358918,31.268793],[121.35732,31.271415],[121.344723,31.273917],[121.343541,31.271439],[121.338272,31.272839],[121.338883,31.275006],[121.336228,31.275461],[121.336061,31.280046],[121.335004,31.279711],[121.332738,31.286067],[121.328998,31.284595],[121.327316,31.285182],[121.326384,31.288928],[121.332821,31.290915],[121.332224,31.292998],[121.336506,31.294901],[121.33588,31.297044],[121.334198,31.296122],[121.331306,31.301436],[121.335686,31.303339],[121.338981,31.310101],[121.340357,31.311525],[121.343458,31.317185],[121.347698,31.316706],[121.347782,31.319542],[121.3492,31.321313],[121.345585,31.320835],[121.344848,31.323335],[121.347517,31.324077],[121.345932,31.32513],[121.342318,31.331005],[121.341692,31.33329],[121.342846,31.336066],[121.34628,31.336329],[121.344347,31.341928],[121.342401,31.341306],[121.338925,31.344775],[121.337521,31.344536],[121.336464,31.346821],[121.332502,31.347084],[121.332251,31.351307],[121.334643,31.3509],[121.337743,31.3534],[121.337118,31.356019],[121.341428,31.357802],[121.340329,31.360517],[121.338911,31.360995],[121.337576,31.364189],[121.335018,31.366963],[121.335991,31.370097],[121.333336,31.371281],[121.334003,31.37262],[121.331389,31.37433],[121.328734,31.377344],[121.331306,31.378456],[121.330527,31.381135],[121.326607,31.381063],[121.323061,31.388489],[121.320419,31.389123],[121.323339,31.393331],[121.323145,31.395866],[121.321476,31.397576],[121.317444,31.39742],[121.314747,31.398365],[121.315637,31.402729],[121.317375,31.403661],[121.314316,31.4072],[121.32847,31.411958],[121.330444,31.410308],[121.333141,31.410739],[121.332488,31.413117],[121.334101,31.413655],[121.33239,31.416943],[121.336561,31.419058],[121.336422,31.424999],[121.335143,31.429158],[121.336645,31.429493],[121.336603,31.432254],[121.333656,31.440118],[121.331236,31.439652],[121.328261,31.441098],[121.326106,31.448041],[121.327399,31.448829],[121.324132,31.455007],[121.319794,31.454876],[121.318654,31.456895],[121.320531,31.457289],[121.317778,31.460109],[121.317277,31.466262],[121.320058,31.466728],[121.320572,31.469058],[121.317958,31.468472],[121.31426,31.472474],[121.318807,31.475055],[121.315956,31.481219],[121.313342,31.480598],[121.310214,31.487311],[121.308629,31.488649],[121.31027,31.489735],[121.309171,31.492495],[121.306544,31.493307],[121.304667,31.495779],[121.300857,31.496747],[121.300496,31.494537],[121.298563,31.493713],[121.298605,31.491515],[121.293488,31.489807],[121.29061,31.491694],[121.289387,31.489031],[121.285355,31.490679],[121.283686,31.489795],[121.279696,31.490404],[121.280321,31.488672],[121.276442,31.486654],[121.27622,31.485376],[121.272049,31.484337],[121.268879,31.487466],[121.267322,31.486224],[121.267433,31.483357],[121.265153,31.48313],[121.261732,31.480777],[121.261454,31.478854],[121.254794,31.477635],[121.255643,31.483632],[121.253627,31.483082],[121.253362,31.479809],[121.251221,31.479606],[121.249692,31.477623],[121.247064,31.477062],[121.245813,31.479881],[121.248176,31.481876],[121.244409,31.481183],[121.243797,31.487311],[121.241141,31.490906],[121.240877,31.493701],[121.237234,31.491957],[121.234746,31.492686],[121.235413,31.488099],[121.232994,31.487896],[121.22867,31.482127],[121.230839,31.481111],[121.230352,31.477432],[121.226209,31.477683],[121.225361,31.476022],[121.220731,31.47607],[121.219062,31.475222],[121.21364,31.475939],[121.21503,31.477528],[121.214377,31.479128],[121.206368,31.474995],[121.203421,31.472331],[121.202906,31.469356],[121.195051,31.467827],[121.186055,31.460814],[121.185457,31.457468],[121.186055,31.454362],[121.180814,31.451458],[121.174974,31.449295],[121.16983,31.450024],[121.16773,31.448315],[121.166048,31.450168],[121.163045,31.448865],[121.160917,31.449678],[121.147348,31.44393],[121.146569,31.439006],[121.14782,31.436186],[121.152492,31.433604],[121.158484,31.432254],[121.162711,31.432218],[121.16253,31.429565],[121.16431,31.427222],[121.162002,31.427951],[121.161362,31.425776],[121.155273,31.42574],[121.151157,31.421796],[121.146249,31.421078],[121.146208,31.419704],[121.149266,31.41913],[121.148905,31.415867],[121.153493,31.413679],[121.155523,31.413835],[121.154508,31.411575],[121.15886,31.410117],[121.157887,31.407893],[121.153104,31.405837],[121.153896,31.403685],[121.15049,31.402215],[121.149586,31.399381],[121.152742,31.398174],[121.147653,31.397325],[121.149475,31.394503],[121.14383,31.392327],[121.147097,31.3899],[121.148988,31.38691],[121.148432,31.385404],[121.141425,31.38355],[121.141049,31.384531],[121.137518,31.382785],[121.138408,31.381147],[121.131762,31.378815],[121.131247,31.379664],[121.124268,31.376722],[121.12328,31.37848],[121.118206,31.375837],[121.113757,31.37445],[121.11523,31.371137],[121.119082,31.370563],[121.120208,31.368674],[121.113173,31.36688],[121.112853,31.365133],[121.10928,31.364703],[121.10889,31.366509],[121.106958,31.366593],[121.106749,31.364535],[121.108251,31.360457],[121.107361,31.354763],[121.108418,31.354034],[121.10832,31.350649],[121.111157,31.351534],[121.111838,31.350517],[121.117246,31.351689],[121.120194,31.347562],[121.11733,31.34712],[121.117969,31.343447],[121.123948,31.342753],[121.130441,31.344213],[121.130816,31.341509],[121.130121,31.334702],[121.13115,31.332106],[121.132582,31.331962],[121.133305,31.325585],[121.131539,31.325441],[121.131637,31.32324],[121.127257,31.319315],[121.127076,31.316934],[121.128633,31.314265],[121.127966,31.311884],[121.129773,31.308306],[121.129134,31.307528],[121.129954,31.302597],[121.133778,31.30207],[121.139645,31.302992],[121.13895,31.305625],[121.143774,31.309706],[121.146903,31.305936],[121.150782,31.299018],[121.148933,31.298875],[121.152714,31.294075],[121.151282,31.291933],[121.154689,31.290053],[121.156399,31.287408],[121.159305,31.28766],[121.161293,31.283985],[121.159402,31.281579],[121.155537,31.280765],[121.155481,31.278442],[121.153743,31.276646]]]]}},{"type":"Feature","properties":{"adcode":310115,"name":"浦东新区","center":[121.567706,31.245944],"centroid":[121.742177,31.083823],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":10,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.570475,30.998345],[121.576746,30.999474],[121.582933,30.999498],[121.584309,31.000819],[121.594682,31.000699],[121.595585,31.002043],[121.604066,31.001131],[121.614717,31.001251],[121.61772,30.995692],[121.62057,30.992678],[121.646695,30.99335],[121.654536,30.993254],[121.663115,30.992714],[121.669525,30.991609],[121.673348,30.989832],[121.674558,30.991802],[121.683595,30.989808],[121.688086,30.990145],[121.69298,30.98934],[121.699459,30.987419],[121.705507,30.984981],[121.712792,30.980934],[121.73191,30.967784],[121.733954,30.964469],[121.737916,30.960637],[121.73686,30.958703],[121.739988,30.956721],[121.743742,30.956589],[121.747857,30.951893],[121.749234,30.953046],[121.751987,30.952721],[121.759286,30.949154],[121.761024,30.947604],[121.760927,30.944613],[121.764542,30.941766],[121.761677,30.940132],[121.761469,30.938414],[121.764277,30.938522],[121.763846,30.936852],[121.766432,30.936539],[121.76799,30.93833],[121.769769,30.935278],[121.773023,30.933932],[121.77337,30.931553],[121.777806,30.931025],[121.777653,30.926723],[121.781115,30.917567],[121.780239,30.911811],[121.77896,30.910116],[121.778334,30.903807],[121.778987,30.899468],[121.778807,30.894588],[121.776012,30.886426],[121.776679,30.881005],[121.773134,30.880596],[121.772481,30.875703],[121.771605,30.875427],[121.768143,30.863272],[121.769338,30.85043],[121.793767,30.816862],[121.904467,30.814155],[121.915284,30.812892],[121.9246,30.8066],[121.943689,30.777096],[121.969703,30.789202],[121.955466,30.817138],[121.954326,30.821409],[121.954715,30.825811],[121.970732,30.839077],[121.985372,30.850694],[121.993951,30.863055],[121.996982,30.874898],[121.998497,30.899961],[121.996231,30.935458],[121.990934,30.968432],[121.977558,31.016101],[121.962682,31.047284],[121.94679,31.065883],[121.889465,31.121705],[121.884029,31.130638],[121.853358,31.155346],[121.809812,31.196907],[121.743742,31.283207],[121.729101,31.298288],[121.722511,31.303518],[121.712431,31.309407],[121.689448,31.322462],[121.610559,31.368195],[121.603038,31.372656],[121.593708,31.376411],[121.559811,31.38361],[121.538011,31.388489],[121.521229,31.39479],[121.512372,31.385858],[121.507284,31.379102],[121.503835,31.373744],[121.50346,31.369403],[121.503835,31.36493],[121.508424,31.357251],[121.514903,31.352],[121.525483,31.346797],[121.549398,31.337789],[121.555779,31.333948],[121.558574,31.331256],[121.560493,31.32781],[121.561883,31.321158],[121.561758,31.303339],[121.562523,31.29976],[121.565456,31.294135],[121.569141,31.285254],[121.56953,31.279567],[121.568515,31.275701],[121.563537,31.268805],[121.559074,31.264219],[121.541542,31.251826],[121.536384,31.249623],[121.527555,31.247252],[121.516488,31.246953],[121.50688,31.246474],[121.500012,31.244989],[121.494826,31.24221],[121.493491,31.240163],[121.493491,31.23615],[121.495744,31.232977],[121.502014,31.228018],[121.506741,31.223119],[121.509397,31.218459],[121.509911,31.214506],[121.508368,31.210158],[121.501319,31.199747],[121.498066,31.195601],[121.494631,31.192857],[121.490752,31.191467],[121.475987,31.187885],[121.468729,31.184122],[121.466254,31.18109],[121.464905,31.178022],[121.464905,31.17541],[121.468159,31.167092],[121.469369,31.162298],[121.468354,31.158091],[121.46574,31.155118],[121.460387,31.150276],[121.457453,31.146451],[121.457453,31.142232],[121.462431,31.134463],[121.468729,31.127868],[121.469674,31.124859],[121.469299,31.118731],[121.465211,31.1121],[121.470286,31.110937],[121.473984,31.112915],[121.474137,31.114354],[121.477321,31.110853],[121.481353,31.110697],[121.477446,31.117328],[121.481256,31.118024],[121.48191,31.120086],[121.485705,31.121933],[121.485969,31.124523],[121.490266,31.124283],[121.49281,31.118719],[121.498538,31.121501],[121.501583,31.114666],[121.505295,31.115494],[121.503863,31.118324],[121.50549,31.120002],[121.511343,31.12119],[121.513749,31.118012],[121.514513,31.115278],[121.521424,31.116309],[121.522869,31.115242],[121.525289,31.116741],[121.53142,31.11842],[121.532254,31.117208],[121.535341,31.117976],[121.537885,31.113983],[121.539526,31.115626],[121.542251,31.116153],[121.544225,31.111464],[121.547687,31.109653],[121.550426,31.11162],[121.549217,31.113419],[121.552317,31.113899],[121.553332,31.112688],[121.555279,31.114882],[121.556697,31.113083],[121.559867,31.111896],[121.557851,31.109797],[121.561396,31.106224],[121.561132,31.105264],[121.563649,31.101858],[121.562064,31.101258],[121.563315,31.098955],[121.566819,31.096569],[121.567264,31.09363],[121.564358,31.091891],[121.561855,31.091867],[121.561563,31.09357],[121.559088,31.091951],[121.551608,31.090128],[121.551539,31.088148],[121.548549,31.086889],[121.550565,31.082834],[121.553555,31.080303],[121.556405,31.081059],[121.557031,31.082702],[121.561563,31.08365],[121.563579,31.082486],[121.569766,31.081611],[121.571643,31.080063],[121.572658,31.081323],[121.575272,31.080063],[121.567639,31.0762],[121.56262,31.075121],[121.562675,31.074305],[121.557531,31.073357],[121.559033,31.072169],[121.555599,31.071689],[121.55279,31.069506],[121.556753,31.06737],[121.551789,31.065643],[121.551094,31.063795],[121.548549,31.063639],[121.547201,31.061647],[121.548383,31.056896],[121.543308,31.055696],[121.54328,31.054016],[121.540791,31.052528],[121.542307,31.049072],[121.541472,31.046396],[121.54588,31.047044],[121.547799,31.048544],[121.54955,31.047908],[121.550538,31.049396],[121.552693,31.0493],[121.554737,31.050824],[121.556127,31.047632],[121.557031,31.04798],[121.559811,31.044812],[121.562119,31.043635],[121.559464,31.041391],[121.559505,31.030278],[121.558254,31.029533],[121.558407,31.024528],[121.555765,31.022908],[121.552804,31.023268],[121.552262,31.020915],[121.554139,31.01861],[121.556516,31.01873],[121.556474,31.020255],[121.558699,31.020255],[121.56027,31.024132],[121.564302,31.021191],[121.569057,31.024396],[121.56839,31.025284],[121.572325,31.026677],[121.574758,31.020951],[121.574674,31.018634],[121.571018,31.016426],[121.569822,31.012452],[121.565859,31.011912],[121.568181,31.010063],[121.569725,31.010603],[121.571463,31.005633],[121.570253,31.004565],[121.570712,31.002295],[121.567959,31.000879],[121.570475,30.998345]]],[[[121.943244,31.215465],[121.941826,31.207678],[121.942619,31.198465],[121.944843,31.186878],[121.948027,31.176405],[121.952629,31.1672],[121.959637,31.159278],[121.965685,31.15754],[121.970773,31.157552],[121.975862,31.158834],[121.99573,31.1608],[121.999554,31.165079],[122.010593,31.188004],[122.012011,31.192043],[122.012609,31.210002],[122.011038,31.217405],[122.008563,31.220987],[121.989655,31.224521],[121.980659,31.22809],[121.969188,31.230282],[121.957259,31.230414],[121.951044,31.228821],[121.946595,31.224365],[121.943244,31.215465]]],[[[121.882625,31.240857],[121.880873,31.23633],[121.882541,31.225611],[121.885155,31.22052],[121.889271,31.214997],[121.901645,31.20146],[121.908777,31.195266],[121.913852,31.19384],[121.918788,31.194319],[121.922445,31.196859],[121.925448,31.205438],[121.927519,31.224017],[121.926727,31.229731],[121.923557,31.233863],[121.915451,31.236558],[121.897363,31.242115],[121.88991,31.242594],[121.882625,31.240857]]]]}},{"type":"Feature","properties":{"adcode":310116,"name":"金山区","center":[121.330736,30.724697],"centroid":[121.255144,30.818932],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":11,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.99673,30.950307],[120.996813,30.944625],[120.995673,30.944336],[120.997481,30.941141],[121.000818,30.937729],[121.000025,30.934701],[120.999622,30.91395],[120.998982,30.909527],[121.004572,30.909299],[121.004516,30.906955],[121.00257,30.904852],[120.998704,30.905946],[120.998635,30.903386],[120.995715,30.903723],[120.992809,30.90216],[120.992656,30.899732],[120.99046,30.89579],[120.992907,30.893915],[120.993824,30.88966],[121.005017,30.888794],[121.00852,30.888121],[121.008298,30.882964],[121.011092,30.882219],[121.017474,30.882724],[121.0186,30.880716],[121.021465,30.878793],[121.019421,30.876665],[121.021896,30.875162],[121.019796,30.873996],[121.020463,30.87188],[121.01778,30.873359],[121.014819,30.871027],[121.01778,30.86938],[121.013971,30.86439],[121.016265,30.862851],[121.015403,30.86053],[121.010981,30.856033],[121.015013,30.853604],[121.013359,30.851692],[121.010133,30.853135],[121.008006,30.850574],[121.006463,30.850454],[121.003974,30.846101],[121.000985,30.845632],[120.9999,30.843335],[120.997759,30.84408],[120.995659,30.838572],[120.992865,30.838392],[120.989987,30.834724],[120.989125,30.832318],[120.992462,30.831572],[120.989153,30.828698],[120.992754,30.825691],[120.990918,30.822708],[120.994603,30.821493],[121.00054,30.829431],[121.003446,30.826304],[121.006935,30.830779],[121.010898,30.834615],[121.014402,30.835818],[121.014874,30.833954],[121.030057,30.828553],[121.036647,30.818449],[121.037912,30.81389],[121.044976,30.815526],[121.043752,30.820013],[121.03908,30.818582],[121.03769,30.820266],[121.039192,30.820867],[121.040276,30.82438],[121.04175,30.825378],[121.039956,30.827218],[121.043516,30.828157],[121.045101,30.825907],[121.048896,30.825186],[121.046755,30.831091],[121.056335,30.835602],[121.062049,30.83779],[121.060228,30.842793],[121.061674,30.843383],[121.06052,30.845187],[121.066999,30.84877],[121.080471,30.848746],[121.097712,30.857103],[121.097684,30.854927],[121.102272,30.850261],[121.104789,30.849335],[121.110906,30.851416],[121.113159,30.854049],[121.114744,30.851476],[121.120055,30.849119],[121.121153,30.850165],[121.123545,30.847267],[121.12025,30.843299],[121.119832,30.83773],[121.117747,30.835301],[121.120639,30.836335],[121.127688,30.83565],[121.129982,30.834892],[121.131609,30.83601],[121.134612,30.833028],[121.132916,30.831608],[121.134264,30.828505],[121.136239,30.827868],[121.13742,30.829985],[121.13742,30.825029],[121.132373,30.819279],[121.130218,30.815574],[121.128202,30.810221],[121.126047,30.79304],[121.126576,30.788998],[121.125255,30.788179],[121.120041,30.788552],[121.117219,30.786073],[121.12342,30.77895],[121.127521,30.778673],[121.131817,30.777313],[121.13603,30.777337],[121.1387,30.77842],[121.140618,30.776928],[121.144122,30.779479],[121.152687,30.778974],[121.155815,30.777205],[121.160681,30.776579],[121.160737,30.773221],[121.163434,30.775279],[121.168968,30.775953],[121.170789,30.777084],[121.170984,30.774677],[121.174668,30.772018],[121.179965,30.774376],[121.183441,30.775038],[121.185791,30.776651],[121.186361,30.779034],[121.189517,30.778974],[121.190963,30.781092],[121.191839,30.778853],[121.196956,30.773354],[121.20032,30.773618],[121.199166,30.780755],[121.200098,30.783294],[121.205534,30.785905],[121.213723,30.785929],[121.217992,30.784954],[121.2234,30.775977],[121.224624,30.776976],[121.226209,30.775087],[121.226918,30.770826],[121.229115,30.767974],[121.230686,30.763737],[121.232298,30.755817],[121.23729,30.752651],[121.243102,30.750533],[121.244756,30.749185],[121.256393,30.743948],[121.261343,30.738217],[121.266835,30.733498],[121.26817,30.734931],[121.271451,30.73227],[121.269755,30.730729],[121.271451,30.726948],[121.270339,30.725864],[121.272035,30.723252],[121.270102,30.72047],[121.270339,30.716894],[121.267057,30.715039],[121.268448,30.712149],[121.265862,30.709488],[121.266668,30.706296],[121.268031,30.706103],[121.268656,30.702129],[121.270672,30.701563],[121.270422,30.69807],[121.271604,30.69689],[121.274649,30.6774],[121.291041,30.678328],[121.326718,30.67593],[121.346642,30.675593],[121.35433,30.676991],[121.361894,30.67952],[121.406997,30.718086],[121.426365,30.730283],[121.478767,30.756347],[121.465072,30.776483],[121.451711,30.798323],[121.44672,30.805577],[121.445427,30.804868],[121.441645,30.806829],[121.437029,30.818101],[121.425989,30.81869],[121.420525,30.819797],[121.419288,30.81602],[121.415131,30.815803],[121.41552,30.819941],[121.414171,30.821757],[121.41235,30.821505],[121.404786,30.823081],[121.400991,30.827399],[121.400685,30.830105],[121.403632,30.829877],[121.404202,30.833797],[121.399712,30.834182],[121.397376,30.833292],[121.396986,30.827988],[121.392051,30.82782],[121.391717,30.829913],[121.387588,30.829864],[121.387588,30.832799],[121.383764,30.833906],[121.379259,30.840112],[121.379065,30.843238],[121.385446,30.843178],[121.384918,30.848073],[121.383722,30.851765],[121.384376,30.856238],[121.383472,30.859232],[121.384001,30.863488],[121.381929,30.863765],[121.381873,30.867324],[121.38286,30.869043],[121.382791,30.874489],[121.381498,30.876605],[121.382207,30.878961],[121.377535,30.879983],[121.371751,30.883698],[121.370166,30.883914],[121.367233,30.886667],[121.36327,30.886955],[121.361185,30.892977],[121.360476,30.897785],[121.358418,30.900598],[121.35668,30.908614],[121.351814,30.913217],[121.350604,30.911402],[121.347573,30.913145],[121.343819,30.909119],[121.340162,30.908554],[121.336631,30.906739],[121.334657,30.907737],[121.331097,30.907508],[121.327635,30.91014],[121.325939,30.908962],[121.321518,30.908986],[121.320127,30.91109],[121.314608,30.909143],[121.313829,30.910717],[121.306808,30.910212],[121.306502,30.912123],[121.303721,30.912099],[121.303443,30.909287],[121.301775,30.908458],[121.29848,30.909744],[121.296269,30.914959],[121.294809,30.914947],[121.294948,30.918504],[121.288844,30.916894],[121.288705,30.909912],[121.290068,30.909804],[121.291013,30.902677],[121.290151,30.900021],[121.288719,30.899961],[121.288413,30.896066],[121.285799,30.895429],[121.285257,30.896631],[121.28231,30.896571],[121.282073,30.894804],[121.27964,30.894456],[121.279098,30.897112],[121.274663,30.896078],[121.27298,30.900405],[121.270422,30.900165],[121.269046,30.901679],[121.266168,30.901715],[121.266932,30.906258],[121.262525,30.906835],[121.262122,30.908097],[121.258952,30.907208],[121.255893,30.907977],[121.255226,30.909551],[121.246619,30.9099],[121.243686,30.917855],[121.245507,30.917074],[121.244589,30.920307],[121.242935,30.91991],[121.240655,30.925149],[121.238166,30.924861],[121.234773,30.925978],[121.234495,30.928562],[121.227335,30.926783],[121.222997,30.930748],[121.218145,30.927684],[121.211026,30.92128],[121.207522,30.919886],[121.194828,30.917314],[121.187765,30.916593],[121.186472,30.915404],[121.174654,30.915115],[121.171262,30.914683],[121.16691,30.916978],[121.164616,30.919934],[121.158206,30.920295],[121.156746,30.918961],[121.156288,30.912616],[121.156649,30.909972],[121.152895,30.9102],[121.149836,30.912616],[121.142162,30.915596],[121.143246,30.918108],[121.139061,30.91961],[121.13742,30.913349],[121.14009,30.910332],[121.139673,30.907388],[121.14098,30.904984],[121.141258,30.901331],[121.134417,30.901812],[121.131706,30.899732],[121.130163,30.902593],[121.123545,30.902857],[121.122224,30.901114],[121.118164,30.901487],[121.113451,30.897425],[121.111087,30.899228],[121.110851,30.90103],[121.113506,30.903602],[121.117802,30.910705],[121.119346,30.911991],[121.121445,30.919958],[121.114591,30.921676],[121.110962,30.921749],[121.105122,30.920138],[121.104358,30.922758],[121.100395,30.926459],[121.091358,30.916185],[121.089022,30.915296],[121.089092,30.911979],[121.093805,30.909708],[121.096196,30.910332],[121.098782,30.906607],[121.097128,30.903206],[121.09425,30.902545],[121.094347,30.904804],[121.091664,30.90341],[121.083725,30.905285],[121.081806,30.904251],[121.080833,30.905946],[121.072421,30.904924],[121.072491,30.903182],[121.068973,30.902124],[121.067944,30.904504],[121.056529,30.90335],[121.053026,30.903374],[121.045184,30.901896],[121.04232,30.899408],[121.040874,30.900706],[121.040332,30.904504],[121.038788,30.902148],[121.034395,30.902737],[121.034659,30.90615],[121.025288,30.909059],[121.024885,30.911618],[121.025872,30.91675],[121.028319,30.922602],[121.028694,30.92754],[121.031503,30.936083],[121.031851,30.939771],[121.029612,30.941874],[121.02989,30.944457],[121.028041,30.94394],[121.019462,30.941165],[121.016932,30.941333],[121.017697,30.939219],[121.015291,30.940288],[121.013831,30.944168],[121.011607,30.943604],[121.011079,30.947184],[121.013345,30.946811],[121.015361,30.948169],[121.010175,30.950727],[121.00763,30.947628],[121.002653,30.947015],[121.002055,30.95104],[120.99673,30.950307]]],[[[121.426671,30.682183],[121.426796,30.680315],[121.428589,30.681749],[121.426671,30.682183]]],[[[121.422458,30.691482],[121.419469,30.691626],[121.419482,30.689856],[121.425364,30.687374],[121.428909,30.689109],[121.426615,30.691277],[121.422458,30.691482]]],[[[121.406775,30.704995],[121.406622,30.703093],[121.409291,30.704514],[121.406775,30.704995]]]]}},{"type":"Feature","properties":{"adcode":310117,"name":"松江区","center":[121.223543,31.03047],"centroid":[121.220231,31.015194],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":12,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.323854,31.162933],[121.322491,31.162394],[121.320934,31.158487],[121.318056,31.157564],[121.316221,31.160189],[121.301441,31.15549],[121.295435,31.15392],[121.287134,31.152313],[121.285438,31.153452],[121.28313,31.152158],[121.283825,31.150839],[121.28028,31.150539],[121.277763,31.152265],[121.278723,31.14825],[121.276415,31.145852],[121.277012,31.144174],[121.279293,31.145708],[121.281781,31.142016],[121.284173,31.142627],[121.287482,31.139954],[121.280989,31.133252],[121.265737,31.136393],[121.26557,31.134787],[121.263623,31.135422],[121.26062,31.132269],[121.261607,31.127173],[121.257965,31.127077],[121.258048,31.132353],[121.25378,31.13264],[121.246995,31.134163],[121.245479,31.130758],[121.239348,31.129955],[121.245326,31.129295],[121.244534,31.125398],[121.239848,31.126238],[121.236831,31.125698],[121.235816,31.118959],[121.233884,31.117316],[121.224095,31.115146],[121.221301,31.115074],[121.221732,31.119931],[121.223581,31.126442],[121.226765,31.134139],[121.227988,31.139091],[121.22055,31.138383],[121.208287,31.135686],[121.206174,31.138299],[121.200348,31.137832],[121.201627,31.140937],[121.199653,31.139582],[121.194717,31.138179],[121.181968,31.143478],[121.181662,31.131777],[121.179868,31.131873],[121.180341,31.127425],[121.181842,31.126957],[121.181815,31.124295],[121.183858,31.124295],[121.183817,31.118695],[121.178839,31.117149],[121.17642,31.119007],[121.174321,31.117868],[121.17521,31.115242],[121.172986,31.114091],[121.174487,31.108538],[121.170497,31.109054],[121.170567,31.107819],[121.166451,31.10831],[121.166799,31.104293],[121.1652,31.104269],[121.165492,31.101438],[121.159569,31.100539],[121.154397,31.101846],[121.154341,31.098884],[121.156788,31.098943],[121.156733,31.09315],[121.155384,31.093162],[121.155161,31.090475],[121.153465,31.09014],[121.152867,31.092035],[121.151157,31.091651],[121.149461,31.095297],[121.14586,31.093954],[121.144483,31.097456],[121.141897,31.096893],[121.141605,31.09868],[121.135766,31.09808],[121.133319,31.099075],[121.131942,31.10205],[121.130691,31.100527],[121.127688,31.103309],[121.125505,31.103369],[121.120959,31.107747],[121.117733,31.108874],[121.11612,31.110973],[121.114368,31.109797],[121.112589,31.111932],[121.108751,31.107159],[121.103551,31.102638],[121.103843,31.100539],[121.100618,31.098428],[121.097976,31.099339],[121.099853,31.096593],[121.099519,31.094158],[121.097601,31.093534],[121.10084,31.088688],[121.099408,31.085941],[121.100687,31.080939],[121.102912,31.080219],[121.107264,31.082115],[121.112603,31.077628],[121.117121,31.075624],[121.118386,31.075948],[121.121543,31.07019],[121.122238,31.067178],[121.126228,31.06665],[121.126395,31.059811],[121.127757,31.059751],[121.12588,31.057376],[121.120708,31.057268],[121.117997,31.058407],[121.118206,31.056068],[121.10864,31.05662],[121.10839,31.057939],[121.101813,31.05728],[121.101146,31.053644],[121.098337,31.05662],[121.094639,31.056332],[121.093012,31.058443],[121.094542,31.061899],[121.092929,31.064539],[121.088202,31.064671],[121.085935,31.062847],[121.086519,31.061167],[121.08442,31.058779],[121.080972,31.056896],[121.082404,31.054208],[121.085866,31.050224],[121.087159,31.052948],[121.089926,31.05194],[121.090259,31.048136],[121.09621,31.044812],[121.09311,31.040719],[121.095863,31.040479],[121.097767,31.038871],[121.100284,31.03341],[121.099936,31.031202],[121.096975,31.031454],[121.096405,31.026437],[121.091177,31.025933],[121.089509,31.027901],[121.085532,31.0255],[121.093026,31.020207],[121.10205,31.011756],[121.104205,31.007998],[121.104107,30.99508],[121.100145,30.994935],[121.099227,30.981979],[121.099686,30.980994],[121.099172,30.973068],[121.095557,30.974245],[121.095779,30.968408],[121.097489,30.965634],[121.093555,30.964673],[121.088035,30.964168],[121.088174,30.962151],[121.081236,30.962283],[121.080736,30.960181],[121.078539,30.960025],[121.079109,30.958283],[121.076634,30.957574],[121.076495,30.955809],[121.07231,30.955088],[121.065344,30.95516],[121.060339,30.956517],[121.059505,30.959184],[121.056891,30.96191],[121.05735,30.965346],[121.053262,30.964445],[121.051024,30.969369],[121.047409,30.969033],[121.0467,30.970246],[121.043112,30.969429],[121.045949,30.963448],[121.042626,30.960433],[121.043516,30.957514],[121.040401,30.956493],[121.036258,30.957094],[121.034659,30.952974],[121.033213,30.947111],[121.027902,30.945826],[121.028041,30.94394],[121.02989,30.944457],[121.029612,30.941874],[121.031851,30.939771],[121.031503,30.936083],[121.028694,30.92754],[121.028319,30.922602],[121.025872,30.91675],[121.024885,30.911618],[121.025288,30.909059],[121.034659,30.90615],[121.034395,30.902737],[121.038788,30.902148],[121.040332,30.904504],[121.040874,30.900706],[121.04232,30.899408],[121.045184,30.901896],[121.053026,30.903374],[121.056529,30.90335],[121.067944,30.904504],[121.068973,30.902124],[121.072491,30.903182],[121.072421,30.904924],[121.080833,30.905946],[121.081806,30.904251],[121.083725,30.905285],[121.091664,30.90341],[121.094347,30.904804],[121.09425,30.902545],[121.097128,30.903206],[121.098782,30.906607],[121.096196,30.910332],[121.093805,30.909708],[121.089092,30.911979],[121.089022,30.915296],[121.091358,30.916185],[121.100395,30.926459],[121.104358,30.922758],[121.105122,30.920138],[121.110962,30.921749],[121.114591,30.921676],[121.121445,30.919958],[121.119346,30.911991],[121.117802,30.910705],[121.113506,30.903602],[121.110851,30.90103],[121.111087,30.899228],[121.113451,30.897425],[121.118164,30.901487],[121.122224,30.901114],[121.123545,30.902857],[121.130163,30.902593],[121.131706,30.899732],[121.134417,30.901812],[121.141258,30.901331],[121.14098,30.904984],[121.139673,30.907388],[121.14009,30.910332],[121.13742,30.913349],[121.139061,30.91961],[121.143246,30.918108],[121.142162,30.915596],[121.149836,30.912616],[121.152895,30.9102],[121.156649,30.909972],[121.156288,30.912616],[121.156746,30.918961],[121.158206,30.920295],[121.164616,30.919934],[121.16691,30.916978],[121.171262,30.914683],[121.174654,30.915115],[121.186472,30.915404],[121.187765,30.916593],[121.194828,30.917314],[121.207522,30.919886],[121.211026,30.92128],[121.218145,30.927684],[121.222997,30.930748],[121.227335,30.926783],[121.234495,30.928562],[121.234773,30.925978],[121.238166,30.924861],[121.240655,30.925149],[121.242935,30.91991],[121.244589,30.920307],[121.245507,30.917074],[121.243686,30.917855],[121.246619,30.9099],[121.255226,30.909551],[121.255893,30.907977],[121.258952,30.907208],[121.262122,30.908097],[121.262525,30.906835],[121.266932,30.906258],[121.266168,30.901715],[121.269046,30.901679],[121.270422,30.900165],[121.27298,30.900405],[121.274663,30.896078],[121.279098,30.897112],[121.27964,30.894456],[121.282073,30.894804],[121.28231,30.896571],[121.285257,30.896631],[121.285799,30.895429],[121.288413,30.896066],[121.288719,30.899961],[121.290151,30.900021],[121.291013,30.902677],[121.290068,30.909804],[121.288705,30.909912],[121.288844,30.916894],[121.294948,30.918504],[121.294809,30.914947],[121.296269,30.914959],[121.29848,30.909744],[121.301775,30.908458],[121.303443,30.909287],[121.303721,30.912099],[121.306502,30.912123],[121.306808,30.910212],[121.313829,30.910717],[121.314608,30.909143],[121.320127,30.91109],[121.321518,30.908986],[121.325939,30.908962],[121.327635,30.91014],[121.331097,30.907508],[121.334657,30.907737],[121.336631,30.906739],[121.340162,30.908554],[121.343819,30.909119],[121.347573,30.913145],[121.350604,30.911402],[121.351814,30.913217],[121.355081,30.916341],[121.356054,30.919742],[121.355373,30.921388],[121.352161,30.923803],[121.352203,30.928213],[121.35116,30.930628],[121.355679,30.932058],[121.354706,30.933512],[121.357361,30.933632],[121.359336,30.935086],[121.362658,30.934761],[121.362408,30.939122],[121.361129,30.944048],[121.363868,30.945165],[121.365467,30.947232],[121.362478,30.948901],[121.362255,30.9517],[121.363117,30.956109],[121.362853,30.959544],[121.36099,30.965574],[121.361435,30.970438],[121.359961,30.976251],[121.35871,30.97786],[121.351258,30.975986],[121.34375,30.976599],[121.334406,30.980694],[121.329554,30.981318],[121.327371,30.980658],[121.3258,30.9833],[121.326898,30.989964],[121.326773,30.994479],[121.327482,30.995896],[121.330347,30.996905],[121.33823,31.006197],[121.339829,31.010267],[121.34425,31.013941],[121.34279,31.014817],[121.339898,31.013857],[121.333072,31.01334],[121.333725,31.015657],[121.333892,31.026917],[121.333308,31.030686],[121.334017,31.031922],[121.33367,31.040695],[121.335102,31.04564],[121.335338,31.060435],[121.341456,31.062763],[121.343444,31.059139],[121.35344,31.061287],[121.358195,31.064047],[121.357278,31.066758],[121.363743,31.068354],[121.364424,31.069878],[121.362116,31.072601],[121.364341,31.073705],[121.365481,31.077892],[121.368804,31.079127],[121.370625,31.078372],[121.372016,31.079871],[121.368289,31.088976],[121.362756,31.099771],[121.359085,31.098931],[121.35839,31.100791],[121.351341,31.099255],[121.348532,31.106655],[121.351675,31.107735],[121.352217,31.106487],[121.357014,31.110529],[121.356026,31.112532],[121.353774,31.111512],[121.35066,31.115554],[121.353065,31.117604],[121.349589,31.117748],[121.346753,31.121657],[121.347545,31.121969],[121.34489,31.12577],[121.346002,31.126202],[121.344014,31.129451],[121.344681,31.130338],[121.342095,31.134655],[121.33677,31.138971],[121.338814,31.14017],[121.336728,31.14355],[121.335477,31.143862],[121.333711,31.148765],[121.331292,31.149772],[121.331528,31.15205],[121.328775,31.156665],[121.327218,31.156856],[121.323854,31.162933]]]]}},{"type":"Feature","properties":{"adcode":310118,"name":"青浦区","center":[121.113021,31.151209],"centroid":[121.085188,31.124681],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":13,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.153743,31.276646],[121.150392,31.275437],[121.142996,31.275473],[121.142885,31.277664],[121.141161,31.276742],[121.137601,31.277592],[121.138032,31.278753],[121.131678,31.281363],[121.131053,31.280106],[121.127215,31.281207],[121.124323,31.283111],[121.125018,31.284404],[121.120361,31.286151],[121.11929,31.285122],[121.114994,31.285265],[121.111115,31.281746],[121.106666,31.276706],[121.103829,31.27533],[121.105442,31.273654],[121.09881,31.276251],[121.095404,31.287001],[121.093096,31.28821],[121.090134,31.291909],[121.086909,31.291717],[121.087326,31.290664],[121.084698,31.2876],[121.081361,31.277257],[121.084545,31.275713],[121.082154,31.271535],[121.080416,31.270158],[121.072741,31.26914],[121.068695,31.268098],[121.063245,31.267907],[121.061952,31.257945],[121.060979,31.246486],[121.057669,31.246749],[121.061646,31.24524],[121.064343,31.246138],[121.063565,31.242222],[121.063898,31.238438],[121.061243,31.237827],[121.062605,31.234689],[121.06458,31.232965],[121.067388,31.232929],[121.06718,31.230917],[121.064649,31.230785],[121.064719,31.227275],[121.0628,31.226964],[121.062633,31.224664],[121.065608,31.211871],[121.067805,31.201005],[121.069209,31.196524],[121.066609,31.197183],[121.06679,31.194966],[121.069599,31.195314],[121.070113,31.193612],[121.072185,31.193169],[121.07256,31.191527],[121.070614,31.1913],[121.07035,31.188735],[121.071684,31.185955],[121.068751,31.184889],[121.069474,31.182888],[121.074993,31.184386],[121.075591,31.182852],[121.071225,31.181462],[121.071406,31.179472],[121.074229,31.176225],[121.075424,31.173444],[121.072532,31.172701],[121.072379,31.169609],[121.075466,31.170316],[121.077371,31.16454],[121.07313,31.163257],[121.0737,31.161711],[121.076787,31.162622],[121.07605,31.160536],[121.077023,31.158451],[121.073839,31.157072],[121.072046,31.153512],[121.067777,31.152289],[121.069126,31.148705],[121.06572,31.148597],[121.066067,31.150947],[121.064135,31.150839],[121.062564,31.153129],[121.057378,31.152781],[121.055834,31.150659],[121.050273,31.150719],[121.049133,31.154615],[121.04542,31.154028],[121.045254,31.151582],[121.041472,31.14982],[121.041541,31.146931],[121.044781,31.145528],[121.041819,31.138899],[121.038649,31.136909],[121.036258,31.137376],[121.036119,31.140325],[121.033088,31.142208],[121.028778,31.141249],[121.028375,31.143874],[121.02672,31.143766],[121.025677,31.140769],[121.022271,31.140457],[121.022813,31.138311],[121.018489,31.134103],[121.007269,31.13342],[120.991252,31.13318],[120.983911,31.131705],[120.952642,31.138251],[120.93034,31.141404],[120.916923,31.136189],[120.905397,31.134211],[120.89921,31.136057],[120.881289,31.134727],[120.876422,31.131489],[120.872349,31.127161],[120.871014,31.123804],[120.870597,31.119715],[120.865967,31.11475],[120.862241,31.112508],[120.860225,31.10933],[120.857917,31.108526],[120.856804,31.102829],[120.859766,31.100287],[120.863993,31.100299],[120.865744,31.097624],[120.869582,31.097216],[120.869818,31.098943],[120.872543,31.098884],[120.873169,31.100323],[120.876631,31.099939],[120.876005,31.097864],[120.878967,31.09838],[120.878077,31.095753],[120.887476,31.094074],[120.891021,31.094302],[120.891216,31.09718],[120.892842,31.096533],[120.892175,31.094194],[120.895415,31.090703],[120.896694,31.086649],[120.899294,31.086937],[120.902116,31.085653],[120.901671,31.084094],[120.90473,31.080495],[120.904619,31.078528],[120.899614,31.07836],[120.898863,31.070514],[120.895915,31.063075],[120.894622,31.058659],[120.894567,31.053896],[120.895442,31.050332],[120.897208,31.04822],[120.897027,31.04558],[120.899739,31.039603],[120.901977,31.037647],[120.901338,31.0255],[120.900559,31.020423],[120.901365,31.017494],[120.910055,31.016942],[120.909944,31.012644],[120.911014,31.010555],[120.918105,31.012788],[120.926155,31.010423],[120.92699,31.012068],[120.931383,31.01178],[120.933789,31.010027],[120.938085,31.009007],[120.940087,31.010027],[120.935749,31.015381],[120.936305,31.01711],[120.949972,31.017638],[120.951168,31.024012],[120.948735,31.025068],[120.949124,31.029953],[120.951085,31.029077],[120.952197,31.030254],[120.958301,31.028573],[120.960483,31.021659],[120.964293,31.020771],[120.964849,31.019751],[120.963209,31.016594],[120.970202,31.016149],[120.982993,31.016089],[120.983855,31.014445],[120.989514,31.014397],[120.989987,31.010495],[120.991933,31.008154],[120.991057,31.00747],[120.992086,31.003424],[120.992045,30.997109],[120.989834,30.996664],[120.990515,30.994551],[120.994839,30.99526],[120.994603,30.991922],[120.997133,30.989232],[120.999344,30.980106],[121.000832,30.980466],[121.002361,30.97762],[121.000567,30.977007],[121.000512,30.973933],[120.99737,30.972444],[120.993143,30.972119],[120.991433,30.968372],[120.993699,30.964024],[120.992601,30.962835],[120.994756,30.958703],[120.991683,30.958211],[120.992531,30.955028],[120.994797,30.954824],[120.995368,30.950367],[120.99673,30.950307],[121.002055,30.95104],[121.002653,30.947015],[121.00763,30.947628],[121.010175,30.950727],[121.015361,30.948169],[121.013345,30.946811],[121.011079,30.947184],[121.011607,30.943604],[121.013831,30.944168],[121.015291,30.940288],[121.017697,30.939219],[121.016932,30.941333],[121.019462,30.941165],[121.028041,30.94394],[121.027902,30.945826],[121.033213,30.947111],[121.034659,30.952974],[121.036258,30.957094],[121.040401,30.956493],[121.043516,30.957514],[121.042626,30.960433],[121.045949,30.963448],[121.043112,30.969429],[121.0467,30.970246],[121.047409,30.969033],[121.051024,30.969369],[121.053262,30.964445],[121.05735,30.965346],[121.056891,30.96191],[121.059505,30.959184],[121.060339,30.956517],[121.065344,30.95516],[121.07231,30.955088],[121.076495,30.955809],[121.076634,30.957574],[121.079109,30.958283],[121.078539,30.960025],[121.080736,30.960181],[121.081236,30.962283],[121.088174,30.962151],[121.088035,30.964168],[121.093555,30.964673],[121.097489,30.965634],[121.095779,30.968408],[121.095557,30.974245],[121.099172,30.973068],[121.099686,30.980994],[121.099227,30.981979],[121.100145,30.994935],[121.104107,30.99508],[121.104205,31.007998],[121.10205,31.011756],[121.093026,31.020207],[121.085532,31.0255],[121.089509,31.027901],[121.091177,31.025933],[121.096405,31.026437],[121.096975,31.031454],[121.099936,31.031202],[121.100284,31.03341],[121.097767,31.038871],[121.095863,31.040479],[121.09311,31.040719],[121.09621,31.044812],[121.090259,31.048136],[121.089926,31.05194],[121.087159,31.052948],[121.085866,31.050224],[121.082404,31.054208],[121.080972,31.056896],[121.08442,31.058779],[121.086519,31.061167],[121.085935,31.062847],[121.088202,31.064671],[121.092929,31.064539],[121.094542,31.061899],[121.093012,31.058443],[121.094639,31.056332],[121.098337,31.05662],[121.101146,31.053644],[121.101813,31.05728],[121.10839,31.057939],[121.10864,31.05662],[121.118206,31.056068],[121.117997,31.058407],[121.120708,31.057268],[121.12588,31.057376],[121.127757,31.059751],[121.126395,31.059811],[121.126228,31.06665],[121.122238,31.067178],[121.121543,31.07019],[121.118386,31.075948],[121.117121,31.075624],[121.112603,31.077628],[121.107264,31.082115],[121.102912,31.080219],[121.100687,31.080939],[121.099408,31.085941],[121.10084,31.088688],[121.097601,31.093534],[121.099519,31.094158],[121.099853,31.096593],[121.097976,31.099339],[121.100618,31.098428],[121.103843,31.100539],[121.103551,31.102638],[121.108751,31.107159],[121.112589,31.111932],[121.114368,31.109797],[121.11612,31.110973],[121.117733,31.108874],[121.120959,31.107747],[121.125505,31.103369],[121.127688,31.103309],[121.130691,31.100527],[121.131942,31.10205],[121.133319,31.099075],[121.135766,31.09808],[121.141605,31.09868],[121.141897,31.096893],[121.144483,31.097456],[121.14586,31.093954],[121.149461,31.095297],[121.151157,31.091651],[121.152867,31.092035],[121.153465,31.09014],[121.155161,31.090475],[121.155384,31.093162],[121.156733,31.09315],[121.156788,31.098943],[121.154341,31.098884],[121.154397,31.101846],[121.159569,31.100539],[121.165492,31.101438],[121.1652,31.104269],[121.166799,31.104293],[121.166451,31.10831],[121.170567,31.107819],[121.170497,31.109054],[121.174487,31.108538],[121.172986,31.114091],[121.17521,31.115242],[121.174321,31.117868],[121.17642,31.119007],[121.178839,31.117149],[121.183817,31.118695],[121.183858,31.124295],[121.181815,31.124295],[121.181842,31.126957],[121.180341,31.127425],[121.179868,31.131873],[121.181662,31.131777],[121.181968,31.143478],[121.194717,31.138179],[121.199653,31.139582],[121.201627,31.140937],[121.200348,31.137832],[121.206174,31.138299],[121.208287,31.135686],[121.22055,31.138383],[121.227988,31.139091],[121.226765,31.134139],[121.223581,31.126442],[121.221732,31.119931],[121.221301,31.115074],[121.224095,31.115146],[121.233884,31.117316],[121.235816,31.118959],[121.236831,31.125698],[121.239848,31.126238],[121.244534,31.125398],[121.245326,31.129295],[121.239348,31.129955],[121.245479,31.130758],[121.246995,31.134163],[121.25378,31.13264],[121.258048,31.132353],[121.257965,31.127077],[121.261607,31.127173],[121.26062,31.132269],[121.263623,31.135422],[121.26557,31.134787],[121.265737,31.136393],[121.280989,31.133252],[121.287482,31.139954],[121.284173,31.142627],[121.281781,31.142016],[121.279293,31.145708],[121.277012,31.144174],[121.276415,31.145852],[121.278723,31.14825],[121.277763,31.152265],[121.28028,31.150539],[121.283825,31.150839],[121.28313,31.152158],[121.285438,31.153452],[121.287134,31.152313],[121.295435,31.15392],[121.301441,31.15549],[121.316221,31.160189],[121.318056,31.157564],[121.320934,31.158487],[121.322491,31.162394],[121.323854,31.162933],[121.318584,31.170256],[121.318042,31.173624],[121.316304,31.176836],[121.310784,31.18423],[121.30856,31.188388],[121.300565,31.197027],[121.297506,31.201412],[121.294837,31.203077],[121.292431,31.202514],[121.292126,31.200621],[121.287329,31.196332],[121.284034,31.194391],[121.277388,31.193576],[121.271701,31.198309],[121.266724,31.203257],[121.264777,31.203317],[121.263053,31.205701],[121.26468,31.206731],[121.263846,31.208912],[121.259397,31.212769],[121.261218,31.215081],[121.259675,31.218148],[121.25745,31.220208],[121.258215,31.222772],[121.256588,31.226329],[121.258006,31.226868],[121.257158,31.230701],[121.254155,31.23312],[121.252792,31.236965],[121.251082,31.238198],[121.249692,31.236534],[121.247912,31.240917],[121.241391,31.240222],[121.239932,31.241061],[121.241683,31.247348],[121.24591,31.248821],[121.247314,31.253287],[121.254183,31.258688],[121.246758,31.258448],[121.246577,31.259801],[121.242253,31.25937],[121.237693,31.262088],[121.235177,31.262699],[121.229087,31.262711],[121.229198,31.261717],[121.223539,31.260532],[121.223859,31.259035],[121.220216,31.257406],[121.221273,31.256293],[121.214182,31.254353],[121.212625,31.259837],[121.209761,31.260831],[121.209816,31.258017],[121.208482,31.25749],[121.206368,31.260065],[121.202865,31.257131],[121.203143,31.255814],[121.199848,31.255239],[121.19608,31.253395],[121.19626,31.251228],[121.193368,31.251455],[121.193021,31.253623],[121.188377,31.25476],[121.186444,31.252329],[121.183928,31.252246],[121.181537,31.254413],[121.17934,31.253419],[121.178798,31.255862],[121.176768,31.254605],[121.174251,31.256856],[121.171415,31.254928],[121.16894,31.256197],[121.170386,31.259119],[121.168036,31.259622],[121.167661,31.263944],[121.162614,31.269176],[121.161057,31.26762],[121.157845,31.270541],[121.155537,31.266147],[121.151783,31.267632],[121.153924,31.272061],[121.153743,31.276646]]]]}},{"type":"Feature","properties":{"adcode":310120,"name":"奉贤区","center":[121.458472,30.912345],"centroid":[121.56251,30.897998],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":14,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.570475,30.998345],[121.561494,30.995644],[121.555918,30.995152],[121.556224,30.993374],[121.553304,30.993026],[121.55279,30.98886],[121.549537,30.988307],[121.54613,30.99305],[121.543294,30.994203],[121.538233,30.993146],[121.537774,30.994683],[121.534507,30.995848],[121.531962,30.994815],[121.528612,30.99592],[121.522897,30.99981],[121.520325,30.999354],[121.520089,31.00256],[121.522105,31.002199],[121.520853,31.004445],[121.517002,31.007626],[121.510412,31.004553],[121.507881,31.004745],[121.503057,31.002716],[121.49883,30.999426],[121.498872,30.998213],[121.495924,30.998297],[121.491948,31.010039],[121.492879,31.012752],[121.489153,31.014949],[121.485872,31.014073],[121.476362,31.01334],[121.47144,31.011948],[121.465587,31.008755],[121.459942,31.007398],[121.448305,31.007458],[121.440811,31.005789],[121.436834,31.00406],[121.433636,31.001779],[121.431426,30.999174],[121.423973,30.994515],[121.413184,30.991069],[121.409333,30.990229],[121.394261,30.988247],[121.375227,30.982832],[121.35871,30.97786],[121.359961,30.976251],[121.361435,30.970438],[121.36099,30.965574],[121.362853,30.959544],[121.363117,30.956109],[121.362255,30.9517],[121.362478,30.948901],[121.365467,30.947232],[121.363868,30.945165],[121.361129,30.944048],[121.362408,30.939122],[121.362658,30.934761],[121.359336,30.935086],[121.357361,30.933632],[121.354706,30.933512],[121.355679,30.932058],[121.35116,30.930628],[121.352203,30.928213],[121.352161,30.923803],[121.355373,30.921388],[121.356054,30.919742],[121.355081,30.916341],[121.351814,30.913217],[121.35668,30.908614],[121.358418,30.900598],[121.360476,30.897785],[121.361185,30.892977],[121.36327,30.886955],[121.367233,30.886667],[121.370166,30.883914],[121.371751,30.883698],[121.377535,30.879983],[121.382207,30.878961],[121.381498,30.876605],[121.382791,30.874489],[121.38286,30.869043],[121.381873,30.867324],[121.381929,30.863765],[121.384001,30.863488],[121.383472,30.859232],[121.384376,30.856238],[121.383722,30.851765],[121.384918,30.848073],[121.385446,30.843178],[121.379065,30.843238],[121.379259,30.840112],[121.383764,30.833906],[121.387588,30.832799],[121.387588,30.829864],[121.391717,30.829913],[121.392051,30.82782],[121.396986,30.827988],[121.397376,30.833292],[121.399712,30.834182],[121.404202,30.833797],[121.403632,30.829877],[121.400685,30.830105],[121.400991,30.827399],[121.404786,30.823081],[121.41235,30.821505],[121.414171,30.821757],[121.41552,30.819941],[121.415131,30.815803],[121.419288,30.81602],[121.420525,30.819797],[121.425989,30.81869],[121.437029,30.818101],[121.441645,30.806829],[121.445427,30.804868],[121.44672,30.805577],[121.451711,30.798323],[121.465072,30.776483],[121.478767,30.756347],[121.517197,30.775387],[121.552832,30.789395],[121.601327,30.805084],[121.648419,30.8162],[121.68119,30.818401],[121.727071,30.817716],[121.77914,30.817222],[121.793767,30.816862],[121.769338,30.85043],[121.768143,30.863272],[121.771605,30.875427],[121.772481,30.875703],[121.773134,30.880596],[121.776679,30.881005],[121.776012,30.886426],[121.778807,30.894588],[121.778987,30.899468],[121.778334,30.903807],[121.77896,30.910116],[121.780239,30.911811],[121.781115,30.917567],[121.777653,30.926723],[121.777806,30.931025],[121.77337,30.931553],[121.773023,30.933932],[121.769769,30.935278],[121.76799,30.93833],[121.766432,30.936539],[121.763846,30.936852],[121.764277,30.938522],[121.761469,30.938414],[121.761677,30.940132],[121.764542,30.941766],[121.760927,30.944613],[121.761024,30.947604],[121.759286,30.949154],[121.751987,30.952721],[121.749234,30.953046],[121.747857,30.951893],[121.743742,30.956589],[121.739988,30.956721],[121.73686,30.958703],[121.737916,30.960637],[121.733954,30.964469],[121.73191,30.967784],[121.712792,30.980934],[121.705507,30.984981],[121.699459,30.987419],[121.69298,30.98934],[121.688086,30.990145],[121.683595,30.989808],[121.674558,30.991802],[121.673348,30.989832],[121.669525,30.991609],[121.663115,30.992714],[121.654536,30.993254],[121.646695,30.99335],[121.62057,30.992678],[121.61772,30.995692],[121.614717,31.001251],[121.604066,31.001131],[121.595585,31.002043],[121.594682,31.000699],[121.584309,31.000819],[121.582933,30.999498],[121.576746,30.999474],[121.570475,30.998345]]]]}},{"type":"Feature","properties":{"adcode":310151,"name":"崇明区","center":[121.397516,31.626946],"centroid":[121.568484,31.635916],"childrenNum":0,"level":"district","parent":{"adcode":310000},"subFeatureIndex":15,"acroutes":[100000,310000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.975181,31.617034],[121.887616,31.63638],[121.817806,31.652025],[121.715267,31.673842],[121.642649,31.697454],[121.633278,31.696167],[121.627341,31.697776],[121.611755,31.704283],[121.602746,31.70694],[121.60091,31.707],[121.599659,31.703115],[121.593249,31.705379],[121.592262,31.706487],[121.578539,31.710527],[121.565025,31.716711],[121.551386,31.727386],[121.549509,31.726969],[121.540124,31.733307],[121.539429,31.735499],[121.528361,31.738347],[121.526693,31.740217],[121.514986,31.742873],[121.51304,31.743695],[121.498566,31.75326],[121.487749,31.753415],[121.476807,31.756142],[121.464141,31.757142],[121.455576,31.759346],[121.449751,31.761668],[121.445385,31.7643],[121.431481,31.769266],[121.425781,31.774267],[121.420915,31.779602],[121.410904,31.79558],[121.416312,31.79764],[121.411488,31.806341],[121.405468,31.809841],[121.399142,31.817483],[121.395388,31.821291],[121.385043,31.833525],[121.376381,31.838571],[121.369291,31.843283],[121.323061,31.868529],[121.315859,31.871479],[121.310367,31.872502],[121.3019,31.872716],[121.291166,31.870992],[121.281336,31.869041],[121.265584,31.864128],[121.252111,31.857727],[121.242073,31.853397],[121.225305,31.847043],[121.200334,31.835144],[121.181509,31.820411],[121.149225,31.787294],[121.118498,31.759084],[121.142064,31.755308],[121.145332,31.753927],[121.179868,31.720774],[121.289109,31.616283],[121.345585,31.571685],[121.37221,31.55321],[121.395457,31.585444],[121.403521,31.590002],[121.414797,31.591076],[121.43422,31.590336],[121.471176,31.57443],[121.547673,31.531125],[121.608794,31.50691],[121.617678,31.503673],[121.625784,31.501775],[121.638645,31.49972],[121.670609,31.494214],[121.682858,31.491061],[121.72988,31.471973],[121.763443,31.458233],[121.819183,31.438206],[121.834212,31.433975],[121.845377,31.431895],[121.857807,31.430043],[121.87299,31.429338],[121.882096,31.428656],[121.89055,31.428788],[121.901144,31.430126],[121.918051,31.434692],[121.934304,31.442364],[121.967284,31.456656],[121.981813,31.4641],[121.991698,31.476763],[121.995716,31.493104],[121.993867,31.51189],[121.98825,31.529597],[121.975181,31.617034]]],[[[121.778862,31.310196],[121.785494,31.311058],[121.791042,31.308353],[121.796701,31.30736],[121.798772,31.310352],[121.795866,31.329976],[121.796478,31.33542],[121.796005,31.345624],[121.793002,31.355074],[121.792377,31.363304],[121.790875,31.367059],[121.787886,31.37164],[121.780572,31.380154],[121.774135,31.386982],[121.76938,31.390749],[121.760857,31.395185],[121.753725,31.400362],[121.742185,31.407212],[121.737485,31.408814],[121.729296,31.410356],[121.723707,31.412364],[121.708316,31.419728],[121.697193,31.423995],[121.688294,31.425883],[121.673835,31.427748],[121.621752,31.444145],[121.606319,31.449403],[121.599812,31.450681],[121.585561,31.454672],[121.58303,31.456262],[121.575828,31.463813],[121.572811,31.469452],[121.567347,31.4835],[121.562356,31.486367],[121.549926,31.489747],[121.521132,31.493976],[121.516933,31.494298],[121.513457,31.493355],[121.509355,31.489795],[121.509105,31.485352],[121.510134,31.482581],[121.516849,31.477313],[121.529515,31.471172],[121.537413,31.466704],[121.54328,31.462403],[121.549773,31.457062],[121.558463,31.448793],[121.572255,31.436066],[121.590371,31.427545],[121.601425,31.421855],[121.641036,31.401115],[121.686682,31.376591],[121.727933,31.354799],[121.740766,31.346486],[121.744659,31.343675],[121.751166,31.337801],[121.76076,31.320344],[121.76425,31.315306],[121.770951,31.31168],[121.778862,31.310196]]],[[[122.242018,31.419082],[122.243562,31.417839],[122.247149,31.419333],[122.245369,31.421318],[122.242018,31.419082]]],[[[121.801775,31.356976],[121.802693,31.342789],[121.803152,31.332106],[121.80375,31.328445],[121.806642,31.324173],[121.81319,31.316228],[121.822617,31.307372],[121.832043,31.301711],[121.833601,31.299653],[121.840566,31.29544],[121.852885,31.292364],[121.856681,31.292818],[121.860782,31.294949],[121.865968,31.294937],[121.88959,31.292028],[121.900755,31.291167],[121.932261,31.283147],[121.975779,31.279998],[122.016447,31.282285],[122.072005,31.266829],[122.087285,31.257538],[122.097769,31.255658],[122.105207,31.262136],[122.122684,31.307205],[122.121975,31.315438],[122.116678,31.321229],[122.078012,31.323527],[122.04107,31.323814],[122.001556,31.329246],[121.951726,31.337274],[121.913074,31.350445],[121.870376,31.366007],[121.858516,31.369379],[121.852885,31.371376],[121.845586,31.374582],[121.831752,31.375526],[121.828401,31.376447],[121.824744,31.378588],[121.817445,31.380585],[121.803458,31.381219],[121.796756,31.381075],[121.793864,31.380477],[121.792808,31.377571],[121.797674,31.369642],[121.800566,31.363997],[121.801775,31.356976]]],[[[121.627049,31.444993],[121.631512,31.445101],[121.634001,31.445937],[121.636295,31.449881],[121.635044,31.452988],[121.631609,31.456823],[121.625172,31.462212],[121.61366,31.471339],[121.608571,31.474446],[121.602134,31.476835],[121.595293,31.478292],[121.586896,31.479535],[121.577149,31.479343],[121.575814,31.478197],[121.57612,31.474768],[121.577886,31.472486],[121.58627,31.464076],[121.594153,31.458568],[121.613855,31.447885],[121.616872,31.446643],[121.627049,31.444993]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"虹口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.487345,31.2438430000001],[121.477345,31.2438430000001],[121.474801054688,31.2612990546876],[121.454801054688,31.2815334296875],[121.459888945313,31.3112990546875],[121.467345,31.3138430000001],[121.477345,31.3138430000001],[121.493565703125,31.2892946601563],[121.491124296875,31.2783913398438],[121.507345,31.253843],[121.487345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"嘉定区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.297345,31.493843],[121.314820585938,31.4826540351563],[121.310870390625,31.4686037421876],[121.331041289063,31.4226100898438],[121.310465117188,31.4094362617188],[121.333443632813,31.3599391914063],[121.337345,31.303843],[121.327345,31.303843],[121.327345,31.293843],[121.33224734375,31.2787429023438],[121.381402617188,31.2548952460938],[121.347345,31.2438430000001],[121.337345,31.2438430000001],[121.304039335938,31.2316115546876],[121.247345,31.263843],[121.212379179688,31.2580983710938],[121.202345,31.2595827460938],[121.17568484375,31.2556423164063],[121.147345,31.273843],[121.143985625,31.3004836250001],[121.117486601563,31.3138893867188],[121.129185820313,31.3378517890625],[121.110704375,31.3472023750001],[121.107345,31.363843],[121.11326296875,31.3679274726563],[121.12142703125,31.3797585273438],[121.149283476563,31.390180890625],[121.153468046875,31.408843],[121.151221953125,31.418843],[121.15361453125,31.4295143867187],[121.133829375,31.4431740546876],[121.17326296875,31.4579274726563],[121.19142703125,31.4697585273438],[121.22326296875,31.4779274726562],[121.231676054688,31.4901149726563],[121.258072539063,31.4841970039063],[121.297345,31.493843]]]]}},{"type":"Feature","properties":{"name":"闵行区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.247345,31.263843],[121.304039335938,31.2316115546876],[121.337345,31.2438430000001],[121.331529570313,31.1847170234376],[121.407345,31.193843],[121.40326296875,31.1879274726563],[121.385416289063,31.1756056953125],[121.41142703125,31.1379274726563],[121.43326296875,31.1297585273438],[121.449439726563,31.1063234687501],[121.467345,31.113843],[121.4890246875,31.1229494453125],[121.512345,31.1177223945313],[121.524620390625,31.120473859375],[121.555709257813,31.108843],[121.55107546875,31.0881716132813],[121.564586210938,31.078843],[121.537862578125,31.0603908515625],[121.5560559375,31.0478273750001],[121.567345,31.003843],[121.54009890625,30.9931325507813],[121.512735625,31.0096388984375],[121.497345,31.0073659492187],[121.44982546875,31.0143874335938],[121.415592070313,30.9937380195313],[121.357345,30.983843],[121.342584257813,30.978423078125],[121.321241484375,30.9801369453126],[121.327432890625,31.0571901679688],[121.35271609375,31.0684719062501],[121.365811796875,31.0836696601563],[121.324537382813,31.1576491523438],[121.317345,31.1638430000001],[121.297257109375,31.2019289375],[121.266383085938,31.1923146796876],[121.253531523438,31.2300295234376],[121.2405090625,31.2485817695313],[121.247345,31.263843]]]]}},{"type":"Feature","properties":{"name":"宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.337345,31.303843],[121.337345,31.293843],[121.327345,31.293843],[121.327345,31.303843],[121.337345,31.303843]]],[[[121.337345,31.303843],[121.333443632813,31.3599391914063],[121.310465117188,31.4094362617188],[121.331041289063,31.4226100898438],[121.310870390625,31.4686037421876],[121.314820585938,31.4826540351563],[121.297345,31.493843],[121.30142703125,31.4997585273438],[121.334176054688,31.5120119453125],[121.37267703125,31.5370827460938],[121.377345,31.5438430000001],[121.39345828125,31.5299587226563],[121.45619265625,31.4571462226563],[121.53271609375,31.4092140937501],[121.537345,31.403843],[121.492818632813,31.3774098945313],[121.517345,31.3538430000001],[121.513985625,31.3472023750001],[121.500704375,31.340483625],[121.49062625,31.3205617500001],[121.477345,31.3138430000001],[121.467345,31.3138430000001],[121.463985625,31.320483625],[121.4341028125,31.327202375],[121.417315703125,31.29401878125],[121.427345,31.273843],[121.411842070313,31.2673317695313],[121.397008085938,31.2888137031251],[121.337345,31.303843]]]]}},{"type":"Feature","properties":{"name":"长宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.347345,31.2438430000001],[121.366031523438,31.2196364570313],[121.427345,31.233843],[121.437345,31.213843],[121.407345,31.193843],[121.331529570313,31.1847170234376],[121.337345,31.2438430000001],[121.347345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"奉贤区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.44982546875,31.0143874335938],[121.497345,31.0073659492187],[121.512735625,31.0096388984375],[121.54009890625,30.9931325507813],[121.567345,31.003843],[121.6995325,30.9903591132813],[121.7766028125,30.93073753125],[121.767345,30.853843],[121.649400664063,30.8439846015625],[121.5730871875,30.8230983710938],[121.51197390625,30.8092140937501],[121.4772278125,30.789829328125],[121.457345,30.7838430000001],[121.431715117188,30.8220632148437],[121.411900664063,30.817622296875],[121.381534453125,30.8373952460938],[121.37326296875,30.8797585273438],[121.3541028125,30.90917503125],[121.347345,30.913843],[121.35326296875,30.9379274726563],[121.357345,30.983843],[121.415592070313,30.9937380195313],[121.44982546875,31.0143874335938]]]]}},{"type":"Feature","properties":{"name":"金山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.027345,30.9438430000001],[121.032491484375,30.8996681953125],[121.093487578125,30.9080617500001],[121.089542265625,30.9280178046876],[121.113472929688,30.9195607734375],[121.1104309375,30.9041481757813],[121.162647734375,30.9200099921875],[121.230484648438,30.9334157539063],[121.2427746875,30.9162673164063],[121.279527617188,30.892934796875],[121.291519804688,30.9096681953126],[121.347345,30.913843],[121.3541028125,30.90917503125],[121.37326296875,30.8797585273438],[121.381534453125,30.8373952460938],[121.411900664063,30.817622296875],[121.431715117188,30.8220632148437],[121.457345,30.7838430000001],[121.406553984375,30.7632033515625],[121.35181765625,30.7194264960938],[121.341690703125,30.7067800117188],[121.267345,30.693843],[121.262496367188,30.7364772773438],[121.23142703125,30.7579274726563],[121.21435671875,30.7826564765625],[121.192345,30.7777223945313],[121.182345,30.7799636054688],[121.167345,30.7766017890625],[121.116549101563,30.7879885078126],[121.124586210938,30.8238430000001],[121.11978640625,30.8452516914063],[121.09697390625,30.861001203125],[121.0641028125,30.8536330390626],[121.05326296875,30.8379274726563],[121.04142703125,30.8297585273438],[121.03326296875,30.8179274726563],[121.027345,30.813843],[121.0222278125,30.8308425117188],[120.985660429688,30.8279055],[121.014303007813,30.879233625],[120.991905546875,30.8985280585938],[120.997345,30.953843],[121.010704375,30.947202375],[121.027345,30.9438430000001]]]]}},{"type":"Feature","properties":{"name":"静安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457345,31.223843],[121.437345,31.213843],[121.427345,31.233843],[121.447345,31.2438430000001],[121.457345,31.2438430000001],[121.465289335938,31.2278615546875],[121.457345,31.223843]]]]}},{"type":"Feature","properties":{"name":"普陀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.397008085938,31.2888137031251],[121.411842070313,31.2673317695313],[121.427345,31.273843],[121.44287234375,31.2659865546875],[121.447345,31.2438430000001],[121.427345,31.233843],[121.366031523438,31.2196364570313],[121.347345,31.2438430000001],[121.381402617188,31.2548952460938],[121.33224734375,31.2787429023438],[121.327345,31.293843],[121.337345,31.293843],[121.337345,31.303843],[121.397008085938,31.2888137031251]]]]}},{"type":"Feature","properties":{"name":"青浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.087345,31.0538430000001],[121.083922148438,31.0660353828126],[121.075152617188,31.0572658515625],[121.097613554688,30.97163596875],[121.0622278125,30.9580324531251],[121.042066679688,30.9698830390625],[121.027345,30.9438430000001],[121.010704375,30.947202375],[120.997345,30.953843],[120.985504179688,30.9598342109375],[120.9972278125,30.983843],[120.984254179688,31.0104055],[120.960704375,31.017202375],[120.953326445313,31.0317873359376],[120.917345,31.01390159375],[120.897345,31.023843],[120.8916028125,31.0588088203125],[120.895064726563,31.0822634101563],[120.85170046875,31.10819846875],[120.847345,31.113843],[120.8819153125,31.1396462226562],[120.902345,31.136626203125],[120.942345,31.1425368476563],[120.9976575,31.1343630195313],[121.07500125,31.162583234375],[121.05298953125,31.23808128125],[121.06170046875,31.2694875312501],[121.07298953125,31.27819846875],[121.081866484375,31.289702375],[121.14170046875,31.27819846875],[121.147345,31.273843],[121.17568484375,31.2556423164063],[121.202345,31.2595827460938],[121.212379179688,31.2580983710938],[121.247345,31.263843],[121.2405090625,31.2485817695313],[121.253531523438,31.2300295234376],[121.266383085938,31.1923146796876],[121.297257109375,31.2019289375],[121.317345,31.1638430000001],[121.2860559375,31.1551296210938],[121.27298953125,31.1381984687501],[121.23170046875,31.12948753125],[121.2221496875,31.1171096015625],[121.212916289063,31.1396657539063],[121.202345,31.1381032539063],[121.182857695313,31.1409841132813],[121.147940703125,31.095747296875],[121.112369414063,31.109731671875],[121.09298953125,31.102641828125],[121.120592070313,31.0568849921875],[121.10205203125,31.05962425],[121.087345,31.0538430000001]]]]}},{"type":"Feature","properties":{"name":"松江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.087345,31.0538430000001],[121.075152617188,31.0572658515625],[121.083922148438,31.0660353828126],[121.087345,31.0538430000001]]],[[[121.087345,31.0538430000001],[121.10205203125,31.05962425],[121.120592070313,31.0568849921875],[121.09298953125,31.102641828125],[121.112369414063,31.109731671875],[121.147940703125,31.095747296875],[121.182857695313,31.1409841132813],[121.202345,31.1381032539063],[121.212916289063,31.1396657539063],[121.2221496875,31.1171096015625],[121.23170046875,31.12948753125],[121.27298953125,31.1381984687501],[121.2860559375,31.1551296210938],[121.317345,31.1638430000001],[121.324537382813,31.1576491523438],[121.365811796875,31.0836696601563],[121.35271609375,31.0684719062501],[121.327432890625,31.0571901679688],[121.321241484375,30.9801369453126],[121.342584257813,30.978423078125],[121.357345,30.983843],[121.35326296875,30.9379274726563],[121.347345,30.913843],[121.291519804688,30.9096681953126],[121.279527617188,30.892934796875],[121.2427746875,30.9162673164063],[121.230484648438,30.9334157539063],[121.162647734375,30.9200099921875],[121.1104309375,30.9041481757813],[121.113472929688,30.9195607734375],[121.089542265625,30.9280178046876],[121.093487578125,30.9080617500001],[121.032491484375,30.8996681953125],[121.027345,30.9438430000001],[121.042066679688,30.9698830390625],[121.0622278125,30.9580324531251],[121.097613554688,30.97163596875],[121.087345,31.0538430000001]]]]}},{"type":"Feature","properties":{"name":"徐汇区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.467345,31.113843],[121.449439726563,31.1063234687501],[121.43326296875,31.1297585273438],[121.41142703125,31.1379274726563],[121.385416289063,31.1756056953125],[121.40326296875,31.1879274726563],[121.407345,31.193843],[121.437345,31.213843],[121.457345,31.223843],[121.460704375,31.207202375],[121.467345,31.193843],[121.461163359375,31.1791213203125],[121.464586210938,31.1638430000001],[121.4600403125,31.1435720039063],[121.467345,31.113843]]]]}},{"type":"Feature","properties":{"name":"杨浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.54326296875,31.2579274726563],[121.507345,31.253843],[121.491124296875,31.2783913398438],[121.493565703125,31.2892946601563],[121.477345,31.3138430000001],[121.49062625,31.3205617500001],[121.500704375,31.340483625],[121.513985625,31.3472023750001],[121.517345,31.3538430000001],[121.553272734375,31.3343190742187],[121.566939726563,31.2733473945313],[121.54326296875,31.2579274726563]]]]}},{"type":"Feature","properties":{"name":"闸北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457345,31.2438430000001],[121.447345,31.2438430000001],[121.44287234375,31.2659865546875],[121.427345,31.273843],[121.417315703125,31.29401878125],[121.4341028125,31.327202375],[121.463985625,31.320483625],[121.467345,31.3138430000001],[121.459888945313,31.3112990546875],[121.454801054688,31.2815334296875],[121.474801054688,31.2612990546876],[121.477345,31.2438430000001],[121.457345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"黄浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.49326296875,31.1979274726563],[121.467345,31.193843],[121.460704375,31.207202375],[121.457345,31.223843],[121.465289335938,31.2278615546875],[121.457345,31.2438430000001],[121.477345,31.2438430000001],[121.487345,31.2438430000001],[121.5057434375,31.2160036445312],[121.49326296875,31.1979274726563]]]]}},{"type":"Feature","properties":{"name":"浦东新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.787447539063,31.1987868476563],[121.886827421875,31.0827370429688],[121.949600859375,30.9821681953126],[121.98197390625,30.8940090156251],[121.958990507813,30.87546409375],[121.883057890625,30.8475807929688],[121.857345,30.8496462226563],[121.815875273438,30.846313703125],[121.767345,30.853843],[121.7766028125,30.93073753125],[121.6995325,30.9903591132813],[121.567345,31.003843],[121.5560559375,31.0478273750001],[121.537862578125,31.0603908515625],[121.564586210938,31.078843],[121.55107546875,31.0881716132813],[121.555709257813,31.108843],[121.524620390625,31.120473859375],[121.512345,31.1177223945313],[121.4890246875,31.1229494453125],[121.467345,31.113843],[121.4600403125,31.1435720039063],[121.464586210938,31.1638430000001],[121.461163359375,31.1791213203125],[121.467345,31.193843],[121.49326296875,31.1979274726563],[121.5057434375,31.2160036445312],[121.487345,31.2438430000001],[121.507345,31.253843],[121.54326296875,31.2579274726563],[121.566939726563,31.2733473945313],[121.553272734375,31.3343190742187],[121.517345,31.3538430000001],[121.492818632813,31.3774098945313],[121.537345,31.403843],[121.553531523438,31.4000295234375],[121.702447539063,31.3270217109375],[121.821158476563,31.2876564765625],[121.847345,31.2838430000001],[121.841676054688,31.2405055976562],[121.77271609375,31.2248390937501],[121.787447539063,31.1987868476563]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇明县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.50271609375,31.74921409375],[121.592086210938,31.7084206367188],[121.602584257813,31.709262921875],[121.632105742188,31.698423078125],[121.642564726563,31.699262921875],[121.783448515625,31.6548537421875],[121.877345,31.633843],[121.88232546875,31.5940407539063],[121.951314726563,31.5521364570312],[121.957056914063,31.5059694648438],[121.921920195313,31.4620900703125],[121.883863554688,31.4460549140625],[121.876749296875,31.3888430000001],[121.8837121875,31.3328664375],[121.847345,31.2838430000001],[121.821158476563,31.2876564765625],[121.702447539063,31.3270217109375],[121.553531523438,31.4000295234375],[121.537345,31.403843],[121.53271609375,31.4092140937501],[121.45619265625,31.4571462226563],[121.39345828125,31.5299587226563],[121.377345,31.5438430000001],[121.37326296875,31.5497585273438],[121.33142703125,31.5779274726563],[121.23326296875,31.6697585273438],[121.119918242188,31.7456349921876],[121.107345,31.763843],[121.11181765625,31.7694264960937],[121.192081328125,31.8336208320313],[121.27218875,31.8682009101562],[121.321783476563,31.87437034375],[121.387784453125,31.8342800117187],[121.421793242188,31.7782888007813],[121.437345,31.7738430000001],[121.443096953125,31.7671633125001],[121.50271609375,31.74921409375]]]]}}]}
  1 +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":320100,"name":"南京市","center":[118.767413,32.041544],"centroid":[118.847868,31.927726],"childrenNum":11,"level":"city","parent":{"adcode":320000},"subFeatureIndex":0,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.067452,32.462398],[119.062793,32.484576],[119.050502,32.492919],[119.043318,32.502841],[119.041409,32.514782],[119.01924,32.517986],[119.00751,32.514079],[118.997463,32.503895],[118.97984,32.503851],[118.967942,32.514562],[118.964799,32.526721],[118.940609,32.547785],[118.936568,32.557526],[118.919786,32.557263],[118.914005,32.548839],[118.887907,32.55485],[118.898627,32.560466],[118.896382,32.577268],[118.909347,32.586874],[118.901995,32.589023],[118.885101,32.586348],[118.884203,32.580426],[118.874998,32.58297],[118.872641,32.576084],[118.855972,32.574373],[118.848507,32.568187],[118.842502,32.572969],[118.827011,32.572662],[118.827573,32.581172],[118.820501,32.582532],[118.824654,32.589637],[118.824542,32.602531],[118.820501,32.604241],[118.805291,32.593453],[118.801811,32.58433],[118.784749,32.582444],[118.774815,32.587663],[118.775769,32.597751],[118.757528,32.603978],[118.743273,32.597751],[118.740691,32.589374],[118.725986,32.596523],[118.725312,32.608232],[118.69798,32.60639],[118.700842,32.588541],[118.689561,32.588541],[118.668794,32.5949],[118.658411,32.594812],[118.641237,32.587093],[118.633043,32.578979],[118.623838,32.592444],[118.601781,32.597356],[118.598077,32.601347],[118.569509,32.586435],[118.563728,32.564371],[118.56805,32.558755],[118.584663,32.549014],[118.598975,32.54467],[118.608853,32.537034],[118.604812,32.52299],[118.614465,32.5204],[118.617496,32.512411],[118.608011,32.501744],[118.592464,32.500207],[118.592127,32.482029],[118.59673,32.476628],[118.608067,32.475837],[118.608572,32.470567],[118.628104,32.467669],[118.643426,32.47048],[118.647691,32.47654],[118.672892,32.469865],[118.68928,32.47351],[118.692648,32.465122],[118.687091,32.431297],[118.688887,32.418202],[118.685744,32.404975],[118.678672,32.393943],[118.690178,32.378293],[118.698878,32.383085],[118.696071,32.367961],[118.702021,32.357936],[118.692928,32.351692],[118.699832,32.349757],[118.697531,32.342632],[118.707914,32.33841],[118.703199,32.328954],[118.687652,32.330009],[118.683948,32.324071],[118.696352,32.317736],[118.678448,32.316549],[118.660263,32.305418],[118.659983,32.296354],[118.667335,32.296354],[118.670759,32.285617],[118.659253,32.266119],[118.667447,32.257535],[118.675137,32.255862],[118.667504,32.235918],[118.644099,32.20998],[118.626588,32.202536],[118.619629,32.205443],[118.598357,32.199497],[118.580902,32.19866],[118.575627,32.202536],[118.561708,32.196898],[118.551717,32.199629],[118.539594,32.192449],[118.532354,32.195797],[118.521859,32.188219],[118.509848,32.194299],[118.50648,32.182096],[118.495592,32.177073],[118.495648,32.165176],[118.507435,32.137895],[118.500587,32.14173],[118.494694,32.130974],[118.500812,32.121584],[118.489474,32.120746],[118.472974,32.114839],[118.473647,32.11065],[118.462871,32.10064],[118.441095,32.092041],[118.433518,32.086661],[118.405455,32.080794],[118.393276,32.062665],[118.385025,32.060768],[118.394342,32.048414],[118.38598,32.033147],[118.401526,32.018671],[118.389628,32.01205],[118.390975,31.989536],[118.387158,31.983267],[118.376719,31.981721],[118.379974,31.968341],[118.368974,31.956196],[118.369198,31.94299],[118.364371,31.930178],[118.375316,31.925319],[118.386036,31.914803],[118.402986,31.914007],[118.41595,31.901457],[118.44014,31.892707],[118.452263,31.884663],[118.4723,31.879623],[118.467081,31.868881],[118.466744,31.858005],[118.475443,31.850312],[118.490597,31.843148],[118.504741,31.841733],[118.486107,31.795421],[118.482178,31.778342],[118.502608,31.778342],[118.510746,31.765641],[118.523599,31.762011],[118.533869,31.767234],[118.53965,31.761569],[118.538696,31.749352],[118.529379,31.748555],[118.529772,31.742358],[118.55312,31.729032],[118.571698,31.746253],[118.57529,31.740941],[118.593082,31.744438],[118.600995,31.754133],[118.609358,31.757187],[118.619068,31.75006],[118.627037,31.759444],[118.641686,31.758249],[118.648365,31.748821],[118.641686,31.743996],[118.652125,31.73979],[118.653977,31.730139],[118.677269,31.728589],[118.684902,31.724914],[118.687372,31.716147],[118.697699,31.709416],[118.680749,31.696616],[118.674407,31.696483],[118.671432,31.688201],[118.654931,31.67562],[118.646962,31.679873],[118.643257,31.671367],[118.647972,31.65936],[118.643594,31.649656],[118.65785,31.641103],[118.673846,31.640527],[118.685127,31.636139],[118.694949,31.639729],[118.71695,31.639463],[118.719419,31.627452],[118.72868,31.634233],[118.735976,31.633436],[118.7394,31.651074],[118.745125,31.656524],[118.748099,31.675753],[118.760503,31.680271],[118.768304,31.677481],[118.774141,31.682619],[118.799005,31.666361],[118.782953,31.656258],[118.789576,31.646554],[118.79603,31.628294],[118.802765,31.619473],[118.814495,31.619252],[118.819547,31.628516],[118.832848,31.630377],[118.858554,31.62395],[118.868768,31.611139],[118.870789,31.599346],[118.862258,31.595001],[118.877299,31.589902],[118.873315,31.578417],[118.881958,31.565156],[118.875111,31.551982],[118.873539,31.532062],[118.886279,31.527669],[118.883193,31.496471],[118.870508,31.463042],[118.866074,31.44488],[118.86961,31.421561],[118.851145,31.392549],[118.847385,31.393927],[118.829481,31.377529],[118.80024,31.368995],[118.784525,31.368595],[118.767575,31.363973],[118.770886,31.376951],[118.765386,31.387928],[118.75461,31.385084],[118.745742,31.372684],[118.735078,31.344769],[118.721103,31.32267],[118.719588,31.294784],[118.704434,31.302791],[118.707914,31.296786],[118.726603,31.28224],[118.761401,31.277702],[118.778575,31.261684],[118.781382,31.239833],[118.79575,31.229373],[118.806357,31.229507],[118.819491,31.236005],[118.831277,31.229462],[118.840481,31.236361],[118.869666,31.242237],[118.891219,31.237964],[118.915184,31.244195],[118.92495,31.2397],[118.984218,31.237474],[118.986463,31.231154],[119.0033,31.233735],[119.014526,31.241524],[119.048818,31.233557],[119.062344,31.238498],[119.073794,31.23289],[119.083728,31.239744],[119.10528,31.235293],[119.10702,31.250603],[119.120041,31.261684],[119.13222,31.262752],[119.140695,31.276011],[119.149787,31.276945],[119.15815,31.294784],[119.176222,31.293939],[119.181105,31.300478],[119.195361,31.309373],[119.193172,31.318935],[119.198336,31.330674],[119.218035,31.348859],[119.214107,31.355883],[119.204509,31.357838],[119.2003,31.368817],[119.190085,31.379084],[119.174089,31.380906],[119.169207,31.394015],[119.169207,31.421739],[119.164155,31.441105],[119.155568,31.438618],[119.140919,31.444969],[119.141481,31.451674],[119.152481,31.464374],[119.156017,31.480135],[119.149114,31.483998],[119.152986,31.493186],[119.1664,31.493453],[119.183518,31.500199],[119.199458,31.524519],[119.198616,31.530021],[119.180656,31.526959],[119.181105,31.538096],[119.189075,31.55176],[119.197662,31.551849],[119.21579,31.570389],[119.216239,31.585423],[119.221852,31.59478],[119.234087,31.627053],[119.232516,31.632283],[119.212423,31.627718],[119.204734,31.646642],[119.187335,31.649168],[119.192274,31.659847],[119.186605,31.677658],[119.190422,31.687049],[119.186437,31.694136],[119.157701,31.699362],[119.138674,31.722125],[119.129245,31.723586],[119.12498,31.735806],[119.114428,31.740233],[119.105392,31.751344],[119.093999,31.756036],[119.089902,31.769624],[119.077835,31.773916],[119.077105,31.783962],[119.065768,31.78197],[119.055665,31.788962],[119.029679,31.784714],[119.021541,31.778607],[119.00504,31.777766],[118.998867,31.76719],[118.980458,31.764667],[118.982534,31.782988],[119.002908,31.783431],[119.006387,31.798607],[118.998137,31.80166],[118.986407,31.81785],[118.970411,31.826077],[118.969457,31.834613],[118.979672,31.842352],[119.003357,31.845757],[119.025919,31.846376],[119.032822,31.853761],[119.043374,31.854424],[119.069753,31.868793],[119.075421,31.864195],[119.092427,31.860437],[119.100341,31.865787],[119.107806,31.885149],[119.116449,31.890497],[119.111173,31.901634],[119.108423,31.922977],[119.104157,31.933624],[119.06762,31.940207],[119.051512,31.935922],[119.037537,31.93897],[119.029455,31.950013],[119.02923,31.95708],[119.046854,31.968562],[119.06487,31.97342],[119.073738,31.969622],[119.090126,31.974126],[119.102979,31.965603],[119.111061,31.96949],[119.113923,31.979823],[119.121107,31.977571],[119.121612,31.984812],[119.114204,31.988212],[119.112464,32.000441],[119.10281,32.004899],[119.092371,32.004105],[119.097928,32.011256],[119.092652,32.037604],[119.08659,32.053224],[119.098489,32.07162],[119.098882,32.091027],[119.089733,32.089704],[119.079799,32.107343],[119.069248,32.107916],[119.057686,32.102228],[119.049772,32.109768],[119.026649,32.115941],[119.008913,32.115941],[119.00925,32.12467],[119.022383,32.130886],[119.031756,32.14865],[119.039333,32.157023],[119.058472,32.15645],[119.047976,32.161254],[119.076039,32.161695],[119.078677,32.178747],[119.086871,32.178527],[119.121332,32.187603],[119.13671,32.193374],[119.154446,32.186193],[119.184529,32.189629],[119.191095,32.1854],[119.216239,32.190686],[119.221403,32.201127],[119.241664,32.216278],[119.229036,32.222179],[119.177232,32.238912],[119.153772,32.243668],[119.132332,32.245164],[119.086029,32.241158],[119.074748,32.248951],[119.056563,32.25168],[119.037088,32.259868],[119.041073,32.271709],[119.039838,32.303746],[119.035572,32.308718],[119.035853,32.325435],[119.041971,32.333264],[119.028445,32.345095],[119.027322,32.35134],[119.043823,32.365191],[119.02171,32.375436],[119.022551,32.380447],[119.038435,32.38159],[119.037425,32.388844],[119.02749,32.388316],[119.017556,32.399261],[119.016434,32.413193],[119.029455,32.428836],[119.022495,32.440303],[119.02373,32.456073],[119.035909,32.452428],[119.047022,32.462882],[119.067452,32.462398]]],[[[118.86585,31.518972],[118.856421,31.522256],[118.846262,31.50912],[118.846711,31.50304],[118.855691,31.504726],[118.86585,31.518972]]]]}},{"type":"Feature","properties":{"adcode":320200,"name":"无锡市","center":[120.301663,31.574729],"childrenNum":7,"level":"city","parent":{"adcode":320000},"subFeatureIndex":1,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.532617,31.159106],[119.545863,31.147835],[119.560231,31.140707],[119.571343,31.128988],[119.574094,31.11397],[119.582007,31.108667],[119.599799,31.109157],[119.613718,31.129167],[119.63078,31.131261],[119.638132,31.135538],[119.641837,31.148414],[119.662491,31.159863],[119.663726,31.165966],[119.678037,31.168193],[119.682752,31.160487],[119.703855,31.151889],[119.713116,31.167614],[119.740505,31.173404],[119.755378,31.170776],[119.779343,31.178793],[119.793375,31.168059],[119.791298,31.156611],[119.801008,31.156344],[119.809875,31.148504],[119.823289,31.154117],[119.829744,31.161378],[119.823458,31.165832],[119.826489,31.173181],[119.837545,31.173671],[119.842147,31.168772],[119.866618,31.168327],[119.878348,31.160799],[119.900237,31.169173],[119.919993,31.17091],[120.110201,31.263998],[120.173735,31.308795],[120.209599,31.345658],[120.253096,31.366106],[120.335544,31.407345],[120.355805,31.416452],[120.418834,31.448388],[120.438197,31.448788],[120.460198,31.445501],[120.480571,31.449143],[120.495781,31.447944],[120.501394,31.457536],[120.51739,31.457847],[120.515986,31.464418],[120.523844,31.46837],[120.536135,31.467083],[120.555218,31.480313],[120.548483,31.497403],[120.555218,31.507567],[120.568576,31.51236],[120.592766,31.527536],[120.595628,31.517153],[120.605787,31.525229],[120.599276,31.548477],[120.594562,31.576022],[120.584235,31.585157],[120.567397,31.584004],[120.563637,31.579614],[120.547978,31.576598],[120.543095,31.601741],[120.553085,31.605598],[120.55707,31.600322],[120.566443,31.601918],[120.577107,31.614154],[120.591475,31.611494],[120.600623,31.617124],[120.592092,31.625059],[120.595572,31.631397],[120.589566,31.636538],[120.595853,31.643762],[120.592148,31.650276],[120.571719,31.655771],[120.561055,31.655682],[120.568744,31.668576],[120.562851,31.680493],[120.570035,31.688909],[120.584908,31.692807],[120.600792,31.70884],[120.585076,31.71442],[120.581709,31.727615],[120.600006,31.744616],[120.594842,31.760418],[120.588556,31.762542],[120.584235,31.782147],[120.570708,31.793784],[120.558361,31.785732],[120.555499,31.79405],[120.544386,31.787148],[120.531533,31.787811],[120.522553,31.806305],[120.529962,31.814666],[120.531309,31.827847],[120.514415,31.841512],[120.503302,31.841733],[120.502067,31.852125],[120.490898,31.871313],[120.468841,31.879623],[120.466484,31.889967],[120.449534,31.891955],[120.425007,31.898408],[120.402389,31.907379],[120.392062,31.905302],[120.379322,31.91414],[120.39049,31.925849],[120.390322,31.932211],[120.375337,31.941709],[120.368882,31.961099],[120.370678,31.990817],[120.353055,31.980617],[120.262974,31.941841],[120.236595,31.932918],[120.205895,31.931504],[120.17525,31.933845],[120.134784,31.939367],[120.064908,31.95549],[120.022422,31.967767],[120.007661,31.947981],[120.00738,31.935922],[120.022422,31.919707],[120.005472,31.911886],[119.997839,31.894342],[120.014789,31.881789],[120.013217,31.871666],[120.003283,31.859155],[119.990206,31.854866],[120.000477,31.845625],[120.003339,31.828245],[120.019279,31.822804],[120.025284,31.831694],[120.044984,31.821743],[120.056377,31.833331],[120.080287,31.847482],[120.08545,31.853053],[120.098696,31.855574],[120.117385,31.854999],[120.122829,31.859332],[120.144213,31.858934],[120.158132,31.86782],[120.175868,31.870208],[120.185185,31.860437],[120.173174,31.83877],[120.164081,31.832712],[120.17048,31.817275],[120.179235,31.812852],[120.17424,31.80104],[120.185577,31.786528],[120.192537,31.767367],[120.201629,31.764003],[120.205726,31.75338],[120.18395,31.749928],[120.178674,31.758382],[120.169021,31.760949],[120.155607,31.756833],[120.154765,31.741428],[120.161387,31.718051],[120.155719,31.713224],[120.156841,31.703836],[120.14528,31.697059],[120.142978,31.688334],[120.15106,31.682398],[120.143259,31.676063],[120.128554,31.684613],[120.124457,31.648238],[120.119462,31.630909],[120.104477,31.628782],[120.093981,31.618099],[120.075572,31.607105],[120.074899,31.595356],[120.057051,31.580412],[120.056153,31.563382],[120.069174,31.55247],[120.097349,31.548744],[120.09415,31.541912],[120.101726,31.542],[120.10341,31.518573],[120.107451,31.512005],[120.113457,31.518129],[120.129733,31.504726],[120.108742,31.480979],[120.105711,31.470501],[120.110089,31.461532],[120.089996,31.454738],[120.06098,31.440439],[120.054806,31.434309],[120.044591,31.406234],[120.039708,31.378106],[120.040157,31.364506],[120.044872,31.358816],[120.057275,31.356105],[120.09617,31.352504],[120.100155,31.335343],[120.089603,31.332453],[120.060643,31.339122],[120.041785,31.34588],[120.023712,31.364951],[120.021075,31.382995],[120.027866,31.409033],[120.037631,31.42587],[120.046219,31.47978],[120.045489,31.490257],[120.036228,31.497891],[120.015799,31.505437],[120.005528,31.503306],[119.997165,31.508099],[119.996099,31.497492],[119.973593,31.515866],[119.971741,31.535967],[119.948336,31.543376],[119.935652,31.552736],[119.897599,31.546747],[119.861904,31.546259],[119.847816,31.529799],[119.832326,31.529178],[119.807406,31.548522],[119.792196,31.553401],[119.768567,31.553801],[119.733265,31.56316],[119.721198,31.556861],[119.712891,31.558281],[119.709973,31.576022],[119.699814,31.576554],[119.684941,31.604046],[119.673042,31.609322],[119.657945,31.609322],[119.639367,31.600277],[119.642679,31.582364],[119.646776,31.577663],[119.640939,31.569281],[119.627918,31.559922],[119.613325,31.557882],[119.600921,31.538717],[119.593625,31.532195],[119.583635,31.504549],[119.567022,31.504726],[119.567976,31.490434],[119.57516,31.480801],[119.572971,31.471744],[119.56517,31.471389],[119.56517,31.46433],[119.588349,31.466683],[119.591717,31.463042],[119.5879,31.445812],[119.576675,31.430712],[119.554562,31.43391],[119.553327,31.411699],[119.53649,31.408234],[119.540699,31.39015],[119.530428,31.370818],[119.527566,31.360328],[119.53054,31.330897],[119.520045,31.318223],[119.523693,31.301145],[119.535199,31.291226],[119.530933,31.277657],[119.532224,31.259014],[119.522571,31.242192],[119.534469,31.236762],[119.553832,31.221049],[119.552542,31.212412],[119.553552,31.17915],[119.543,31.175498],[119.532617,31.159106]]]]}},{"type":"Feature","properties":{"adcode":320300,"name":"徐州市","center":[117.184811,34.261792],"centroid":[117.521565,34.355594],"childrenNum":10,"level":"city","parent":{"adcode":320000},"subFeatureIndex":2,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.408205,34.435512],[118.40495,34.42774],[118.395184,34.427053],[118.379974,34.415545],[118.353203,34.417435],[118.352248,34.422845],[118.320931,34.421342],[118.290679,34.424563],[118.289164,34.412281],[118.279903,34.412152],[118.277377,34.40468],[118.242411,34.40571],[118.230962,34.398709],[118.220298,34.405925],[118.217716,34.379121],[118.204359,34.377359],[118.189598,34.380624],[118.183368,34.390333],[118.179271,34.379422],[118.170403,34.381355],[118.177138,34.408717],[118.178878,34.425207],[118.177755,34.453241],[118.139927,34.475344],[118.132855,34.483412],[118.141611,34.496884],[118.164959,34.504906],[118.167597,34.519705],[118.184659,34.544192],[118.163556,34.55148],[118.153734,34.549165],[118.140713,34.55401],[118.137177,34.563227],[118.127243,34.555382],[118.100471,34.564727],[118.078975,34.569786],[118.082399,34.579858],[118.102828,34.593443],[118.114727,34.614396],[118.113043,34.621464],[118.100527,34.626562],[118.094578,34.636584],[118.10266,34.64772],[118.08397,34.655899],[118.077796,34.653715],[118.057423,34.654999],[118.053943,34.650931],[118.020661,34.660437],[118.018191,34.647034],[118.007864,34.647505],[118.007415,34.656113],[117.990802,34.661722],[117.9917,34.670071],[117.963301,34.678547],[117.951683,34.678462],[117.939672,34.664847],[117.909701,34.670199],[117.903135,34.64455],[117.881021,34.64515],[117.877934,34.650203],[117.863454,34.645193],[117.849367,34.647206],[117.847515,34.652387],[117.834494,34.647291],[117.831743,34.653458],[117.820126,34.646178],[117.79964,34.647291],[117.793634,34.651788],[117.796048,34.637741],[117.793634,34.625619],[117.798517,34.62185],[117.791446,34.585087],[117.794589,34.559755],[117.794813,34.539947],[117.799303,34.535015],[117.80166,34.518761],[117.790491,34.518933],[117.773991,34.529054],[117.748622,34.533386],[117.699344,34.545607],[117.684471,34.547322],[117.682001,34.529569],[117.673414,34.515845],[117.659102,34.501045],[117.647035,34.492937],[117.638224,34.49727],[117.629244,34.488518],[117.609656,34.490491],[117.603202,34.476846],[117.592257,34.462512],[117.569807,34.46307],[117.561332,34.471954],[117.547806,34.475173],[117.538265,34.467233],[117.512952,34.472598],[117.493252,34.472641],[117.487359,34.466332],[117.486686,34.482039],[117.482084,34.485943],[117.466481,34.484656],[117.451439,34.506279],[117.43825,34.516445],[117.439428,34.520005],[117.426744,34.525237],[117.424499,34.537031],[117.403789,34.546893],[117.402554,34.5694],[117.374435,34.584187],[117.36495,34.577715],[117.35294,34.584058],[117.344016,34.582044],[117.333745,34.572657],[117.31904,34.573643],[117.318086,34.566228],[117.330938,34.567985],[117.333015,34.56177],[117.321341,34.565413],[117.302988,34.55894],[117.308376,34.571886],[117.281604,34.563827],[117.272849,34.556711],[117.279696,34.552724],[117.289237,34.555939],[117.303381,34.548351],[117.302651,34.541362],[117.287441,34.5336],[117.268078,34.532828],[117.275206,34.520606],[117.270828,34.516145],[117.274364,34.503534],[117.259323,34.497056],[117.267461,34.480022],[117.263588,34.472641],[117.256011,34.476331],[117.252363,34.486501],[117.24271,34.47852],[117.255113,34.472555],[117.255843,34.46204],[117.247929,34.451052],[117.234628,34.454486],[117.222336,34.450623],[117.223122,34.446459],[117.200223,34.441608],[117.199549,34.434481],[117.166043,34.434653],[117.159869,34.453113],[117.156614,34.480923],[117.14595,34.503963],[117.139383,34.526653],[117.140618,34.538703],[117.151282,34.559283],[117.147634,34.570257],[117.13349,34.586073],[117.123724,34.60467],[117.115249,34.628147],[117.103912,34.648961],[117.095886,34.647548],[117.081518,34.638212],[117.072987,34.639069],[117.062323,34.657697],[117.061706,34.675722],[117.072033,34.694214],[117.077365,34.696482],[117.069058,34.708294],[117.070518,34.713685],[117.061145,34.723997],[117.043185,34.736532],[117.021913,34.759202],[116.995647,34.758261],[116.989697,34.765146],[116.978472,34.763606],[116.976789,34.771261],[116.967921,34.772971],[116.965844,34.785071],[116.951644,34.794562],[116.951139,34.810591],[116.971681,34.811873],[116.979146,34.81495],[116.966125,34.844477],[116.928858,34.842896],[116.930092,34.859685],[116.933741,34.861906],[116.976845,34.868526],[116.966967,34.875616],[116.945246,34.876811],[116.945302,34.873779],[116.922123,34.87143],[116.922291,34.89449],[116.899055,34.904693],[116.8761,34.912548],[116.858084,34.928384],[116.822164,34.929323],[116.815878,34.965292],[116.805775,34.968364],[116.806785,34.936919],[116.812173,34.927957],[116.798928,34.928512],[116.80325,34.937388],[116.802015,34.970497],[116.789106,34.975104],[116.789106,34.959789],[116.781641,34.961922],[116.785458,34.947288],[116.796907,34.944131],[116.797637,34.938754],[116.786973,34.940461],[116.781192,34.916561],[116.764579,34.916475],[116.73517,34.924628],[116.721363,34.925908],[116.706209,34.933974],[116.696948,34.932737],[116.677978,34.939181],[116.675733,34.933121],[116.658447,34.93342],[116.657885,34.928981],[116.639981,34.932609],[116.631787,34.940717],[116.622526,34.940034],[116.613883,34.922792],[116.560059,34.909304],[116.54614,34.909389],[116.523073,34.903968],[116.502755,34.906102],[116.500566,34.90115],[116.480698,34.89735],[116.455779,34.900638],[116.445059,34.895429],[116.445283,34.88864],[116.436079,34.883046],[116.40796,34.850714],[116.408297,34.826147],[116.405827,34.817386],[116.403189,34.756293],[116.371535,34.750177],[116.365698,34.742778],[116.368448,34.725324],[116.363789,34.715226],[116.377091,34.718136],[116.391796,34.710348],[116.392694,34.703886],[116.38551,34.694727],[116.385229,34.68668],[116.378101,34.684155],[116.378214,34.668016],[116.364407,34.651831],[116.37058,34.642238],[116.382591,34.63864],[116.393367,34.643052],[116.430466,34.650803],[116.432823,34.63016],[116.447584,34.620564],[116.477218,34.615081],[116.478341,34.603856],[116.491418,34.588944],[116.490408,34.573343],[116.509546,34.557525],[116.526159,34.553367],[116.520659,34.543162],[116.52919,34.540676],[116.548048,34.542905],[116.570555,34.523393],[116.587673,34.512542],[116.595193,34.511512],[116.598954,34.500145],[116.592443,34.493838],[116.573641,34.497699],[116.568646,34.492508],[116.575101,34.488947],[116.623424,34.488646],[116.662544,34.473027],[116.722878,34.472684],[116.745104,34.468263],[116.76065,34.462598],[116.773728,34.453456],[116.782708,34.438302],[116.782146,34.431089],[116.804709,34.412754],[116.828057,34.389216],[116.848543,34.389045],[116.867008,34.39218],[116.883509,34.403047],[116.909214,34.408287],[116.920551,34.406999],[116.945639,34.395531],[116.969324,34.38883],[116.960961,34.371989],[116.961242,34.363266],[116.980773,34.358109],[116.982962,34.345775],[116.969268,34.323122],[116.976283,34.304892],[116.969717,34.293109],[116.968987,34.28369],[116.984365,34.269839],[117.010632,34.2559],[117.018882,34.255512],[117.020791,34.243335],[117.027526,34.240194],[117.045261,34.24781],[117.049583,34.242432],[117.044868,34.224743],[117.051042,34.221558],[117.047226,34.205803],[117.040322,34.201498],[117.030837,34.186342],[117.025337,34.167651],[117.038358,34.167436],[117.047057,34.151412],[117.054915,34.155073],[117.072314,34.146716],[117.089993,34.145682],[117.106438,34.13043],[117.123837,34.128232],[117.129954,34.117459],[117.130291,34.10177],[117.146567,34.097804],[117.157961,34.09871],[117.15145,34.083707],[117.161272,34.084354],[117.182094,34.076076],[117.192702,34.068746],[117.20707,34.068616],[117.212121,34.074696],[117.224693,34.064175],[117.257639,34.0659],[117.277002,34.078922],[117.287778,34.078663],[117.29384,34.071074],[117.311463,34.068056],[117.319489,34.084397],[117.343398,34.08056],[117.357149,34.088234],[117.377803,34.071462],[117.371124,34.060682],[117.388242,34.055593],[117.400253,34.041575],[117.405753,34.030057],[117.415631,34.025916],[117.435444,34.028332],[117.460251,34.037391],[117.476808,34.047614],[117.500437,34.052272],[117.50487,34.06163],[117.514805,34.060854],[117.530632,34.050676],[117.545337,34.035191],[117.54253,34.021644],[117.544663,34.013619],[117.556449,34.007319],[117.568909,33.985222],[117.575757,33.982891],[117.58816,33.987855],[117.59787,33.997005],[117.610273,33.999249],[117.616672,34.004946],[117.618131,34.017071],[117.610217,34.029281],[117.616391,34.032257],[117.629749,34.02872],[117.645801,34.013619],[117.666286,33.998688],[117.671338,33.986733],[117.662975,33.968732],[117.67246,33.952411],[117.672629,33.934965],[117.690084,33.915398],[117.70361,33.887789],[117.715396,33.879233],[117.740821,33.891981],[117.753729,33.891419],[117.758668,33.885672],[117.75923,33.874522],[117.752439,33.863241],[117.753,33.847203],[117.750081,33.827183],[117.746153,33.823724],[117.752495,33.812868],[117.749015,33.791629],[117.741831,33.762769],[117.734086,33.751776],[117.724713,33.749569],[117.723478,33.739007],[117.731953,33.734765],[117.735264,33.722729],[117.752663,33.711515],[117.767031,33.72182],[117.777919,33.722513],[117.791277,33.733163],[117.805589,33.736193],[117.828151,33.736972],[117.835841,33.734115],[117.848357,33.73602],[117.879955,33.727751],[117.8877,33.722599],[117.901675,33.720131],[117.897578,33.72931],[117.900497,33.735674],[117.915819,33.738358],[117.918176,33.734332],[117.936754,33.729353],[117.952749,33.738185],[117.954321,33.75104],[117.96549,33.763461],[117.972505,33.749872],[117.99445,33.750045],[118.003936,33.744937],[118.018809,33.745846],[118.019931,33.738704],[118.030876,33.740479],[118.02835,33.746625],[118.045749,33.750045],[118.062418,33.758398],[118.065561,33.765798],[118.105971,33.76463],[118.117982,33.766534],[118.133472,33.75143],[118.149187,33.746452],[118.168326,33.749569],[118.170852,33.759134],[118.178597,33.763115],[118.170459,33.786221],[118.159515,33.795653],[118.168887,33.807591],[118.169056,33.820134],[118.183368,33.816155],[118.18797,33.822945],[118.184771,33.844176],[118.176015,33.844133],[118.174612,33.865186],[118.168495,33.881005],[118.156428,33.889691],[118.149356,33.901011],[118.141162,33.934749],[118.125896,33.954959],[118.117589,33.954614],[118.113772,33.936865],[118.106139,33.935138],[118.100022,33.941184],[118.085766,33.942048],[118.085654,33.965192],[118.072408,33.965408],[118.053045,33.971883],[118.046254,33.98151],[118.03385,33.983927],[118.028406,33.998386],[118.034917,34.01267],[118.049621,34.01336],[118.054168,34.009692],[118.063653,34.020738],[118.059836,34.048174],[118.063821,34.053781],[118.048611,34.092545],[118.013084,34.083923],[118.005507,34.09164],[118.007696,34.100348],[117.996583,34.105649],[117.994394,34.123793],[117.998997,34.140038],[118.055571,34.148827],[118.064158,34.152532],[118.060622,34.157055],[118.072408,34.170924],[118.083072,34.165411],[118.088292,34.15503],[118.097047,34.150292],[118.10294,34.139521],[118.120732,34.144045],[118.139309,34.136419],[118.150534,34.137281],[118.154239,34.148784],[118.150703,34.158476],[118.15654,34.161147],[118.177306,34.156366],[118.187745,34.161664],[118.213844,34.14202],[118.213619,34.127241],[118.222824,34.106986],[118.232646,34.100304],[118.28922,34.102589],[118.292307,34.109701],[118.306001,34.11358],[118.363586,34.118795],[118.382949,34.117286],[118.428466,34.108623],[118.43436,34.105089],[118.451029,34.106598],[118.469718,34.097201],[118.482627,34.100046],[118.489923,34.106684],[118.517705,34.117545],[118.503225,34.123147],[118.503674,34.137194],[118.50968,34.148784],[118.505358,34.158562],[118.519221,34.168598],[118.560192,34.165454],[118.559687,34.187806],[118.573494,34.233566],[118.565468,34.236794],[118.56109,34.247983],[118.566871,34.274184],[118.57456,34.278399],[118.571473,34.298957],[118.593362,34.308031],[118.624063,34.305752],[118.632706,34.308246],[118.634895,34.320456],[118.631752,34.337179],[118.621986,34.341133],[118.633155,34.344744],[118.635232,34.355058],[118.644268,34.359012],[118.644773,34.383632],[118.654482,34.383288],[118.673958,34.400728],[118.669075,34.419281],[118.656784,34.420655],[118.648814,34.426796],[118.646457,34.439547],[118.634502,34.439977],[118.607899,34.446931],[118.597796,34.445429],[118.590444,34.435984],[118.585617,34.419496],[118.574616,34.416662],[118.572147,34.422931],[118.548069,34.432893],[118.532298,34.435512],[118.524216,34.440191],[118.50373,34.430746],[118.489811,34.420398],[118.489699,34.416189],[118.462422,34.40687],[118.452825,34.411895],[118.434696,34.413269],[118.422124,34.423275],[118.415221,34.420269],[118.408205,34.435512]]]]}},{"type":"Feature","properties":{"adcode":320400,"name":"常州市","center":[119.946973,31.772752],"centroid":[119.641979,31.623547],"childrenNum":6,"level":"city","parent":{"adcode":320000},"subFeatureIndex":3,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.022422,31.967767],[120.016248,31.970461],[119.980103,31.998057],[119.975501,32.006886],[119.951704,32.002339],[119.919712,32.003663],[119.905906,32.015361],[119.895972,32.040163],[119.890864,32.046164],[119.883736,32.039281],[119.878629,32.042193],[119.869593,32.058121],[119.859939,32.051547],[119.843831,32.059841],[119.829014,32.0519],[119.822223,32.055827],[119.804768,32.056091],[119.796293,32.049032],[119.777435,32.014257],[119.784788,32.012315],[119.775639,31.986446],[119.778165,31.984106],[119.767613,31.949306],[119.777154,31.944624],[119.789446,31.926909],[119.78389,31.919354],[119.760485,31.926644],[119.759643,31.921121],[119.781757,31.913875],[119.780466,31.901634],[119.771823,31.900839],[119.75521,31.880331],[119.764077,31.872595],[119.763348,31.8569],[119.769914,31.847615],[119.782262,31.852081],[119.811784,31.852213],[119.800503,31.833331],[119.790344,31.826564],[119.785461,31.816745],[119.790456,31.806968],[119.763965,31.808119],[119.757342,31.786218],[119.748755,31.780333],[119.736295,31.7621],[119.734724,31.74373],[119.74,31.731157],[119.723892,31.732928],[119.708289,31.737931],[119.706717,31.747139],[119.693303,31.756966],[119.688196,31.769402],[119.656541,31.773607],[119.650817,31.777678],[119.644643,31.795554],[119.629601,31.801173],[119.615009,31.796174],[119.605692,31.806128],[119.605131,31.822052],[119.597329,31.827847],[119.589416,31.826962],[119.59211,31.835321],[119.586946,31.847438],[119.576731,31.848366],[119.570053,31.854557],[119.559894,31.85606],[119.556077,31.862515],[119.550016,31.856458],[119.508203,31.851859],[119.468803,31.871666],[119.46392,31.881215],[119.448822,31.885414],[119.437541,31.876397],[119.423229,31.871666],[119.419525,31.852081],[119.42553,31.852788],[119.432041,31.840362],[119.443378,31.828908],[119.432995,31.825812],[119.429347,31.832314],[119.422331,31.829395],[119.40409,31.832092],[119.387028,31.846642],[119.372436,31.845802],[119.364129,31.857961],[119.342072,31.859553],[119.3295,31.845757],[119.332643,31.836338],[119.320015,31.825414],[119.313785,31.813825],[119.314571,31.796616],[119.320071,31.797058],[119.314683,31.777324],[119.307387,31.776527],[119.304637,31.767367],[119.305647,31.733017],[119.321643,31.73222],[119.331072,31.727305],[119.321586,31.715527],[119.321081,31.707644],[119.328658,31.704013],[119.316535,31.671013],[119.299922,31.654752],[119.282804,31.642787],[119.258389,31.632195],[119.23695,31.625192],[119.234087,31.627053],[119.221852,31.59478],[119.216239,31.585423],[119.21579,31.570389],[119.197662,31.551849],[119.189075,31.55176],[119.181105,31.538096],[119.180656,31.526959],[119.198616,31.530021],[119.199458,31.524519],[119.183518,31.500199],[119.1664,31.493453],[119.152986,31.493186],[119.149114,31.483998],[119.156017,31.480135],[119.152481,31.464374],[119.141481,31.451674],[119.140919,31.444969],[119.155568,31.438618],[119.164155,31.441105],[119.169207,31.421739],[119.169207,31.394015],[119.174089,31.380906],[119.190085,31.379084],[119.2003,31.368817],[119.204509,31.357838],[119.214107,31.355883],[119.218035,31.348859],[119.198336,31.330674],[119.193172,31.318935],[119.195361,31.309373],[119.181105,31.300478],[119.199458,31.293583],[119.197157,31.27352],[119.204229,31.265689],[119.215285,31.274098],[119.218148,31.264799],[119.236276,31.259326],[119.238577,31.254653],[119.249971,31.256967],[119.249746,31.261995],[119.26142,31.261328],[119.266977,31.250425],[119.294815,31.263241],[119.314851,31.265733],[119.33326,31.264131],[119.337526,31.258881],[119.345945,31.268981],[119.35021,31.280905],[119.350154,31.301012],[119.356609,31.30328],[119.367946,31.288957],[119.371594,31.271606],[119.379676,31.269382],[119.370528,31.242548],[119.365196,31.232667],[119.360088,31.212145],[119.365757,31.195938],[119.371369,31.197719],[119.379171,31.189214],[119.394886,31.19959],[119.405662,31.192777],[119.395335,31.193356],[119.389329,31.188324],[119.391182,31.174518],[119.400611,31.178749],[119.415428,31.172959],[119.423454,31.181866],[119.438832,31.177056],[119.454771,31.164897],[119.460608,31.156389],[119.475818,31.158928],[119.482497,31.152513],[119.485584,31.161601],[119.494508,31.164006],[119.514376,31.156077],[119.532617,31.159106],[119.543,31.175498],[119.553552,31.17915],[119.552542,31.212412],[119.553832,31.221049],[119.534469,31.236762],[119.522571,31.242192],[119.532224,31.259014],[119.530933,31.277657],[119.535199,31.291226],[119.523693,31.301145],[119.520045,31.318223],[119.53054,31.330897],[119.527566,31.360328],[119.530428,31.370818],[119.540699,31.39015],[119.53649,31.408234],[119.553327,31.411699],[119.554562,31.43391],[119.576675,31.430712],[119.5879,31.445812],[119.591717,31.463042],[119.588349,31.466683],[119.56517,31.46433],[119.56517,31.471389],[119.572971,31.471744],[119.57516,31.480801],[119.567976,31.490434],[119.567022,31.504726],[119.583635,31.504549],[119.593625,31.532195],[119.600921,31.538717],[119.613325,31.557882],[119.627918,31.559922],[119.640939,31.569281],[119.646776,31.577663],[119.642679,31.582364],[119.639367,31.600277],[119.657945,31.609322],[119.673042,31.609322],[119.684941,31.604046],[119.699814,31.576554],[119.709973,31.576022],[119.712891,31.558281],[119.721198,31.556861],[119.733265,31.56316],[119.768567,31.553801],[119.792196,31.553401],[119.807406,31.548522],[119.832326,31.529178],[119.847816,31.529799],[119.861904,31.546259],[119.897599,31.546747],[119.935652,31.552736],[119.948336,31.543376],[119.971741,31.535967],[119.973593,31.515866],[119.996099,31.497492],[119.997165,31.508099],[120.005528,31.503306],[120.015799,31.505437],[120.036228,31.497891],[120.045489,31.490257],[120.046219,31.47978],[120.037631,31.42587],[120.027866,31.409033],[120.021075,31.382995],[120.023712,31.364951],[120.041785,31.34588],[120.060643,31.339122],[120.089603,31.332453],[120.100155,31.335343],[120.09617,31.352504],[120.057275,31.356105],[120.044872,31.358816],[120.040157,31.364506],[120.039708,31.378106],[120.044591,31.406234],[120.054806,31.434309],[120.06098,31.440439],[120.089996,31.454738],[120.110089,31.461532],[120.105711,31.470501],[120.108742,31.480979],[120.129733,31.504726],[120.113457,31.518129],[120.107451,31.512005],[120.10341,31.518573],[120.101726,31.542],[120.09415,31.541912],[120.097349,31.548744],[120.069174,31.55247],[120.056153,31.563382],[120.057051,31.580412],[120.074899,31.595356],[120.075572,31.607105],[120.093981,31.618099],[120.104477,31.628782],[120.119462,31.630909],[120.124457,31.648238],[120.128554,31.684613],[120.143259,31.676063],[120.15106,31.682398],[120.142978,31.688334],[120.14528,31.697059],[120.156841,31.703836],[120.155719,31.713224],[120.161387,31.718051],[120.154765,31.741428],[120.155607,31.756833],[120.169021,31.760949],[120.178674,31.758382],[120.18395,31.749928],[120.205726,31.75338],[120.201629,31.764003],[120.192537,31.767367],[120.185577,31.786528],[120.17424,31.80104],[120.179235,31.812852],[120.17048,31.817275],[120.164081,31.832712],[120.173174,31.83877],[120.185185,31.860437],[120.175868,31.870208],[120.158132,31.86782],[120.144213,31.858934],[120.122829,31.859332],[120.117385,31.854999],[120.098696,31.855574],[120.08545,31.853053],[120.080287,31.847482],[120.056377,31.833331],[120.044984,31.821743],[120.025284,31.831694],[120.019279,31.822804],[120.003339,31.828245],[120.000477,31.845625],[119.990206,31.854866],[120.003283,31.859155],[120.013217,31.871666],[120.014789,31.881789],[119.997839,31.894342],[120.005472,31.911886],[120.022422,31.919707],[120.00738,31.935922],[120.007661,31.947981],[120.022422,31.967767]]]]}},{"type":"Feature","properties":{"adcode":320500,"name":"苏州市","center":[120.619585,31.299379],"centroid":[120.660806,31.382865],"childrenNum":9,"level":"city","parent":{"adcode":320000},"subFeatureIndex":4,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.919993,31.17091],[119.921059,31.1612],[119.936775,31.146543],[119.94626,31.106215],[119.969776,31.074298],[119.988522,31.059226],[120.001711,31.027114],[120.017034,31.017791],[120.052449,31.005745],[120.103971,30.965223],[120.111043,30.955894],[120.135121,30.941875],[120.149657,30.937455],[120.221778,30.926873],[120.250739,30.926248],[120.308099,30.932276],[120.343514,30.94],[120.371127,30.948751],[120.359453,30.931919],[120.362709,30.921648],[120.356928,30.908875],[120.360127,30.892795],[120.357994,30.887077],[120.364673,30.880465],[120.372418,30.882163],[120.379434,30.890785],[120.3947,30.890785],[120.423492,30.903069],[120.417992,30.925578],[120.423436,30.927453],[120.434998,30.920799],[120.442294,30.900612],[120.436345,30.896949],[120.439544,30.885201],[120.45234,30.867911],[120.441284,30.856292],[120.454473,30.849634],[120.460422,30.839846],[120.460984,30.828269],[120.455259,30.816825],[120.477204,30.800014],[120.476979,30.785571],[120.489439,30.763432],[120.504425,30.757974],[120.518231,30.773227],[120.563805,30.835511],[120.580867,30.845656],[120.588949,30.854416],[120.60298,30.848919],[120.615496,30.849589],[120.626216,30.856069],[120.644176,30.855354],[120.655401,30.847489],[120.658713,30.865274],[120.66309,30.861342],[120.673642,30.87573],[120.68279,30.882565],[120.699909,30.867821],[120.704286,30.872959],[120.702546,30.884039],[120.713266,30.885067],[120.709843,30.907535],[120.712705,30.919683],[120.70945,30.933169],[120.697551,30.950358],[120.684474,30.95518],[120.698225,30.970803],[120.705521,30.966473],[120.710067,30.971919],[120.725614,30.971517],[120.736109,30.963706],[120.745931,30.9625],[120.760692,30.975445],[120.770177,30.978078],[120.769953,30.996642],[120.802898,31.005388],[120.820914,31.006369],[120.840053,30.997803],[120.847406,30.989592],[120.853692,30.993206],[120.865646,30.989815],[120.86806,30.995348],[120.891352,31.003737],[120.895168,31.017345],[120.901342,31.017479],[120.901959,31.037641],[120.894551,31.053875],[120.902128,31.085666],[120.892193,31.094181],[120.869575,31.097212],[120.856778,31.102828],[120.857901,31.108533],[120.870585,31.119719],[120.872325,31.127161],[120.881305,31.134736],[120.905383,31.134202],[120.930359,31.14142],[120.983902,31.131706],[121.018475,31.134113],[121.025659,31.140751],[121.041823,31.13888],[121.041486,31.14984],[121.062533,31.153137],[121.065733,31.148593],[121.077014,31.158438],[121.075442,31.173449],[121.062646,31.224655],[121.064329,31.246153],[121.060962,31.246509],[121.063263,31.267913],[121.080437,31.270138],[121.084703,31.287622],[121.090147,31.291893],[121.09879,31.276233],[121.105469,31.273653],[121.11501,31.285265],[121.120342,31.286154],[121.143017,31.275477],[121.154242,31.276723],[121.161314,31.283975],[121.151267,31.291937],[121.143803,31.309685],[121.139649,31.302969],[121.12994,31.302613],[121.127246,31.319291],[121.133307,31.325561],[121.130445,31.344191],[121.117985,31.343435],[121.117255,31.351704],[121.108332,31.350637],[121.109286,31.364684],[121.12023,31.368684],[121.113776,31.374462],[121.148461,31.385395],[121.143803,31.392327],[121.158844,31.4101],[121.146272,31.421072],[121.164288,31.427203],[121.162717,31.432222],[121.14689,31.437241],[121.147339,31.443947],[121.160921,31.449676],[121.174952,31.449276],[121.186065,31.454339],[121.186065,31.460822],[121.214352,31.479114],[121.219067,31.475207],[121.230348,31.477427],[121.234725,31.492698],[121.240899,31.493675],[121.247073,31.477072],[121.261441,31.478848],[121.26885,31.48746],[121.298596,31.4915],[121.299943,31.499756],[121.310326,31.505925],[121.319923,31.499711],[121.343496,31.512049],[121.372232,31.553224],[121.345573,31.571676],[121.289111,31.616282],[121.145318,31.753911],[121.11849,31.75909],[121.101204,31.762542],[121.076845,31.777014],[121.060625,31.783077],[120.959488,31.783032],[120.932884,31.786705],[120.916664,31.793652],[120.883831,31.834702],[120.860314,31.873037],[120.853467,31.888641],[120.803123,31.988432],[120.790102,31.998101],[120.78202,32.015979],[120.76159,32.020437],[120.70249,32.013375],[120.652651,32.002383],[120.628405,32.001147],[120.588276,32.009711],[120.553141,32.021143],[120.52463,32.030455],[120.503807,32.041002],[120.465642,32.045811],[120.403736,32.016199],[120.387853,32.006665],[120.370678,31.990817],[120.368882,31.961099],[120.375337,31.941709],[120.390322,31.932211],[120.39049,31.925849],[120.379322,31.91414],[120.392062,31.905302],[120.402389,31.907379],[120.425007,31.898408],[120.449534,31.891955],[120.466484,31.889967],[120.468841,31.879623],[120.490898,31.871313],[120.502067,31.852125],[120.503302,31.841733],[120.514415,31.841512],[120.531309,31.827847],[120.529962,31.814666],[120.522553,31.806305],[120.531533,31.787811],[120.544386,31.787148],[120.555499,31.79405],[120.558361,31.785732],[120.570708,31.793784],[120.584235,31.782147],[120.588556,31.762542],[120.594842,31.760418],[120.600006,31.744616],[120.581709,31.727615],[120.585076,31.71442],[120.600792,31.70884],[120.584908,31.692807],[120.570035,31.688909],[120.562851,31.680493],[120.568744,31.668576],[120.561055,31.655682],[120.571719,31.655771],[120.592148,31.650276],[120.595853,31.643762],[120.589566,31.636538],[120.595572,31.631397],[120.592092,31.625059],[120.600623,31.617124],[120.591475,31.611494],[120.577107,31.614154],[120.566443,31.601918],[120.55707,31.600322],[120.553085,31.605598],[120.543095,31.601741],[120.547978,31.576598],[120.563637,31.579614],[120.567397,31.584004],[120.584235,31.585157],[120.594562,31.576022],[120.599276,31.548477],[120.605787,31.525229],[120.595628,31.517153],[120.592766,31.527536],[120.568576,31.51236],[120.555218,31.507567],[120.548483,31.497403],[120.555218,31.480313],[120.536135,31.467083],[120.523844,31.46837],[120.515986,31.464418],[120.51739,31.457847],[120.501394,31.457536],[120.495781,31.447944],[120.480571,31.449143],[120.460198,31.445501],[120.438197,31.448788],[120.418834,31.448388],[120.355805,31.416452],[120.335544,31.407345],[120.253096,31.366106],[120.209599,31.345658],[120.173735,31.308795],[120.110201,31.263998],[119.919993,31.17091]]]]}},{"type":"Feature","properties":{"adcode":320600,"name":"南通市","center":[120.864608,32.016212],"centroid":[121.047928,32.182334],"childrenNum":7,"level":"city","parent":{"adcode":320000},"subFeatureIndex":5,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.202303,32.600908],[120.207635,32.591567],[120.224584,32.58183],[120.23059,32.58683],[120.255734,32.597619],[120.262862,32.574855],[120.262301,32.562001],[120.270102,32.548707],[120.263704,32.514562],[120.270102,32.501788],[120.258316,32.498934],[120.271393,32.47228],[120.275153,32.438897],[120.280654,32.430989],[120.279924,32.421454],[120.289185,32.384975],[120.284526,32.379876],[120.292608,32.369544],[120.302542,32.37249],[120.310119,32.361542],[120.323028,32.368445],[120.351652,32.377898],[120.352381,32.368929],[120.359734,32.35798],[120.346208,32.343996],[120.353111,32.335947],[120.354234,32.324951],[120.365234,32.308806],[120.352325,32.30445],[120.352381,32.278663],[120.347218,32.266515],[120.350866,32.255995],[120.345927,32.249919],[120.35704,32.238736],[120.364617,32.237812],[120.371632,32.217555],[120.343233,32.170067],[120.347442,32.150545],[120.351034,32.149487],[120.356198,32.130754],[120.374383,32.128065],[120.387909,32.129696],[120.417038,32.124847],[120.435166,32.123921],[120.440779,32.119865],[120.482255,32.102933],[120.486745,32.099141],[120.512843,32.091732],[120.518456,32.065885],[120.5294,32.056444],[120.550503,32.050929],[120.547922,32.041046],[120.558529,32.03372],[120.553141,32.021143],[120.588276,32.009711],[120.628405,32.001147],[120.652651,32.002383],[120.70249,32.013375],[120.76159,32.020437],[120.78202,32.015979],[120.790102,31.998101],[120.803123,31.988432],[120.853467,31.888641],[120.860314,31.873037],[120.883831,31.834702],[120.916664,31.793652],[120.932884,31.786705],[120.959488,31.783032],[121.060625,31.783077],[121.076845,31.777014],[121.101204,31.762542],[121.11849,31.75909],[121.149247,31.78728],[121.181519,31.820416],[121.200321,31.835144],[121.225296,31.84704],[121.265594,31.864107],[121.301907,31.872727],[121.323066,31.868528],[121.369314,31.843281],[121.385029,31.833552],[121.41629,31.797634],[121.410902,31.795598],[121.420893,31.779581],[121.4315,31.76927],[121.455578,31.759356],[121.487738,31.753424],[121.49857,31.753247],[121.51305,31.743686],[121.539429,31.735496],[121.565022,31.716722],[121.599651,31.703127],[121.600886,31.70698],[121.63327,31.696173],[121.642643,31.697458],[121.715269,31.673848],[121.81781,31.652049],[121.975185,31.617035],[121.96772,31.703924],[121.970302,31.718892],[121.960143,31.736868],[121.941005,31.776572],[121.897452,31.85354],[121.889145,31.866627],[121.874833,31.90212],[121.870287,31.928279],[121.856031,31.955225],[121.772405,32.033235],[121.759047,32.0594],[121.729637,32.069194],[121.59258,32.112943],[121.544368,32.123039],[121.52551,32.136528],[121.542291,32.152131],[121.50306,32.170067],[121.473089,32.169803],[121.458609,32.17769],[121.461527,32.193726],[121.479263,32.197999],[121.49958,32.211169],[121.493912,32.263478],[121.457767,32.27391],[121.45019,32.282272],[121.447047,32.299258],[121.440536,32.366071],[121.425495,32.431033],[121.417413,32.443115],[121.390529,32.460729],[121.351915,32.474256],[121.287652,32.480185],[121.269523,32.483434],[121.153119,32.529266],[121.122026,32.569328],[121.076901,32.576391],[121.051701,32.587137],[121.020496,32.605513],[120.988448,32.606741],[120.961733,32.612178],[120.979637,32.636335],[120.976044,32.658426],[120.908133,32.639316],[120.895336,32.631601],[120.863233,32.630242],[120.863457,32.61915],[120.851447,32.618273],[120.851166,32.607442],[120.856891,32.612178],[120.868453,32.609766],[120.85459,32.605074],[120.837247,32.606741],[120.832589,32.597005],[120.818277,32.592006],[120.805031,32.582619],[120.792627,32.578452],[120.793469,32.600601],[120.74363,32.598321],[120.740319,32.585427],[120.721012,32.591611],[120.720282,32.599724],[120.701031,32.603496],[120.680938,32.594812],[120.671565,32.587883],[120.663034,32.572048],[120.653381,32.571872],[120.649284,32.585032],[120.656075,32.594637],[120.656917,32.603496],[120.643952,32.613187],[120.629752,32.617527],[120.620267,32.601873],[120.615216,32.606127],[120.621838,32.626033],[120.612746,32.635634],[120.614767,32.639755],[120.600455,32.650011],[120.590521,32.639667],[120.578903,32.63502],[120.549886,32.635765],[120.544554,32.632258],[120.51217,32.636116],[120.506838,32.640763],[120.495276,32.639492],[120.496511,32.624367],[120.484669,32.63125],[120.475576,32.628664],[120.465642,32.631469],[120.44308,32.629277],[120.443192,32.639097],[120.436962,32.647075],[120.431855,32.676525],[120.415747,32.679416],[120.410471,32.689406],[120.394251,32.687478],[120.389592,32.69072],[120.392511,32.707235],[120.376122,32.71087],[120.366693,32.704913],[120.340988,32.705351],[120.333018,32.699788],[120.319492,32.699306],[120.315563,32.704388],[120.292664,32.687566],[120.276276,32.679285],[120.251861,32.679898],[120.225651,32.675911],[120.224809,32.658382],[120.228906,32.649924],[120.221722,32.64839],[120.222171,32.634319],[120.213528,32.625639],[120.209375,32.608188],[120.213584,32.602706],[120.202303,32.600908]]],[[[121.403775,32.530583],[121.402652,32.521541],[121.408601,32.519566],[121.435205,32.520005],[121.436495,32.529266],[121.429255,32.531505],[121.403775,32.530583]]]]}},{"type":"Feature","properties":{"adcode":320700,"name":"连云港市","center":[119.178821,34.600018],"centroid":[119.144784,34.536075],"childrenNum":6,"level":"city","parent":{"adcode":320000},"subFeatureIndex":6,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.823009,34.481996],[119.811615,34.485557],[119.781813,34.515759],[119.741066,34.532871],[119.697906,34.546593],[119.641388,34.568971],[119.62528,34.585901],[119.611248,34.592929],[119.584926,34.601328],[119.56893,34.615381],[119.560736,34.63153],[119.537051,34.633758],[119.464986,34.674694],[119.474584,34.696054],[119.484855,34.692716],[119.491814,34.69554],[119.492488,34.711546],[119.507978,34.711032],[119.522795,34.722329],[119.525714,34.733281],[119.508427,34.729217],[119.483508,34.736404],[119.457129,34.748167],[119.381809,34.752444],[119.378273,34.761383],[119.399993,34.755823],[119.444332,34.758432],[119.460777,34.754069],[119.468241,34.748167],[119.48839,34.747868],[119.49709,34.759458],[119.480421,34.76412],[119.477165,34.769037],[119.459486,34.77109],[119.456175,34.779813],[119.438271,34.784302],[119.440684,34.769208],[119.378497,34.764547],[119.370864,34.772971],[119.355037,34.775751],[119.342689,34.769251],[119.324393,34.770406],[119.312831,34.774724],[119.272196,34.797811],[119.250756,34.794049],[119.238577,34.799563],[119.213602,34.833924],[119.220393,34.841187],[119.218035,34.852594],[119.210515,34.862333],[119.21377,34.876726],[119.202433,34.890433],[119.212704,34.917799],[119.214612,34.937687],[119.211806,34.957912],[119.211357,34.981715],[119.21899,35.004828],[119.227521,35.020944],[119.232572,35.041831],[119.238072,35.048479],[119.279436,35.071105],[119.285442,35.068506],[119.281064,35.053678],[119.29184,35.02849],[119.307162,35.03305],[119.292682,35.068506],[119.293524,35.07298],[119.305871,35.076686],[119.30183,35.093171],[119.286677,35.115146],[119.273768,35.115487],[119.252665,35.122683],[119.24071,35.122938],[119.220729,35.107183],[119.203218,35.110888],[119.171395,35.107183],[119.159048,35.100965],[119.138057,35.09628],[119.12947,35.076175],[119.12049,35.070083],[119.120378,35.058024],[119.114597,35.054956],[119.073625,35.056661],[119.06139,35.05159],[119.037368,35.051334],[119.02721,35.05534],[118.999877,35.053039],[118.992132,35.048181],[118.965641,35.046476],[118.945155,35.040808],[118.926521,35.05078],[118.911143,35.047754],[118.903847,35.041319],[118.885774,35.034244],[118.865345,35.029854],[118.862482,35.025719],[118.86512,34.99323],[118.859227,34.962647],[118.860799,34.944003],[118.829761,34.91114],[118.807199,34.877708],[118.804449,34.870277],[118.804617,34.852466],[118.797265,34.842853],[118.788734,34.845673],[118.769034,34.846143],[118.768248,34.838795],[118.781999,34.827472],[118.776611,34.818754],[118.779024,34.809608],[118.77358,34.795332],[118.759998,34.790287],[118.737548,34.792083],[118.728399,34.786867],[118.740186,34.781224],[118.738502,34.766857],[118.727221,34.768738],[118.716445,34.76382],[118.716501,34.747739],[118.730364,34.74543],[118.74013,34.736917],[118.759212,34.740853],[118.768529,34.738072],[118.783402,34.722029],[118.76735,34.710519],[118.766228,34.705213],[118.744732,34.695284],[118.720093,34.694214],[118.704041,34.688778],[118.69029,34.67859],[118.681366,34.678333],[118.664304,34.693443],[118.650554,34.69507],[118.633716,34.687023],[118.604924,34.696482],[118.601332,34.714156],[118.570463,34.71253],[118.558901,34.706839],[118.546105,34.706197],[118.539314,34.711503],[118.525226,34.712573],[118.522701,34.692288],[118.508164,34.687066],[118.500812,34.675165],[118.484255,34.670884],[118.468484,34.674309],[118.460851,34.657569],[118.466463,34.643137],[118.474882,34.637184],[118.473816,34.623435],[118.463657,34.625277],[118.45434,34.617737],[118.439186,34.626305],[118.423864,34.592929],[118.428017,34.561169],[118.440421,34.52751],[118.439523,34.507995],[118.43088,34.489076],[118.421395,34.48324],[118.416231,34.473885],[118.408205,34.435512],[118.415221,34.420269],[118.422124,34.423275],[118.434696,34.413269],[118.452825,34.411895],[118.462422,34.40687],[118.489699,34.416189],[118.489811,34.420398],[118.50373,34.430746],[118.524216,34.440191],[118.532298,34.435512],[118.548069,34.432893],[118.572147,34.422931],[118.574616,34.416662],[118.585617,34.419496],[118.590444,34.435984],[118.597796,34.445429],[118.607899,34.446931],[118.634502,34.439977],[118.646457,34.439547],[118.648814,34.426796],[118.656784,34.420655],[118.669075,34.419281],[118.673958,34.400728],[118.654482,34.383288],[118.644773,34.383632],[118.644268,34.359012],[118.6661,34.342423],[118.676596,34.339414],[118.676371,34.345345],[118.693265,34.345904],[118.708194,34.336362],[118.739905,34.325056],[118.748268,34.330817],[118.759829,34.321058],[118.758258,34.312932],[118.766564,34.308891],[118.78531,34.311814],[118.810903,34.343196],[118.812138,34.357336],[118.825328,34.358797],[118.837787,34.368809],[118.864335,34.365887],[118.874942,34.367692],[118.907439,34.368036],[118.913388,34.378262],[118.924837,34.379293],[118.931909,34.374738],[118.939991,34.382343],[118.953237,34.368508],[118.95363,34.350116],[118.963788,34.350546],[118.96463,34.36086],[118.974901,34.36911],[118.980794,34.379636],[118.995162,34.39029],[118.994994,34.404121],[119.015311,34.405324],[119.033215,34.398881],[119.038659,34.403735],[119.041409,34.421901],[119.061222,34.420183],[119.089565,34.42087],[119.086871,34.409747],[119.065263,34.409232],[119.056227,34.3823],[119.057068,34.356176],[119.062232,34.338683],[119.075477,34.342681],[119.073008,34.331763],[119.082774,34.310868],[119.074074,34.265107],[119.091866,34.262353],[119.09108,34.23688],[119.09703,34.232921],[119.099667,34.208042],[119.13295,34.205415],[119.136991,34.177858],[119.144287,34.176265],[119.141874,34.161578],[119.145409,34.158692],[119.129077,34.145768],[119.142828,34.134049],[119.150348,34.140555],[119.15641,34.133618],[119.168421,34.129654],[119.176166,34.118579],[119.166849,34.10746],[119.174931,34.093494],[119.18408,34.089786],[119.190534,34.076723],[119.209504,34.05624],[119.227352,34.052703],[119.235715,34.043991],[119.236164,34.036312],[119.248624,34.033767],[119.268211,34.034285],[119.26838,34.042438],[119.302897,34.04041],[119.303458,34.034544],[119.319285,34.032861],[119.320015,34.026131],[119.337919,34.029669],[119.370752,34.032991],[119.392809,34.036787],[119.397917,34.024449],[119.403305,34.022335],[119.40931,34.001925],[119.425474,34.003521],[119.43002,33.985611],[119.439169,33.979611],[119.474135,33.999206],[119.497819,34.014568],[119.509269,34.017157],[119.519596,34.025743],[119.517968,34.031351],[119.53576,34.030877],[119.541148,34.016596],[119.555236,34.018624],[119.563318,34.01021],[119.568257,34.013187],[119.571905,34.02104],[119.569716,34.032775],[119.553889,34.060466],[119.563598,34.069004],[119.577012,34.069737],[119.585712,34.078792],[119.588406,34.091338],[119.569716,34.10621],[119.558828,34.10177],[119.55097,34.115605],[119.5375,34.108968],[119.521392,34.13672],[119.529025,34.137711],[119.533403,34.145423],[119.529306,34.166833],[119.510279,34.160501],[119.503881,34.172561],[119.532561,34.188538],[119.552485,34.207955],[119.557424,34.205372],[119.573476,34.207783],[119.597442,34.224528],[119.612259,34.229951],[119.629826,34.242948],[119.662715,34.255943],[119.702059,34.281152],[119.727877,34.303086],[119.740449,34.308805],[119.743087,34.319038],[119.753975,34.326088],[119.753582,34.343239],[119.758745,34.350546],[119.771766,34.354285],[119.782486,34.369754],[119.802411,34.376156],[119.803814,34.385651],[119.791186,34.400299],[119.788492,34.408073],[119.798875,34.430316],[119.795564,34.450494],[119.808585,34.450065],[119.81184,34.462298],[119.819192,34.462856],[119.823009,34.481996]]]]}},{"type":"Feature","properties":{"adcode":320800,"name":"淮安市","center":[119.021265,33.597506],"centroid":[118.971034,33.352326],"childrenNum":7,"level":"city","parent":{"adcode":320000},"subFeatureIndex":7,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.184922,32.82564],[119.190927,32.825421],[119.278651,32.798909],[119.313729,32.804859],[119.332699,32.81501],[119.345383,32.838325],[119.349817,32.868411],[119.345608,32.890182],[119.328265,32.945897],[119.324954,32.96861],[119.325122,32.998434],[119.343082,33.011443],[119.359246,33.029688],[119.364185,33.03859],[119.363736,33.053513],[119.343251,33.065119],[119.334776,33.084442],[119.321081,33.102279],[119.313897,33.128614],[119.305422,33.13463],[119.271467,33.146834],[119.250251,33.157643],[119.228531,33.151106],[119.22376,33.16126],[119.229541,33.165879],[119.22202,33.188056],[119.219158,33.206002],[119.211413,33.203084],[119.199907,33.205915],[119.165222,33.207614],[119.150685,33.212797],[119.143277,33.230042],[119.146644,33.248589],[119.155512,33.254466],[119.163145,33.271529],[119.153435,33.285281],[119.160114,33.283453],[119.184697,33.289763],[119.210683,33.292504],[119.239924,33.301511],[119.262655,33.303033],[119.248848,33.318129],[119.235041,33.345138],[119.243123,33.352443],[119.254517,33.352878],[119.29184,33.3634],[119.310979,33.3674],[119.36542,33.369574],[119.401284,33.375182],[119.416831,33.376181],[119.448429,33.384832],[119.476773,33.403737],[119.48839,33.407909],[119.504498,33.407301],[119.53127,33.414905],[119.543898,33.414905],[119.553103,33.410516],[119.559164,33.400913],[119.566853,33.399348],[119.604177,33.422291],[119.617983,33.427201],[119.620004,33.43741],[119.605299,33.449572],[119.604121,33.455435],[119.591436,33.464078],[119.580997,33.464512],[119.576282,33.474239],[119.55894,33.471416],[119.532449,33.501503],[119.520775,33.500896],[119.498156,33.520297],[119.492712,33.536006],[119.493329,33.545941],[119.486594,33.560691],[119.477783,33.588362],[119.471104,33.597338],[119.464369,33.627121],[119.456455,33.64164],[119.463751,33.645323],[119.467624,33.638303],[119.496136,33.654207],[119.483732,33.658453],[119.484911,33.667162],[119.492263,33.673097],[119.481655,33.685963],[119.48261,33.69809],[119.508932,33.72208],[119.508988,33.739526],[119.524311,33.770299],[119.53228,33.776573],[119.536153,33.79721],[119.545526,33.803569],[119.543169,33.812392],[119.555292,33.827572],[119.559389,33.840069],[119.584814,33.858961],[119.598733,33.874522],[119.617871,33.879276],[119.639199,33.893752],[119.638974,33.904597],[119.64599,33.924772],[119.637571,33.939024],[119.644026,33.947014],[119.63426,33.951289],[119.620397,33.946107],[119.615121,33.9547],[119.595309,33.976805],[119.601427,33.980129],[119.597273,33.995926],[119.57892,33.999896],[119.568257,34.013187],[119.563318,34.01021],[119.555236,34.018624],[119.541148,34.016596],[119.53576,34.030877],[119.517968,34.031351],[119.519596,34.025743],[119.509269,34.017157],[119.497819,34.014568],[119.474135,33.999206],[119.439169,33.979611],[119.43002,33.985611],[119.425474,34.003521],[119.40931,34.001925],[119.403305,34.022335],[119.397917,34.024449],[119.392809,34.036787],[119.370752,34.032991],[119.337919,34.029669],[119.320015,34.026131],[119.319285,34.032861],[119.303458,34.034544],[119.302897,34.04041],[119.26838,34.042438],[119.268211,34.034285],[119.248624,34.033767],[119.236164,34.036312],[119.235715,34.043991],[119.227352,34.052703],[119.209504,34.05624],[119.190534,34.076723],[119.18408,34.089786],[119.174931,34.093494],[119.166456,34.088105],[119.15815,34.076421],[119.155119,34.056973],[119.148833,34.045845],[119.129751,34.028849],[119.114541,34.024406],[119.08384,34.001407],[119.081932,33.987769],[119.07312,33.98151],[119.058864,33.978359],[119.055441,33.973135],[119.0427,33.968905],[119.040736,33.959622],[119.050951,33.957507],[119.053252,33.937383],[119.044553,33.929436],[119.035853,33.928054],[119.024853,33.911164],[119.008015,33.896604],[118.997295,33.897296],[118.999708,33.9049],[118.987585,33.904554],[118.972263,33.919372],[118.950767,33.914275],[118.948803,33.906801],[118.941338,33.907751],[118.933088,33.900709],[118.922143,33.902524],[118.907383,33.889777],[118.885381,33.885888],[118.874493,33.892543],[118.863661,33.891376],[118.857151,33.880227],[118.828751,33.858615],[118.818985,33.844954],[118.807311,33.819356],[118.799847,33.813517],[118.805628,33.794355],[118.79575,33.772852],[118.805122,33.763245],[118.80226,33.741215],[118.814215,33.730868],[118.809276,33.715975],[118.813148,33.700948],[118.798612,33.69155],[118.792607,33.666555],[118.799566,33.64671],[118.757977,33.635746],[118.770605,33.60705],[118.78531,33.587018],[118.806357,33.572749],[118.803102,33.561776],[118.797433,33.560604],[118.789744,33.5367],[118.789969,33.508709],[118.785591,33.493082],[118.779866,33.487568],[118.782841,33.444012],[118.746921,33.386701],[118.780147,33.345834],[118.703424,33.323697],[118.667784,33.311734],[118.511083,33.263868],[118.443452,33.204783],[118.424313,33.187141],[118.320201,33.196246],[118.261718,33.199948],[118.221364,33.180693],[118.223722,33.155464],[118.219625,33.114096],[118.210476,33.111829],[118.20969,33.104329],[118.220915,33.105855],[118.221308,33.087626],[118.206491,33.091246],[118.202899,33.088106],[118.223666,33.083439],[118.22765,33.069525],[118.214854,33.070833],[118.212441,33.061934],[118.233375,33.060014],[118.239605,33.046445],[118.243478,33.027767],[118.244825,32.998303],[118.252402,32.982148],[118.269352,32.969178],[118.303812,32.968654],[118.309649,32.959002],[118.293373,32.947164],[118.251335,32.936155],[118.235396,32.926543],[118.233039,32.916231],[118.239774,32.883363],[118.244432,32.874488],[118.250606,32.848384],[118.263178,32.856168],[118.284618,32.857305],[118.289557,32.845498],[118.301736,32.846241],[118.297863,32.83207],[118.306619,32.810591],[118.294439,32.800134],[118.298761,32.785562],[118.307124,32.778735],[118.322334,32.777465],[118.326431,32.763459],[118.334064,32.761576],[118.348769,32.773001],[118.366224,32.768318],[118.371163,32.757724],[118.372285,32.741744],[118.36628,32.735001],[118.368188,32.724754],[118.375316,32.719017],[118.398664,32.721426],[118.411011,32.716039],[118.422854,32.718097],[118.450467,32.743364],[118.459279,32.726111],[118.483469,32.721426],[118.489755,32.724491],[118.520456,32.723221],[118.544702,32.729396],[118.559743,32.729921],[118.576581,32.719104],[118.59078,32.724841],[118.607562,32.726637],[118.617047,32.738942],[118.632313,32.739993],[118.639385,32.744809],[118.654033,32.740693],[118.657569,32.736096],[118.694163,32.726637],[118.70724,32.720287],[118.724471,32.721951],[118.736706,32.73233],[118.756294,32.737059],[118.752702,32.755842],[118.746359,32.759256],[118.737941,32.773264],[118.736874,32.793351],[118.746808,32.800353],[118.741813,32.853369],[118.747875,32.858704],[118.791035,32.848384],[118.811689,32.854987],[118.812531,32.865219],[118.806189,32.870247],[118.81124,32.875494],[118.814608,32.902727],[118.809332,32.907884],[118.812194,32.91693],[118.818985,32.920644],[118.836945,32.911424],[118.839471,32.922523],[118.848956,32.927198],[118.842502,32.943669],[118.849405,32.945897],[118.849349,32.956643],[118.865233,32.955027],[118.884652,32.960618],[118.896214,32.957735],[118.891162,32.951489],[118.893239,32.940873],[118.90626,32.944936],[118.921414,32.939563],[118.933818,32.938645],[118.941619,32.946116],[118.961207,32.94581],[118.993647,32.958215],[119.008913,32.959395],[119.020812,32.955813],[119.026312,32.947251],[119.023281,32.935063],[119.030016,32.927854],[119.019801,32.925713],[119.015592,32.907534],[119.021541,32.905961],[119.045002,32.911424],[119.045731,32.892455],[119.055104,32.874751],[119.071324,32.864738],[119.10427,32.826734],[119.113081,32.822928],[119.184922,32.82564]]]]}},{"type":"Feature","properties":{"adcode":320900,"name":"盐城市","center":[120.139998,33.377631],"centroid":[120.19868,33.516581],"childrenNum":9,"level":"city","parent":{"adcode":320000},"subFeatureIndex":8,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.976044,32.658426],[120.963585,32.682396],[120.950059,32.689581],[120.933838,32.69221],[120.915934,32.701234],[120.915036,32.711703],[120.93294,32.715688],[120.952865,32.714068],[120.963136,32.750238],[120.971947,32.761182],[120.981376,32.85971],[120.978682,32.875712],[120.972677,32.88568],[120.957579,32.893504],[120.950395,32.916405],[120.940124,32.975467],[120.932604,33.005899],[120.917843,33.02576],[120.894438,33.038634],[120.87182,33.04723],[120.874065,33.093645],[120.859865,33.142781],[120.843757,33.209835],[120.846844,33.219852],[120.843028,33.22965],[120.819455,33.238184],[120.820297,33.256077],[120.831971,33.26883],[120.832589,33.282148],[120.821812,33.298552],[120.81373,33.303425],[120.796388,33.306122],[120.782862,33.304208],[120.769335,33.306818],[120.760748,33.319869],[120.740992,33.337615],[120.730777,33.365183],[120.728252,33.384571],[120.719833,33.420467],[120.717476,33.436715],[120.680153,33.520297],[120.649957,33.577347],[120.622849,33.615113],[120.611175,33.627251],[120.583786,33.668462],[120.570596,33.702247],[120.534508,33.782587],[120.50942,33.830945],[120.485454,33.859221],[120.424671,33.975121],[120.367591,34.091424],[120.359846,34.121897],[120.355973,34.149559],[120.347499,34.179236],[120.331671,34.209333],[120.314272,34.255814],[120.308492,34.297452],[120.311635,34.307042],[120.292833,34.318092],[120.233284,34.337179],[120.103691,34.391622],[120.043019,34.422201],[119.962536,34.458907],[119.919039,34.469122],[119.8495,34.477404],[119.823009,34.481996],[119.819192,34.462856],[119.81184,34.462298],[119.808585,34.450065],[119.795564,34.450494],[119.798875,34.430316],[119.788492,34.408073],[119.791186,34.400299],[119.803814,34.385651],[119.802411,34.376156],[119.782486,34.369754],[119.771766,34.354285],[119.758745,34.350546],[119.753582,34.343239],[119.753975,34.326088],[119.743087,34.319038],[119.740449,34.308805],[119.727877,34.303086],[119.702059,34.281152],[119.662715,34.255943],[119.629826,34.242948],[119.612259,34.229951],[119.597442,34.224528],[119.573476,34.207783],[119.557424,34.205372],[119.552485,34.207955],[119.532561,34.188538],[119.503881,34.172561],[119.510279,34.160501],[119.529306,34.166833],[119.533403,34.145423],[119.529025,34.137711],[119.521392,34.13672],[119.5375,34.108968],[119.55097,34.115605],[119.558828,34.10177],[119.569716,34.10621],[119.588406,34.091338],[119.585712,34.078792],[119.577012,34.069737],[119.563598,34.069004],[119.553889,34.060466],[119.569716,34.032775],[119.571905,34.02104],[119.568257,34.013187],[119.57892,33.999896],[119.597273,33.995926],[119.601427,33.980129],[119.595309,33.976805],[119.615121,33.9547],[119.620397,33.946107],[119.63426,33.951289],[119.644026,33.947014],[119.637571,33.939024],[119.64599,33.924772],[119.638974,33.904597],[119.639199,33.893752],[119.617871,33.879276],[119.598733,33.874522],[119.584814,33.858961],[119.559389,33.840069],[119.555292,33.827572],[119.543169,33.812392],[119.545526,33.803569],[119.536153,33.79721],[119.53228,33.776573],[119.524311,33.770299],[119.508988,33.739526],[119.508932,33.72208],[119.48261,33.69809],[119.481655,33.685963],[119.492263,33.673097],[119.484911,33.667162],[119.483732,33.658453],[119.496136,33.654207],[119.467624,33.638303],[119.463751,33.645323],[119.456455,33.64164],[119.464369,33.627121],[119.471104,33.597338],[119.477783,33.588362],[119.486594,33.560691],[119.493329,33.545941],[119.492712,33.536006],[119.498156,33.520297],[119.520775,33.500896],[119.532449,33.501503],[119.55894,33.471416],[119.576282,33.474239],[119.580997,33.464512],[119.591436,33.464078],[119.604121,33.455435],[119.605299,33.449572],[119.620004,33.43741],[119.617983,33.427201],[119.604177,33.422291],[119.566853,33.399348],[119.576731,33.378442],[119.589865,33.380963],[119.605411,33.379702],[119.613101,33.358357],[119.616356,33.333135],[119.631959,33.335353],[119.636,33.326611],[119.632408,33.317042],[119.641388,33.311038],[119.640546,33.293635],[119.654016,33.280711],[119.659516,33.285846],[119.6864,33.288892],[119.700319,33.294245],[119.71508,33.271877],[119.704248,33.269788],[119.690778,33.242668],[119.685727,33.238619],[119.693247,33.224294],[119.712611,33.219068],[119.731469,33.211664],[119.733489,33.205349],[119.728775,33.188709],[119.730346,33.172851],[119.751281,33.170803],[119.753077,33.16065],[119.739775,33.147401],[119.74926,33.131012],[119.772272,33.130924],[119.787313,33.13912],[119.843494,33.153459],[119.86847,33.154461],[119.867572,33.143391],[119.877282,33.146834],[119.890247,33.144306],[119.8944,33.151062],[119.916569,33.149449],[119.936438,33.155377],[119.968373,33.149885],[119.988073,33.151585],[120.003451,33.15603],[120.023993,33.158035],[120.048183,33.164049],[120.080848,33.181782],[120.094093,33.178645],[120.153418,33.157207],[120.168852,33.15311],[120.214145,33.13742],[120.296761,33.129573],[120.28969,33.104242],[120.293675,33.096698],[120.291991,33.081128],[120.30939,33.062283],[120.313038,33.048059],[120.308884,33.024407],[120.312364,32.992583],[120.299063,32.966601],[120.300353,32.954153],[120.287389,32.955202],[120.286378,32.949392],[120.295078,32.94546],[120.291991,32.933621],[120.280766,32.924926],[120.23884,32.927985],[120.238447,32.921168],[120.220431,32.917017],[120.204997,32.9206],[120.201068,32.930519],[120.176373,32.932529],[120.177495,32.909064],[120.181873,32.903907],[120.177046,32.877767],[120.200226,32.874488],[120.198767,32.866925],[120.20842,32.864345],[120.205895,32.852189],[120.195231,32.851358],[120.194894,32.842786],[120.184848,32.834126],[120.181031,32.82529],[120.193379,32.826078],[120.187037,32.812166],[120.167225,32.81501],[120.161107,32.809935],[120.168179,32.793045],[120.159255,32.787881],[120.162454,32.780967],[120.174184,32.779654],[120.18294,32.772913],[120.197027,32.781492],[120.199328,32.786962],[120.222396,32.792301],[120.228176,32.77856],[120.21465,32.767442],[120.206624,32.756586],[120.202583,32.74297],[120.196129,32.739336],[120.180863,32.741832],[120.181705,32.723177],[120.17323,32.715688],[120.164811,32.720331],[120.155382,32.714199],[120.157571,32.703249],[120.145055,32.705877],[120.138096,32.687171],[120.129508,32.689055],[120.121651,32.679197],[120.120977,32.633267],[120.109079,32.630505],[120.113176,32.613801],[120.122661,32.610293],[120.140846,32.6163],[120.154372,32.616037],[120.176317,32.62121],[120.17598,32.629102],[120.197251,32.619281],[120.196017,32.603013],[120.202303,32.600908],[120.213584,32.602706],[120.209375,32.608188],[120.213528,32.625639],[120.222171,32.634319],[120.221722,32.64839],[120.228906,32.649924],[120.224809,32.658382],[120.225651,32.675911],[120.251861,32.679898],[120.276276,32.679285],[120.292664,32.687566],[120.315563,32.704388],[120.319492,32.699306],[120.333018,32.699788],[120.340988,32.705351],[120.366693,32.704913],[120.376122,32.71087],[120.392511,32.707235],[120.389592,32.69072],[120.394251,32.687478],[120.410471,32.689406],[120.415747,32.679416],[120.431855,32.676525],[120.436962,32.647075],[120.443192,32.639097],[120.44308,32.629277],[120.465642,32.631469],[120.475576,32.628664],[120.484669,32.63125],[120.496511,32.624367],[120.495276,32.639492],[120.506838,32.640763],[120.51217,32.636116],[120.544554,32.632258],[120.549886,32.635765],[120.578903,32.63502],[120.590521,32.639667],[120.600455,32.650011],[120.614767,32.639755],[120.612746,32.635634],[120.621838,32.626033],[120.615216,32.606127],[120.620267,32.601873],[120.629752,32.617527],[120.643952,32.613187],[120.656917,32.603496],[120.656075,32.594637],[120.649284,32.585032],[120.653381,32.571872],[120.663034,32.572048],[120.671565,32.587883],[120.680938,32.594812],[120.701031,32.603496],[120.720282,32.599724],[120.721012,32.591611],[120.740319,32.585427],[120.74363,32.598321],[120.793469,32.600601],[120.792627,32.578452],[120.805031,32.582619],[120.818277,32.592006],[120.832589,32.597005],[120.837247,32.606741],[120.85459,32.605074],[120.868453,32.609766],[120.856891,32.612178],[120.851166,32.607442],[120.851447,32.618273],[120.863457,32.61915],[120.863233,32.630242],[120.895336,32.631601],[120.908133,32.639316],[120.976044,32.658426]]]]}},{"type":"Feature","properties":{"adcode":321000,"name":"扬州市","center":[119.421003,32.393159],"centroid":[119.479719,32.737224],"childrenNum":6,"level":"city","parent":{"adcode":320000},"subFeatureIndex":9,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.229036,32.222179],[119.254966,32.23222],[119.286115,32.23288],[119.336403,32.230987],[119.367609,32.225526],[119.388375,32.225086],[119.396738,32.235126],[119.412678,32.246617],[119.433893,32.257535],[119.462461,32.26251],[119.478569,32.261277],[119.504442,32.254938],[119.514769,32.248907],[119.536714,32.267924],[119.546424,32.278839],[119.544852,32.282756],[119.576395,32.28456],[119.577854,32.273029],[119.570838,32.271621],[119.570894,32.230062],[119.599406,32.234553],[119.597947,32.246265],[119.607207,32.252913],[119.615795,32.250668],[119.622081,32.237415],[119.621744,32.217423],[119.629714,32.227728],[119.627581,32.248731],[119.633923,32.257755],[119.661368,32.263742],[119.678094,32.270125],[119.688589,32.282492],[119.708401,32.276374],[119.730683,32.30401],[119.745163,32.313865],[119.768623,32.318924],[119.786022,32.317912],[119.802299,32.312809],[119.819192,32.302514],[119.843887,32.321872],[119.847311,32.328426],[119.842709,32.360662],[119.853709,32.361498],[119.856179,32.379744],[119.844561,32.395964],[119.853878,32.401854],[119.851745,32.411171],[119.863812,32.417104],[119.868526,32.438722],[119.859266,32.444477],[119.853372,32.46275],[119.84052,32.464463],[119.829688,32.460334],[119.814534,32.468855],[119.818182,32.491645],[119.824524,32.4963],[119.823402,32.535367],[119.835525,32.54976],[119.827162,32.55915],[119.815656,32.578759],[119.820034,32.592751],[119.815769,32.605644],[119.821774,32.607267],[119.816105,32.614897],[119.814365,32.627085],[119.828734,32.629365],[119.832999,32.640894],[119.844617,32.640368],[119.855056,32.631908],[119.866618,32.627611],[119.869537,32.619369],[119.890527,32.620334],[119.898666,32.616519],[119.90063,32.623973],[119.911855,32.625156],[119.89715,32.646242],[119.899171,32.65698],[119.894849,32.674334],[119.883512,32.673895],[119.870659,32.679066],[119.877282,32.69843],[119.85848,32.710608],[119.858031,32.721163],[119.843663,32.736709],[119.84529,32.752952],[119.866899,32.768493],[119.863082,32.775715],[119.833504,32.781973],[119.824917,32.794927],[119.830249,32.806872],[119.82357,32.807966],[119.806508,32.800572],[119.794666,32.803853],[119.78866,32.810197],[119.790849,32.820041],[119.800895,32.828265],[119.801513,32.837669],[119.795956,32.841474],[119.805778,32.851926],[119.79736,32.857086],[119.802691,32.862727],[119.789334,32.881177],[119.782599,32.914832],[119.775302,32.915968],[119.761888,32.904082],[119.746173,32.898706],[119.72507,32.901721],[119.719514,32.906179],[119.712386,32.921955],[119.714743,32.936374],[119.703069,32.944893],[119.696727,32.961316],[119.706661,32.989614],[119.708008,33.005681],[119.696615,33.016899],[119.683931,33.072535],[119.669731,33.089807],[119.64773,33.104111],[119.640321,33.119241],[119.649245,33.120244],[119.646158,33.130096],[119.653679,33.156553],[119.657271,33.162349],[119.692069,33.186923],[119.701835,33.201821],[119.708177,33.198336],[119.712611,33.219068],[119.693247,33.224294],[119.685727,33.238619],[119.690778,33.242668],[119.704248,33.269788],[119.71508,33.271877],[119.700319,33.294245],[119.6864,33.288892],[119.659516,33.285846],[119.654016,33.280711],[119.640546,33.293635],[119.641388,33.311038],[119.632408,33.317042],[119.636,33.326611],[119.631959,33.335353],[119.616356,33.333135],[119.613101,33.358357],[119.605411,33.379702],[119.589865,33.380963],[119.576731,33.378442],[119.566853,33.399348],[119.559164,33.400913],[119.553103,33.410516],[119.543898,33.414905],[119.53127,33.414905],[119.504498,33.407301],[119.48839,33.407909],[119.476773,33.403737],[119.448429,33.384832],[119.416831,33.376181],[119.401284,33.375182],[119.36542,33.369574],[119.310979,33.3674],[119.29184,33.3634],[119.254517,33.352878],[119.243123,33.352443],[119.235041,33.345138],[119.248848,33.318129],[119.262655,33.303033],[119.239924,33.301511],[119.210683,33.292504],[119.184697,33.289763],[119.160114,33.283453],[119.153435,33.285281],[119.163145,33.271529],[119.155512,33.254466],[119.146644,33.248589],[119.143277,33.230042],[119.150685,33.212797],[119.165222,33.207614],[119.199907,33.205915],[119.211413,33.203084],[119.219158,33.206002],[119.22202,33.188056],[119.229541,33.165879],[119.22376,33.16126],[119.228531,33.151106],[119.250251,33.157643],[119.271467,33.146834],[119.305422,33.13463],[119.313897,33.128614],[119.321081,33.102279],[119.334776,33.084442],[119.343251,33.065119],[119.363736,33.053513],[119.364185,33.03859],[119.359246,33.029688],[119.343082,33.011443],[119.325122,32.998434],[119.324954,32.96861],[119.328265,32.945897],[119.345608,32.890182],[119.349817,32.868411],[119.345383,32.838325],[119.332699,32.81501],[119.313729,32.804859],[119.278651,32.798909],[119.190927,32.825421],[119.184922,32.82564],[119.188906,32.810854],[119.19132,32.788844],[119.200861,32.750982],[119.208214,32.740518],[119.208943,32.71525],[119.211637,32.708199],[119.208719,32.641508],[119.220224,32.629628],[119.216913,32.617308],[119.220505,32.609854],[119.231,32.607135],[119.220056,32.592444],[119.220168,32.57661],[119.20928,32.573583],[119.193733,32.579154],[119.187167,32.599944],[119.176952,32.593848],[119.175212,32.571083],[119.153828,32.56187],[119.154502,32.554938],[119.166681,32.545986],[119.167803,32.536332],[119.155568,32.528081],[119.150124,32.509821],[119.142266,32.499417],[119.147767,32.492655],[119.134521,32.491558],[119.115495,32.476979],[119.096019,32.466088],[119.085131,32.452735],[119.073681,32.455371],[119.067452,32.462398],[119.047022,32.462882],[119.035909,32.452428],[119.02373,32.456073],[119.022495,32.440303],[119.029455,32.428836],[119.016434,32.413193],[119.017556,32.399261],[119.02749,32.388316],[119.037425,32.388844],[119.038435,32.38159],[119.022551,32.380447],[119.02171,32.375436],[119.043823,32.365191],[119.027322,32.35134],[119.028445,32.345095],[119.041971,32.333264],[119.035853,32.325435],[119.035572,32.308718],[119.039838,32.303746],[119.041073,32.271709],[119.037088,32.259868],[119.056563,32.25168],[119.074748,32.248951],[119.086029,32.241158],[119.132332,32.245164],[119.153772,32.243668],[119.177232,32.238912],[119.229036,32.222179]]]]}},{"type":"Feature","properties":{"adcode":321100,"name":"镇江市","center":[119.452753,32.204402],"centroid":[119.458183,32.014028],"childrenNum":6,"level":"city","parent":{"adcode":320000},"subFeatureIndex":10,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.234087,31.627053],[119.23695,31.625192],[119.258389,31.632195],[119.282804,31.642787],[119.299922,31.654752],[119.316535,31.671013],[119.328658,31.704013],[119.321081,31.707644],[119.321586,31.715527],[119.331072,31.727305],[119.321643,31.73222],[119.305647,31.733017],[119.304637,31.767367],[119.307387,31.776527],[119.314683,31.777324],[119.320071,31.797058],[119.314571,31.796616],[119.313785,31.813825],[119.320015,31.825414],[119.332643,31.836338],[119.3295,31.845757],[119.342072,31.859553],[119.364129,31.857961],[119.372436,31.845802],[119.387028,31.846642],[119.40409,31.832092],[119.422331,31.829395],[119.429347,31.832314],[119.432995,31.825812],[119.443378,31.828908],[119.432041,31.840362],[119.42553,31.852788],[119.419525,31.852081],[119.423229,31.871666],[119.437541,31.876397],[119.448822,31.885414],[119.46392,31.881215],[119.468803,31.871666],[119.508203,31.851859],[119.550016,31.856458],[119.556077,31.862515],[119.559894,31.85606],[119.570053,31.854557],[119.576731,31.848366],[119.586946,31.847438],[119.59211,31.835321],[119.589416,31.826962],[119.597329,31.827847],[119.605131,31.822052],[119.605692,31.806128],[119.615009,31.796174],[119.629601,31.801173],[119.644643,31.795554],[119.650817,31.777678],[119.656541,31.773607],[119.688196,31.769402],[119.693303,31.756966],[119.706717,31.747139],[119.708289,31.737931],[119.723892,31.732928],[119.74,31.731157],[119.734724,31.74373],[119.736295,31.7621],[119.748755,31.780333],[119.757342,31.786218],[119.763965,31.808119],[119.790456,31.806968],[119.785461,31.816745],[119.790344,31.826564],[119.800503,31.833331],[119.811784,31.852213],[119.782262,31.852081],[119.769914,31.847615],[119.763348,31.8569],[119.764077,31.872595],[119.75521,31.880331],[119.771823,31.900839],[119.780466,31.901634],[119.781757,31.913875],[119.759643,31.921121],[119.760485,31.926644],[119.78389,31.919354],[119.789446,31.926909],[119.777154,31.944624],[119.767613,31.949306],[119.778165,31.984106],[119.775639,31.986446],[119.784788,32.012315],[119.777435,32.014257],[119.796293,32.049032],[119.804768,32.056091],[119.822223,32.055827],[119.829014,32.0519],[119.843831,32.059841],[119.859939,32.051547],[119.869593,32.058121],[119.878629,32.042193],[119.883736,32.039281],[119.890864,32.046164],[119.895972,32.040163],[119.905906,32.015361],[119.919712,32.003663],[119.951704,32.002339],[119.975501,32.006886],[119.948729,32.047488],[119.930601,32.078942],[119.894063,32.182889],[119.891987,32.201083],[119.87846,32.247542],[119.869537,32.262686],[119.852699,32.28192],[119.834571,32.295694],[119.819192,32.302514],[119.802299,32.312809],[119.786022,32.317912],[119.768623,32.318924],[119.745163,32.313865],[119.730683,32.30401],[119.708401,32.276374],[119.688589,32.282492],[119.678094,32.270125],[119.661368,32.263742],[119.633923,32.257755],[119.627581,32.248731],[119.629714,32.227728],[119.621744,32.217423],[119.622081,32.237415],[119.615795,32.250668],[119.607207,32.252913],[119.597947,32.246265],[119.599406,32.234553],[119.570894,32.230062],[119.570838,32.271621],[119.577854,32.273029],[119.576395,32.28456],[119.544852,32.282756],[119.546424,32.278839],[119.536714,32.267924],[119.514769,32.248907],[119.504442,32.254938],[119.478569,32.261277],[119.462461,32.26251],[119.433893,32.257535],[119.412678,32.246617],[119.396738,32.235126],[119.388375,32.225086],[119.367609,32.225526],[119.336403,32.230987],[119.286115,32.23288],[119.254966,32.23222],[119.229036,32.222179],[119.241664,32.216278],[119.221403,32.201127],[119.216239,32.190686],[119.191095,32.1854],[119.184529,32.189629],[119.154446,32.186193],[119.13671,32.193374],[119.121332,32.187603],[119.086871,32.178527],[119.078677,32.178747],[119.076039,32.161695],[119.047976,32.161254],[119.058472,32.15645],[119.039333,32.157023],[119.031756,32.14865],[119.022383,32.130886],[119.00925,32.12467],[119.008913,32.115941],[119.026649,32.115941],[119.049772,32.109768],[119.057686,32.102228],[119.069248,32.107916],[119.079799,32.107343],[119.089733,32.089704],[119.098882,32.091027],[119.098489,32.07162],[119.08659,32.053224],[119.092652,32.037604],[119.097928,32.011256],[119.092371,32.004105],[119.10281,32.004899],[119.112464,32.000441],[119.114204,31.988212],[119.121612,31.984812],[119.121107,31.977571],[119.113923,31.979823],[119.111061,31.96949],[119.102979,31.965603],[119.090126,31.974126],[119.073738,31.969622],[119.06487,31.97342],[119.046854,31.968562],[119.02923,31.95708],[119.029455,31.950013],[119.037537,31.93897],[119.051512,31.935922],[119.06762,31.940207],[119.104157,31.933624],[119.108423,31.922977],[119.111173,31.901634],[119.116449,31.890497],[119.107806,31.885149],[119.100341,31.865787],[119.092427,31.860437],[119.075421,31.864195],[119.069753,31.868793],[119.043374,31.854424],[119.032822,31.853761],[119.025919,31.846376],[119.003357,31.845757],[118.979672,31.842352],[118.969457,31.834613],[118.970411,31.826077],[118.986407,31.81785],[118.998137,31.80166],[119.006387,31.798607],[119.002908,31.783431],[118.982534,31.782988],[118.980458,31.764667],[118.998867,31.76719],[119.00504,31.777766],[119.021541,31.778607],[119.029679,31.784714],[119.055665,31.788962],[119.065768,31.78197],[119.077105,31.783962],[119.077835,31.773916],[119.089902,31.769624],[119.093999,31.756036],[119.105392,31.751344],[119.114428,31.740233],[119.12498,31.735806],[119.129245,31.723586],[119.138674,31.722125],[119.157701,31.699362],[119.186437,31.694136],[119.190422,31.687049],[119.186605,31.677658],[119.192274,31.659847],[119.187335,31.649168],[119.204734,31.646642],[119.212423,31.627718],[119.232516,31.632283],[119.234087,31.627053]]]]}},{"type":"Feature","properties":{"adcode":321200,"name":"泰州市","center":[119.915176,32.484882],"centroid":[120.060841,32.571433],"childrenNum":6,"level":"city","parent":{"adcode":320000},"subFeatureIndex":11,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.553141,32.021143],[120.558529,32.03372],[120.547922,32.041046],[120.550503,32.050929],[120.5294,32.056444],[120.518456,32.065885],[120.512843,32.091732],[120.486745,32.099141],[120.482255,32.102933],[120.440779,32.119865],[120.435166,32.123921],[120.417038,32.124847],[120.387909,32.129696],[120.374383,32.128065],[120.356198,32.130754],[120.351034,32.149487],[120.347442,32.150545],[120.343233,32.170067],[120.371632,32.217555],[120.364617,32.237812],[120.35704,32.238736],[120.345927,32.249919],[120.350866,32.255995],[120.347218,32.266515],[120.352381,32.278663],[120.352325,32.30445],[120.365234,32.308806],[120.354234,32.324951],[120.353111,32.335947],[120.346208,32.343996],[120.359734,32.35798],[120.352381,32.368929],[120.351652,32.377898],[120.323028,32.368445],[120.310119,32.361542],[120.302542,32.37249],[120.292608,32.369544],[120.284526,32.379876],[120.289185,32.384975],[120.279924,32.421454],[120.280654,32.430989],[120.275153,32.438897],[120.271393,32.47228],[120.258316,32.498934],[120.270102,32.501788],[120.263704,32.514562],[120.270102,32.548707],[120.262301,32.562001],[120.262862,32.574855],[120.255734,32.597619],[120.23059,32.58683],[120.224584,32.58183],[120.207635,32.591567],[120.202303,32.600908],[120.196017,32.603013],[120.197251,32.619281],[120.17598,32.629102],[120.176317,32.62121],[120.154372,32.616037],[120.140846,32.6163],[120.122661,32.610293],[120.113176,32.613801],[120.109079,32.630505],[120.120977,32.633267],[120.121651,32.679197],[120.129508,32.689055],[120.138096,32.687171],[120.145055,32.705877],[120.157571,32.703249],[120.155382,32.714199],[120.164811,32.720331],[120.17323,32.715688],[120.181705,32.723177],[120.180863,32.741832],[120.196129,32.739336],[120.202583,32.74297],[120.206624,32.756586],[120.21465,32.767442],[120.228176,32.77856],[120.222396,32.792301],[120.199328,32.786962],[120.197027,32.781492],[120.18294,32.772913],[120.174184,32.779654],[120.162454,32.780967],[120.159255,32.787881],[120.168179,32.793045],[120.161107,32.809935],[120.167225,32.81501],[120.187037,32.812166],[120.193379,32.826078],[120.181031,32.82529],[120.184848,32.834126],[120.194894,32.842786],[120.195231,32.851358],[120.205895,32.852189],[120.20842,32.864345],[120.198767,32.866925],[120.200226,32.874488],[120.177046,32.877767],[120.181873,32.903907],[120.177495,32.909064],[120.176373,32.932529],[120.201068,32.930519],[120.204997,32.9206],[120.220431,32.917017],[120.238447,32.921168],[120.23884,32.927985],[120.280766,32.924926],[120.291991,32.933621],[120.295078,32.94546],[120.286378,32.949392],[120.287389,32.955202],[120.300353,32.954153],[120.299063,32.966601],[120.312364,32.992583],[120.308884,33.024407],[120.313038,33.048059],[120.30939,33.062283],[120.291991,33.081128],[120.293675,33.096698],[120.28969,33.104242],[120.296761,33.129573],[120.214145,33.13742],[120.168852,33.15311],[120.153418,33.157207],[120.094093,33.178645],[120.080848,33.181782],[120.048183,33.164049],[120.023993,33.158035],[120.003451,33.15603],[119.988073,33.151585],[119.968373,33.149885],[119.936438,33.155377],[119.916569,33.149449],[119.8944,33.151062],[119.890247,33.144306],[119.877282,33.146834],[119.867572,33.143391],[119.86847,33.154461],[119.843494,33.153459],[119.787313,33.13912],[119.772272,33.130924],[119.74926,33.131012],[119.739775,33.147401],[119.753077,33.16065],[119.751281,33.170803],[119.730346,33.172851],[119.728775,33.188709],[119.733489,33.205349],[119.731469,33.211664],[119.712611,33.219068],[119.708177,33.198336],[119.701835,33.201821],[119.692069,33.186923],[119.657271,33.162349],[119.653679,33.156553],[119.646158,33.130096],[119.649245,33.120244],[119.640321,33.119241],[119.64773,33.104111],[119.669731,33.089807],[119.683931,33.072535],[119.696615,33.016899],[119.708008,33.005681],[119.706661,32.989614],[119.696727,32.961316],[119.703069,32.944893],[119.714743,32.936374],[119.712386,32.921955],[119.719514,32.906179],[119.72507,32.901721],[119.746173,32.898706],[119.761888,32.904082],[119.775302,32.915968],[119.782599,32.914832],[119.789334,32.881177],[119.802691,32.862727],[119.79736,32.857086],[119.805778,32.851926],[119.795956,32.841474],[119.801513,32.837669],[119.800895,32.828265],[119.790849,32.820041],[119.78866,32.810197],[119.794666,32.803853],[119.806508,32.800572],[119.82357,32.807966],[119.830249,32.806872],[119.824917,32.794927],[119.833504,32.781973],[119.863082,32.775715],[119.866899,32.768493],[119.84529,32.752952],[119.843663,32.736709],[119.858031,32.721163],[119.85848,32.710608],[119.877282,32.69843],[119.870659,32.679066],[119.883512,32.673895],[119.894849,32.674334],[119.899171,32.65698],[119.89715,32.646242],[119.911855,32.625156],[119.90063,32.623973],[119.898666,32.616519],[119.890527,32.620334],[119.869537,32.619369],[119.866618,32.627611],[119.855056,32.631908],[119.844617,32.640368],[119.832999,32.640894],[119.828734,32.629365],[119.814365,32.627085],[119.816105,32.614897],[119.821774,32.607267],[119.815769,32.605644],[119.820034,32.592751],[119.815656,32.578759],[119.827162,32.55915],[119.835525,32.54976],[119.823402,32.535367],[119.824524,32.4963],[119.818182,32.491645],[119.814534,32.468855],[119.829688,32.460334],[119.84052,32.464463],[119.853372,32.46275],[119.859266,32.444477],[119.868526,32.438722],[119.863812,32.417104],[119.851745,32.411171],[119.853878,32.401854],[119.844561,32.395964],[119.856179,32.379744],[119.853709,32.361498],[119.842709,32.360662],[119.847311,32.328426],[119.843887,32.321872],[119.819192,32.302514],[119.834571,32.295694],[119.852699,32.28192],[119.869537,32.262686],[119.87846,32.247542],[119.891987,32.201083],[119.894063,32.182889],[119.930601,32.078942],[119.948729,32.047488],[119.975501,32.006886],[119.980103,31.998057],[120.016248,31.970461],[120.022422,31.967767],[120.064908,31.95549],[120.134784,31.939367],[120.17525,31.933845],[120.205895,31.931504],[120.236595,31.932918],[120.262974,31.941841],[120.353055,31.980617],[120.370678,31.990817],[120.387853,32.006665],[120.403736,32.016199],[120.465642,32.045811],[120.503807,32.041002],[120.52463,32.030455],[120.553141,32.021143]]]]}},{"type":"Feature","properties":{"adcode":321300,"name":"宿迁市","center":[118.275162,33.963008],"centroid":[118.526352,33.784713],"childrenNum":5,"level":"city","parent":{"adcode":320000},"subFeatureIndex":12,"acroutes":[100000,320000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.174931,34.093494],[119.166849,34.10746],[119.176166,34.118579],[119.168421,34.129654],[119.15641,34.133618],[119.150348,34.140555],[119.142828,34.134049],[119.129077,34.145768],[119.145409,34.158692],[119.141874,34.161578],[119.144287,34.176265],[119.136991,34.177858],[119.13295,34.205415],[119.099667,34.208042],[119.09703,34.232921],[119.09108,34.23688],[119.091866,34.262353],[119.074074,34.265107],[119.082774,34.310868],[119.073008,34.331763],[119.075477,34.342681],[119.062232,34.338683],[119.057068,34.356176],[119.056227,34.3823],[119.065263,34.409232],[119.086871,34.409747],[119.089565,34.42087],[119.061222,34.420183],[119.041409,34.421901],[119.038659,34.403735],[119.033215,34.398881],[119.015311,34.405324],[118.994994,34.404121],[118.995162,34.39029],[118.980794,34.379636],[118.974901,34.36911],[118.96463,34.36086],[118.963788,34.350546],[118.95363,34.350116],[118.953237,34.368508],[118.939991,34.382343],[118.931909,34.374738],[118.924837,34.379293],[118.913388,34.378262],[118.907439,34.368036],[118.874942,34.367692],[118.864335,34.365887],[118.837787,34.368809],[118.825328,34.358797],[118.812138,34.357336],[118.810903,34.343196],[118.78531,34.311814],[118.766564,34.308891],[118.758258,34.312932],[118.759829,34.321058],[118.748268,34.330817],[118.739905,34.325056],[118.708194,34.336362],[118.693265,34.345904],[118.676371,34.345345],[118.676596,34.339414],[118.6661,34.342423],[118.644268,34.359012],[118.635232,34.355058],[118.633155,34.344744],[118.621986,34.341133],[118.631752,34.337179],[118.634895,34.320456],[118.632706,34.308246],[118.624063,34.305752],[118.593362,34.308031],[118.571473,34.298957],[118.57456,34.278399],[118.566871,34.274184],[118.56109,34.247983],[118.565468,34.236794],[118.573494,34.233566],[118.559687,34.187806],[118.560192,34.165454],[118.519221,34.168598],[118.505358,34.158562],[118.50968,34.148784],[118.503674,34.137194],[118.503225,34.123147],[118.517705,34.117545],[118.489923,34.106684],[118.482627,34.100046],[118.469718,34.097201],[118.451029,34.106598],[118.43436,34.105089],[118.428466,34.108623],[118.382949,34.117286],[118.363586,34.118795],[118.306001,34.11358],[118.292307,34.109701],[118.28922,34.102589],[118.232646,34.100304],[118.222824,34.106986],[118.213619,34.127241],[118.213844,34.14202],[118.187745,34.161664],[118.177306,34.156366],[118.15654,34.161147],[118.150703,34.158476],[118.154239,34.148784],[118.150534,34.137281],[118.139309,34.136419],[118.120732,34.144045],[118.10294,34.139521],[118.097047,34.150292],[118.088292,34.15503],[118.083072,34.165411],[118.072408,34.170924],[118.060622,34.157055],[118.064158,34.152532],[118.055571,34.148827],[117.998997,34.140038],[117.994394,34.123793],[117.996583,34.105649],[118.007696,34.100348],[118.005507,34.09164],[118.013084,34.083923],[118.048611,34.092545],[118.063821,34.053781],[118.059836,34.048174],[118.063653,34.020738],[118.054168,34.009692],[118.049621,34.01336],[118.034917,34.01267],[118.028406,33.998386],[118.03385,33.983927],[118.046254,33.98151],[118.053045,33.971883],[118.072408,33.965408],[118.085654,33.965192],[118.085766,33.942048],[118.100022,33.941184],[118.106139,33.935138],[118.113772,33.936865],[118.117589,33.954614],[118.125896,33.954959],[118.141162,33.934749],[118.149356,33.901011],[118.156428,33.889691],[118.168495,33.881005],[118.174612,33.865186],[118.176015,33.844133],[118.184771,33.844176],[118.18797,33.822945],[118.183368,33.816155],[118.169056,33.820134],[118.168887,33.807591],[118.159515,33.795653],[118.170459,33.786221],[118.178597,33.763115],[118.170852,33.759134],[118.168326,33.749569],[118.185332,33.744937],[118.177811,33.736107],[118.160862,33.735327],[118.153341,33.720175],[118.167709,33.714979],[118.164005,33.692633],[118.168102,33.663739],[118.120115,33.621659],[118.112257,33.617064],[118.117252,33.591657],[118.108384,33.530017],[118.099124,33.52941],[118.107992,33.520167],[118.106813,33.503934],[118.108104,33.475107],[118.05776,33.491693],[118.050632,33.49204],[118.04356,33.473718],[118.028631,33.458432],[118.023579,33.440928],[118.021952,33.421596],[118.016844,33.406692],[118.028238,33.390569],[118.029304,33.372269],[118.0059,33.352095],[117.995517,33.347095],[117.971607,33.349313],[117.975368,33.335745],[117.99243,33.333135],[117.985919,33.32026],[117.983281,33.296768],[117.974245,33.279711],[117.939448,33.262606],[117.948035,33.252115],[117.938999,33.234309],[117.942366,33.225078],[117.953816,33.223945],[117.977444,33.226253],[117.993496,33.211272],[117.993608,33.20561],[117.980924,33.200166],[117.986424,33.193371],[117.989175,33.179648],[118.003879,33.177033],[118.008482,33.16784],[118.017406,33.164615],[118.025656,33.155943],[118.036713,33.1525],[118.038228,33.135196],[118.046871,33.138422],[118.069153,33.139948],[118.088292,33.149667],[118.11888,33.160562],[118.149019,33.169495],[118.159964,33.181042],[118.156315,33.195461],[118.168382,33.21345],[118.178204,33.217979],[118.194368,33.211664],[118.211599,33.19912],[118.221364,33.180693],[118.261718,33.199948],[118.320201,33.196246],[118.424313,33.187141],[118.443452,33.204783],[118.511083,33.263868],[118.667784,33.311734],[118.703424,33.323697],[118.780147,33.345834],[118.746921,33.386701],[118.782841,33.444012],[118.779866,33.487568],[118.785591,33.493082],[118.789969,33.508709],[118.789744,33.5367],[118.797433,33.560604],[118.803102,33.561776],[118.806357,33.572749],[118.78531,33.587018],[118.770605,33.60705],[118.757977,33.635746],[118.799566,33.64671],[118.792607,33.666555],[118.798612,33.69155],[118.813148,33.700948],[118.809276,33.715975],[118.814215,33.730868],[118.80226,33.741215],[118.805122,33.763245],[118.79575,33.772852],[118.805628,33.794355],[118.799847,33.813517],[118.807311,33.819356],[118.818985,33.844954],[118.828751,33.858615],[118.857151,33.880227],[118.863661,33.891376],[118.874493,33.892543],[118.885381,33.885888],[118.907383,33.889777],[118.922143,33.902524],[118.933088,33.900709],[118.941338,33.907751],[118.948803,33.906801],[118.950767,33.914275],[118.972263,33.919372],[118.987585,33.904554],[118.999708,33.9049],[118.997295,33.897296],[119.008015,33.896604],[119.024853,33.911164],[119.035853,33.928054],[119.044553,33.929436],[119.053252,33.937383],[119.050951,33.957507],[119.040736,33.959622],[119.0427,33.968905],[119.055441,33.973135],[119.058864,33.978359],[119.07312,33.98151],[119.081932,33.987769],[119.08384,34.001407],[119.114541,34.024406],[119.129751,34.028849],[119.148833,34.045845],[119.155119,34.056973],[119.15815,34.076421],[119.166456,34.088105],[119.174931,34.093494]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"秦淮区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.83298953125,31.98819846875],[118.797345,31.973843],[118.792867460938,31.9960305000001],[118.757345,32.013843],[118.757345,32.023843],[118.767345,32.023843],[118.83205203125,32.0128517890625],[118.837345,31.993843],[118.83298953125,31.98819846875]]]]}},{"type":"Feature","properties":{"name":"下关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.733985625,32.0672023750001],[118.727345,32.063843],[118.727345,32.093843],[118.740704375,32.120483625],[118.767345,32.133843],[118.793985625,32.120483625],[118.797345,32.103843],[118.797345,32.093843],[118.777345,32.093843],[118.745426054688,32.0898171210938],[118.733985625,32.0672023750001]]]]}},{"type":"Feature","properties":{"name":"玄武区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.857867460938,32.1079274726563],[118.911016875,32.0908303046875],[118.878980742188,32.0788430000001],[118.883468046875,32.058843],[118.879698515625,32.0420436835938],[118.887345,32.023843],[118.867345,32.013843],[118.86298953125,32.01948753125],[118.814605742188,32.0392897773438],[118.777345,32.0438430000001],[118.777345,32.093843],[118.797345,32.093843],[118.797345,32.103843],[118.812066679688,32.0976589179688],[118.857867460938,32.1079274726563]]]]}},{"type":"Feature","properties":{"name":"雨花台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.677345,31.903843],[118.689537382813,31.9004201484375],[118.680767851563,31.8916506171875],[118.677345,31.903843]]],[[[118.677345,31.903843],[118.656666289063,31.8989723945313],[118.639928007813,31.8718093085938],[118.591226835938,31.886977765625],[118.587345,31.9238430000001],[118.591793242188,31.9293971992188],[118.647345,31.973843],[118.681119414063,31.9608620429688],[118.710045195313,31.9572634101563],[118.751793242188,32.0093971992187],[118.757345,32.013843],[118.792867460938,31.9960305000001],[118.797345,31.973843],[118.77142703125,31.9597585273438],[118.758819609375,31.9106227851562],[118.712623320313,31.9300270820312],[118.682320585938,31.9232326484375],[118.677345,31.903843]]]]}},{"type":"Feature","properties":{"name":"溧水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.133922148438,31.4360353828125],[119.137345,31.423843],[119.125152617188,31.4272658515625],[119.133922148438,31.4360353828125]]],[[[118.847345,31.5138430000001],[118.843922148438,31.5016506171875],[118.835152617188,31.5104201484375],[118.847345,31.5138430000001]]],[[[118.847345,31.5138430000001],[118.847345,31.523843],[118.857345,31.523843],[118.857345,31.5138430000001],[118.847345,31.5138430000001]]],[[[118.857345,31.523843],[118.857345,31.533843],[118.867345,31.533843],[118.867345,31.523843],[118.857345,31.523843]]],[[[118.867345,31.533843],[118.873136015625,31.569106671875],[118.86156375,31.5985500312501],[118.863765898438,31.6134548164063],[118.827345,31.633843],[118.831519804688,31.6396681953126],[118.883092070313,31.6500075507813],[118.912037382813,31.6903884101563],[118.941519804688,31.6716701484375],[118.932432890625,31.7130300117188],[118.895128203125,31.7397682929688],[118.888780546875,31.771889875],[118.902037382813,31.7903884101563],[118.921793242188,31.7778444648438],[118.971519804688,31.7680178046876],[118.977345,31.763843],[118.99062625,31.77056175],[118.997345,31.783843],[119.057354765625,31.7910671210938],[119.08271609375,31.76921409375],[119.093082304688,31.7571852851563],[119.15197390625,31.70847190625],[119.1827746875,31.6891799140625],[119.18068484375,31.6631813789063],[119.20197390625,31.6384719062501],[119.22271609375,31.62921409375],[119.227345,31.6238430000001],[119.21115359375,31.589165265625],[119.214815703125,31.5728102851563],[119.177193632813,31.5468312812501],[119.184815703125,31.5128102851563],[119.150206328125,31.4889138007813],[119.14142703125,31.4497585273437],[119.137345,31.443843],[119.12142703125,31.4397585273438],[119.108995390625,31.4217482734376],[119.072345,31.4299636054688],[119.062345,31.4277223945313],[119.052345,31.4299636054688],[119.042345,31.4277223945313],[119.02783328125,31.4309767890625],[119.001920195313,31.3855763984375],[118.982345,31.3899636054688],[118.964459257813,31.3859548164063],[118.940933867188,31.4012721992188],[118.90451296875,31.4650856757813],[118.877345,31.483843],[118.877345,31.533843],[118.867345,31.533843]]]]}},{"type":"Feature","properties":{"name":"白下区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.863985625,32.007202375],[118.837345,31.993843],[118.83205203125,32.0128517890625],[118.767345,32.023843],[118.757345,32.0438430000001],[118.777345,32.0438430000001],[118.814605742188,32.0392897773438],[118.86298953125,32.01948753125],[118.867345,32.013843],[118.863985625,32.007202375]]]]}},{"type":"Feature","properties":{"name":"高淳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.940933867188,31.4012721992188],[118.964459257813,31.3859548164063],[118.982345,31.3899636054688],[119.001920195313,31.3855763984375],[119.02783328125,31.4309767890625],[119.042345,31.4277223945313],[119.052345,31.4299636054688],[119.062345,31.4277223945313],[119.072345,31.4299636054688],[119.108995390625,31.4217482734376],[119.12142703125,31.4397585273438],[119.137345,31.443843],[119.161734648438,31.4375856757813],[119.17142703125,31.3879274726563],[119.209127226563,31.3618971992187],[119.19142703125,31.3197585273438],[119.187345,31.303843],[119.15170046875,31.28948753125],[119.14298953125,31.27819846875],[119.1074621875,31.2569533515626],[119.092857695313,31.2380275703126],[119.082345,31.2395827460938],[119.072345,31.2381032539063],[119.062345,31.2395827460938],[119.04478640625,31.2369875312501],[119.027345,31.2438430000001],[118.989815703125,31.2349733710938],[118.957345,31.2405641914063],[118.942345,31.2379811835937],[118.887345,31.2474513984375],[118.784908476563,31.2298146796876],[118.766588164063,31.2759157539063],[118.721612578125,31.2881081367188],[118.717345,31.3238430000001],[118.753121367188,31.3886452460938],[118.77447390625,31.366421125],[118.8419153125,31.3883058906251],[118.8624621875,31.4281838203125],[118.861861601563,31.4575392890626],[118.87224734375,31.4789430976563],[118.877345,31.483843],[118.90451296875,31.4650856757813],[118.940933867188,31.4012721992188]],[[119.137345,31.423843],[119.133922148438,31.4360353828125],[119.125152617188,31.4272658515625],[119.137345,31.423843]]]]}},{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.777345,32.0438430000001],[118.757345,32.0438430000001],[118.712974882813,32.0500368476563],[118.727345,32.063843],[118.733985625,32.0672023750001],[118.745426054688,32.0898171210938],[118.777345,32.093843],[118.777345,32.0438430000001]]]]}},{"type":"Feature","properties":{"name":"建邺区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.751793242188,32.0093971992187],[118.710045195313,31.9572634101563],[118.681119414063,31.9608620429688],[118.647345,31.973843],[118.699053984375,32.0685646796875],[118.727345,32.093843],[118.727345,32.063843],[118.712974882813,32.0500368476563],[118.757345,32.0438430000001],[118.767345,32.023843],[118.757345,32.023843],[118.757345,32.013843],[118.751793242188,32.0093971992187]]]]}},{"type":"Feature","properties":{"name":"江宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.677345,31.903843],[118.680767851563,31.8916506171875],[118.689537382813,31.9004201484375],[118.682320585938,31.9232326484375],[118.712623320313,31.9300270820312],[118.758819609375,31.9106227851562],[118.77142703125,31.9597585273438],[118.797345,31.973843],[118.83298953125,31.98819846875],[118.837345,31.993843],[118.863985625,32.007202375],[118.867345,32.013843],[118.887345,32.023843],[118.90162234375,32.0348635078126],[118.912686796875,32.061899640625],[118.946549101563,32.1057692695313],[118.974722929688,32.1099343085938],[118.968795195313,32.0698073554688],[118.9960559375,32.1051296210938],[119.007345,32.1138430000001],[119.047047148438,32.1073220039063],[119.071832304688,32.1109841132812],[119.08170046875,32.09819846875],[119.096392851563,32.0868581367188],[119.080826445313,32.0472585273438],[119.09170046875,32.00819846875],[119.11170046875,31.9927614570313],[119.102926054688,31.9680178046875],[119.034459257813,31.9781374335938],[119.028834257813,31.9401003242188],[119.042345,31.9381032539062],[119.06408328125,31.9413161445312],[119.109556914063,31.9227053046875],[119.114483671875,31.8893556953125],[119.10170046875,31.8794875312501],[119.090806914063,31.865376203125],[119.062027617188,31.8696291328126],[119.01298953125,31.84819846875],[118.963604765625,31.83444846875],[118.9886340625,31.8151296210938],[118.997345,31.783843],[118.977345,31.783843],[118.977345,31.763843],[118.971519804688,31.7680178046876],[118.921793242188,31.7778444648438],[118.902037382813,31.7903884101563],[118.888780546875,31.771889875],[118.895128203125,31.7397682929688],[118.932432890625,31.7130300117188],[118.941519804688,31.6716701484375],[118.912037382813,31.6903884101563],[118.883092070313,31.6500075507813],[118.831519804688,31.6396681953126],[118.827345,31.633843],[118.7946496875,31.6209914375001],[118.7795715625,31.6578420234375],[118.797154570313,31.6714138007813],[118.746910429688,31.68819846875],[118.7321496875,31.6351784492188],[118.697345,31.6403200507813],[118.682310820313,31.6380983710938],[118.647345,31.643843],[118.640704375,31.657202375],[118.637345,31.683843],[118.663531523438,31.6876564765625],[118.685660429688,31.7031935859375],[118.677750273438,31.7285939765626],[118.646300078125,31.73931175],[118.631539335938,31.7632643867188],[118.612345,31.7572853828125],[118.601886015625,31.7605422187501],[118.583531523438,31.7476564765625],[118.552740507813,31.7371633125],[118.517891875,31.7480178046875],[118.536011992188,31.759184796875],[118.511158476563,31.7676564765625],[118.492608671875,31.7806789375],[118.477345,31.7738430000001],[118.480704375,31.800483625],[118.493985625,31.827202375],[118.497345,31.843843],[118.55888796875,31.9152761054688],[118.587345,31.9238430000001],[118.591226835938,31.886977765625],[118.639928007813,31.8718093085938],[118.656666289063,31.8989723945313],[118.677345,31.903843]]]]}},{"type":"Feature","properties":{"name":"六合区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.737345,32.183843],[118.733922148438,32.1716506171876],[118.725152617188,32.1804201484375],[118.737345,32.183843]]],[[[118.737345,32.183843],[118.734801054688,32.2012990546875],[118.719888945313,32.2163869453126],[118.714801054688,32.2512990546876],[118.667345,32.253843],[118.661783476563,32.2697072578125],[118.662545195313,32.288843],[118.6617590625,32.3086647773438],[118.672535429688,32.3186525703126],[118.682154570313,32.3290334296875],[118.702808867188,32.3387819648438],[118.691373320313,32.3493752265625],[118.692550078125,32.3790212226563],[118.681373320313,32.3893752265625],[118.682545195313,32.4188430000001],[118.682144804688,32.4288430000001],[118.683736601563,32.4689064765625],[118.592154570313,32.4786525703125],[118.582535429688,32.490122296875],[118.6029309375,32.5090212226563],[118.602144804688,32.528843],[118.602550078125,32.5390236640625],[118.55283328125,32.5711305976563],[118.58505984375,32.6009914375],[118.632408476563,32.5885866523438],[118.652178984375,32.5990480781251],[118.691461210938,32.5974904609376],[118.697345,32.603843],[118.707345,32.6163307929688],[118.722799101563,32.5970339179688],[118.759210234375,32.6015627265625],[118.787345,32.585024640625],[118.81267703125,32.5999172187501],[118.825538359375,32.5693971992188],[118.862896757813,32.5782888007813],[118.896920195313,32.5982888007813],[118.903170195313,32.5889943671875],[118.890284453125,32.5554763007813],[118.930045195313,32.5604225898437],[118.973702421875,32.505903546875],[119.030079375,32.512915265625],[119.041793242188,32.4982888007813],[119.052896757813,32.4893971992188],[119.057345,32.4638430000001],[119.01994265625,32.453149640625],[119.023023710938,32.4283888984376],[119.00361453125,32.41284690625],[119.033590117188,32.3888430000001],[119.021099882813,32.378843],[119.033023710938,32.3692971015625],[119.031099882813,32.353843],[119.032965117188,32.338843],[119.029859648438,32.3138430000001],[119.036500273438,32.2604396796876],[119.077345,32.243843],[119.035513945313,32.1916091132813],[118.9233996875,32.1735353828126],[118.869210234375,32.189028546875],[118.829761992188,32.2382888007813],[118.780357695313,32.2225807929687],[118.757345,32.1938430000001],[118.737345,32.183843]]]]}},{"type":"Feature","properties":{"name":"浦口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.737345,32.183843],[118.725152617188,32.1804201484375],[118.733922148438,32.1716506171876],[118.757345,32.1938430000001],[118.767345,32.1938430000001],[118.767345,32.133843],[118.740704375,32.120483625],[118.727345,32.093843],[118.699053984375,32.0685646796875],[118.647345,31.973843],[118.591793242188,31.9293971992188],[118.587345,31.9238430000001],[118.55888796875,31.9152761054688],[118.497345,31.843843],[118.481881132813,31.8483815742188],[118.460968046875,31.860356671875],[118.463287382813,31.8830763984375],[118.381881132813,31.9183815742188],[118.358956328125,31.9315114570313],[118.372882109375,31.9685768867188],[118.371793242188,31.979233625],[118.382808867188,31.9883815742188],[118.39474734375,32.0159157539062],[118.381803007813,32.038520734375],[118.382896757813,32.049233625],[118.377345,32.053843],[118.390704375,32.080483625],[118.417345,32.0838430000001],[118.463531523438,32.1076564765625],[118.471158476563,32.1200295234375],[118.500382109375,32.1380373359375],[118.487926054688,32.1780373359375],[118.503531523438,32.1876564765625],[118.507345,32.1938430000001],[118.622896757813,32.2082888007812],[118.658199492188,32.2218605781251],[118.667345,32.253843],[118.714801054688,32.2512990546876],[118.719888945313,32.2163869453126],[118.734801054688,32.2012990546875],[118.737345,32.183843]]]]}},{"type":"Feature","properties":{"name":"栖霞区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.237345,32.213843],[119.196417265625,32.1870510078125],[119.177345,32.1908180976563],[119.157345,32.1868679023438],[119.132345,32.1918068671875],[119.07162234375,32.1798073554688],[119.063170195313,32.1680178046875],[119.041519804688,32.1596681953125],[119.014991484375,32.1428249335938],[119.007345,32.1138430000001],[118.9960559375,32.1051296210938],[118.968795195313,32.0698073554688],[118.974722929688,32.1099343085938],[118.946549101563,32.1057692695313],[118.912686796875,32.061899640625],[118.90162234375,32.0348635078126],[118.887345,32.023843],[118.879698515625,32.0420436835938],[118.883468046875,32.058843],[118.878980742188,32.0788430000001],[118.911016875,32.0908303046875],[118.857867460938,32.1079274726563],[118.812066679688,32.0976589179688],[118.797345,32.103843],[118.793985625,32.120483625],[118.767345,32.133843],[118.767345,32.1938430000001],[118.757345,32.1938430000001],[118.780357695313,32.2225807929687],[118.829761992188,32.2382888007813],[118.869210234375,32.189028546875],[118.9233996875,32.1735353828126],[119.035513945313,32.1916091132813],[119.077345,32.243843],[119.173531523438,32.2400295234375],[119.211158476563,32.2276564765625],[119.237345,32.223843],[119.237345,32.213843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.30326296875,31.5979274726563],[120.287345,31.573843],[120.277345,31.573843],[120.277345,31.5838430000001],[120.237345,31.5838430000001],[120.237345,31.593843],[120.242672148438,31.6251979804688],[120.272379179688,31.6295876289063],[120.307345,31.6238430000001],[120.307345,31.613843],[120.30326296875,31.5979274726563]]]]}},{"type":"Feature","properties":{"name":"滨湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.237345,31.593843],[120.237345,31.5838430000001],[120.277345,31.5838430000001],[120.277345,31.573843],[120.282882109375,31.5591091132813],[120.2818371875,31.5488430000001],[120.283209257813,31.535356671875],[120.315592070313,31.5093044257813],[120.341881132813,31.5537087226563],[120.307345,31.563843],[120.3119153125,31.5864821601563],[120.337345,31.573843],[120.372310820313,31.5795876289063],[120.382345,31.5781032539063],[120.423873320313,31.5842409492188],[120.459127226563,31.5570314765626],[120.473175078125,31.5088430000001],[120.459014921875,31.4602736640625],[120.467345,31.453843],[120.461954375,31.4473537421875],[120.420245390625,31.4516042304687],[120.337047148438,31.4155251289063],[120.327345,31.403843],[120.214088164063,31.347173078125],[120.207345,31.333843],[120.186846953125,31.3276711250001],[120.127345,31.293843],[120.097345,31.333843],[120.093443632813,31.3499391914063],[120.044019804688,31.3590822578126],[120.033443632813,31.3921388984375],[120.056514921875,31.4447585273438],[120.10084109375,31.4603493476563],[120.117393828125,31.5074098945313],[120.101246367188,31.5177468085938],[120.097345,31.5538430000001],[120.102628203125,31.5585622382813],[120.129307890625,31.5884255195313],[120.172310820313,31.5583888984375],[120.192061796875,31.5691237617188],[120.2126575,31.5785768867188],[120.2120325,31.5891188789063],[120.237345,31.593843]]]]}},{"type":"Feature","properties":{"name":"崇安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.343194609375,31.6094606757813],[120.337345,31.573843],[120.3119153125,31.5864821601563],[120.307345,31.563843],[120.287345,31.573843],[120.30326296875,31.5979274726563],[120.307345,31.613843],[120.343194609375,31.6094606757813]]]]}},{"type":"Feature","properties":{"name":"惠山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.197345,31.753843],[120.202271757813,31.7268288398438],[120.247511015625,31.73046409375],[120.27271609375,31.7192140937501],[120.2866028125,31.7030983710938],[120.377345,31.693843],[120.386534453125,31.674575421875],[120.363804960938,31.6573830390625],[120.339820585938,31.6499733710938],[120.347896757813,31.6303713203126],[120.317735625,31.6428029609375],[120.307345,31.6238430000001],[120.272379179688,31.6295876289063],[120.242672148438,31.6251979804688],[120.237345,31.593843],[120.2120325,31.5891188789063],[120.2126575,31.5785768867188],[120.192061796875,31.5691237617188],[120.172310820313,31.5583888984375],[120.129307890625,31.5884255195313],[120.102628203125,31.5585622382813],[120.097345,31.5538430000001],[120.053492460938,31.5595803046876],[120.051397734375,31.5856423164063],[120.11271609375,31.6384719062501],[120.12197390625,31.6792140937501],[120.14025515625,31.6949636054688],[120.152764921875,31.7635671210938],[120.197345,31.753843]]]]}},{"type":"Feature","properties":{"name":"江阴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.383565703125,31.9292897773438],[120.380426054688,31.9152883125],[120.455357695313,31.8890236640625],[120.489176054688,31.8656740546876],[120.50142703125,31.8479274726563],[120.526158476563,31.83085471875],[120.518204375,31.795376203125],[120.552345,31.7877223945313],[120.57900515625,31.7936989570313],[120.5957434375,31.753843],[120.587345,31.7338430000001],[120.577345,31.7338430000001],[120.577345,31.723843],[120.513585234375,31.73011253125],[120.490377226563,31.7171633125],[120.39197390625,31.69921409375],[120.377345,31.693843],[120.2866028125,31.7030983710938],[120.27271609375,31.7192140937501],[120.247511015625,31.73046409375],[120.202271757813,31.7268288398438],[120.197345,31.753843],[120.161500273438,31.8288991523438],[120.172896757813,31.8482888007813],[120.181793242188,31.8779616523438],[120.074053984375,31.8471974921876],[120.037345,31.823843],[120.022345,31.8312990546876],[120.007345,31.823843],[119.995909453125,31.8311647773437],[119.990811796875,31.849301984375],[120.007862578125,31.874204328125],[119.998345976563,31.9080812812501],[120.01396609375,31.9180812812501],[120.003580351563,31.9550319648438],[120.017345,31.9638430000001],[120.052535429688,31.9590334296876],[120.195924101563,31.9290334296875],[120.255865507813,31.9414040351563],[120.367345,31.993843],[120.37142703125,31.9479274726563],[120.383565703125,31.9292897773438]]]]}},{"type":"Feature","properties":{"name":"南长区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.341881132813,31.5537087226563],[120.315592070313,31.5093044257813],[120.283209257813,31.535356671875],[120.2818371875,31.5488430000001],[120.282882109375,31.5591091132813],[120.277345,31.573843],[120.287345,31.573843],[120.307345,31.563843],[120.341881132813,31.5537087226563]]]]}},{"type":"Feature","properties":{"name":"锡山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.588912382813,31.6470607734375],[120.593170195313,31.6182643867188],[120.53298953125,31.5963088203125],[120.551871367188,31.5780348945313],[120.59056765625,31.5837526679688],[120.597345,31.5438430000001],[120.592935820313,31.5280153632813],[120.581773710938,31.5296657539063],[120.572916289063,31.5080202460938],[120.543604765625,31.5123513007813],[120.541607695313,31.498843],[120.544615507813,31.4784938789063],[120.49298953125,31.45819846875],[120.467345,31.453843],[120.459014921875,31.4602736640625],[120.473175078125,31.5088430000001],[120.459127226563,31.5570314765626],[120.423873320313,31.5842409492188],[120.382345,31.5781032539063],[120.372310820313,31.5795876289063],[120.337345,31.573843],[120.343194609375,31.6094606757813],[120.307345,31.613843],[120.307345,31.6238430000001],[120.317735625,31.6428029609375],[120.347896757813,31.6303713203126],[120.339820585938,31.6499733710938],[120.363804960938,31.6573830390625],[120.386534453125,31.674575421875],[120.377345,31.693843],[120.39197390625,31.69921409375],[120.490377226563,31.7171633125],[120.513585234375,31.73011253125],[120.577345,31.723843],[120.58170046875,31.71819846875],[120.595299101563,31.7077028632813],[120.565416289063,31.6846364570313],[120.561519804688,31.6582717109375],[120.588912382813,31.6470607734375]]]]}},{"type":"Feature","properties":{"name":"宜兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.70298953125,31.5794875312501],[119.711773710938,31.5580202460938],[119.73369265625,31.5612575507813],[119.80298953125,31.54948753125],[119.83009890625,31.5331325507813],[119.87205203125,31.54962425],[119.882345,31.5481032539063],[119.926124296875,31.5545729804687],[119.96298953125,31.5394875312501],[119.976202421875,31.5071974921876],[119.99673953125,31.51022971875],[120.04170046875,31.4918288398437],[120.03298953125,31.42819846875],[120.01298953125,31.3773244453125],[120.0462121875,31.3425295234376],[120.097345,31.333843],[120.127345,31.293843],[120.09271609375,31.27847190625],[120.010181914063,31.2560060859375],[119.933443632813,31.1925295234375],[119.917345,31.173843],[119.877642851563,31.1673220039063],[119.825928984375,31.1749636054688],[119.808878203125,31.152876203125],[119.7727746875,31.1796462226562],[119.712686796875,31.170766828125],[119.699400664063,31.1535524726563],[119.665289335938,31.1741335273438],[119.65298953125,31.15819846875],[119.64170046875,31.1494875312501],[119.63298953125,31.1381984687501],[119.617345,31.133843],[119.579073515625,31.1097243476563],[119.55373171875,31.14022971875],[119.531881132813,31.1583815742188],[119.527345,31.1638430000001],[119.551773710938,31.2029811835937],[119.53197390625,31.23847190625],[119.519893828125,31.3177443671875],[119.533316679688,31.3917702460938],[119.5319153125,31.4091677070313],[119.54271609375,31.4184719062501],[119.55197390625,31.42921409375],[119.57271609375,31.43847190625],[119.59197390625,31.4550856757813],[119.5619153125,31.4684963203125],[119.563150664063,31.483843],[119.5619153125,31.4991677070313],[119.581304960938,31.5158693671875],[119.607345,31.563843],[119.630699492188,31.5693434882813],[119.643990507813,31.6083425117188],[119.667345,31.613843],[119.67170046875,31.60819846875],[119.68298953125,31.59948753125],[119.69170046875,31.58819846875],[119.70298953125,31.5794875312501]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.6919153125,34.7291664863281],[116.693551054688,34.7088430000001],[116.691241484375,34.6801369453125],[116.720787382813,34.6777626777344],[116.761627226563,34.6927602363281],[116.762745390625,34.6788430000001],[116.761138945313,34.658843],[116.762745390625,34.6388430000001],[116.761573515625,34.6242458320313],[116.775416289063,34.56331565625],[116.864215117188,34.5471169257812],[116.861944609375,34.5188430000001],[116.862745390625,34.508843],[116.861163359375,34.4891664863282],[116.867345,34.4838430000001],[116.85142703125,34.4597585273437],[116.84326296875,34.4379274726563],[116.82142703125,34.4297585273438],[116.81326296875,34.4179274726563],[116.807345,34.413843],[116.79197390625,34.4184706855469],[116.761383085938,34.4673110175782],[116.65197390625,34.4784706855469],[116.617345,34.4838430000001],[116.562706328125,34.4897792792969],[116.58275515625,34.5090395332031],[116.56224734375,34.5287429023437],[116.55244265625,34.5389430976563],[116.50912234375,34.5530019355469],[116.472159453125,34.6093788886719],[116.43224734375,34.6287429023438],[116.420992460938,34.6519374824219],[116.382345,34.6387087226563],[116.367345,34.643843],[116.37420046875,34.6612831855469],[116.371549101563,34.679233625],[116.383140898438,34.698452375],[116.379854765625,34.7206911445313],[116.361754179688,34.7180165839844],[116.35298953125,34.7470607734376],[116.39298953125,34.7581996894532],[116.407345,34.843843],[116.41170046875,34.8594863105469],[116.437345,34.893843],[116.483370390625,34.8980361152344],[116.583170195313,34.9180178046875],[116.6318371875,34.9380178046875],[116.703170195313,34.9296681953125],[116.727345,34.923843],[116.73283328125,34.8986806464844],[116.721920195313,34.8791213203125],[116.724742460938,34.8440334296875],[116.6980871875,34.8130995917969],[116.675738554688,34.793843],[116.721363554688,34.7545351386719],[116.6919153125,34.7291664863281]]]]}},{"type":"Feature","properties":{"name":"贾汪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.687345,34.343843],[117.699537382813,34.3404201484375],[117.690767851563,34.3316506171875],[117.687345,34.343843]]],[[[117.687345,34.343843],[117.660704375,34.3404836250001],[117.647345,34.3338430000001],[117.642896757813,34.3393959785156],[117.608912382813,34.3582900214844],[117.573702421875,34.3143202949219],[117.507345,34.3225746894532],[117.412940703125,34.3108327460938],[117.407345,34.303843],[117.371978789063,34.298032453125],[117.352838164063,34.3095766425782],[117.32298953125,34.3594863105469],[117.297345,34.3638430000001],[117.277818632813,34.3688539863282],[117.310816679688,34.4195290351563],[117.354840117188,34.436001203125],[117.339698515625,34.4720449042969],[117.343468046875,34.488843],[117.340435820313,34.5023561835938],[117.39326296875,34.5379274726563],[117.397345,34.543843],[117.41298953125,34.5394863105469],[117.42170046875,34.5281996894532],[117.44427859375,34.5107741523438],[117.46170046875,34.4881996894532],[117.47298953125,34.4794863105469],[117.481832304688,34.4680287910157],[117.507345,34.4717983222657],[117.532345,34.4681044746094],[117.547642851563,34.4703652167969],[117.587345,34.463843],[117.6423059375,34.4584377265626],[117.665465117188,34.4602992988281],[117.72197390625,34.4350844550781],[117.71271609375,34.4284706855469],[117.687174101563,34.4170729804688],[117.708829375,34.3782619453126],[117.687345,34.343843]]]]}},{"type":"Feature","properties":{"name":"沛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.967345,34.813843],[116.979537382813,34.8104201484376],[116.970767851563,34.8016506171876],[116.967345,34.813843]]],[[[116.967345,34.813843],[116.94654421875,34.7994826484375],[116.965933867188,34.7714003730469],[116.987345,34.7666017890626],[117.008360625,34.7713124824219],[117.074283476563,34.6986330390626],[117.05326296875,34.6841188789062],[117.064146757813,34.635884015625],[117.101573515625,34.6442739082032],[117.115513945313,34.6070119453125],[117.146168242188,34.5599355292969],[117.137345,34.5538430000001],[117.10142703125,34.5497585273438],[117.09326296875,34.5379274726563],[117.07142703125,34.5297585273438],[117.050230742188,34.5159548164063],[117.031676054688,34.5201137519532],[117.02326296875,34.5079274726563],[117.01142703125,34.4997585273438],[116.998892851563,34.4662538886719],[116.972345,34.4722060371094],[116.941788359375,34.4653554511719],[116.867345,34.4838430000001],[116.861163359375,34.4891664863282],[116.862745390625,34.508843],[116.861944609375,34.5188430000001],[116.864215117188,34.5471169257812],[116.775416289063,34.56331565625],[116.761573515625,34.6242458320313],[116.762745390625,34.6388430000001],[116.761138945313,34.658843],[116.762745390625,34.6788430000001],[116.761627226563,34.6927602363281],[116.720787382813,34.6777626777344],[116.691241484375,34.6801369453125],[116.693551054688,34.7088430000001],[116.6919153125,34.7291664863281],[116.721363554688,34.7545351386719],[116.675738554688,34.793843],[116.6980871875,34.8130995917969],[116.724742460938,34.8440334296875],[116.721920195313,34.8791213203125],[116.73283328125,34.8986806464844],[116.727345,34.923843],[116.771143828125,34.9136940742188],[116.781783476563,34.9396852851563],[116.817345,34.9338430000001],[116.824298125,34.925473859375],[116.862691679688,34.9293886542969],[116.891881132813,34.9083803535156],[116.912808867188,34.8993056464844],[116.921881132813,34.8783803535156],[116.943541289063,34.8689882636719],[116.9232434375,34.8521279121094],[116.960904570313,34.8357949042969],[116.967345,34.813843]]]]}},{"type":"Feature","properties":{"name":"泉山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.21970828125,34.2336049628906],[117.227345,34.203843],[117.150704375,34.207202375],[117.132735625,34.2214760566407],[117.12134890625,34.2159157539063],[117.107345,34.243843],[117.12062625,34.25056175],[117.1341028125,34.2772023750001],[117.173985625,34.2704836250001],[117.177345,34.263843],[117.18142703125,34.2479274726563],[117.21970828125,34.2336049628906]]]]}},{"type":"Feature","properties":{"name":"铜山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.247345,34.473843],[117.235152617188,34.4772658515625],[117.243922148438,34.4860353828125],[117.247345,34.473843]]],[[[117.247345,34.473843],[117.257823515625,34.4813539863282],[117.2758215625,34.5711208320313],[117.298580351563,34.5666237617188],[117.359718046875,34.5851955390625],[117.387345,34.573843],[117.397345,34.573843],[117.397345,34.543843],[117.39326296875,34.5379274726563],[117.340435820313,34.5023561835938],[117.343468046875,34.488843],[117.339698515625,34.4720449042969],[117.354840117188,34.436001203125],[117.310816679688,34.4195290351563],[117.277818632813,34.3688539863282],[117.297345,34.3638430000001],[117.289644804688,34.3338430000001],[117.256392851563,34.3263881660156],[117.21142703125,34.3379274726563],[117.197652617188,34.3578798652345],[117.142345,34.3454799628907],[117.122345,34.3499636054688],[117.112345,34.3477223945312],[117.075089140625,34.3560744453125],[117.065250273438,34.3121938300781],[117.094215117188,34.2921938300782],[117.091221953125,34.278843],[117.093468046875,34.268843],[117.09107546875,34.2581728339844],[117.10326296875,34.2497585273438],[117.107345,34.243843],[117.12134890625,34.2159157539063],[117.132735625,34.2214760566407],[117.150704375,34.207202375],[117.227345,34.203843],[117.23142703125,34.1679274726563],[117.250167265625,34.1549916816407],[117.272623320313,34.1600258613282],[117.32029421875,34.1400038886719],[117.334268828125,34.1773525214844],[117.327345,34.193843],[117.331793242188,34.2093959785157],[117.342896757813,34.2182900214844],[117.351793242188,34.2293959785156],[117.403931914063,34.2610671210937],[117.401705351563,34.2790041328125],[117.407345,34.303843],[117.412940703125,34.3108327460938],[117.507345,34.3225746894532],[117.573702421875,34.3143202949219],[117.608912382813,34.3582900214844],[117.642896757813,34.3393959785156],[117.647345,34.3338430000001],[117.637047148438,34.3108534980469],[117.645460234375,34.283843],[117.634171171875,34.2476039863281],[117.653531523438,34.2200307441407],[117.661158476563,34.1776552558594],[117.685909453125,34.1624050117188],[117.697345,34.1438430000001],[117.665885039063,34.0969289375],[117.616822539063,34.1079274726563],[117.5636340625,34.0956508613282],[117.55170046875,34.0637538886719],[117.537345,34.053843],[117.537345,34.0638430000001],[117.517345,34.0638430000001],[117.486099882813,34.055825421875],[117.44326296875,34.0279274726563],[117.397345,34.0238430000001],[117.39224734375,34.0431606269532],[117.371519804688,34.0580178046875],[117.363170195313,34.0796681953125],[117.317506132813,34.0880178046876],[117.301724882813,34.0660012031251],[117.267345,34.0727956367188],[117.232291289063,34.0658681464844],[117.156558867188,34.0809877753906],[117.147345,34.0938430000001],[117.14298953125,34.0994863105469],[117.121519804688,34.1082729316407],[117.123673125,34.1228346992188],[117.036534453125,34.1584987617188],[117.017345,34.163843],[117.044796171875,34.2188246894532],[117.03990359375,34.228843],[117.045445585938,34.2401894355469],[117.027345,34.243843],[117.021519804688,34.2480178046875],[117.012965117188,34.2599538398438],[116.998931914063,34.2571804023438],[116.963170195313,34.2974123359375],[116.975186796875,34.3582228828125],[116.959503203125,34.3694631171875],[116.9634778125,34.3895864082032],[116.90224734375,34.4057399726563],[116.824205351563,34.3903188300782],[116.807345,34.413843],[116.81326296875,34.4179274726563],[116.82142703125,34.4297585273438],[116.84326296875,34.4379274726563],[116.85142703125,34.4597585273437],[116.867345,34.4838430000001],[116.941788359375,34.4653554511719],[116.972345,34.4722060371094],[116.998892851563,34.4662538886719],[117.01142703125,34.4997585273438],[117.02326296875,34.5079274726563],[117.031676054688,34.5201137519532],[117.050230742188,34.5159548164063],[117.07142703125,34.5297585273438],[117.09326296875,34.5379274726563],[117.10142703125,34.5497585273438],[117.137345,34.5538430000001],[117.131651640625,34.5287795234375],[117.157027617188,34.4399221015625],[117.187769804688,34.4293959785157],[117.221793242188,34.4493959785157],[117.242896757813,34.4582900214844],[117.247345,34.473843]]]]}},{"type":"Feature","properties":{"name":"新沂市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.17853640625,34.4514577460937],[118.163819609375,34.3858107734376],[118.182789335938,34.390063703125],[118.202691679688,34.3771047187501],[118.2178528125,34.3990602851563],[118.26326296875,34.4079274726563],[118.312174101563,34.4300954414062],[118.36455203125,34.4138600898438],[118.407345,34.433843],[118.417100859375,34.4212038398438],[118.467301054688,34.4065676093751],[118.5176965625,34.4439308906251],[118.55298953125,34.4294863105469],[118.574136992188,34.4167299628907],[118.598424101563,34.4481996894532],[118.639058867188,34.4379555488281],[118.67170046875,34.4127614570313],[118.66045046875,34.3939601875001],[118.64170046875,34.3794863105469],[118.637345,34.353843],[118.631519804688,34.3496681953125],[118.620084257813,34.3063259101563],[118.597345,34.3108193183594],[118.57404421875,34.3062148261719],[118.556851835938,34.2616384101563],[118.564322539063,34.223843],[118.552471953125,34.1638784003906],[118.522345,34.1698305488281],[118.500054960938,34.1654262519532],[118.503331328125,34.148843],[118.499503203125,34.1294631171876],[118.507345,34.123843],[118.486436796875,34.0995729804688],[118.472174101563,34.0984279609376],[118.385123320313,34.1174147773438],[118.355640898438,34.1197841621094],[118.227354765625,34.0998830390625],[118.189796171875,34.1598439765625],[118.172345,34.1584413886719],[118.152345,34.1600478339844],[118.139703398438,34.1317214179688],[118.067345,34.163843],[118.04271609375,34.2192153144532],[118.031763945313,34.238843],[118.043472929688,34.2598232246094],[118.0419153125,34.2792018867187],[118.0827746875,34.2884841132813],[118.081944609375,34.298843],[118.083150664063,34.313843],[118.081217070313,34.3378627753906],[118.09271609375,34.3584706855469],[118.1048840625,34.3857411933594],[118.071671171875,34.4389553046875],[118.084361601563,34.4498867011719],[118.12291140625,34.4467885566406],[118.1219153125,34.4591664863282],[118.13271609375,34.4684706855469],[118.137345,34.473843],[118.17853640625,34.4514577460937]]]]}},{"type":"Feature","properties":{"name":"云龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.334268828125,34.1773525214844],[117.32029421875,34.1400038886719],[117.272623320313,34.1600258613282],[117.250167265625,34.1549916816407],[117.23142703125,34.1679274726563],[117.227345,34.203843],[117.21970828125,34.2336049628906],[117.18142703125,34.2479274726563],[117.177345,34.263843],[117.23468875,34.2779274726563],[117.28326296875,34.2597585273438],[117.29142703125,34.2479274726563],[117.30326296875,34.2397585273438],[117.31142703125,34.1979274726563],[117.327345,34.193843],[117.334268828125,34.1773525214844]]]]}},{"type":"Feature","properties":{"name":"邳州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.687345,34.343843],[117.690767851563,34.3316506171875],[117.699537382813,34.3404201484375],[117.708829375,34.3782619453126],[117.687174101563,34.4170729804688],[117.71271609375,34.4284706855469],[117.72197390625,34.4350844550781],[117.665465117188,34.4602992988281],[117.6423059375,34.4584377265626],[117.587345,34.463843],[117.605889921875,34.4878688789063],[117.651705351563,34.5006264472656],[117.68170046875,34.5394863105469],[117.70310671875,34.5481996894531],[117.794146757813,34.5216555000001],[117.787174101563,34.568843],[117.7938684375,34.6141408515625],[117.787345,34.653843],[117.797345,34.653843],[117.802799101563,34.6470339179688],[117.822345,34.6494643378907],[117.832345,34.6482216621094],[117.842345,34.6494643378907],[117.852345,34.6482216621094],[117.862345,34.6494643378907],[117.890987578125,34.6459023261719],[117.910079375,34.6697463203125],[117.93095828125,34.6671498847657],[117.954869414063,34.68120628125],[117.982896757813,34.6693959785157],[118.00634890625,34.6401113105469],[118.022042265625,34.6597084785156],[118.093033476563,34.6493764472657],[118.091441679688,34.6365785957032],[118.107345,34.623843],[118.10326296875,34.6079274726563],[118.07326296875,34.5692189765625],[118.12232546875,34.5577175117188],[118.134620390625,34.5604738593751],[118.178267851563,34.5441445136719],[118.15326296875,34.5079274726563],[118.12982546875,34.4917470527344],[118.137345,34.473843],[118.13271609375,34.4684706855469],[118.1219153125,34.4591664863282],[118.12291140625,34.4467885566406],[118.084361601563,34.4498867011719],[118.071671171875,34.4389553046875],[118.1048840625,34.3857411933594],[118.09271609375,34.3584706855469],[118.081217070313,34.3378627753906],[118.083150664063,34.313843],[118.081944609375,34.298843],[118.0827746875,34.2884841132813],[118.0419153125,34.2792018867187],[118.043472929688,34.2598232246094],[118.031763945313,34.238843],[118.04271609375,34.2192153144532],[118.067345,34.163843],[118.033985625,34.147202375],[117.997345,34.1438430000001],[117.932022734375,34.1384133125],[117.92271609375,34.1492153144532],[117.8952746875,34.1728554511719],[117.839093046875,34.1574794746094],[117.821593046875,34.1371645332031],[117.744049101563,34.1138185859375],[117.73271609375,34.1392153144532],[117.697345,34.1438430000001],[117.685909453125,34.1624050117188],[117.661158476563,34.1776552558594],[117.653531523438,34.2200307441407],[117.634171171875,34.2476039863281],[117.645460234375,34.283843],[117.637047148438,34.3108534980469],[117.647345,34.3338430000001],[117.660704375,34.3404836250001],[117.687345,34.343843]]]]}},{"type":"Feature","properties":{"name":"睢宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.537345,34.053843],[117.517345,34.053843],[117.517345,34.0638430000001],[117.537345,34.0638430000001],[117.537345,34.053843]]],[[[117.617345,34.0238430000001],[117.613922148438,34.0360353828125],[117.605152617188,34.0272658515625],[117.608453398438,34.0127370429688],[117.591793242188,33.9993959785156],[117.575777617188,33.9793959785157],[117.542550078125,34.0005275703125],[117.537345,34.053843],[117.55170046875,34.0637538886719],[117.5636340625,34.0956508613282],[117.616822539063,34.1079274726563],[117.665885039063,34.0969289375],[117.697345,34.1438430000001],[117.73271609375,34.1392153144532],[117.744049101563,34.1138185859375],[117.821593046875,34.1371645332031],[117.839093046875,34.1574794746094],[117.8952746875,34.1728554511719],[117.92271609375,34.1492153144532],[117.932022734375,34.1384133125],[117.997345,34.1438430000001],[117.984967070313,34.1130507636719],[118.003077421875,34.0995778632813],[118.01291140625,34.0863588691407],[118.049117460938,34.0925917792969],[118.061373320313,34.0214040351563],[118.023077421875,34.0061867500001],[118.031612578125,33.9881081367188],[118.06763796875,33.9668935371094],[118.087203398438,33.9405886054688],[118.10291140625,33.9378847480469],[118.117955351563,33.9581081367188],[118.133077421875,33.9395778632812],[118.137345,33.923843],[118.141793242188,33.9082900214844],[118.162896757813,33.8793959785156],[118.171793242188,33.8482900214844],[118.183258085938,33.828783185547],[118.161676054688,33.7992348457031],[118.167345,33.7538430000001],[118.070850859375,33.7633315253906],[117.9959778125,33.7470009589845],[117.961099882813,33.7598085761719],[117.94271609375,33.7384706855469],[117.891715117188,33.7268849921875],[117.79646609375,33.7345375800782],[117.742452421875,33.7147011542969],[117.717345,33.743843],[117.738175078125,33.7605226875],[117.75297,33.8788173652344],[117.751197539063,33.8930544257813],[117.702569609375,33.8870058417969],[117.659185820313,33.9584365058594],[117.663248320313,33.9911074042969],[117.641793242188,34.0082900214844],[117.632896757813,34.0193959785157],[117.617345,34.0238430000001]]]]}},{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.32298953125,34.3594863105469],[117.352838164063,34.3095766425782],[117.371978789063,34.298032453125],[117.407345,34.303843],[117.401705351563,34.2790041328125],[117.403931914063,34.2610671210937],[117.351793242188,34.2293959785156],[117.342896757813,34.2182900214844],[117.331793242188,34.2093959785157],[117.327345,34.193843],[117.31142703125,34.1979274726563],[117.30326296875,34.2397585273438],[117.29142703125,34.2479274726563],[117.28326296875,34.2597585273438],[117.23468875,34.2779274726563],[117.177345,34.263843],[117.173985625,34.2704836250001],[117.1341028125,34.2772023750001],[117.12062625,34.25056175],[117.107345,34.243843],[117.10326296875,34.2497585273438],[117.09107546875,34.2581728339844],[117.093468046875,34.268843],[117.091221953125,34.278843],[117.094215117188,34.2921938300782],[117.065250273438,34.3121938300781],[117.075089140625,34.3560744453125],[117.112345,34.3477223945312],[117.122345,34.3499636054688],[117.142345,34.3454799628907],[117.197652617188,34.3578798652345],[117.21142703125,34.3379274726563],[117.256392851563,34.3263881660156],[117.289644804688,34.3338430000001],[117.297345,34.3638430000001],[117.32298953125,34.3594863105469]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"钟楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.917345,31.753843],[119.891998320313,31.7478542304688],[119.853077421875,31.7734767890625],[119.867345,31.833843],[119.873985625,31.8372023750001],[119.881422148438,31.851899640625],[119.91062625,31.83712425],[119.925201445313,31.8083132148438],[119.947345,31.803843],[119.959268828125,31.7798561835938],[119.920704375,31.760483625],[119.917345,31.753843]]]]}},{"type":"Feature","properties":{"name":"溧阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.337345,31.6638430000001],[119.337345,31.673843],[119.350152617188,31.668843],[119.337345,31.6638430000001]]],[[[119.337345,31.673843],[119.324537382813,31.668843],[119.337345,31.6638430000001],[119.344014921875,31.640512921875],[119.398453398438,31.6249489570313],[119.425592070313,31.5910549140625],[119.49437625,31.5754323554687],[119.567345,31.5663552070313],[119.601890898438,31.5706520820313],[119.607345,31.563843],[119.581304960938,31.5158693671875],[119.5619153125,31.4991677070313],[119.563150664063,31.483843],[119.5619153125,31.4684963203125],[119.59197390625,31.4550856757813],[119.57271609375,31.43847190625],[119.55197390625,31.42921409375],[119.54271609375,31.4184719062501],[119.5319153125,31.4091677070313],[119.533316679688,31.3917702460938],[119.519893828125,31.3177443671875],[119.53197390625,31.23847190625],[119.551773710938,31.2029811835937],[119.527345,31.1638430000001],[119.450250273438,31.1667482734375],[119.428121367188,31.186606671875],[119.412345,31.1752419257813],[119.402345,31.1824440742188],[119.390709257813,31.1740627265625],[119.387345,31.193843],[119.399537382813,31.1972658515625],[119.390767851563,31.2060353828125],[119.387345,31.193843],[119.370704375,31.197202375],[119.357345,31.2038430000001],[119.36170046875,31.23948753125],[119.373248320313,31.2688600898438],[119.356910429688,31.30819846875],[119.33298953125,31.26819846875],[119.268345976563,31.2572170234376],[119.252345,31.2595827460938],[119.23478640625,31.25698753125],[119.190924101563,31.2742287421875],[119.19312625,31.28913596875],[119.187345,31.303843],[119.19142703125,31.3197585273438],[119.209127226563,31.3618971992187],[119.17142703125,31.3879274726563],[119.161734648438,31.4375856757813],[119.137345,31.443843],[119.14142703125,31.4497585273437],[119.150206328125,31.4889138007813],[119.184815703125,31.5128102851563],[119.177193632813,31.5468312812501],[119.214815703125,31.5728102851563],[119.21115359375,31.589165265625],[119.227345,31.6238430000001],[119.26298953125,31.6381984687501],[119.298775664063,31.6597878242188],[119.317345,31.683843],[119.337345,31.683843],[119.337345,31.673843]]]]}},{"type":"Feature","properties":{"name":"金坛市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.337345,31.6638430000001],[119.324537382813,31.668843],[119.337345,31.673843],[119.337345,31.6638430000001]]],[[[119.337345,31.6638430000001],[119.350152617188,31.668843],[119.337345,31.673843],[119.337345,31.683843],[119.317345,31.683843],[119.32302859375,31.729341046875],[119.301793242188,31.7382888007813],[119.292896757813,31.7542653632813],[119.313013945313,31.7884841132813],[119.309625273438,31.8157106757813],[119.322896757813,31.8382888007813],[119.327345,31.863843],[119.35326296875,31.8597585273438],[119.38580203125,31.8385671210938],[119.427345,31.833843],[119.430767851563,31.8216506171875],[119.439537382813,31.8304201484376],[119.427345,31.833843],[119.417345,31.873843],[119.453043242188,31.8824440742188],[119.503780546875,31.8502346015625],[119.555303984375,31.860415265625],[119.585855742188,31.8486330390625],[119.605928984375,31.7965871406251],[119.631724882813,31.8016847968751],[119.64802859375,31.77894065625],[119.683170195313,31.7696681953125],[119.705113554688,31.7390529609375],[119.737345,31.7338430000001],[119.7507825,31.7018556953126],[119.727345,31.6966017890625],[119.694610625,31.7039406562501],[119.690103789063,31.683843],[119.6960559375,31.657290265625],[119.667345,31.613843],[119.643990507813,31.6083425117188],[119.630699492188,31.5693434882813],[119.607345,31.563843],[119.601890898438,31.5706520820313],[119.567345,31.5663552070313],[119.49437625,31.5754323554687],[119.425592070313,31.5910549140625],[119.398453398438,31.6249489570313],[119.344014921875,31.640512921875],[119.337345,31.6638430000001]]]]}},{"type":"Feature","properties":{"name":"戚墅堰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.070557890625,31.7818044257813],[120.074586210938,31.763843],[120.068980742188,31.7388430000001],[120.074386015625,31.7147463203125],[120.037345,31.723843],[120.037345,31.7338430000001],[120.027345,31.7338430000001],[120.023804960938,31.7403029609375],[119.9938684375,31.7567116523438],[120.027345,31.7738430000001],[120.042066679688,31.7800270820313],[120.052345,31.7777223945313],[120.070557890625,31.7818044257813]]]]}},{"type":"Feature","properties":{"name":"天宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.027345,31.7338430000001],[120.037345,31.7338430000001],[120.037345,31.723843],[120.027345,31.723843],[120.027345,31.7338430000001]]],[[[120.027345,31.7338430000001],[119.971793242188,31.7382888007813],[119.917345,31.753843],[119.920704375,31.760483625],[119.959268828125,31.7798561835938],[119.947345,31.803843],[119.953336210938,31.8156838203125],[119.977345,31.8039601875001],[120.003829375,31.8168923164063],[120.007345,31.823843],[120.022345,31.8312990546876],[120.037345,31.823843],[120.030704375,31.810483625],[120.027345,31.7738430000001],[119.9938684375,31.7567116523438],[120.023804960938,31.7403029609375],[120.027345,31.7338430000001]]]]}},{"type":"Feature","properties":{"name":"武进区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.853077421875,31.7734767890625],[119.891998320313,31.7478542304688],[119.917345,31.753843],[119.971793242188,31.7382888007813],[120.027345,31.7338430000001],[120.027345,31.723843],[120.037345,31.723843],[120.074386015625,31.7147463203125],[120.068980742188,31.7388430000001],[120.074586210938,31.763843],[120.070557890625,31.7818044257813],[120.052345,31.7777223945313],[120.042066679688,31.7800270820313],[120.027345,31.7738430000001],[120.030704375,31.810483625],[120.037345,31.823843],[120.074053984375,31.8471974921876],[120.181793242188,31.8779616523438],[120.172896757813,31.8482888007813],[120.161500273438,31.8288991523438],[120.197345,31.753843],[120.152764921875,31.7635671210938],[120.14025515625,31.6949636054688],[120.12197390625,31.6792140937501],[120.11271609375,31.6384719062501],[120.051397734375,31.5856423164063],[120.053492460938,31.5595803046876],[120.097345,31.5538430000001],[120.101246367188,31.5177468085938],[120.117393828125,31.5074098945313],[120.10084109375,31.4603493476563],[120.056514921875,31.4447585273438],[120.033443632813,31.3921388984375],[120.044019804688,31.3590822578126],[120.093443632813,31.3499391914063],[120.097345,31.333843],[120.0462121875,31.3425295234376],[120.01298953125,31.3773244453125],[120.03298953125,31.42819846875],[120.04170046875,31.4918288398437],[119.99673953125,31.51022971875],[119.976202421875,31.5071974921876],[119.96298953125,31.5394875312501],[119.926124296875,31.5545729804687],[119.882345,31.5481032539063],[119.87205203125,31.54962425],[119.83009890625,31.5331325507813],[119.80298953125,31.54948753125],[119.73369265625,31.5612575507813],[119.711773710938,31.5580202460938],[119.70298953125,31.5794875312501],[119.69170046875,31.58819846875],[119.68298953125,31.59948753125],[119.67170046875,31.60819846875],[119.667345,31.613843],[119.6960559375,31.657290265625],[119.690103789063,31.683843],[119.694610625,31.7039406562501],[119.727345,31.6966017890625],[119.7507825,31.7018556953126],[119.737345,31.7338430000001],[119.728800078125,31.7555763984375],[119.75298953125,31.7881984687501],[119.76170046875,31.80948753125],[119.811261015625,31.8477419257812],[119.75298953125,31.8600368476562],[119.762574492188,31.8924440742188],[119.777345,31.903843],[119.78326296875,31.8997585273438],[119.79142703125,31.8879274726563],[119.841925078125,31.8749684882813],[119.85142703125,31.8379274726563],[119.867345,31.833843],[119.853077421875,31.7734767890625]]]]}},{"type":"Feature","properties":{"name":"新北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.007862578125,31.874204328125],[119.990811796875,31.849301984375],[119.995909453125,31.8311647773437],[120.007345,31.823843],[120.003829375,31.8168923164063],[119.977345,31.8039601875001],[119.953336210938,31.8156838203125],[119.947345,31.803843],[119.925201445313,31.8083132148438],[119.91062625,31.83712425],[119.881422148438,31.851899640625],[119.873985625,31.8372023750001],[119.867345,31.833843],[119.85142703125,31.8379274726563],[119.841925078125,31.8749684882813],[119.79142703125,31.8879274726563],[119.78326296875,31.8997585273438],[119.777345,31.903843],[119.78345828125,31.92921409375],[119.763365507813,31.9608596015625],[119.786568632813,32.0488088203125],[119.842633085938,32.059887921875],[119.871519804688,32.0480178046875],[119.897345,32.0438430000001],[119.903287382813,32.0088576484375],[119.967345,32.0038430000001],[119.99142703125,31.9879274726563],[120.017345,31.973843],[120.017345,31.9638430000001],[120.003580351563,31.9550319648438],[120.01396609375,31.9180812812501],[119.998345976563,31.9080812812501],[120.007862578125,31.874204328125]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"常熟市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.746070585938,31.832778546875],[120.782066679688,31.8176589179688],[120.798297148438,31.8212966132813],[120.848541289063,31.8057228828125],[120.887345,31.823843],[120.892535429688,31.8190334296875],[120.920123320313,31.7892604804688],[121.027345,31.783843],[121.063985625,31.780483625],[121.097345,31.763843],[121.05197390625,31.70921409375],[121.041715117188,31.6862209296876],[121.015738554688,31.6638430000001],[121.051363554688,31.6331496406251],[121.002974882813,31.5914650703126],[120.99271609375,31.5684719062501],[120.975738554688,31.5538430000001],[120.998502226563,31.5342287421875],[120.987345,31.5038430000001],[120.971886015625,31.496313703125],[120.932862578125,31.5313210273438],[120.917345,31.5243508125],[120.88873171875,31.5372072578125],[120.8517590625,31.5054592109375],[120.843892851563,31.5203932929688],[120.827345,31.523843],[120.821812773438,31.5298122382813],[120.782877226563,31.5282692695313],[120.762511015625,31.5390480781251],[120.739937773438,31.5381520820313],[120.668746367188,31.4891628242188],[120.612994414063,31.5493288398438],[120.597345,31.5438430000001],[120.59056765625,31.5837526679688],[120.551871367188,31.5780348945313],[120.53298953125,31.5963088203125],[120.593170195313,31.6182643867188],[120.588912382813,31.6470607734375],[120.561519804688,31.6582717109375],[120.565416289063,31.6846364570313],[120.595299101563,31.7077028632813],[120.58170046875,31.71819846875],[120.577345,31.723843],[120.577345,31.7338430000001],[120.587345,31.7338430000001],[120.643194609375,31.7201247382813],[120.68142703125,31.7497585273438],[120.716734648438,31.7588185859375],[120.724586210938,31.793843],[120.71970828125,31.8156130195313],[120.746070585938,31.832778546875]]]]}},{"type":"Feature","properties":{"name":"虎丘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.552545195313,31.4087331367188],[120.547345,31.373843],[120.525733671875,31.3629103828126],[120.553985625,31.3304836250001],[120.5840246875,31.2705812812501],[120.597345,31.263843],[120.579478789063,31.21948753125],[120.56170046875,31.2481984687501],[120.55298953125,31.2694875312501],[120.53170046875,31.27819846875],[120.52298953125,31.28948753125],[120.48170046875,31.2981984687501],[120.466851835938,31.3174391914063],[120.451954375,31.3196388984375],[120.425289335938,31.3035524726563],[120.406265898438,31.3281984687501],[120.36170046875,31.31948753125],[120.293053007813,31.28948753125],[120.26170046875,31.2981984687501],[120.207345,31.333843],[120.214088164063,31.347173078125],[120.327345,31.403843],[120.432476835938,31.3986354804688],[120.474830351563,31.4097341132812],[120.511480742188,31.4082839179688],[120.552003203125,31.422485578125],[120.552545195313,31.4087331367188]]]]}},{"type":"Feature","properties":{"name":"昆山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.88873171875,31.5372072578125],[120.917345,31.5243508125],[120.932862578125,31.5313210273438],[120.971886015625,31.496313703125],[120.987345,31.5038430000001],[121.013463164063,31.4895070625],[121.0072278125,31.4579567695313],[121.023267851563,31.4355763984376],[121.067345,31.4268679023438],[121.08310671875,31.4299806953125],[121.094522734375,31.3730324531251],[121.107345,31.363843],[121.110704375,31.3472023750001],[121.129185820313,31.3378517890625],[121.117486601563,31.3138893867188],[121.143985625,31.3004836250001],[121.147345,31.273843],[121.14170046875,31.27819846875],[121.081866484375,31.289702375],[121.07298953125,31.27819846875],[121.06170046875,31.2694875312501],[121.05298953125,31.23808128125],[121.07500125,31.162583234375],[120.9976575,31.1343630195313],[120.942345,31.1425368476563],[120.902345,31.136626203125],[120.8819153125,31.1396462226562],[120.847345,31.113843],[120.804195585938,31.1357033515625],[120.816954375,31.1641066718751],[120.807345,31.183843],[120.811158476563,31.1900295234376],[120.846285429688,31.2091530585938],[120.898663359375,31.218579328125],[120.881158476563,31.2576564765626],[120.873531523438,31.2900295234375],[120.861158476563,31.3076564765625],[120.841900664063,31.3648732734375],[120.821158476563,31.3776564765626],[120.813531523438,31.4030080390625],[120.827345,31.4338430000001],[120.824078398438,31.4705739570313],[120.809503203125,31.4884767890625],[120.814991484375,31.498843],[120.804151640625,31.51931175],[120.827345,31.523843],[120.843892851563,31.5203932929688],[120.8517590625,31.5054592109375],[120.88873171875,31.5372072578125]]]]}},{"type":"Feature","properties":{"name":"太仓市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.297345,31.493843],[121.258072539063,31.4841970039063],[121.231676054688,31.4901149726563],[121.22326296875,31.4779274726562],[121.19142703125,31.4697585273438],[121.17326296875,31.4579274726563],[121.133829375,31.4431740546876],[121.15361453125,31.4295143867187],[121.151221953125,31.418843],[121.153468046875,31.408843],[121.149283476563,31.390180890625],[121.12142703125,31.3797585273438],[121.11326296875,31.3679274726563],[121.107345,31.363843],[121.094522734375,31.3730324531251],[121.08310671875,31.4299806953125],[121.067345,31.4268679023438],[121.023267851563,31.4355763984376],[121.0072278125,31.4579567695313],[121.013463164063,31.4895070625],[120.987345,31.5038430000001],[120.998502226563,31.5342287421875],[120.975738554688,31.5538430000001],[120.99271609375,31.5684719062501],[121.002974882813,31.5914650703126],[121.051363554688,31.6331496406251],[121.015738554688,31.6638430000001],[121.041715117188,31.6862209296876],[121.05197390625,31.70921409375],[121.097345,31.763843],[121.107345,31.763843],[121.119918242188,31.7456349921876],[121.23326296875,31.6697585273438],[121.33142703125,31.5779274726563],[121.37326296875,31.5497585273438],[121.377345,31.5438430000001],[121.37267703125,31.5370827460938],[121.334176054688,31.5120119453125],[121.30142703125,31.4997585273438],[121.297345,31.493843]]]]}},{"type":"Feature","properties":{"name":"吴江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.65271609375,31.2192140937501],[120.662345,31.1976369453125],[120.700103789063,31.2006716132813],[120.723409453125,31.1876686835938],[120.758565703125,31.2284719062501],[120.772769804688,31.2091408515625],[120.7716028125,31.19460471875],[120.807345,31.183843],[120.816954375,31.1641066718751],[120.804195585938,31.1357033515625],[120.847345,31.113843],[120.85170046875,31.10819846875],[120.895064726563,31.0822634101563],[120.8916028125,31.0588088203125],[120.897345,31.023843],[120.891612578125,31.0195778632813],[120.883077421875,31.0081081367188],[120.864371367188,30.9941896796876],[120.785181914063,31.0078224921875],[120.763077421875,30.9781081367188],[120.751612578125,30.9695778632812],[120.747345,30.963843],[120.706944609375,30.9732033515626],[120.67298953125,30.9649245429688],[120.710094023438,30.93628440625],[120.701300078125,30.8767800117188],[120.672857695313,30.8809841132813],[120.652857695313,30.85507346875],[120.622203398438,30.8596022773438],[120.567261992188,30.8468727851563],[120.527345,30.793843],[120.510787382813,30.769858625],[120.487345,30.763843],[120.463531523438,30.8100295234376],[120.450538359375,30.8180373359375],[120.456202421875,30.8362282539062],[120.44064578125,30.8583864570313],[120.44404421875,30.8692995429688],[120.428487578125,30.8914577460938],[120.436475859375,30.9171071601562],[120.425855742188,30.9276564765625],[120.408389921875,30.89931175],[120.36341921875,30.8839846015626],[120.357345,30.8938430000001],[120.357345,30.9438430000001],[120.367345,30.9438430000001],[120.367345,30.953843],[120.426344023438,30.9878566718751],[120.5084778125,31.0831935859376],[120.558272734375,31.1054128242188],[120.59197390625,31.15921409375],[120.612154570313,31.1766017890626],[120.630694609375,31.2381862617188],[120.65271609375,31.2192140937501]]]]}},{"type":"Feature","properties":{"name":"相城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.612994414063,31.5493288398438],[120.668746367188,31.4891628242188],[120.739937773438,31.5381520820313],[120.762511015625,31.5390480781251],[120.782877226563,31.5282692695313],[120.821812773438,31.5298122382813],[120.827345,31.523843],[120.804151640625,31.51931175],[120.814991484375,31.498843],[120.809503203125,31.4884767890625],[120.824078398438,31.4705739570313],[120.827345,31.4338430000001],[120.77170046875,31.42948753125],[120.740181914063,31.410473859375],[120.72298953125,31.38819846875],[120.681168242188,31.3765529609375],[120.637345,31.343843],[120.59427859375,31.3607741523438],[120.547345,31.373843],[120.552545195313,31.4087331367188],[120.552003203125,31.422485578125],[120.511480742188,31.4082839179688],[120.474830351563,31.4097341132812],[120.432476835938,31.3986354804688],[120.327345,31.403843],[120.337047148438,31.4155251289063],[120.420245390625,31.4516042304687],[120.461954375,31.4473537421875],[120.467345,31.453843],[120.49298953125,31.45819846875],[120.544615507813,31.4784938789063],[120.541607695313,31.498843],[120.543604765625,31.5123513007813],[120.572916289063,31.5080202460938],[120.581773710938,31.5296657539063],[120.592935820313,31.5280153632813],[120.597345,31.5438430000001],[120.612994414063,31.5493288398438]]]]}},{"type":"Feature","properties":{"name":"张家港市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.595675078125,32.008774640625],[120.647345,32.0038430000001],[120.67142703125,32.0097585273438],[120.72326296875,32.0179274726563],[120.737345,32.023843],[120.773985625,32.0204836250001],[120.78406375,32.00056175],[120.797345,31.993843],[120.850704375,31.887202375],[120.857345,31.883843],[120.863472929688,31.8599684882813],[120.887345,31.823843],[120.848541289063,31.8057228828125],[120.798297148438,31.8212966132813],[120.782066679688,31.8176589179688],[120.746070585938,31.832778546875],[120.71970828125,31.8156130195313],[120.724586210938,31.793843],[120.716734648438,31.7588185859375],[120.68142703125,31.7497585273438],[120.643194609375,31.7201247382813],[120.587345,31.7338430000001],[120.5957434375,31.753843],[120.57900515625,31.7936989570313],[120.552345,31.7877223945313],[120.518204375,31.795376203125],[120.526158476563,31.83085471875],[120.50142703125,31.8479274726563],[120.489176054688,31.8656740546876],[120.455357695313,31.8890236640625],[120.380426054688,31.9152883125],[120.383565703125,31.9292897773438],[120.37142703125,31.9479274726563],[120.367345,31.993843],[120.422769804688,32.0352101875],[120.488975859375,32.04499534375],[120.53170046875,32.02819846875],[120.557345,32.023843],[120.595675078125,32.008774640625]]]]}},{"type":"Feature","properties":{"name":"吴中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.873531523438,31.2900295234375],[120.881158476563,31.2576564765626],[120.898663359375,31.218579328125],[120.846285429688,31.2091530585938],[120.811158476563,31.1900295234376],[120.807345,31.183843],[120.7716028125,31.19460471875],[120.772769804688,31.2091408515625],[120.758565703125,31.2284719062501],[120.723409453125,31.1876686835938],[120.700103789063,31.2006716132813],[120.662345,31.1976369453125],[120.65271609375,31.2192140937501],[120.630694609375,31.2381862617188],[120.612154570313,31.1766017890626],[120.59197390625,31.15921409375],[120.558272734375,31.1054128242188],[120.5084778125,31.0831935859376],[120.426344023438,30.9878566718751],[120.367345,30.953843],[120.357345,30.953843],[120.357345,30.9438430000001],[120.244307890625,30.9299782539063],[120.151959257813,30.9393923164063],[120.097345,30.963843],[120.08427859375,30.9807741523438],[120.051690703125,31.005923078125],[120.000133085938,31.02702659375],[119.943360625,31.1022438789063],[119.93298953125,31.13948753125],[119.92170046875,31.15819846875],[119.917345,31.173843],[119.933443632813,31.1925295234375],[120.010181914063,31.2560060859375],[120.09271609375,31.27847190625],[120.127345,31.293843],[120.186846953125,31.3276711250001],[120.207345,31.333843],[120.26170046875,31.2981984687501],[120.293053007813,31.28948753125],[120.36170046875,31.31948753125],[120.406265898438,31.3281984687501],[120.425289335938,31.3035524726563],[120.451954375,31.3196388984375],[120.466851835938,31.3174391914063],[120.48170046875,31.2981984687501],[120.52298953125,31.28948753125],[120.53170046875,31.27819846875],[120.55298953125,31.2694875312501],[120.56170046875,31.2481984687501],[120.579478789063,31.21948753125],[120.597345,31.263843],[120.622056914063,31.2792678046875],[120.651954375,31.2768654609375],[120.637345,31.343843],[120.681168242188,31.3765529609375],[120.72298953125,31.38819846875],[120.740181914063,31.410473859375],[120.77170046875,31.42948753125],[120.827345,31.4338430000001],[120.813531523438,31.4030080390625],[120.821158476563,31.3776564765626],[120.841900664063,31.3648732734375],[120.861158476563,31.3076564765625],[120.873531523438,31.2900295234375]]]]}},{"type":"Feature","properties":{"name":"姑苏区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.637345,31.343843],[120.651954375,31.2768654609375],[120.622056914063,31.2792678046875],[120.597345,31.263843],[120.5840246875,31.2705812812501],[120.553985625,31.3304836250001],[120.525733671875,31.3629103828126],[120.547345,31.373843],[120.59427859375,31.3607741523438],[120.637345,31.343843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.86224734375,31.8889430976563],[120.857345,31.883843],[120.850704375,31.887202375],[120.797345,31.993843],[120.826920195313,32.0321584296875],[120.90170046875,32.04948753125],[120.907345,32.053843],[120.91224734375,32.0487429023438],[120.971607695313,32.037153546875],[120.942042265625,32.0087477851563],[120.942652617188,31.978843],[120.916539335938,31.9661745429688],[120.881905546875,31.9078298164063],[120.86224734375,31.8889430976563]]]]}},{"type":"Feature","properties":{"name":"港闸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.873013945313,32.1092360664063],[120.87021609375,32.0867116523438],[120.911353789063,32.0918288398438],[120.912984648438,32.0786818671876],[120.907345,32.053843],[120.90170046875,32.04948753125],[120.826920195313,32.0321584296875],[120.797345,31.993843],[120.78406375,32.00056175],[120.773985625,32.0204836250001],[120.737345,32.023843],[120.744381132813,32.0642653632813],[120.789049101563,32.1378102851562],[120.846886015625,32.145005109375],[120.873013945313,32.1092360664063]]]]}},{"type":"Feature","properties":{"name":"海安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.697345,32.473843],[120.707345,32.473843],[120.707345,32.4638430000001],[120.697345,32.4638430000001],[120.697345,32.473843]]],[[[120.617345,32.6138430000001],[120.605152617188,32.6104201484375],[120.613922148438,32.6016506171876],[120.642628203125,32.6091237617187],[120.652164335938,32.5782375312501],[120.695435820313,32.6084645820313],[120.73244265625,32.5883571601563],[120.750494414063,32.6085622382813],[120.782628203125,32.5991237617188],[120.797003203125,32.583032453125],[120.8526575,32.6085768867188],[120.851519804688,32.6277126289063],[120.897345,32.633843],[120.897345,32.6138430000001],[120.89298953125,32.60819846875],[120.864605742188,32.5965822578125],[120.85298953125,32.56819846875],[120.81170046875,32.55948753125],[120.802857695313,32.5480275703125],[120.789967070313,32.5499343085938],[120.79463015625,32.5183742500001],[120.703248320313,32.508579328125],[120.697345,32.473843],[120.681793242188,32.4782888007813],[120.662345,32.48972190625],[120.630601835938,32.471059796875],[120.582628203125,32.4894997382813],[120.567345,32.4876003242188],[120.521163359375,32.4933425117188],[120.52431765625,32.4679763007813],[120.497345,32.4713307929687],[120.460738554688,32.4667775703125],[120.462965117188,32.448843],[120.461378203125,32.4360768867188],[120.421793242188,32.4193971992188],[120.408453398438,32.4027370429688],[120.391666289063,32.3892971015625],[120.3941028125,32.369692609375],[120.347345,32.363843],[120.343687773438,32.3819655585938],[120.313985625,32.3672023750001],[120.297345,32.363843],[120.29326296875,32.3697585273438],[120.28107546875,32.3781716132813],[120.284654570313,32.39413596875],[120.256510039063,32.5078054023438],[120.264586210938,32.5438430000001],[120.253199492188,32.5946388984375],[120.222345,32.5877223945313],[120.205933867188,32.5914015937501],[120.197345,32.603843],[120.2040246875,32.6091921210938],[120.223004179688,32.658559796875],[120.220650664063,32.67745628125],[120.282896757813,32.6882888007813],[120.304581328125,32.7010353828125],[120.381890898438,32.7106520820313],[120.391793242188,32.6982888007813],[120.420362578125,32.6754103828125],[120.43834109375,32.6327468085938],[120.497345,32.6400856757813],[120.5622278125,32.6320168281251],[120.598741484375,32.653481671875],[120.612896757813,32.6293971992188],[120.617345,32.6138430000001]]]]}},{"type":"Feature","properties":{"name":"海门市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.342061796875,32.0985622382813],[121.419713164063,32.0891237617188],[121.427345,32.1138430000001],[121.527345,32.1138430000001],[121.527345,32.103843],[121.514454375,31.9774489570313],[121.494400664063,31.9108425117188],[121.4639465625,31.8678908515625],[121.45271609375,31.81847190625],[121.44197390625,31.7892140937501],[121.437345,31.7738430000001],[121.421793242188,31.7782888007813],[121.387784453125,31.8342800117187],[121.321783476563,31.87437034375],[121.27218875,31.8682009101562],[121.192081328125,31.8336208320313],[121.11181765625,31.7694264960937],[121.107345,31.763843],[121.097345,31.763843],[121.063985625,31.780483625],[121.027345,31.783843],[121.039556914063,31.823384015625],[121.079620390625,31.8417726875001],[121.070845976563,31.9889626289063],[121.177906523438,32.0032814765625],[121.192061796875,32.0191237617188],[121.207906523438,32.0332814765626],[121.239595976563,32.0687453437501],[121.252061796875,32.1091237617188],[121.305260039063,32.1185622382813],[121.342061796875,32.0985622382813]]]]}},{"type":"Feature","properties":{"name":"启东市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.922154570313,31.7469924140626],[121.912535429688,31.7086525703126],[121.902154570313,31.6990334296876],[121.892535429688,31.6786525703125],[121.882154570313,31.6590334296876],[121.877345,31.633843],[121.783448515625,31.6548537421875],[121.642564726563,31.699262921875],[121.632105742188,31.698423078125],[121.602584257813,31.709262921875],[121.592086210938,31.7084206367188],[121.50271609375,31.74921409375],[121.443096953125,31.7671633125001],[121.437345,31.7738430000001],[121.44197390625,31.7892140937501],[121.45271609375,31.81847190625],[121.4639465625,31.8678908515625],[121.494400664063,31.9108425117188],[121.514454375,31.9774489570313],[121.527345,32.103843],[121.55834109375,32.09792503125],[121.715357695313,32.036782453125],[121.740323515625,32.0098342109376],[121.779849882813,31.9843093085938],[121.826964140625,31.933462140625],[121.846202421875,31.9156374335938],[121.862535429688,31.8690334296875],[121.872154570313,31.8286525703125],[121.922154570313,31.7469924140626]]]]}},{"type":"Feature","properties":{"name":"如东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.937345,32.593843],[120.940767851563,32.6060353828125],[120.949537382813,32.5972658515626],[120.937345,32.593843]]],[[[120.937345,32.593843],[120.94197390625,32.57847190625],[120.97271609375,32.5592140937501],[120.990728789063,32.5383107734375],[121.010787382813,32.5399221015626],[121.04197390625,32.52847190625],[121.113638945313,32.5121901679688],[121.1530871875,32.4945876289063],[121.18197390625,32.4784719062501],[121.32029421875,32.429438703125],[121.397261992188,32.3850612617188],[121.388912382813,32.281108625],[121.411734648438,32.2614455390626],[121.41353640625,32.2389870429688],[121.37896609375,32.2173317695312],[121.367345,32.203843],[121.26591921875,32.1938698554688],[121.096383085938,32.2168508125001],[121.044039335938,32.2360744453125],[121.032667265625,32.2492702460938],[121.022066679688,32.2484181953125],[121.002471953125,32.2593508125001],[120.9580090625,32.24718284375],[120.922345,32.2500490546875],[120.892345,32.2476369453125],[120.872345,32.2492458320313],[120.862174101563,32.2484279609375],[120.837345,32.253843],[120.831158476563,32.2576564765625],[120.8198840625,32.2759474921875],[120.828873320313,32.3048024726562],[120.786300078125,32.31931175],[120.769718046875,32.3462184882813],[120.741666289063,32.3635036445313],[120.733531523438,32.4300295234375],[120.711158476563,32.4376564765626],[120.707345,32.4638430000001],[120.707345,32.473843],[120.697345,32.473843],[120.703248320313,32.508579328125],[120.79463015625,32.5183742500001],[120.789967070313,32.5499343085938],[120.802857695313,32.5480275703125],[120.81170046875,32.55948753125],[120.85298953125,32.56819846875],[120.864605742188,32.5965822578125],[120.89298953125,32.60819846875],[120.897345,32.6138430000001],[120.91326296875,32.6097585273438],[120.937345,32.593843]]]]}},{"type":"Feature","properties":{"name":"如皋市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.521163359375,32.4933425117188],[120.567345,32.4876003242188],[120.582628203125,32.4894997382813],[120.630601835938,32.471059796875],[120.662345,32.48972190625],[120.681793242188,32.4782888007813],[120.697345,32.473843],[120.697345,32.4638430000001],[120.707345,32.4638430000001],[120.711158476563,32.4376564765626],[120.733531523438,32.4300295234375],[120.741666289063,32.3635036445313],[120.769718046875,32.3462184882813],[120.786300078125,32.31931175],[120.828873320313,32.3048024726562],[120.8198840625,32.2759474921875],[120.831158476563,32.2576564765625],[120.837345,32.253843],[120.82435671875,32.2350295234375],[120.790025664063,32.2427272773438],[120.773116484375,32.1975490546876],[120.75771609375,32.2010012031251],[120.735513945313,32.1856740546875],[120.72326296875,32.1679274726563],[120.698980742188,32.1588430000001],[120.705709257813,32.128843],[120.68142703125,32.1197585273438],[120.67326296875,32.0979274726563],[120.65142703125,32.0897585273438],[120.64326296875,32.0679274726563],[120.62326296875,32.0541188789062],[120.63142703125,32.0279274726563],[120.647345,32.0038430000001],[120.595675078125,32.008774640625],[120.557345,32.023843],[120.54271609375,32.04921409375],[120.52123171875,32.0677272773438],[120.50271609375,32.08921409375],[120.4420715625,32.1241799140626],[120.347345,32.133843],[120.338336210938,32.1735134101563],[120.367042265625,32.222348859375],[120.34654421875,32.2572145820313],[120.353590117188,32.3138552070313],[120.347345,32.363843],[120.3941028125,32.369692609375],[120.391666289063,32.3892971015625],[120.408453398438,32.4027370429688],[120.421793242188,32.4193971992188],[120.461378203125,32.4360768867188],[120.462965117188,32.448843],[120.460738554688,32.4667775703125],[120.497345,32.4713307929687],[120.52431765625,32.4679763007813],[120.521163359375,32.4933425117188]]]]}},{"type":"Feature","properties":{"name":"通州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.002471953125,32.2593508125001],[121.022066679688,32.2484181953125],[121.032667265625,32.2492702460938],[121.044039335938,32.2360744453125],[121.096383085938,32.2168508125001],[121.26591921875,32.1938698554688],[121.367345,32.203843],[121.380704375,32.1772023750001],[121.423985625,32.1704836250001],[121.427345,32.1138430000001],[121.419713164063,32.0891237617188],[121.342061796875,32.0985622382813],[121.305260039063,32.1185622382813],[121.252061796875,32.1091237617188],[121.239595976563,32.0687453437501],[121.207906523438,32.0332814765626],[121.192061796875,32.0191237617188],[121.177906523438,32.0032814765625],[121.070845976563,31.9889626289063],[121.079620390625,31.8417726875001],[121.039556914063,31.823384015625],[121.027345,31.783843],[120.920123320313,31.7892604804688],[120.892535429688,31.8190334296875],[120.887345,31.823843],[120.863472929688,31.8599684882813],[120.857345,31.883843],[120.86224734375,31.8889430976563],[120.881905546875,31.9078298164063],[120.916539335938,31.9661745429688],[120.942652617188,31.978843],[120.942042265625,32.0087477851563],[120.971607695313,32.037153546875],[120.91224734375,32.0487429023438],[120.907345,32.053843],[120.912984648438,32.0786818671876],[120.911353789063,32.0918288398438],[120.87021609375,32.0867116523438],[120.873013945313,32.1092360664063],[120.846886015625,32.145005109375],[120.789049101563,32.1378102851562],[120.744381132813,32.0642653632813],[120.737345,32.023843],[120.72326296875,32.0179274726563],[120.67142703125,32.0097585273438],[120.647345,32.0038430000001],[120.63142703125,32.0279274726563],[120.62326296875,32.0541188789062],[120.64326296875,32.0679274726563],[120.65142703125,32.0897585273438],[120.67326296875,32.0979274726563],[120.68142703125,32.1197585273438],[120.705709257813,32.128843],[120.698980742188,32.1588430000001],[120.72326296875,32.1679274726563],[120.735513945313,32.1856740546875],[120.75771609375,32.2010012031251],[120.773116484375,32.1975490546876],[120.790025664063,32.2427272773438],[120.82435671875,32.2350295234375],[120.837345,32.253843],[120.862174101563,32.2484279609375],[120.872345,32.2492458320313],[120.892345,32.2476369453125],[120.922345,32.2500490546875],[120.9580090625,32.24718284375],[121.002471953125,32.2593508125001]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"灌南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.767345,34.413843],[119.770767851563,34.4016506171875],[119.779537382813,34.4104201484375],[119.77181765625,34.4359865546875],[119.787345,34.4438430000001],[119.79322390625,34.4385903144532],[119.791451445313,34.4088430000001],[119.793228789063,34.37899925],[119.752061796875,34.3491237617188],[119.731910429688,34.3052101875],[119.6580090625,34.2595253730469],[119.572906523438,34.2132802558594],[119.526402617188,34.1919362617188],[119.500860625,34.1691139960938],[119.523238554688,34.158843],[119.521090117188,34.1227773261719],[119.582061796875,34.0947927070313],[119.572628203125,34.0785622382813],[119.55162234375,34.0597939277344],[119.562628203125,34.0291237617188],[119.567345,34.013843],[119.55197390625,34.0184706855469],[119.527345,34.032212140625],[119.440460234375,33.983735578125],[119.4073840625,34.0021901679688],[119.380728789063,34.0331325507813],[119.322105742188,34.0284218574219],[119.288990507813,34.0405825019532],[119.233961210938,34.0361611152344],[119.22271609375,34.0492153144531],[119.167345,34.0938430000001],[119.161163359375,34.1085646796876],[119.165611601563,34.1284169746094],[119.131065703125,34.1481349921876],[119.1346496875,34.1641127753907],[119.127345,34.193843],[119.161793242188,34.1993959785156],[119.232896757813,34.2082900214844],[119.279547148438,34.2216103339844],[119.458599882813,34.2440053535157],[119.501793242188,34.2693959785156],[119.522896757813,34.2782900214844],[119.631793242188,34.3493959785156],[119.652896757813,34.3582900214844],[119.661793242188,34.3693959785157],[119.715875273438,34.3810976386719],[119.767345,34.413843]]]]}},{"type":"Feature","properties":{"name":"灌云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.767345,34.413843],[119.779537382813,34.4104201484375],[119.770767851563,34.4016506171875],[119.767345,34.413843]]],[[[119.767345,34.413843],[119.715875273438,34.3810976386719],[119.661793242188,34.3693959785157],[119.652896757813,34.3582900214844],[119.631793242188,34.3493959785156],[119.522896757813,34.2782900214844],[119.501793242188,34.2693959785156],[119.458599882813,34.2440053535157],[119.279547148438,34.2216103339844],[119.232896757813,34.2082900214844],[119.161793242188,34.1993959785156],[119.127345,34.193843],[119.122896757813,34.1993959785156],[119.096925078125,34.2103408027344],[119.082896757813,34.2593959785156],[119.069405546875,34.2702016425782],[119.07537234375,34.3181764960938],[119.049615507813,34.3619899726563],[119.057345,34.423843],[119.057345,34.4438430000001],[119.077345,34.4438430000001],[119.1674621875,34.4295900703126],[119.204683867188,34.4509096503907],[119.2018371875,34.4788430000001],[119.203682890625,34.4969741035157],[119.197345,34.5138430000001],[119.28220828125,34.5067885566407],[119.2975403125,34.5577114082032],[119.34197390625,34.5892153144531],[119.364967070313,34.5994753242188],[119.3866028125,34.6245864082032],[119.417345,34.6338430000001],[119.431632109375,34.6224025703126],[119.448463164063,34.5824599433594],[119.514635039063,34.5422658515626],[119.510655546875,34.5102577949219],[119.559176054688,34.4916078925781],[119.621793242188,34.4993959785156],[119.627345,34.503843],[119.637345,34.503843],[119.637345,34.5138430000001],[119.647345,34.5138430000001],[119.647345,34.5238430000001],[119.70255984375,34.5292726875],[119.73197390625,34.5184706855469],[119.7780871875,34.5045864082032],[119.787345,34.473843],[119.787345,34.4438430000001],[119.77181765625,34.4359865546875],[119.767345,34.413843]]]]}},{"type":"Feature","properties":{"name":"连云区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.477345,34.7038430000001],[119.489537382813,34.7004201484375],[119.480767851563,34.6916506171876],[119.477345,34.7038430000001]]],[[[119.489556914063,34.7669814277344],[119.497345,34.7538430000001],[119.453624296875,34.7583290839844],[119.489556914063,34.7669814277344]]],[[[119.477345,34.7038430000001],[119.448057890625,34.6795156074219],[119.540640898438,34.6049404121094],[119.640621367188,34.5615798164063],[119.647345,34.5238430000001],[119.637345,34.5238430000001],[119.637345,34.5138430000001],[119.627345,34.5138430000001],[119.627345,34.503843],[119.621793242188,34.4993959785156],[119.559176054688,34.4916078925781],[119.510655546875,34.5102577949219],[119.514635039063,34.5422658515626],[119.448463164063,34.5824599433594],[119.431632109375,34.6224025703126],[119.417345,34.6338430000001],[119.40435671875,34.6526564765626],[119.377076445313,34.6465407539063],[119.322388945313,34.6599733710938],[119.286129179688,34.6518447089844],[119.237345,34.6836110664063],[119.199386015625,34.6588930488282],[119.167345,34.653843],[119.173985625,34.667202375],[119.177345,34.683843],[119.192711210938,34.6944533515626],[119.20142703125,34.7497585273438],[119.217345,34.773843],[119.242896757813,34.7693959785157],[119.293931914063,34.7393959785157],[119.322896757813,34.7482900214844],[119.356143828125,34.7678322578126],[119.371793242188,34.7482900214844],[119.471788359375,34.7357826972657],[119.477345,34.7038430000001]]],[[[119.443922148438,34.7760353828125],[119.447345,34.763843],[119.435152617188,34.7672658515626],[119.443922148438,34.7760353828125]]]]}},{"type":"Feature","properties":{"name":"新浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.237345,34.6836110664063],[119.286129179688,34.6518447089844],[119.322388945313,34.6599733710938],[119.377076445313,34.6465407539063],[119.40435671875,34.6526564765626],[119.417345,34.6338430000001],[119.3866028125,34.6245864082032],[119.364967070313,34.5994753242188],[119.34197390625,34.5892153144531],[119.2975403125,34.5577114082032],[119.28220828125,34.5067885566407],[119.197345,34.5138430000001],[119.183775664063,34.5215798164063],[119.2137121875,34.5574745917969],[119.220245390625,34.5874745917969],[119.181129179688,34.5727309394532],[119.1437121875,34.5902114082032],[119.127345,34.5938430000001],[119.131158476563,34.6100307441407],[119.168873320313,34.6228835273437],[119.160538359375,34.6496486640625],[119.167345,34.653843],[119.199386015625,34.6588930488282],[119.237345,34.6836110664063]]]]}},{"type":"Feature","properties":{"name":"赣榆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.893922148438,35.0160353828125],[119.897345,35.003843],[119.885152617188,35.0072658515625],[119.893922148438,35.0160353828125]]],[[[119.291842070313,35.1071974921875],[119.297345,35.083843],[119.2476965625,35.0634902167969],[119.208131132813,35.0350136542969],[119.192808867188,34.8983803535157],[119.181812773438,34.8590578437501],[119.18375125,34.8400356269531],[119.212808867188,34.7893056464844],[119.217345,34.773843],[119.20142703125,34.7497585273438],[119.192711210938,34.6944533515626],[119.177345,34.683843],[119.066734648438,34.6760243964844],[119.023023710938,34.6997768378907],[118.956041289063,34.6957851386719],[118.922628203125,34.7191237617188],[118.892061796875,34.7385622382813],[118.874429960938,34.758296125],[118.845230742188,34.7716970039063],[118.772291289063,34.7673500800782],[118.767345,34.793843],[118.77312625,34.8085512519531],[118.771607695313,34.818843],[118.773082304688,34.8288430000001],[118.771519804688,34.8394130683594],[118.79298953125,34.8481996894531],[118.80170046875,34.8794863105469],[118.85298953125,34.9481996894532],[118.857345,35.023843],[118.8626965625,35.0305239082032],[118.914508085938,35.0504396796876],[118.947345,35.0463552070313],[119.032345,35.0569277167969],[119.106470976563,35.0477077460938],[119.14064578125,35.1039760566407],[119.197345,35.113843],[119.212608671875,35.1070058417969],[119.238682890625,35.1253139472657],[119.291842070313,35.1071974921875]]]]}},{"type":"Feature","properties":{"name":"东海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.107345,34.573843],[119.107345,34.583843],[119.120152617188,34.578843],[119.107345,34.573843]]],[[[119.107345,34.583843],[119.094537382813,34.578843],[119.107345,34.573843],[119.101724882813,34.5288442207031],[119.104298125,34.5081557441407],[119.092896757813,34.4682900214844],[119.081793242188,34.4593959785156],[119.077345,34.4438430000001],[119.057345,34.4438430000001],[119.057345,34.423843],[119.042154570313,34.4190334296875],[119.032535429688,34.4086525703126],[118.992154570313,34.3990334296876],[118.963585234375,34.3681996894532],[118.917345,34.3700319648438],[118.867345,34.3680507636719],[118.837345,34.3692397285156],[118.818258085938,34.3684828925781],[118.779986601563,34.3092177558594],[118.742511015625,34.329048078125],[118.732203398438,34.3286391425782],[118.637345,34.353843],[118.64170046875,34.3794863105469],[118.66045046875,34.3939601875001],[118.67170046875,34.4127614570313],[118.639058867188,34.4379555488281],[118.598424101563,34.4481996894532],[118.574136992188,34.4167299628907],[118.55298953125,34.4294863105469],[118.5176965625,34.4439308906251],[118.467301054688,34.4065676093751],[118.417100859375,34.4212038398438],[118.407345,34.433843],[118.41142703125,34.4697585273438],[118.42326296875,34.4879274726562],[118.434019804688,34.5166762519531],[118.4176965625,34.5831166816407],[118.425577421875,34.6182570625001],[118.465767851563,34.6285707832032],[118.456803007813,34.6685707832031],[118.509176054688,34.6820119453125],[118.517345,34.7138430000001],[118.546768828125,34.70675315625],[118.589244414063,34.7151467109376],[118.601519804688,34.6980178046876],[118.629386015625,34.687270734375],[118.652345,34.6918068671875],[118.682345,34.6858791328125],[118.742896757813,34.6978444648438],[118.775382109375,34.7184694648438],[118.770455351563,34.7434096503906],[118.737345,34.7368666816406],[118.708155546875,34.7426357246094],[118.713858671875,34.7715077949219],[118.735631132813,34.7672048164063],[118.731202421875,34.7896303535157],[118.767345,34.793843],[118.772291289063,34.7673500800782],[118.845230742188,34.7716970039063],[118.874429960938,34.758296125],[118.892061796875,34.7385622382813],[118.922628203125,34.7191237617188],[118.956041289063,34.6957851386719],[119.023023710938,34.6997768378907],[119.066734648438,34.6760243964844],[119.177345,34.683843],[119.173985625,34.667202375],[119.167345,34.653843],[119.160538359375,34.6496486640625],[119.168873320313,34.6228835273437],[119.131158476563,34.6100307441407],[119.127345,34.5938430000001],[119.111002226563,34.6019655585938],[119.107345,34.583843]]]]}},{"type":"Feature","properties":{"name":"海州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.107345,34.573843],[119.094537382813,34.578843],[119.107345,34.583843],[119.107345,34.573843]]],[[[119.107345,34.573843],[119.120152617188,34.578843],[119.107345,34.583843],[119.111002226563,34.6019655585938],[119.127345,34.5938430000001],[119.1437121875,34.5902114082032],[119.181129179688,34.5727309394532],[119.220245390625,34.5874745917969],[119.2137121875,34.5574745917969],[119.183775664063,34.5215798164063],[119.197345,34.5138430000001],[119.203682890625,34.4969741035157],[119.2018371875,34.4788430000001],[119.204683867188,34.4509096503907],[119.1674621875,34.4295900703126],[119.077345,34.4438430000001],[119.081793242188,34.4593959785156],[119.092896757813,34.4682900214844],[119.104298125,34.5081557441407],[119.101724882813,34.5288442207031],[119.107345,34.573843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"淮安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3240246875,33.7046108222657],[119.366920195313,33.6793959785157],[119.442896757813,33.6882900214844],[119.477345,33.693843],[119.482764921875,33.6790810371094],[119.481944609375,33.668843],[119.483204375,33.6531508613282],[119.451710234375,33.6390969062501],[119.476109648438,33.5811550117188],[119.494830351563,33.518989484375],[119.55197390625,33.4784706855469],[119.607345,33.4538430000001],[119.617554960938,33.4295339179688],[119.59142703125,33.4197585273438],[119.567345,33.403843],[119.498472929688,33.4182521796876],[119.426090117188,33.3799513984375],[119.312154570313,33.3690334296876],[119.229893828125,33.3518227363281],[119.252935820313,33.3082753730469],[119.172154570313,33.2890334296876],[119.157345,33.283843],[119.15170046875,33.2881996894531],[119.06509890625,33.308266828125],[118.9998059375,33.3566738105469],[119.00312625,33.3791347480469],[118.997345,33.393843],[119.002061796875,33.3991237617188],[119.1240246875,33.4657009101563],[119.121812773438,33.5027761054688],[119.077345,33.5638430000001],[119.102174101563,33.55831565625],[119.112735625,33.5593923164063],[119.129127226563,33.5396596503906],[119.171881132813,33.5734609199219],[119.150831328125,33.6102175117188],[119.131910429688,33.6082888007813],[119.127345,33.623843],[119.147345,33.623843],[119.147345,33.633843],[119.169556914063,33.6516310859376],[119.191793242188,33.6793959785157],[119.211241484375,33.6949709296875],[119.213590117188,33.7138430000001],[119.209678984375,33.7452870917969],[119.288453398438,33.7631801582031],[119.3240246875,33.7046108222657]]]]}},{"type":"Feature","properties":{"name":"盱眙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.487345,33.243843],[118.492764921875,33.134419171875],[118.491344023438,33.0986049628907],[118.502530546875,33.0990480781251],[118.516695585938,33.0690334296876],[118.522535429688,33.0786525703126],[118.536202421875,33.1218154121094],[118.552154570313,33.1390334296876],[118.562535429688,33.1486525703126],[118.580596953125,33.1681435371094],[118.697027617188,33.1986525703125],[118.702535429688,33.1890334296875],[118.713096953125,33.0898049140626],[118.782345,33.0870583320313],[118.871529570313,33.0905934882813],[118.892154570313,33.0586525703125],[118.907345,33.053843],[118.891851835938,33.0247658515625],[118.854976835938,33.0351296210938],[118.813507109375,33.0085842109375],[118.901246367188,32.99909690625],[118.893443632813,32.9677468085938],[118.887345,32.963843],[118.862515898438,32.9583156562501],[118.851954375,32.9593923164063],[118.84107546875,32.9462966132813],[118.8428528125,32.928843],[118.84158328125,32.916372296875],[118.81189578125,32.9193971992188],[118.802808867188,32.8583815742188],[118.733756132813,32.8480959296875],[118.745548125,32.7324318671875],[118.697345,32.7238430000001],[118.697345,32.733843],[118.687345,32.733843],[118.61634890625,32.7455055976563],[118.598761015625,32.7227223945313],[118.542345,32.731059796875],[118.473761015625,32.7209255195313],[118.44232546875,32.739887921875],[118.417345,32.7238430000001],[118.40263796875,32.71806175],[118.359478789063,32.724438703125],[118.363824492188,32.753843],[118.361085234375,32.7723513007813],[118.322857695313,32.7667018867188],[118.31298953125,32.77948753125],[118.291226835938,32.7962844062501],[118.298057890625,32.842505109375],[118.24170046875,32.8581984687501],[118.22298953125,32.9314919257813],[118.283219023438,32.9482643867188],[118.30170046875,32.9670607734375],[118.244273710938,32.983051984375],[118.2325403125,33.0521120429688],[118.211529570313,33.0683303046876],[118.213160429688,33.0793556953126],[118.200865507813,33.088843],[118.21298953125,33.0981996894531],[118.217345,33.1838430000001],[118.258219023438,33.20198753125],[118.413219023438,33.1895326972657],[118.487345,33.243843]]]]}},{"type":"Feature","properties":{"name":"洪泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.897345,33.353843],[118.885152617188,33.3504201484376],[118.893922148438,33.3416506171875],[118.91298953125,33.3581996894531],[118.962174101563,33.3878688789063],[118.997345,33.393843],[119.00312625,33.3791347480469],[118.9998059375,33.3566738105469],[119.06509890625,33.308266828125],[119.15170046875,33.2881996894531],[119.157345,33.283843],[119.154801054688,33.2663869453125],[119.139888945313,33.2512990546875],[119.137345,33.213843],[119.07170046875,33.2094863105469],[119.04298953125,33.1981996894532],[118.977564726563,33.1870851875001],[118.94052859375,33.1391030097656],[118.95298953125,33.1294863105469],[118.96170046875,33.1167214179687],[118.941744414063,33.1196706367188],[118.93298953125,33.0817653632813],[118.96298953125,33.06948753125],[118.97170046875,33.0588820625],[118.907345,33.053843],[118.892154570313,33.0586525703125],[118.871529570313,33.0905934882813],[118.782345,33.0870583320313],[118.713096953125,33.0898049140626],[118.702535429688,33.1890334296875],[118.697027617188,33.1986525703125],[118.580596953125,33.1681435371094],[118.562535429688,33.1486525703126],[118.552154570313,33.1390334296876],[118.536202421875,33.1218154121094],[118.522535429688,33.0786525703126],[118.516695585938,33.0690334296876],[118.502530546875,33.0990480781251],[118.491344023438,33.0986049628907],[118.492764921875,33.134419171875],[118.487345,33.243843],[118.506788359375,33.2648268867188],[118.771744414063,33.3477992988281],[118.777345,33.353843],[118.832579375,33.3607509589844],[118.871793242188,33.3893959785156],[118.897345,33.393843],[118.897345,33.353843]]]]}},{"type":"Feature","properties":{"name":"淮阴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.997345,33.893843],[119.00142703125,33.8779274726562],[119.02326296875,33.8697585273438],[119.03564578125,33.8518227363282],[119.089459257813,33.8155837226563],[119.081124296875,33.7783962226563],[119.09326296875,33.7597585273438],[119.102345,33.7354799628907],[119.131676054688,33.742055890625],[119.14142703125,33.7279274726563],[119.179859648438,33.7180641914063],[119.16142703125,33.6897585273438],[119.147345,33.633843],[119.147345,33.623843],[119.127345,33.623843],[119.09142703125,33.6197585273437],[119.046451445313,33.6058168769532],[119.006070585938,33.6227797675782],[118.96076296875,33.5932778144532],[118.947345,33.573843],[118.939761992188,33.5679909492188],[118.97672,33.5067214179688],[118.9310559375,33.4451308417969],[118.90298953125,33.3981996894531],[118.897345,33.393843],[118.871793242188,33.3893959785156],[118.832579375,33.3607509589844],[118.777345,33.353843],[118.753682890625,33.370180890625],[118.737345,33.393843],[118.758687773438,33.4129140449219],[118.772940703125,33.4391371894532],[118.794039335938,33.5778603339844],[118.774874296875,33.5949831367188],[118.7551184375,33.6313466621094],[118.793238554688,33.648843],[118.791495390625,33.6780800605469],[118.804268828125,33.7015822578125],[118.7970715625,33.8223427558594],[118.835655546875,33.8655300117188],[118.867345,33.893843],[118.885855742188,33.8868874335938],[118.962467070313,33.9195558906251],[118.997345,33.893843]]]]}},{"type":"Feature","properties":{"name":"金湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.295650664063,33.1425942207031],[119.33170046875,33.0781984687501],[119.357345,33.043843],[119.342535429688,33.0186525703125],[119.313096953125,32.9913771796875],[119.347452421875,32.8602638984375],[119.323297148438,32.8090798164063],[119.260089140625,32.8065724921875],[119.212535429688,32.8190334296875],[119.177345,32.823843],[119.09500125,32.8282741523437],[119.07326296875,32.8597585273438],[119.054346953125,32.872817609375],[119.033053007813,32.910122296875],[119.0080090625,32.9045095039063],[119.023726835938,32.9286452460938],[119.008443632813,32.9650319648438],[118.95326296875,32.9479274726563],[118.893526640625,32.9397585273438],[118.887345,32.963843],[118.893443632813,32.9677468085938],[118.901246367188,32.99909690625],[118.813507109375,33.0085842109375],[118.854976835938,33.0351296210938],[118.891851835938,33.0247658515625],[118.907345,33.053843],[118.97170046875,33.0588820625],[118.96298953125,33.06948753125],[118.93298953125,33.0817653632813],[118.941744414063,33.1196706367188],[118.96170046875,33.1167214179687],[118.95298953125,33.1294863105469],[118.94052859375,33.1391030097656],[118.977564726563,33.1870851875001],[119.04298953125,33.1981996894532],[119.07170046875,33.2094863105469],[119.137345,33.213843],[119.218472929688,33.2000612617188],[119.223082304688,33.168843],[119.221514921875,33.1582387519531],[119.295650664063,33.1425942207031]]]]}},{"type":"Feature","properties":{"name":"涟水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.22271609375,34.0492153144531],[119.233961210938,34.0361611152344],[119.288990507813,34.0405825019532],[119.322105742188,34.0284218574219],[119.380728789063,34.0331325507813],[119.4073840625,34.0021901679688],[119.440460234375,33.983735578125],[119.527345,34.032212140625],[119.55197390625,34.0184706855469],[119.567345,34.013843],[119.57406375,34.00056175],[119.595269804688,33.9898329902344],[119.588101835938,33.9751564765625],[119.610704375,33.957202375],[119.637345,33.953843],[119.637345,33.923843],[119.6322278125,33.8937258125],[119.573140898438,33.8583852363281],[119.537823515625,33.8146901679688],[119.50298953125,33.7281996894532],[119.477345,33.693843],[119.442896757813,33.6882900214844],[119.366920195313,33.6793959785157],[119.3240246875,33.7046108222657],[119.288453398438,33.7631801582031],[119.209678984375,33.7452870917969],[119.213590117188,33.7138430000001],[119.211241484375,33.6949709296875],[119.191793242188,33.6793959785157],[119.169556914063,33.6516310859376],[119.147345,33.633843],[119.16142703125,33.6897585273438],[119.179859648438,33.7180641914063],[119.14142703125,33.7279274726563],[119.131676054688,33.742055890625],[119.102345,33.7354799628907],[119.09326296875,33.7597585273438],[119.081124296875,33.7783962226563],[119.089459257813,33.8155837226563],[119.03564578125,33.8518227363282],[119.02326296875,33.8697585273438],[119.00142703125,33.8779274726562],[118.997345,33.893843],[119.009718046875,33.9014675117188],[119.024971953125,33.9262184882813],[119.049381132813,33.9412587714844],[119.040523710938,33.9696865058594],[119.073531523438,33.9876552558594],[119.089605742188,34.0137416816407],[119.141627226563,34.0420619941407],[119.157125273438,34.0875466132813],[119.167345,34.0938430000001],[119.22271609375,34.0492153144531]]]]}},{"type":"Feature","properties":{"name":"清河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.127345,33.623843],[119.131910429688,33.6082888007813],[119.150831328125,33.6102175117188],[119.171881132813,33.5734609199219],[119.129127226563,33.5396596503906],[119.112735625,33.5593923164063],[119.102174101563,33.55831565625],[119.077345,33.5638430000001],[119.073985625,33.570483625],[119.02250125,33.5963466621095],[118.983985625,33.577202375],[118.947345,33.573843],[118.96076296875,33.5932778144532],[119.006070585938,33.6227797675782],[119.046451445313,33.6058168769532],[119.09142703125,33.6197585273437],[119.127345,33.623843]]]]}},{"type":"Feature","properties":{"name":"清浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.897345,33.353843],[118.893922148438,33.3416506171875],[118.885152617188,33.3504201484376],[118.897345,33.353843]]],[[[118.897345,33.353843],[118.897345,33.393843],[118.90298953125,33.3981996894531],[118.9310559375,33.4451308417969],[118.97672,33.5067214179688],[118.939761992188,33.5679909492188],[118.947345,33.573843],[118.983985625,33.577202375],[119.02250125,33.5963466621095],[119.073985625,33.570483625],[119.077345,33.5638430000001],[119.121812773438,33.5027761054688],[119.1240246875,33.4657009101563],[119.002061796875,33.3991237617188],[118.997345,33.393843],[118.962174101563,33.3878688789063],[118.91298953125,33.3581996894531],[118.897345,33.353843]]]]}}]}
  1 +{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"滨海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.307345,34.1038430000001],[120.242530546875,34.0883144355469],[120.223531523438,34.0902504707032],[120.202808867188,34.0783803535156],[120.150811796875,34.0589040351563],[120.15318484375,34.0356056953125],[120.173365507813,34.0188430000001],[120.161881132813,34.0093056464844],[120.1442590625,33.9686696601563],[120.166422148438,33.9096877265625],[120.137725859375,33.8993056464844],[120.09634890625,33.9230055976563],[120.073189726563,33.9508815742188],[120.048189726563,33.9207851386719],[120.025806914063,33.9477321601563],[119.992808867188,33.9223159003907],[120.022808867188,33.9093056464844],[120.031881132813,33.8953224921875],[119.990748320313,33.8995156074219],[119.993897734375,33.8686220527344],[119.951881132813,33.8593056464844],[119.937345,33.8338430000001],[119.90170046875,33.8194863105469],[119.88298953125,33.8081996894532],[119.850225859375,33.7994863105469],[119.853990507813,33.8249831367188],[119.808219023438,33.8437160468751],[119.823140898438,33.868452375],[119.821549101563,33.879233625],[119.837379179688,33.9054787421876],[119.777686796875,33.9221022773438],[119.71064578125,33.8928041816407],[119.667750273438,33.9186769843751],[119.637345,33.923843],[119.637345,33.953843],[119.646964140625,33.964223859375],[119.669381132813,33.98499534375],[119.7525403125,34.0459889960938],[119.8066809375,34.0631313300781],[119.862154570313,34.1490334296875],[120.028375273438,34.2898366523438],[120.042154570313,34.3190334296876],[120.05482546875,34.3429750800781],[120.082535429688,34.3686525703126],[120.087345,34.3738430000001],[120.123121367188,34.3677651191406],[120.280806914063,34.3042543769532],[120.283082304688,34.2888430000001],[120.281607695313,34.278843],[120.283082304688,34.268843],[120.280435820313,34.2509194160156],[120.324254179688,34.1567665839844],[120.321607695313,34.1388430000001],[120.324483671875,34.1193544746094],[120.31170046875,34.1094863105469],[120.307345,34.1038430000001]]]]}},{"type":"Feature","properties":{"name":"大丰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.497345,32.9238430000001],[120.493922148438,32.9116506171875],[120.485152617188,32.9204201484375],[120.497345,32.9238430000001]]],[[[120.497345,32.9238430000001],[120.48978640625,32.9336379218751],[120.452203398438,32.9280837226563],[120.365933867188,32.948071515625],[120.33298953125,32.9281984687501],[120.277345,32.9238430000001],[120.301129179688,32.9760817695313],[120.31170046875,33.0450441718751],[120.29170046875,33.0781984687501],[120.28298953125,33.1294863105469],[120.22170046875,33.1381996894531],[120.217345,33.1438430000001],[120.217345,33.173843],[120.232628203125,33.1785622382813],[120.281734648438,33.2166188789063],[120.299307890625,33.2549123359376],[120.393355742188,33.2980763984376],[120.370933867188,33.3301784492188],[120.37322390625,33.3685903144532],[120.362061796875,33.3785622382813],[120.342628203125,33.4047927070312],[120.372628203125,33.4185622382813],[120.461890898438,33.4877370429688],[120.467345,33.4938430000001],[120.50298953125,33.5181996894531],[120.56170046875,33.5694863105469],[120.607345,33.6038430000001],[120.614049101563,33.5984755683594],[120.665679960938,33.5106423164063],[120.661666289063,33.4783901191407],[120.685152617188,33.4595815253907],[120.705025664063,33.4257741523438],[120.721793242188,33.3482900214844],[120.732896757813,33.3293959785157],[120.741793242188,33.2882900214844],[120.75322390625,33.25855003125],[120.741099882813,33.248843],[120.752896757813,33.2393959785156],[120.761793242188,33.2282900214845],[120.772896757813,33.2193959785157],[120.781793242188,33.1882900214844],[120.805391875,33.178344953125],[120.800533476563,33.1392958808594],[120.815284453125,33.1274843574219],[120.811099882813,33.093843],[120.813590117188,33.0738430000001],[120.810479765625,33.048843],[120.869097929688,33.0241432929688],[120.877345,33.013843],[120.838878203125,33.0073073554688],[120.843175078125,32.978218],[120.744224882813,32.9687721992188],[120.70298953125,32.93819846875],[120.664029570313,32.9149001289063],[120.597193632813,32.9247756171875],[120.582784453125,32.9599806953125],[120.51298953125,32.9281984687501],[120.497345,32.9238430000001]]]]}},{"type":"Feature","properties":{"name":"东台市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.617345,32.6138430000001],[120.613922148438,32.6016506171876],[120.605152617188,32.6104201484375],[120.617345,32.6138430000001]]],[[[120.617345,32.6138430000001],[120.612896757813,32.6293971992188],[120.598741484375,32.653481671875],[120.5622278125,32.6320168281251],[120.497345,32.6400856757813],[120.43834109375,32.6327468085938],[120.420362578125,32.6754103828125],[120.391793242188,32.6982888007813],[120.381890898438,32.7106520820313],[120.304581328125,32.7010353828125],[120.282896757813,32.6882888007813],[120.220650664063,32.67745628125],[120.223004179688,32.658559796875],[120.2040246875,32.6091921210938],[120.197345,32.603843],[120.1919153125,32.6085182929688],[120.1927746875,32.6191677070313],[120.17752078125,32.632309796875],[120.15271609375,32.61847190625],[120.110006132813,32.60921409375],[120.117345,32.683843],[120.12170046875,32.68948753125],[120.15298953125,32.70819846875],[120.16170046875,32.7194875312501],[120.17298953125,32.72819846875],[120.18170046875,32.7494875312501],[120.20298953125,32.75819846875],[120.21170046875,32.76948753125],[120.223355742188,32.778481671875],[120.216143828125,32.79819846875],[120.180767851563,32.776860578125],[120.160284453125,32.7798854804687],[120.163082304688,32.7988430000001],[120.161519804688,32.8094142890625],[120.183170195313,32.8182717109376],[120.181607695313,32.828843],[120.18375125,32.8433498359375],[120.203595,32.85866721875],[120.18170046875,32.8881984687501],[120.169224882813,32.9329982734376],[120.217345,32.9258864570313],[120.242379179688,32.9295876289063],[120.277345,32.9238430000001],[120.33298953125,32.9281984687501],[120.365933867188,32.948071515625],[120.452203398438,32.9280837226563],[120.48978640625,32.9336379218751],[120.497345,32.9238430000001],[120.485152617188,32.9204201484375],[120.493922148438,32.9116506171875],[120.497345,32.9238430000001],[120.51298953125,32.9281984687501],[120.582784453125,32.9599806953125],[120.597193632813,32.9247756171875],[120.664029570313,32.9149001289063],[120.70298953125,32.93819846875],[120.744224882813,32.9687721992188],[120.843175078125,32.978218],[120.838878203125,33.0073073554688],[120.877345,33.013843],[120.88271609375,32.99921409375],[120.89197390625,32.94847190625],[120.906358671875,32.8825270820312],[120.88271609375,32.77847190625],[120.862955351563,32.7614455390626],[120.861060820313,32.7378713203126],[120.899888945313,32.7044216132813],[120.90275515625,32.6687258125001],[120.897345,32.633843],[120.851519804688,32.6277126289063],[120.8526575,32.6085768867188],[120.797003203125,32.583032453125],[120.782628203125,32.5991237617188],[120.750494414063,32.6085622382813],[120.73244265625,32.5883571601563],[120.695435820313,32.6084645820313],[120.652164335938,32.5782375312501],[120.642628203125,32.6091237617187],[120.617345,32.6138430000001]]]]}},{"type":"Feature","properties":{"name":"阜宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.957345,33.7938430000001],[119.953922148438,33.8060353828125],[119.945152617188,33.7972658515625],[119.962496367188,33.7787929511719],[119.952174101563,33.7688771796876],[119.962525664063,33.7487831855469],[119.935191679688,33.7355202460938],[119.95775515625,33.7138430000001],[119.923082304688,33.6805312324219],[119.98244265625,33.6689430976563],[119.987345,33.663843],[119.97931765625,33.6538210273438],[119.920758085938,33.6193959785156],[119.871793242188,33.6282900214844],[119.862799101563,33.6395217109376],[119.847345,33.6375991035157],[119.807345,33.6425746894532],[119.767345,33.6375991035157],[119.721163359375,33.6433437324219],[119.725162382813,33.61118675],[119.697261992188,33.5136000800781],[119.631793242188,33.4893959785157],[119.621632109375,33.4652834296876],[119.607345,33.4538430000001],[119.55197390625,33.4784706855469],[119.494830351563,33.518989484375],[119.476109648438,33.5811550117188],[119.451710234375,33.6390969062501],[119.483204375,33.6531508613282],[119.481944609375,33.668843],[119.482764921875,33.6790810371094],[119.477345,33.693843],[119.50298953125,33.7281996894532],[119.537823515625,33.8146901679688],[119.573140898438,33.8583852363281],[119.6322278125,33.8937258125],[119.637345,33.923843],[119.667750273438,33.9186769843751],[119.71064578125,33.8928041816407],[119.777686796875,33.9221022773438],[119.837379179688,33.9054787421876],[119.821549101563,33.879233625],[119.823140898438,33.868452375],[119.808219023438,33.8437160468751],[119.853990507813,33.8249831367188],[119.850225859375,33.7994863105469],[119.88298953125,33.8081996894532],[119.90170046875,33.8194863105469],[119.937345,33.8338430000001],[119.98170046875,33.8159780097656],[119.97298953125,33.7981996894532],[119.957345,33.7938430000001]]]]}},{"type":"Feature","properties":{"name":"建湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.038258085938,33.6838576484375],[120.02845828125,33.6175295234375],[120.080660429688,33.6252443671876],[120.08314578125,33.6084133125001],[120.055382109375,33.5709633613282],[120.06298953125,33.5194863105469],[120.067345,33.513843],[120.06142703125,33.5097585273437],[120.05326296875,33.4979274726563],[120.00142703125,33.4797585273438],[119.97326296875,33.4602883125],[119.997345,33.423843],[119.917906523438,33.4139064765626],[119.901119414063,33.3740688300782],[119.851568632813,33.3392409492188],[119.75572390625,33.3287306953125],[119.742896757813,33.2982900214844],[119.711793242188,33.2893959785157],[119.707345,33.283843],[119.68435671875,33.2941408515625],[119.643306914063,33.2813552070313],[119.627564726563,33.3275466132813],[119.611158476563,33.3376552558594],[119.601842070313,33.3771974921876],[119.571158476563,33.3876552558594],[119.567345,33.403843],[119.59142703125,33.4197585273438],[119.617554960938,33.4295339179688],[119.607345,33.4538430000001],[119.621632109375,33.4652834296876],[119.631793242188,33.4893959785157],[119.697261992188,33.5136000800781],[119.725162382813,33.61118675],[119.721163359375,33.6433437324219],[119.767345,33.6375991035157],[119.807345,33.6425746894532],[119.847345,33.6375991035157],[119.862799101563,33.6395217109376],[119.871793242188,33.6282900214844],[119.920758085938,33.6193959785156],[119.97931765625,33.6538210273438],[119.987345,33.663843],[120.038258085938,33.6838576484375]]]]}},{"type":"Feature","properties":{"name":"射阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.957345,33.7938430000001],[119.945152617188,33.7972658515625],[119.953922148438,33.8060353828125],[119.957345,33.7938430000001]]],[[[120.467345,33.513843],[120.479537382813,33.5172658515625],[120.470767851563,33.5260353828125],[120.448057890625,33.5193581367188],[120.454410429688,33.5704518867188],[120.472867460938,33.5681557441406],[120.481793242188,33.6060976386719],[120.448912382813,33.6182900214844],[120.423702421875,33.5868080878906],[120.386954375,33.5913796210938],[120.3365246875,33.5719960761719],[120.354879179688,33.5242360664063],[120.350982695313,33.4928871894532],[120.322345,33.5097206855469],[120.302706328125,33.4981764960938],[120.276846953125,33.5013930488281],[120.25923953125,33.4596108222656],[120.210206328125,33.4493959785157],[120.192867460938,33.5295302558594],[120.171119414063,33.5268239570312],[120.120172148438,33.5072426582032],[120.067345,33.513843],[120.06298953125,33.5194863105469],[120.055382109375,33.5709633613282],[120.08314578125,33.6084133125001],[120.080660429688,33.6252443671876],[120.02845828125,33.6175295234375],[120.038258085938,33.6838576484375],[119.987345,33.663843],[119.98244265625,33.6689430976563],[119.923082304688,33.6805312324219],[119.95775515625,33.7138430000001],[119.935191679688,33.7355202460938],[119.962525664063,33.7487831855469],[119.952174101563,33.7688771796876],[119.962496367188,33.7787929511719],[119.957345,33.7938430000001],[119.97298953125,33.7981996894532],[119.98170046875,33.8159780097656],[119.937345,33.8338430000001],[119.951881132813,33.8593056464844],[119.993897734375,33.8686220527344],[119.990748320313,33.8995156074219],[120.031881132813,33.8953224921875],[120.022808867188,33.9093056464844],[119.992808867188,33.9223159003907],[120.025806914063,33.9477321601563],[120.048189726563,33.9207851386719],[120.073189726563,33.9508815742188],[120.09634890625,33.9230055976563],[120.137725859375,33.8993056464844],[120.166422148438,33.9096877265625],[120.1442590625,33.9686696601563],[120.161881132813,34.0093056464844],[120.173365507813,34.0188430000001],[120.15318484375,34.0356056953125],[120.150811796875,34.0589040351563],[120.202808867188,34.0783803535156],[120.223531523438,34.0902504707032],[120.242530546875,34.0883144355469],[120.307345,34.1038430000001],[120.338687773438,34.0981252265625],[120.3880871875,34.0095864082032],[120.40197390625,33.9784706855469],[120.41271609375,33.9592153144532],[120.428199492188,33.9245156074219],[120.470401640625,33.8569008613282],[120.482535429688,33.8166017890626],[120.528311796875,33.7771633125001],[120.570064726563,33.6780190253906],[120.58197390625,33.6384706855469],[120.602154570313,33.6210842109375],[120.607345,33.6038430000001],[120.56170046875,33.5694863105469],[120.50298953125,33.5181996894531],[120.467345,33.4938430000001],[120.467345,33.513843]]]]}},{"type":"Feature","properties":{"name":"亭湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.467345,33.513843],[120.470767851563,33.5260353828125],[120.479537382813,33.5172658515625],[120.467345,33.513843]]],[[[120.467345,33.513843],[120.467345,33.4938430000001],[120.461890898438,33.4877370429688],[120.372628203125,33.4185622382813],[120.342628203125,33.4047927070312],[120.362061796875,33.3785622382813],[120.37322390625,33.3685903144532],[120.370933867188,33.3301784492188],[120.393355742188,33.2980763984376],[120.299307890625,33.2549123359376],[120.281734648438,33.2166188789063],[120.232628203125,33.1785622382813],[120.217345,33.173843],[120.19662234375,33.1797670722656],[120.166632109375,33.21722190625],[120.19341921875,33.2285097480469],[120.17736453125,33.2558180976563],[120.161099882813,33.268843],[120.175440703125,33.2803237128906],[120.198775664063,33.2774208808594],[120.221793242188,33.2822743964844],[120.194859648438,33.3038430000001],[120.22048953125,33.3243666816406],[120.171793242188,33.3382900214844],[120.102896757813,33.3693959785157],[120.022437773438,33.3794594550782],[119.997345,33.423843],[119.97326296875,33.4602883125],[120.00142703125,33.4797585273438],[120.05326296875,33.4979274726563],[120.06142703125,33.5097585273437],[120.067345,33.513843],[120.120172148438,33.5072426582032],[120.171119414063,33.5268239570312],[120.192867460938,33.5295302558594],[120.210206328125,33.4493959785157],[120.25923953125,33.4596108222656],[120.276846953125,33.5013930488281],[120.302706328125,33.4981764960938],[120.322345,33.5097206855469],[120.350982695313,33.4928871894532],[120.354879179688,33.5242360664063],[120.3365246875,33.5719960761719],[120.386954375,33.5913796210938],[120.423702421875,33.5868080878906],[120.448912382813,33.6182900214844],[120.481793242188,33.6060976386719],[120.472867460938,33.5681557441406],[120.454410429688,33.5704518867188],[120.448057890625,33.5193581367188],[120.467345,33.513843]]]]}},{"type":"Feature","properties":{"name":"响水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.82271609375,34.4692153144531],[119.832022734375,34.4584157539063],[119.843487578125,34.4593361640625],[119.94271609375,34.4492153144532],[119.97197390625,34.4384706855469],[120.024947539063,34.4225221992187],[120.08271609375,34.3892153144531],[120.087345,34.3738430000001],[120.082535429688,34.3686525703126],[120.05482546875,34.3429750800781],[120.042154570313,34.3190334296876],[120.028375273438,34.2898366523438],[119.862154570313,34.1490334296875],[119.8066809375,34.0631313300781],[119.7525403125,34.0459889960938],[119.669381132813,33.98499534375],[119.646964140625,33.964223859375],[119.637345,33.953843],[119.610704375,33.957202375],[119.588101835938,33.9751564765625],[119.595269804688,33.9898329902344],[119.57406375,34.00056175],[119.567345,34.013843],[119.562628203125,34.0291237617188],[119.55162234375,34.0597939277344],[119.572628203125,34.0785622382813],[119.582061796875,34.0947927070313],[119.521090117188,34.1227773261719],[119.523238554688,34.158843],[119.500860625,34.1691139960938],[119.526402617188,34.1919362617188],[119.572906523438,34.2132802558594],[119.6580090625,34.2595253730469],[119.731910429688,34.3052101875],[119.752061796875,34.3491237617188],[119.793228789063,34.37899925],[119.791451445313,34.4088430000001],[119.79322390625,34.4385903144532],[119.787345,34.4438430000001],[119.787345,34.473843],[119.82271609375,34.4692153144531]]]]}},{"type":"Feature","properties":{"name":"盐都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.221793242188,33.2822743964844],[120.198775664063,33.2774208808594],[120.175440703125,33.2803237128906],[120.161099882813,33.268843],[120.17736453125,33.2558180976563],[120.19341921875,33.2285097480469],[120.166632109375,33.21722190625],[120.19662234375,33.1797670722656],[120.217345,33.173843],[120.217345,33.1438430000001],[120.173370390625,33.1495973945313],[120.082345,33.1830239082032],[120.019249296875,33.1598525214844],[119.877633085938,33.1480165839844],[119.832940703125,33.1516078925781],[119.7397278125,33.1312758613281],[119.7427746875,33.1691664863281],[119.73197390625,33.1784706855469],[119.722154570313,33.2110842109376],[119.707345,33.2238430000001],[119.678219023438,33.23261253125],[119.707345,33.283843],[119.711793242188,33.2893959785157],[119.742896757813,33.2982900214844],[119.75572390625,33.3287306953125],[119.851568632813,33.3392409492188],[119.901119414063,33.3740688300782],[119.917906523438,33.4139064765626],[119.997345,33.423843],[120.022437773438,33.3794594550782],[120.102896757813,33.3693959785157],[120.171793242188,33.3382900214844],[120.22048953125,33.3243666816406],[120.194859648438,33.3038430000001],[120.221793242188,33.2822743964844]]]]}}]}